diff --git a/Assets/XCharts/CHANGELOG-EN.md b/Assets/XCharts/CHANGELOG-EN.md index a5312e5b..e66f4377 100644 --- a/Assets/XCharts/CHANGELOG-EN.md +++ b/Assets/XCharts/CHANGELOG-EN.md @@ -1,6 +1,7 @@ # 更新日志 +* (2020.07.30) Added `LineChart` to configure gradient through `VisualMap` or `ItemStyle`#78 * (2020.07.25) Fixed a problem with `LineChart` emerging abnormal in animation drawing#79 * (2020.07.25) Fixed a problem with gradual discoloration on `LiquidChart` at `100%`#80 * (2020.07.25) Added `RadarChart` support for `formatter` of `Tooltip`#77 diff --git a/Assets/XCharts/CHANGELOG.md b/Assets/XCharts/CHANGELOG.md index 881161af..5f02bf80 100644 --- a/Assets/XCharts/CHANGELOG.md +++ b/Assets/XCharts/CHANGELOG.md @@ -1,6 +1,7 @@ # 更新日志 +* (2020.07.30) 增加`LineChart`可通过`VisualMap`或`ItemStyle`配置渐变#78 * (2020.07.25) 修复`LineChart`渐出动画绘制异常的问题#79 * (2020.07.25) 修复`LiquidChart`在`100%`时渐变色会失效的问题#80 * (2020.07.25) 增加`RadarChart`对`Tooltip`的`formatter`支持#77 diff --git a/Assets/XCharts/Documentation/XCharts配置项手册.md b/Assets/XCharts/Documentation/XCharts配置项手册.md index add2f617..4f400d26 100644 --- a/Assets/XCharts/Documentation/XCharts配置项手册.md +++ b/Assets/XCharts/Documentation/XCharts配置项手册.md @@ -300,8 +300,9 @@ * ~~`selectedMode`:分段型的选择模式,支持以下模式:~~ * ~~`Multiple`:多选。~~ * ~~`Single`:单选。~~ -* `min`:允许的最小值。'min' 必须用户指定。[visualMap.min, visualMap.max] 形成了视觉映射的『定义域』。 -* `max`:允许的最大值。'max' 必须用户指定。[visualMap.min, visualMax.max] 形成了视觉映射的『定义域』。 +* `autoMinMax`:自动设置`min`,`max`的值。 +* `min`:允许的最小值。`autoMinMax`为`false`时必须指定。`[min, max]` 形成了视觉映射的『定义域』。 +* `max`:允许的最大值。`autoMinMax`为`false`时必须指定。`[min, max]` 形成了视觉映射的『定义域』。 * `range`:指定手柄对应数值的位置。range 应在 min max 范围内。 * ~~`text`:两端的文本,如 ['High', 'Low']。~~ * ~~`textGap`:两端文字主体之间的距离,单位为px。~~ @@ -831,6 +832,8 @@ * `show`:是否启用。 * `color`:颜色。 +* `toColor`:渐变颜色1。 +* `toColor2`:渐变颜色2。只在折线图中有效。 * `backgroundColor`:背景颜色。 * `backgroundWidth`:背景的宽。 * `centerColor`:中心区域的颜色。如环形图的中心区域。 diff --git a/Assets/XCharts/Documentation/xcharts-configuration-EN.md b/Assets/XCharts/Documentation/xcharts-configuration-EN.md index 41093710..1396b502 100644 --- a/Assets/XCharts/Documentation/xcharts-configuration-EN.md +++ b/Assets/XCharts/Documentation/xcharts-configuration-EN.md @@ -299,6 +299,8 @@ VisualMap component. mapping data to visual elements such as colors. * ~~`selectedMode`: the selected mode for Piecewise visualMap.~~ * ~~`Multiple`: Multiple.~~ * ~~`Single`: Single.~~ + +* `autoMinMax`: Automatically set min, Max value. * `min`: The minimum allowed. `min` must be user specified. `[min, max]` forms the domain of the visualMap. * `max`: The maximum allowed. `max` must be user specified. `[min, max]` forms the domain of the visualMap. * `range`: Specifies the position of the numeric value corresponding to the handle. Range should be within the range of [min,max]. @@ -406,7 +408,7 @@ Check each serie for parameters. Line chart serie. * `show`: Whether to show serie in chart. -* `type`: `Line`。 +* `type`: `Line`. * `name`: Series name used for displaying in tooltip and filtering with legend. * `stack`: If stack the value. On the same category axis, the series with the same stack name would be put on top of each other. * `axisIndex`: Index of axis to combine with, which is useful for multiple x axes in one chart. @@ -723,6 +725,8 @@ Line chart serie. * `show`: 是否启用。 * `color`: 颜色。 +* `toColor`:gradient color1. +* `toColor2`:gradient color2. * `backgroundColor`: 背景颜色。 * `backgroundWidth`: 背景的宽。 * `centerColor`: 中心区域的颜色。如环形图的中心区域。 diff --git a/Assets/XCharts/Editor/CoordinateChartEditor.cs b/Assets/XCharts/Editor/CoordinateChartEditor.cs index f25acc4f..257d9d2b 100644 --- a/Assets/XCharts/Editor/CoordinateChartEditor.cs +++ b/Assets/XCharts/Editor/CoordinateChartEditor.cs @@ -43,7 +43,7 @@ namespace XCharts { EditorGUILayout.PropertyField(m_DataZoom); } - if (m_Target is HeatmapChart) + if (m_Target is HeatmapChart || m_Target is LineChart) { EditorGUILayout.PropertyField(m_VisualMap); } diff --git a/Assets/XCharts/Editor/PropertyDrawers/ItemStyleDrawer.cs b/Assets/XCharts/Editor/PropertyDrawers/ItemStyleDrawer.cs index d2c4c9d9..27ae3452 100644 --- a/Assets/XCharts/Editor/PropertyDrawers/ItemStyleDrawer.cs +++ b/Assets/XCharts/Editor/PropertyDrawers/ItemStyleDrawer.cs @@ -25,6 +25,7 @@ namespace XCharts SerializedProperty show = prop.FindPropertyRelative("m_Show"); SerializedProperty m_Color = prop.FindPropertyRelative("m_Color"); SerializedProperty m_ToColor = prop.FindPropertyRelative("m_ToColor"); + SerializedProperty m_ToColor2 = prop.FindPropertyRelative("m_ToColor2"); SerializedProperty m_BackgroundColor = prop.FindPropertyRelative("m_BackgroundColor"); SerializedProperty m_BackgroundWidth = prop.FindPropertyRelative("m_BackgroundWidth"); SerializedProperty m_CenterColor = prop.FindPropertyRelative("m_CenterColor"); @@ -45,6 +46,8 @@ namespace XCharts drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; EditorGUI.PropertyField(drawRect, m_ToColor); drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; + EditorGUI.PropertyField(drawRect, m_ToColor2); + drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; EditorGUI.PropertyField(drawRect, m_BackgroundColor); drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; EditorGUI.PropertyField(drawRect, m_BackgroundWidth); @@ -80,7 +83,7 @@ namespace XCharts float height = 0; if (ChartEditorHelper.IsToggle(m_ItemStyleToggle, prop)) { - height += 14 * EditorGUIUtility.singleLineHeight + 13 * EditorGUIUtility.standardVerticalSpacing; + height += 15 * EditorGUIUtility.singleLineHeight + 14 * EditorGUIUtility.standardVerticalSpacing; var m_CornerRadius = prop.FindPropertyRelative("m_CornerRadius"); if (ChartEditorHelper.IsToggle(m_CornerRadiusToggle, m_CornerRadius)) { diff --git a/Assets/XCharts/Editor/PropertyDrawers/VisualMapDrawer.cs b/Assets/XCharts/Editor/PropertyDrawers/VisualMapDrawer.cs index c813b539..aee7ca82 100644 --- a/Assets/XCharts/Editor/PropertyDrawers/VisualMapDrawer.cs +++ b/Assets/XCharts/Editor/PropertyDrawers/VisualMapDrawer.cs @@ -42,7 +42,9 @@ namespace XCharts SerializedProperty m_Orient = prop.FindPropertyRelative("m_Orient"); SerializedProperty m_Location = prop.FindPropertyRelative("m_Location"); SerializedProperty m_InRange = prop.FindPropertyRelative("m_InRange"); - // SerializedProperty m_OutOfRange = prop.FindPropertyRelative("m_OutOfRange"); + SerializedProperty m_AutoMinMax = prop.FindPropertyRelative("m_AutoMinMax"); + SerializedProperty m_Direction = prop.FindPropertyRelative("m_Direction"); + SerializedProperty m_OutOfRange = prop.FindPropertyRelative("m_OutOfRange"); ChartEditorHelper.MakeFoldout(ref drawRect, ref m_VisualMapModuleToggle, "Visual Map", m_Enable); drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; @@ -51,7 +53,10 @@ namespace XCharts ++EditorGUI.indentLevel; EditorGUI.PropertyField(drawRect, m_Type); drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; - + EditorGUI.PropertyField(drawRect, m_Direction); + drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; + EditorGUI.PropertyField(drawRect, m_AutoMinMax); + drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; EditorGUI.PropertyField(drawRect, m_Min); drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; EditorGUI.PropertyField(drawRect, m_Max); @@ -60,8 +65,6 @@ namespace XCharts drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; EditorGUI.PropertyField(drawRect, m_Dimension); drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; - EditorGUI.PropertyField(drawRect, m_HoverLink); - drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; m_InRangeFoldout = EditorGUI.Foldout(drawRect, m_InRangeFoldout, "InRange"); drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; @@ -71,12 +74,12 @@ namespace XCharts } // drawRect.width = pos.width; - // m_OutOfRangeFoldout = EditorGUI.Foldout(drawRect, m_OutOfRangeFoldout, "OutOfRange"); - // drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; - // if (m_OutOfRangeFoldout) - // { - // ChartEditorHelper.MakeList(ref drawRect, ref m_OutOfRangeSize, m_OutOfRange); - // } + m_OutOfRangeFoldout = EditorGUI.Foldout(drawRect, m_OutOfRangeFoldout, "OutOfRange"); + drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; + if (m_OutOfRangeFoldout) + { + ChartEditorHelper.MakeList(ref drawRect, ref m_OutOfRangeSize, m_OutOfRange); + } // drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; EditorGUI.PropertyField(drawRect, m_Show); @@ -88,6 +91,8 @@ namespace XCharts ChartEditorHelper.MakeTwoField(ref drawRect, pos.width, m_Range, "Range"); ChartEditorHelper.MakeTwoField(ref drawRect, pos.width, m_Text, "Text"); ChartEditorHelper.MakeTwoField(ref drawRect, pos.width, m_Text, "TextGap"); + EditorGUI.PropertyField(drawRect, m_HoverLink); + drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; EditorGUI.PropertyField(drawRect, m_Calculable); drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; EditorGUI.PropertyField(drawRect, m_ItemWidth); @@ -111,7 +116,7 @@ namespace XCharts int num = 1; if (m_VisualMapModuleToggle) { - num += 8; + num += 10; height += num * EditorGUIUtility.singleLineHeight + (num - 1) * EditorGUIUtility.standardVerticalSpacing; if (m_InRangeFoldout) @@ -121,16 +126,16 @@ namespace XCharts height += size * EditorGUIUtility.singleLineHeight + (size - 1) * EditorGUIUtility.standardVerticalSpacing; height += EditorGUIUtility.standardVerticalSpacing; } - // if (m_OutOfRangeFoldout) - // { - // SerializedProperty m_OutOfRange = prop.FindPropertyRelative("m_OutOfRange"); - // int size = m_OutOfRange.arraySize + 1; - // height += size * EditorGUIUtility.singleLineHeight + (size - 1) * EditorGUIUtility.standardVerticalSpacing; - // height += EditorGUIUtility.standardVerticalSpacing; - // } + if (m_OutOfRangeFoldout) + { + SerializedProperty m_OutOfRange = prop.FindPropertyRelative("m_OutOfRange"); + int size = m_OutOfRange.arraySize + 1; + height += size * EditorGUIUtility.singleLineHeight + (size - 1) * EditorGUIUtility.standardVerticalSpacing; + height += EditorGUIUtility.standardVerticalSpacing; + } if (prop.FindPropertyRelative("m_Show").boolValue) { - height += 9 * EditorGUIUtility.singleLineHeight + 8 * EditorGUIUtility.standardVerticalSpacing; + height += 10 * EditorGUIUtility.singleLineHeight + 9 * EditorGUIUtility.standardVerticalSpacing; height += EditorGUI.GetPropertyHeight(prop.FindPropertyRelative("m_Location")); } } diff --git a/Assets/XCharts/Runtime/Component/Main/Axis.cs b/Assets/XCharts/Runtime/Component/Main/Axis.cs index d3befebe..92890f3b 100644 --- a/Assets/XCharts/Runtime/Component/Main/Axis.cs +++ b/Assets/XCharts/Runtime/Component/Main/Axis.cs @@ -303,6 +303,7 @@ namespace XCharts splitLine.ClearVerticesDirty(); splitArea.ClearVerticesDirty(); } + public int index { get; internal set; } /// /// the axis label text list. /// 坐标轴刻度标签的Text列表。 diff --git a/Assets/XCharts/Runtime/Component/Main/VisualMap.cs b/Assets/XCharts/Runtime/Component/Main/VisualMap.cs index 6a964941..8ef0ab16 100644 --- a/Assets/XCharts/Runtime/Component/Main/VisualMap.cs +++ b/Assets/XCharts/Runtime/Component/Main/VisualMap.cs @@ -32,6 +32,25 @@ namespace XCharts Piecewise } + /// + /// 方向。X轴还是Y轴。 + /// + public enum Direction + { + /// + /// 默认方向。 + /// + Default, + /// + /// X轴方向。 + /// + X, + /// + /// Y轴方向。 + /// + Y + } + /// /// 选择模式 /// @@ -50,6 +69,7 @@ namespace XCharts [SerializeField] private bool m_Enable = false; [SerializeField] private bool m_Show = true; [SerializeField] private Type m_Type = Type.Continuous; + [SerializeField] private Direction m_Direction = Direction.Default; [SerializeField] private SelectedMode m_SelectedMode = SelectedMode.Multiple; [SerializeField] private float m_Min = 0; [SerializeField] private float m_Max = 100f; @@ -63,8 +83,9 @@ namespace XCharts [SerializeField] private float m_ItemWidth = 20f; [SerializeField] private float m_ItemHeight = 140f; [SerializeField] private float m_BorderWidth = 0; - [SerializeField] private int m_Dimension = 0; + [SerializeField] private int m_Dimension = -1; [SerializeField] private bool m_HoverLink = true; + [SerializeField] private bool m_AutoMinMax = true; [SerializeField] private Orient m_Orient = Orient.Horizonal; [SerializeField] private Location m_Location = Location.defaultLeft; [SerializeField] private List m_InRange = new List(); @@ -92,7 +113,7 @@ namespace XCharts public bool show { get { return m_Show; } - set { if (PropertyUtility.SetStruct(ref m_Enable, value)) SetVerticesDirty(); } + set { if (PropertyUtility.SetStruct(ref m_Show, value)) SetVerticesDirty(); } } /// /// the type of visualmap component. @@ -104,6 +125,14 @@ namespace XCharts set { if (PropertyUtility.SetStruct(ref m_Type, value)) SetVerticesDirty(); } } /// + /// 映射方向。 + /// + public Direction direction + { + get { return m_Direction; } + set { if (PropertyUtility.SetStruct(ref m_Direction, value)) SetVerticesDirty(); } + } + /// /// the selected mode for Piecewise visualMap. /// 选择模式。 /// @@ -115,7 +144,7 @@ namespace XCharts /// /// The minimum allowed. 'min' must be user specified. [visualmap.min, visualmap.max] forms the "domain" of the visualMap. /// - /// 允许的最小值。'min' 必须用户指定。[visualMap.min, visualMap.max] 形成了视觉映射的『定义域』。 + /// 允许的最小值。`autoMinMax`为`false`时必须指定。[visualMap.min, visualMap.max] 形成了视觉映射的『定义域』。 /// public float min { @@ -125,12 +154,12 @@ namespace XCharts /// /// The maximum allowed. 'max' must be user specified. [visualmap.min, visualmap.max] forms the "domain" of the visualMap. /// - /// 允许的最大值。'max' 必须用户指定。[visualMap.min, visualMax.max] 形成了视觉映射的『定义域』。 + /// 允许的最大值。`autoMinMax`为`false`时必须指定。[visualMap.min, visualMax.max] 形成了视觉映射的『定义域』。 /// public float max { get { return m_Max; } - set { m_Max = value < min ? min + 1 : value; SetVerticesDirty(); } + set { m_Max = (value < min ? min + 1 : value); SetVerticesDirty(); } } /// /// Specifies the position of the numeric value corresponding to the handle. Range should be within the range of [min,max]. @@ -237,6 +266,15 @@ namespace XCharts set { if (PropertyUtility.SetStruct(ref m_HoverLink, value)) SetVerticesDirty(); } } /// + /// Automatically set min, Max value + /// 自动设置min,max的值 + /// + public bool autoMinMax + { + get { return m_AutoMinMax; } + set { if (PropertyUtility.SetStruct(ref m_AutoMinMax, value)) SetVerticesDirty(); } + } + /// /// Specify whether the layout of component is horizontal or vertical. /// /// 布局方式是横还是竖。 @@ -330,7 +368,7 @@ namespace XCharts get { if (splitNumber > 0 && splitNumber <= m_InRange.Count) return splitNumber; - else return inRange.Count; + else return m_InRange.Count; } } @@ -342,7 +380,10 @@ namespace XCharts { get { - if (splitNumber == 0 || m_InRange.Count >= splitNumber || m_InRange.Count < 1) return m_InRange; + if (splitNumber == 0 || m_InRange.Count >= splitNumber || m_InRange.Count < 1 || IsPiecewise()) + { + return m_InRange; + } else { if (m_RtInRange.Count != runtimeSplitNumber) @@ -383,29 +424,41 @@ namespace XCharts public Color GetColor(float value) { + if (value < m_Min || value > m_Max) + { + if (m_OutOfRange.Count > 0) return m_OutOfRange[0]; + else return Color.clear; + } int splitNumber = runtimeInRange.Count; if (splitNumber <= 0) return Color.clear; - value = Mathf.Clamp(value, min, max); - - var diff = (max - min) / (splitNumber - 1); var index = GetIndex(value); - var nowMin = min + index * diff; - var rate = (value - nowMin) / diff; - if (index == splitNumber - 1) return runtimeInRange[index]; - else return Color.Lerp(runtimeInRange[index], runtimeInRange[index + 1], rate); + if (m_Type == VisualMap.Type.Piecewise) + { + if (index >= 0 && index < runtimeInRange.Count) + return runtimeInRange[index]; + else return Color.clear; + } + else + { + var diff = (m_Max - m_Min) / (splitNumber - 1); + var nowMin = m_Min + index * diff; + var rate = (value - nowMin) / diff; + if (index == splitNumber - 1) return runtimeInRange[index]; + else return Color.Lerp(runtimeInRange[index], runtimeInRange[index + 1], rate); + } } public int GetIndex(float value) { int splitNumber = runtimeInRange.Count; if (splitNumber <= 0) return -1; - value = Mathf.Clamp(value, min, max); + value = Mathf.Clamp(value, m_Min, m_Max); - var diff = (max - min) / (splitNumber - 1); + var diff = (m_Max - m_Min) / (splitNumber - (IsPiecewise() ? 0 : 1)); var index = -1; for (int i = 0; i < splitNumber; i++) { - if (value <= min + (i + 1) * diff) + if (value <= m_Min + (i + 1) * diff) { index = i; break; @@ -414,6 +467,11 @@ namespace XCharts return index; } + public bool IsPiecewise() + { + return m_Type == VisualMap.Type.Piecewise; + } + public bool IsInSelectedValue(float value) { if (runtimeSelectedIndex < 0) return true; diff --git a/Assets/XCharts/Runtime/Component/Sub/ItemStyle.cs b/Assets/XCharts/Runtime/Component/Sub/ItemStyle.cs index 8c2cad56..c1315726 100644 --- a/Assets/XCharts/Runtime/Component/Sub/ItemStyle.cs +++ b/Assets/XCharts/Runtime/Component/Sub/ItemStyle.cs @@ -38,6 +38,7 @@ namespace XCharts [SerializeField] private bool m_Show = false; [SerializeField] private Color m_Color; [SerializeField] private Color m_ToColor; + [SerializeField] private Color m_ToColor2; [SerializeField] private Color m_BackgroundColor; [SerializeField] private float m_BackgroundWidth; [SerializeField] private Color m_CenterColor; @@ -55,6 +56,7 @@ namespace XCharts m_Show = false; m_Color = Color.clear; m_ToColor = Color.clear; + m_ToColor2 = Color.clear; m_BackgroundColor = Color.clear; m_BackgroundWidth = 0; m_CenterColor = Color.clear; @@ -93,8 +95,8 @@ namespace XCharts set { if (PropertyUtility.SetColor(ref m_Color, value)) SetVerticesDirty(); } } /// - /// Gradient color, start color to toColor. - /// 渐变色的终点颜色。 + /// Gradient color1. + /// 渐变色的颜色1。 /// public Color toColor { @@ -102,6 +104,15 @@ namespace XCharts set { if (PropertyUtility.SetColor(ref m_ToColor, value)) SetVerticesDirty(); } } /// + /// Gradient color2.Only valid in line diagrams. + /// 渐变色的颜色2。只在折线图中有效。 + /// + public Color toColor2 + { + get { return m_ToColor2; } + set { if (PropertyUtility.SetColor(ref m_ToColor2, value)) SetVerticesDirty(); } + } + /// /// 数据项背景颜色。 /// public Color backgroundColor @@ -214,5 +225,26 @@ namespace XCharts color.a *= m_Opacity; return color; } + + public bool IsNeedGradient() + { + return !ChartHelper.IsClearColor(m_ToColor) || !ChartHelper.IsClearColor(m_ToColor2); + } + + public Color GetGradientColor(float value, Color defaultColor) + { + if (!IsNeedGradient()) return Color.clear; + value = Mathf.Clamp01(value); + var startColor = m_Color == Color.clear ? defaultColor : m_Color; + if (m_ToColor2 != Color.clear) + { + if (value <= 0.5f) return Color.Lerp(startColor, m_ToColor, 2 * value); + else return Color.Lerp(m_ToColor, m_ToColor2, 2 * (value - 0.5f)); + } + else + { + return Color.Lerp(startColor, m_ToColor, value); + } + } } } \ No newline at end of file diff --git a/Assets/XCharts/Runtime/Internal/CoordinateChart.cs b/Assets/XCharts/Runtime/Internal/CoordinateChart.cs index e382de32..f3db108f 100644 --- a/Assets/XCharts/Runtime/Internal/CoordinateChart.cs +++ b/Assets/XCharts/Runtime/Internal/CoordinateChart.cs @@ -764,11 +764,6 @@ namespace XCharts private void CheckMinMaxValue() { if (m_XAxises == null || m_YAxises == null) return; - if (IsCategory()) - { - m_CheckMinMaxValue = true; - return; - } for (int i = 0; i < m_XAxises.Count; i++) { UpdateAxisMinMaxValue(i, m_XAxises[i]); @@ -781,7 +776,14 @@ namespace XCharts private void UpdateAxisMinMaxValue(int axisIndex, Axis axis, bool updateChart = true) { - if (axis.IsCategory() || !axis.show) return; + if (!axis.show) return; + if (axis.IsCategory()) + { + m_CheckMinMaxValue = true; + axis.runtimeMinValue = 0; + axis.runtimeMaxValue = SeriesHelper.GetMaxSerieDataCount(m_Series); + return; + } float tempMinValue = 0; float tempMaxValue = 0; @@ -864,10 +866,12 @@ namespace XCharts DrawGrid(vh); for (int i = 0; i < m_XAxises.Count; i++) { + m_XAxises[i].index = i; DrawXAxisSplit(vh, i, m_XAxises[i]); } for (int i = 0; i < m_YAxises.Count; i++) { + m_YAxises[i].index = i; DrawYAxisSplit(vh, i, m_YAxises[i]); } for (int i = 0; i < m_XAxises.Count; i++) @@ -1494,8 +1498,7 @@ namespace XCharts if (serie.type == SerieType.Heatmap) { - dimension = m_VisualMap.enable && m_VisualMap.dimension > 0 ? m_VisualMap.dimension - 1 : - serieData.data.Count - 1; + dimension = VisualMapHelper.GetDimension(m_VisualMap, serieData.data.Count); } SerieLabelHelper.ResetLabel(serieData, serieLabel, themeInfo, i); diff --git a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawHeatmap.cs b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawHeatmap.cs index 08df943f..ea5fe96c 100644 --- a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawHeatmap.cs +++ b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawHeatmap.cs @@ -145,8 +145,7 @@ namespace XCharts var dataIndex = i * yCount + j; if (dataIndex >= dataList.Count) continue; var serieData = dataList[dataIndex]; - var dimension = m_VisualMap.enable && m_VisualMap.dimension > 0 ? m_VisualMap.dimension - 1 : - serieData.data.Count - 1; + var dimension = VisualMapHelper.GetDimension(m_VisualMap, serieData.data.Count); if (serie.IsIgnoreIndex(dataIndex, dimension)) { serie.dataPoints.Add(Vector3.zero); diff --git a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawLine.cs b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawLine.cs index 9d4b8bfe..bc74a612 100644 --- a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawLine.cs +++ b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawLine.cs @@ -220,6 +220,7 @@ namespace XCharts { lastNextPos = endPos; } + VisualMapHelper.AutoSetLineMinMax(visualMap, serie, xAxis, yAxis); for (i = startIndex + 1; i < serie.dataPoints.Count; i++) { np = serie.dataPoints[i]; @@ -641,10 +642,11 @@ namespace XCharts private Vector3 stPos1, stPos2, lastDir, lastDnPos; private bool lastIsDown; - private bool DrawNormalLine(VertexHelper vh, Serie serie, Axis axis, Vector3 lp, - Vector3 np, Vector3 nnp, int dataIndex, Color lineColor, Color areaColor, Color areaToColor, + private bool DrawNormalLine(VertexHelper vh, Serie serie, Axis axis, Vector3 lp, Vector3 np, Vector3 nnp, + int dataIndex, Color lineColor, Color areaColor, Color areaToColor, Vector3 zeroPos, int startIndex = 0) { + var defaultLineColor = lineColor; var isSecond = dataIndex == startIndex + 1; var isTheLastPos = np == nnp; bool isYAxis = axis is YAxis; @@ -715,6 +717,7 @@ namespace XCharts if (serie.animation.CheckDetailBreak(cp, isYAxis)) isBreak = true; var tp1 = cp - dir1v * serie.lineStyle.width; var tp2 = cp + dir1v * serie.lineStyle.width; + CheckLineGradientColor(cp, serie.itemStyle, axis, defaultLineColor, ref lineColor); if (isDown) { if (!isBreak) @@ -849,7 +852,7 @@ namespace XCharts if (lastSerie != null) { var lastSmoothPoints = lastSerie.GetUpSmoothList(dataIndex); - DrawStackArea(vh, serie, axis, smoothDownPoints, lastSmoothPoints, lineColor, areaColor, areaToColor); + DrawStackArea(vh, serie, axis, smoothDownPoints, lastSmoothPoints, areaColor, areaToColor); } else { @@ -985,6 +988,14 @@ namespace XCharts return !isBreak; } + private void CheckLineGradientColor(Vector3 cp, ItemStyle itemStyle, Axis axis, Color defaultLineColor, ref Color lineColor) + { + if (VisualMapHelper.IsNeedGradient(m_VisualMap)) + lineColor = VisualMapHelper.GetLineGradientColor(m_VisualMap, cp, this, axis, defaultLineColor); + else if (itemStyle.IsNeedGradient()) + lineColor = VisualMapHelper.GetItemStyleGradientColor(itemStyle, cp, this, axis, defaultLineColor); + } + private bool IsInRightOrUp(bool isYAxis, bool isLastDown, Vector3 dnPos, Vector3 checkPos) { if ((isLastDown && ((isYAxis && checkPos.y <= dnPos.y) || (!isYAxis && checkPos.x <= dnPos.x))) || @@ -1082,6 +1093,7 @@ namespace XCharts Vector3 np, Vector3 llp, Vector3 nnp, int dataIndex, Color lineColor, Color areaColor, Color areaToColor, bool isStack, Vector3 zeroPos, int startIndex = 0) { + var defaultLineColor = lineColor; bool isYAxis = xAxis is YAxis; var lineWidth = serie.lineStyle.width; var smoothPoints = serie.GetUpSmoothList(dataIndex); @@ -1096,6 +1108,7 @@ namespace XCharts { start = bezierPoints[i]; to = bezierPoints[i + 1]; + CheckLineGradientColor(start, serie.itemStyle, xAxis, defaultLineColor, ref lineColor); CheckClipAndDrawLine(vh, start, to, lineWidth, lineColor, serie.clip); } return true; @@ -1118,6 +1131,7 @@ namespace XCharts { if (!serie.animation.IsInFadeOut()) { + CheckLineGradientColor(lp, serie.itemStyle, xAxis, defaultLineColor, ref lineColor); CheckClipAndDrawTriangle(vh, smoothStartPosUp, startUp, lp, lineColor, serie.clip); CheckClipAndDrawTriangle(vh, smoothStartPosDn, startDn, lp, lineColor, serie.clip); } @@ -1146,6 +1160,7 @@ namespace XCharts diff = dir1v * lineWidth; toUp = to - diff; toDn = to + diff; + CheckLineGradientColor(to, serie.itemStyle, xAxis, defaultLineColor, ref lineColor); if (isYAxis) CheckClipAndDrawPolygon(vh, startDn, toDn, toUp, startUp, lineColor, serie.clip); else CheckClipAndDrawPolygon(vh, startUp, toUp, toDn, startDn, lineColor, serie.clip); smoothPoints.Add(toUp); @@ -1209,7 +1224,7 @@ namespace XCharts if (lastSerie != null) { var lastSmoothPoints = lastSerie.GetUpSmoothList(dataIndex); - DrawStackArea(vh, serie, xAxis, smoothDownPoints, lastSmoothPoints, lineColor, areaColor, areaToColor); + DrawStackArea(vh, serie, xAxis, smoothDownPoints, lastSmoothPoints, areaColor, areaToColor); } } return isFinish; @@ -1241,7 +1256,7 @@ namespace XCharts } private void DrawStackArea(VertexHelper vh, Serie serie, Axis axis, List smoothPoints, - List lastSmoothPoints, Color lineColor, Color areaColor, Color areaToColor) + List lastSmoothPoints, Color areaColor, Color areaToColor) { if (!serie.areaStyle.show || lastSmoothPoints.Count <= 0) return; Vector3 start, to; diff --git a/Assets/XCharts/Runtime/Internal/Helper/SeriesHelper.cs b/Assets/XCharts/Runtime/Internal/Helper/SeriesHelper.cs index 2e57f4ef..d37bb155 100644 --- a/Assets/XCharts/Runtime/Internal/Helper/SeriesHelper.cs +++ b/Assets/XCharts/Runtime/Internal/Helper/SeriesHelper.cs @@ -470,5 +470,15 @@ namespace XCharts maxValue = max > 1 ? Mathf.CeilToInt(max) : max; } } + + public static int GetMaxSerieDataCount(Series series) + { + int max = 0; + foreach (var serie in series.list) + { + if (serie.dataCount > max) max = serie.dataCount; + } + return max; + } } } \ No newline at end of file diff --git a/Assets/XCharts/Runtime/Internal/Helper/VisualMapHelper.cs b/Assets/XCharts/Runtime/Internal/Helper/VisualMapHelper.cs new file mode 100644 index 00000000..340581bc --- /dev/null +++ b/Assets/XCharts/Runtime/Internal/Helper/VisualMapHelper.cs @@ -0,0 +1,130 @@ +/******************************************/ +/* */ +/* Copyright (c) 2018 monitor1394 */ +/* https://github.com/monitor1394 */ +/* */ +/******************************************/ + +using System; +using System.Collections.Generic; +using UnityEngine; + +namespace XCharts +{ + public static class VisualMapHelper + { + public static void AutoSetLineMinMax(VisualMap visualMap, Serie serie, XAxis xAxis, YAxis yAxis) + { + if (!IsNeedGradient(visualMap) || !visualMap.autoMinMax) return; + float min = 0; + float max = 0; + switch (visualMap.direction) + { + case VisualMap.Direction.Default: + case VisualMap.Direction.X: + min = xAxis.IsCategory() ? 0 : xAxis.runtimeMinValue; + max = xAxis.IsCategory() ? serie.dataCount : xAxis.runtimeMaxValue; + SetMinMax(visualMap, min, max); + break; + case VisualMap.Direction.Y: + min = yAxis.IsCategory() ? 0 : yAxis.runtimeMinValue; + max = yAxis.IsCategory() ? serie.dataCount : yAxis.runtimeMaxValue; + SetMinMax(visualMap, min, max); + break; + } + } + + public static void SetMinMax(VisualMap visualMap, float min, float max) + { + if (visualMap.enable && (visualMap.min != min || visualMap.max != max)) + { + //Debug.LogError("minmax:"+min+","+max); + if (max >= min) + { + visualMap.min = min; + visualMap.max = max; + //Debug.LogError("minmax2222:"+visualMap.min+","+visualMap.max); + } + else + { + throw new Exception("SetMinMax:max < min:" + min + "," + max); + } + } + } + + public static void GetLineGradientColor(VisualMap visualMap, float xValue, float yValue, + out Color startColor, out Color toColor) + { + startColor = Color.clear; + toColor = Color.clear; + switch (visualMap.direction) + { + case VisualMap.Direction.Default: + case VisualMap.Direction.X: + startColor = visualMap.IsPiecewise() ? visualMap.GetColor(xValue) : visualMap.GetColor(xValue - 1); + toColor = visualMap.IsPiecewise() ? startColor : visualMap.GetColor(xValue); + break; + case VisualMap.Direction.Y: + startColor = visualMap.IsPiecewise() ? visualMap.GetColor(yValue) : visualMap.GetColor(yValue - 1); + toColor = visualMap.IsPiecewise() ? startColor : visualMap.GetColor(yValue); + break; + } + } + + internal static Color GetLineGradientColor(VisualMap visualMap, Vector3 pos, CoordinateChart chart, Axis axis, Color defaultColor) + { + float value = 0; + switch (visualMap.direction) + { + case VisualMap.Direction.Default: + case VisualMap.Direction.X: + var min = axis.runtimeMinValue; + var max = axis.runtimeMaxValue; + value = min + (pos.x - chart.coordinateX) / chart.coordinateWidth * (max - min); + break; + case VisualMap.Direction.Y: + if (axis is YAxis) + { + var yAxis = chart.xAxises[axis.index]; + min = yAxis.runtimeMinValue; + max = yAxis.runtimeMaxValue; + } + else + { + var yAxis = chart.yAxises[axis.index]; + min = yAxis.runtimeMinValue; + max = yAxis.runtimeMaxValue; + } + value = min + (pos.y - chart.coordinateY) / chart.coordinateHeight * (max - min); + break; + } + var color = visualMap.GetColor(value); + if (ChartHelper.IsClearColor(color)) return defaultColor; + else return color; + } + + internal static Color GetItemStyleGradientColor(ItemStyle itemStyle, Vector3 pos, CoordinateChart chart, Axis axis, Color defaultColor) + { + var min = axis.runtimeMinValue; + var max = axis.runtimeMaxValue; + var value = min + (pos.x - chart.coordinateX) / chart.coordinateWidth * (max - min); + var rate = (value - min) / (max - min); + var color = itemStyle.GetGradientColor(rate, defaultColor); + if (ChartHelper.IsClearColor(color)) return defaultColor; + else return color; + } + + public static bool IsNeedGradient(VisualMap visualMap) + { + if (!visualMap.enable || visualMap.inRange.Count <= 0) return false; + return true; + } + + public static int GetDimension(VisualMap visualMap, int serieDataCount) + { + var dimension = visualMap.enable && visualMap.dimension >= 0 ? visualMap.dimension : serieDataCount - 1; + if (dimension > serieDataCount - 1) dimension = serieDataCount - 1; + return dimension; + } + } +} \ No newline at end of file diff --git a/Assets/XCharts/Runtime/LineChart.cs b/Assets/XCharts/Runtime/LineChart.cs index 476e8f0c..ea090282 100644 --- a/Assets/XCharts/Runtime/LineChart.cs +++ b/Assets/XCharts/Runtime/LineChart.cs @@ -23,6 +23,15 @@ namespace XCharts base.Reset(); m_Title.text = "LineChart"; m_Tooltip.type = Tooltip.Type.Line; + + m_VisualMap.enable = false; + m_VisualMap.show = false; + m_VisualMap.autoMinMax = true; + m_VisualMap.direction = VisualMap.Direction.Y; + m_VisualMap.inRange.Clear(); + m_VisualMap.inRange.Add(Color.blue); + m_VisualMap.inRange.Add(Color.red); + RemoveData(); var serie = AddSerie(SerieType.Line, "serie1"); serie.symbol.show = true; diff --git a/Assets/XChartsDemo/demo_xchart.unity b/Assets/XChartsDemo/demo_xchart.unity index 6ac33c17..9e5bce98 100644 --- a/Assets/XChartsDemo/demo_xchart.unity +++ b/Assets/XChartsDemo/demo_xchart.unity @@ -849,7 +849,7 @@ RectTransform: m_GameObject: {fileID: 2188438} 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: 1000229444} - {fileID: 1018733779} @@ -3038,6 +3038,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 9459097} +--- !u!1 &9993738 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 9993739} + m_Layer: 0 + m_Name: label_0_2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &9993739 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 9993738} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 453391170} + - {fileID: 371183034} + m_Father: {fileID: 960174449} + m_RootOrder: 16 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &10073574 GameObject: m_ObjectHideFlags: 0 @@ -3273,7 +3308,7 @@ RectTransform: m_GameObject: {fileID: 11070987} 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: 1441862145} - {fileID: 411491551} @@ -3353,6 +3388,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 11088238} +--- !u!1 &11104412 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 11104413} + - component: {fileID: 11104415} + - component: {fileID: 11104414} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &11104413 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 11104412} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1568266774} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &11104414 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 11104412} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &11104415 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 11104412} --- !u!1 &11225104 GameObject: m_ObjectHideFlags: 0 @@ -6548,10 +6657,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -6838,6 +6943,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -6891,6 +6997,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -6988,6 +7095,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -7038,6 +7146,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -7119,6 +7228,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -7169,6 +7279,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -7250,6 +7361,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -7300,6 +7412,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -7381,6 +7494,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -7431,6 +7545,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -7512,6 +7627,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -7562,6 +7678,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -7643,6 +7760,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -7693,6 +7811,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -7774,6 +7893,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -7824,6 +7944,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -7905,6 +8026,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -7955,6 +8077,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -9148,6 +9271,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 21068224} +--- !u!1 &21344399 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 21344400} + - component: {fileID: 21344402} + - component: {fileID: 21344401} + m_Layer: 0 + m_Name: title_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &21344400 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 21344399} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1253882584} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 12} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &21344401 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 21344399} + 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.7607843, g: 0.20784314, b: 0.19215687, a: 1} + m_RaycastTarget: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &21344402 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 21344399} --- !u!1 &21553783 GameObject: m_ObjectHideFlags: 0 @@ -12498,6 +12695,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 31610153} +--- !u!1 &32373139 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 32373140} + m_Layer: 0 + m_Name: label_1_4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &32373140 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 32373139} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1135131977} + - {fileID: 170637349} + m_Father: {fileID: 960174449} + m_RootOrder: 25 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &32640355 GameObject: m_ObjectHideFlags: 0 @@ -12785,10 +13017,10 @@ RectTransform: m_Father: {fileID: 191364310} 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: 4, y: -1524} - m_SizeDelta: {x: 584, y: 300} + 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, y: 1} --- !u!114 &33516771 MonoBehaviour: @@ -12803,7 +13035,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 + m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] @@ -12992,10 +13224,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -13283,6 +13511,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -13336,6 +13565,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -13433,6 +13663,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -13487,6 +13718,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -13572,6 +13804,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -13626,6 +13859,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -13711,6 +13945,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -13765,6 +14000,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -13850,6 +14086,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -13904,6 +14141,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -13989,6 +14227,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -14043,6 +14282,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -14128,6 +14368,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -14182,6 +14423,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -14267,6 +14509,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -14321,6 +14564,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -14565,6 +14809,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -14618,6 +14863,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -14715,6 +14961,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -14769,6 +15016,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -14854,6 +15102,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -14908,6 +15157,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -14993,6 +15243,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -15047,6 +15298,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -15132,6 +15384,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -15186,6 +15439,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -15271,6 +15525,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -15325,6 +15580,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -15410,6 +15666,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -15464,6 +15721,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -15549,6 +15807,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -15603,6 +15862,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -15847,6 +16107,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -15900,6 +16161,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -15997,6 +16259,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -16051,6 +16314,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -16136,6 +16400,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -16190,6 +16455,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -16275,6 +16541,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -16329,6 +16596,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -16414,6 +16682,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -16468,6 +16737,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -16553,6 +16823,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -16607,6 +16878,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -16692,6 +16964,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -16746,6 +17019,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -16831,6 +17105,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -16885,6 +17160,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -17129,6 +17405,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -17182,6 +17459,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -17279,6 +17557,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -17333,6 +17612,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -17418,6 +17698,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -17472,6 +17753,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -17557,6 +17839,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -17611,6 +17894,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -17696,6 +17980,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -17750,6 +18035,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -17835,6 +18121,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -17889,6 +18176,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -17974,6 +18262,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -18028,6 +18317,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -18113,6 +18403,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -18167,6 +18458,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -18622,6 +18914,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -18642,6 +18935,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -24104,6 +24398,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 49843864} +--- !u!1 &49903207 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 49903208} + - component: {fileID: 49903210} + - component: {fileID: 49903209} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &49903208 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 49903207} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 2141965504} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &49903209 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 49903207} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &49903210 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 49903207} --- !u!1 &49931652 GameObject: m_ObjectHideFlags: 0 @@ -26595,7 +26963,7 @@ RectTransform: m_GameObject: {fileID: 57699998} 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: 534095399} - {fileID: 646028451} @@ -26681,6 +27049,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 57876801} +--- !u!1 &58599967 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 58599968} + m_Layer: 0 + m_Name: label_1_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &58599968 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 58599967} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1481449811} + - {fileID: 1176354985} + m_Father: {fileID: 960174449} + m_RootOrder: 21 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &58905452 GameObject: m_ObjectHideFlags: 0 @@ -27851,6 +28254,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 62450095} +--- !u!1 &62451316 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 62451317} + - component: {fileID: 62451319} + - component: {fileID: 62451318} + m_Layer: 0 + m_Name: title_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &62451317 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 62451316} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1507643177} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 12} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &62451318 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 62451316} + 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.7607843, g: 0.20784314, b: 0.19215687, a: 1} + m_RaycastTarget: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &62451319 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 62451316} --- !u!1 &62599818 GameObject: m_ObjectHideFlags: 0 @@ -28158,7 +28635,7 @@ RectTransform: m_GameObject: {fileID: 62904828} 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: 1029217443} - {fileID: 409912942} @@ -28173,6 +28650,74 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 1} +--- !u!1 &63034669 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 63034670} + - component: {fileID: 63034672} + - component: {fileID: 63034671} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &63034670 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 63034669} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1662746721} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &63034671 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 63034669} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &63034672 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 63034669} --- !u!1 &63094374 GameObject: m_ObjectHideFlags: 0 @@ -29460,6 +30005,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 66284013} +--- !u!1 &66440964 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 66440965} + - component: {fileID: 66440967} + - component: {fileID: 66440966} + m_Layer: 0 + m_Name: axis_x5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &66440965 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 66440964} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 811752472} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 482, y: -287} + m_SizeDelta: {x: 72, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &66440966 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 66440964} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Sat +--- !u!222 &66440967 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 66440964} --- !u!1 &66492821 GameObject: m_ObjectHideFlags: 0 @@ -30445,7 +31064,7 @@ RectTransform: m_GameObject: {fileID: 67821512} 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: 1981199215} - {fileID: 1873542110} @@ -32068,6 +32687,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 73798669} +--- !u!1 &73880184 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 73880185} + - component: {fileID: 73880187} + - component: {fileID: 73880186} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &73880185 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 73880184} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1089001423} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &73880186 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 73880184} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &73880187 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 73880184} --- !u!1 &73985465 GameObject: m_ObjectHideFlags: 0 @@ -32980,6 +33667,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 75613576} +--- !u!1 &75703443 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 75703444} + - component: {fileID: 75703446} + - component: {fileID: 75703445} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &75703444 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 75703443} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1662746721} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &75703445 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 75703443} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &75703446 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 75703443} --- !u!1 &75779954 GameObject: m_ObjectHideFlags: 0 @@ -36364,6 +37125,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 84819970} +--- !u!1 &84989576 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 84989577} + - component: {fileID: 84989579} + - component: {fileID: 84989578} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &84989577 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 84989576} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 346419771} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &84989578 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 84989576} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &84989579 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 84989576} --- !u!1 &85045126 GameObject: m_ObjectHideFlags: 0 @@ -37455,10 +38290,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -37746,6 +38577,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -37799,6 +38631,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -37896,6 +38729,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -37950,6 +38784,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -38035,6 +38870,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -38089,6 +38925,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -38174,6 +39011,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -38228,6 +39066,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -38313,6 +39152,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -38367,6 +39207,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -38452,6 +39293,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -38506,6 +39348,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -38591,6 +39434,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -38645,6 +39489,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -38730,6 +39575,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -38784,6 +39630,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -39239,6 +40086,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -39259,6 +40107,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -41086,6 +41935,75 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &91286057 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 91286058} + - component: {fileID: 91286060} + - component: {fileID: 91286059} + m_Layer: 0 + m_Name: axis_x_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &91286058 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 91286057} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 182194463} + m_Father: {fileID: 1665609509} + 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: 300} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &91286059 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 91286057} + 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.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374} + 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 &91286060 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 91286057} --- !u!1 &91650906 GameObject: m_ObjectHideFlags: 0 @@ -41512,6 +42430,1896 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 92552673} +--- !u!1 &92752104 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 92752105} + - component: {fileID: 92752107} + - component: {fileID: 92752106} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &92752105 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 92752104} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1102845753} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &92752106 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 92752104} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &92752107 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 92752104} +--- !u!1 &92764069 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 92764070} + - component: {fileID: 92764071} + - component: {fileID: 92764072} + m_Layer: 5 + m_Name: linechart_gradient1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &92764070 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 92764069} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.99996465, y: 0.99996465, z: 0.99996465} + m_Children: + - {fileID: 2060236888} + - {fileID: 1808960736} + - {fileID: 1232265987} + - {fileID: 811752472} + - {fileID: 292644576} + - {fileID: 1790542136} + - {fileID: 1020874435} + - {fileID: 960174449} + - {fileID: 1253882584} + - {fileID: 1819605193} + m_Father: {fileID: 191364310} + m_RootOrder: 15 + 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, y: 1} +--- !u!222 &92764071 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 92764069} +--- !u!114 &92764072 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 92764069} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b4f38bd00b4648c448cabfc167538f7c, 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_DebugMode: 0 + m_ChartName: + m_ThemeInfo: + m_JsonData: + m_DataFromJson: 0 + m_Theme: 0 + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_BackgroundColor: + serializedVersion: 2 + rgba: 4294967295 + m_TitleTextColor: + serializedVersion: 2 + rgba: 4283256145 + m_TitleSubTextColor: + serializedVersion: 2 + rgba: 4283256145 + m_LegendTextColor: + serializedVersion: 2 + rgba: 4283256145 + m_LegendUnableColor: + serializedVersion: 2 + rgba: 4291611852 + m_AxisTextColor: + serializedVersion: 2 + rgba: 4283256145 + m_AxisLineColor: + serializedVersion: 2 + rgba: 4283256145 + m_AxisSplitLineColor: + serializedVersion: 2 + rgba: 542200145 + m_TooltipBackgroundColor: + serializedVersion: 2 + rgba: 3360772433 + m_TooltipFlagAreaColor: + serializedVersion: 2 + rgba: 542200145 + m_TooltipTextColor: + serializedVersion: 2 + rgba: 4294967295 + m_TooltipLabelColor: + serializedVersion: 2 + rgba: 4280887593 + m_TooltipLineColor: + serializedVersion: 2 + rgba: 1680419113 + m_DataZoomTextColor: + serializedVersion: 2 + rgba: 4283256145 + m_DataZoomLineColor: + serializedVersion: 2 + rgba: 542200145 + m_DataZoomSelectedColor: + serializedVersion: 2 + rgba: 542200145 + m_VisualMapBackgroundColor: + serializedVersion: 2 + rgba: 542200145 + m_VisualMapBorderColor: + serializedVersion: 2 + rgba: 4291611852 + m_ColorPalette: + - serializedVersion: 2 + rgba: 4281415106 + - serializedVersion: 2 + rgba: 4283712815 + - serializedVersion: 2 + rgba: 4289241185 + - serializedVersion: 2 + rgba: 4284842708 + - serializedVersion: 2 + rgba: 4289644433 + - serializedVersion: 2 + rgba: 4286816116 + - serializedVersion: 2 + rgba: 4280452810 + - serializedVersion: 2 + rgba: 4288324285 + - serializedVersion: 2 + rgba: 4285821038 + - serializedVersion: 2 + rgba: 4285556052 + - serializedVersion: 2 + rgba: 4292070596 + m_CustomFont: {fileID: 0} + m_CustomBackgroundColor: + serializedVersion: 2 + rgba: 0 + m_CustomTitleTextColor: + serializedVersion: 2 + rgba: 0 + m_CustomTitleSubTextColor: + serializedVersion: 2 + rgba: 0 + m_CustomLegendTextColor: + serializedVersion: 2 + rgba: 0 + m_CustomLegendUnableColor: + serializedVersion: 2 + rgba: 0 + m_CustomAxisTextColor: + serializedVersion: 2 + rgba: 0 + m_CustomAxisLineColor: + serializedVersion: 2 + rgba: 0 + m_CustomAxisSplitLineColor: + serializedVersion: 2 + rgba: 0 + m_CustomTooltipBackgroundColor: + serializedVersion: 2 + rgba: 0 + m_CustomTooltipFlagAreaColor: + serializedVersion: 2 + rgba: 0 + m_CustomTooltipTextColor: + serializedVersion: 2 + rgba: 0 + m_CustomTooltipLabelColor: + serializedVersion: 2 + rgba: 0 + m_CustomTooltipLineColor: + serializedVersion: 2 + rgba: 0 + m_CustomDataZoomTextColor: + serializedVersion: 2 + rgba: 0 + m_CustomDataZoomLineColor: + serializedVersion: 2 + rgba: 0 + m_CustomDataZoomSelectedColor: + serializedVersion: 2 + rgba: 0 + m_CustomVisualMapBackgroundColor: + serializedVersion: 2 + rgba: 0 + m_CustomVisualMapBorderColor: + serializedVersion: 2 + rgba: 0 + m_CustomColorPalette: + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + m_Title: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Text: "Y\u8F74\u6E10\u53D8" + m_TextStyle: + m_JsonData: + m_DataFromJson: 0 + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_LineSpacing: 1 + m_SubText: "\u901A\u8FC7VisualMap" + m_SubTextStyle: + m_JsonData: + m_DataFromJson: 0 + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_LineSpacing: 1 + m_ItemGap: 8 + m_Location: + m_JsonData: + m_DataFromJson: 0 + m_Align: 2 + m_Left: 0 + m_Right: 0 + m_Top: 5 + m_Bottom: 0 + m_Background: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Image: {fileID: 0} + m_ImageType: 1 + m_ImageColor: {r: 1, g: 1, b: 1, a: 1} + m_HideThemeBackgroundColor: 1 + m_Legend: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_SelectedMode: 0 + m_Orient: 0 + m_Location: + m_JsonData: + m_DataFromJson: 0 + m_Align: 2 + m_Left: 0 + m_Right: 0 + m_Top: 30 + m_Bottom: 0 + m_ItemWidth: 24 + m_ItemHeight: 12 + m_ItemGap: 10 + m_ItemAutoColor: 1 + m_Formatter: + m_TextStyle: + m_JsonData: + m_DataFromJson: 0 + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 2, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Data: [] + m_Icons: [] + m_Tooltip: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Formatter: + m_ItemFormatter: + m_TitleFormatter: + m_FixedWidth: 0 + m_FixedHeight: 0 + m_MinWidth: 0 + m_MinHeight: 0 + m_NumericFormatter: + m_PaddingLeftRight: 5 + m_PaddingTopBottom: 5 + m_IgnoreDataDefaultContent: '-' + m_AlwayShow: 0 + m_Offset: {x: 18, y: -25} + m_BackgroundImage: {fileID: 0} + m_TextStyle: + m_JsonData: + m_DataFromJson: 0 + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_LineSpacing: 1 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_Width: 0.7 + m_Opacity: 1 + m_Series: + m_JsonData: + m_DataFromJson: 0 + m_Series: + - m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Name: serie1 + m_Stack: + m_AxisIndex: 0 + m_RadarIndex: 0 + m_VesselIndex: 0 + m_MinShow: 0 + m_MaxShow: 0 + m_MaxCache: 0 + m_AreaStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Origin: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipHighlight: 0 + m_HighlightColor: {r: 0, g: 0, b: 0, a: 0} + m_HighlightToColor: {r: 0, g: 0, b: 0, a: 0} + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 2.5 + m_SelectedSize: 5 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_SampleDist: 0 + m_SampleType: 1 + m_SampleAverage: 0 + m_LineType: 1 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_Width: 0.8 + m_Opacity: 1 + m_BarType: 0 + m_BarPercentStack: 0 + m_BarWidth: 0.6 + m_BarGap: 0.3 + m_BarCategoryGap: 0.2 + m_BarZebraWidth: 4 + m_BarZebraGap: 2 + m_Min: 0 + m_Max: 0 + m_StartAngle: 0 + m_EndAngle: 0 + m_Clockwise: 1 + m_RoundCap: 0 + m_RingGap: 10 + m_SplitNumber: 0 + m_GaugeType: 0 + m_GaugeAxis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_AxisLine: + m_Show: 1 + m_Width: 15 + m_Opacity: 1 + m_BarColor: {r: 0, g: 0, b: 0, a: 0} + m_BarBackgroundColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_StageColor: + - m_Percent: 0.2 + m_Color: {r: 0.5686275, g: 0.78039217, b: 0.68235296, a: 1} + - m_Percent: 0.8 + m_Color: {r: 0.3882353, g: 0.5254902, b: 0.61960787, a: 1} + - m_Percent: 1 + m_Color: {r: 0.7607843, g: 0.20784314, b: 0.19215687, a: 1} + m_SplitLine: + m_Show: 1 + m_Length: 15 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_Width: 1.5 + m_Opacity: 1 + m_AxisTick: + m_Show: 1 + m_Length: 5 + m_SplitNumber: 5 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_Width: 1 + m_Opacity: 1 + m_AxisLabel: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_AxisLabelText: [] + runtimeStageAngle: [] + runtimeLabelPosition: [] + m_GaugePointer: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Length: 0.8 + m_Width: 15 + m_ClickOffset: 1 + m_RoseType: 0 + m_Space: 0 + m_Center: + - 0.5 + - 0.5 + m_Radius: + - 0 + - 80 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_Animation: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 1 + m_Easting: 0 + m_Threshold: 2000 + m_FadeInDuration: 1000 + m_FadeInDelay: 0 + m_FadeOutDuration: 1000 + m_FadeOutDelay: 0 + m_DataChangeEnable: 1 + m_DataChangeDuration: 500 + m_ActualDuration: 0 + m_CurrDetailProgress: 100.4 + m_DestDetailProgress: 503.6 + m_LineArrow: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Width: 10 + m_Height: 15 + m_Offset: 0 + m_Dent: 3 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_TitleStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_TextStyle: + m_JsonData: + m_DataFromJson: 0 + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_LineSpacing: 1 + m_ShowDataDimension: 1 + m_ShowDataName: 0 + m_ShowDataIcon: 0 + m_Clip: 0 + m_Ignore: 0 + m_IgnoreValue: 0 + m_ShowAsPositiveNumber: 0 + m_Large: 1 + m_LargeThreshold: 200 + m_AvoidLabelOverlap: 0 + m_WaveHeight: 10 + m_WaveLength: 20 + m_WaveSpeed: 5 + m_WaveOffset: 0 + m_RadarType: 0 + m_Data: + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 6 + m_SelectedSize: 10 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 0 + - 71 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 6 + m_SelectedSize: 10 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 1 + - 50 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 6 + m_SelectedSize: 10 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 2 + - 89 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 6 + m_SelectedSize: 10 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 3 + - 20 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 6 + m_SelectedSize: 10 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 4 + - 2 + m_Settings: + m_JsonData: + m_DataFromJson: 0 + m_LineSmoothStyle: 3 + m_LineSmoothness: 2 + m_LineSegmentDistance: 3 + m_CicleSmoothness: 2 + m_VisualMapTriangeLen: 20 + m_PieTooltipExtraRadius: 8 + m_PieSelectedOffset: 8 + m_Grid: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Left: 50 + m_Right: 30 + m_Top: 50 + m_Bottom: 30 + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_XAxises: + - m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 1 + m_MinMaxType: 0 + m_Min: 0 + m_Max: 0 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 1 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: + - x1 + - x2 + - x3 + - x4 + - x5 + m_AxisLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_OnZero: 1 + m_Width: 0.7 + m_Symbol: 0 + m_SymbolWidth: 10 + m_SymbolHeight: 15 + m_SymbolOffset: -5 + m_SymbolDent: 3 + m_AxisName: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_Offset: {x: 0, y: 0} + m_Rotate: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_AxisTick: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_Length: 5 + m_Width: 0 + m_AxisLabel: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Rotate: 0 + m_Margin: 8 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 1 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: '...' + m_SplitLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Interval: 0 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 1 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_Width: 0.7 + m_Opacity: 1 + m_SplitArea: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: + - {r: 0.98039216, g: 0.98039216, b: 0.98039216, a: 0.3019608} + - {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.3019608} + - m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Type: 1 + m_MinMaxType: 0 + m_Min: 0 + m_Max: 0 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 1 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: [] + m_AxisLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_OnZero: 1 + m_Width: 0.7 + m_Symbol: 0 + m_SymbolWidth: 10 + m_SymbolHeight: 15 + m_SymbolOffset: -5 + m_SymbolDent: 3 + m_AxisName: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_Offset: {x: 0, y: 0} + m_Rotate: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_AxisTick: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_Length: 5 + m_Width: 0 + m_AxisLabel: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Rotate: 0 + m_Margin: 8 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 1 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: '...' + m_SplitLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Interval: 0 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 1 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_Width: 0.7 + m_Opacity: 1 + m_SplitArea: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: + - {r: 0.98039216, g: 0.98039216, b: 0.98039216, a: 0.3019608} + - {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.3019608} + m_YAxises: + - m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_MinMaxType: 0 + m_Min: 0 + m_Max: 0 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 0 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: [] + m_AxisLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_OnZero: 1 + m_Width: 0.7 + m_Symbol: 0 + m_SymbolWidth: 10 + m_SymbolHeight: 15 + m_SymbolOffset: -5 + m_SymbolDent: 3 + m_AxisName: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_Offset: {x: 0, y: 0} + m_Rotate: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_AxisTick: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_Length: 5 + m_Width: 0 + m_AxisLabel: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Rotate: 0 + m_Margin: 8 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 0 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: '...' + m_SplitLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Interval: 0 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 1 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_Width: 0.7 + m_Opacity: 1 + m_SplitArea: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: + - {r: 0.98039216, g: 0.98039216, b: 0.98039216, a: 0.3019608} + - {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.3019608} + - m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Type: 0 + m_MinMaxType: 0 + m_Min: 0 + m_Max: 0 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 0 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: [] + m_AxisLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_OnZero: 1 + m_Width: 0.7 + m_Symbol: 0 + m_SymbolWidth: 10 + m_SymbolHeight: 15 + m_SymbolOffset: -5 + m_SymbolDent: 3 + m_AxisName: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_Offset: {x: 0, y: 0} + m_Rotate: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_AxisTick: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_Length: 5 + m_Width: 0 + m_AxisLabel: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Rotate: 0 + m_Margin: 8 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 0 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: '...' + m_SplitLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Interval: 0 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 1 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_Width: 0.7 + m_Opacity: 1 + m_SplitArea: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: + - {r: 0.98039216, g: 0.98039216, b: 0.98039216, a: 0.3019608} + - {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.3019608} + m_DataZoom: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 0 + m_FilterMode: 3 + m_XAxisIndex: 0 + m_YAxisIndex: 0 + m_SupportInside: 0 + m_SupportSlider: 0 + m_SupportSelect: 0 + m_ShowDataShadow: 1 + m_ShowDetail: 0 + m_ZoomLock: 0 + m_Realtime: 0 + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_Height: 0 + m_Bottom: 10 + m_RangeMode: 0 + m_Start: 30 + m_End: 70 + m_StartValue: 0 + m_EndValue: 0 + m_MinShowNum: 1 + m_ScrollSensitivity: 10 + m_FontSize: 18 + m_FontStyle: 0 + m_VisualMap: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 1 + m_Show: 0 + m_Type: 0 + m_Direction: 2 + m_SelectedMode: 0 + m_Min: 0 + m_Max: 90 + m_Range: + - 0 + - 100 + m_Text: + - + - + m_TextGap: + - 10 + - 10 + m_SplitNumber: 5 + m_Calculable: 0 + m_Realtime: 1 + m_ItemWidth: 20 + m_ItemHeight: 140 + m_BorderWidth: 0 + m_Dimension: -1 + m_HoverLink: 1 + m_AutoMinMax: 1 + m_Orient: 0 + m_Location: + m_JsonData: + m_DataFromJson: 0 + m_Align: 7 + m_Left: 5 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_InRange: + - {r: 0, g: 0, b: 1, a: 1} + - {r: 1, g: 0, b: 0, a: 1} + m_OutOfRange: [] --- !u!1 &93148952 GameObject: m_ObjectHideFlags: 0 @@ -41764,6 +44572,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 93873860} +--- !u!1 &93910005 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 93910006} + - component: {fileID: 93910008} + - component: {fileID: 93910007} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &93910006 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 93910005} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 2141965504} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &93910007 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 93910005} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &93910008 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 93910005} --- !u!1 &93979343 GameObject: m_ObjectHideFlags: 1 @@ -41787,7 +44663,7 @@ RectTransform: m_GameObject: {fileID: 93979343} 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: 1959210922} - {fileID: 1209022009} @@ -44722,6 +47598,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 100754591} +--- !u!1 &100823665 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 100823666} + - component: {fileID: 100823668} + - component: {fileID: 100823667} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &100823666 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 100823665} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1005660355} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &100823667 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 100823665} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &100823668 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 100823665} --- !u!1 &100855411 GameObject: m_ObjectHideFlags: 1 @@ -45108,6 +48058,41 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &102760327 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 102760328} + m_Layer: 0 + m_Name: label_1_1_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &102760328 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 102760327} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 723020417} + - {fileID: 901824680} + m_Father: {fileID: 1574269530} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &102819812 GameObject: m_ObjectHideFlags: 0 @@ -48272,6 +51257,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 108914604} +--- !u!1 &109150040 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 109150041} + m_Layer: 0 + m_Name: label_0_5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &109150041 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 109150040} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 872795482} + - {fileID: 1821964795} + m_Father: {fileID: 1574269530} + m_RootOrder: 19 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &109329085 GameObject: m_ObjectHideFlags: 0 @@ -49081,7 +52101,7 @@ RectTransform: m_GameObject: {fileID: 111198442} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 1254878932} - {fileID: 785952566} @@ -49489,10 +52509,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -49797,6 +52813,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -49850,6 +52867,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -49947,6 +52965,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -50001,6 +53020,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -50092,6 +53112,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -50146,6 +53167,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -50237,6 +53259,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -50291,6 +53314,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -50382,6 +53406,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -50436,6 +53461,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -50527,6 +53553,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -50581,6 +53608,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -50672,6 +53700,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -50726,6 +53755,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -50817,6 +53847,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -50871,6 +53902,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -50962,6 +53994,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -51016,6 +54049,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -51107,6 +54141,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -51161,6 +54196,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -51252,6 +54288,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -51306,6 +54343,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -51397,6 +54435,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -51451,6 +54490,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -51541,6 +54581,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -51595,6 +54636,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -51685,6 +54727,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -51739,6 +54782,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -51829,6 +54873,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -51883,6 +54928,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -51973,6 +55019,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -52027,6 +55074,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -52117,6 +55165,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -52171,6 +55220,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -52261,6 +55311,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -52315,6 +55366,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -52405,6 +55457,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -52459,6 +55512,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -52549,6 +55603,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -52603,6 +55658,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -52693,6 +55749,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -52747,6 +55804,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -52837,6 +55895,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -52891,6 +55950,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -52981,6 +56041,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -53035,6 +56096,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -53125,6 +56187,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -53179,6 +56242,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -53269,6 +56333,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -53323,6 +56388,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -53413,6 +56479,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -53467,6 +56534,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -53557,6 +56625,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -53611,6 +56680,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -53701,6 +56771,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -53755,6 +56826,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -53845,6 +56917,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -53899,6 +56972,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -53989,6 +57063,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -54043,6 +57118,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -54133,6 +57209,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -54187,6 +57264,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -54277,6 +57355,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -54331,6 +57410,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -54596,6 +57676,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -54649,6 +57730,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -54746,6 +57828,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -54800,6 +57883,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -54891,6 +57975,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -54945,6 +58030,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -55036,6 +58122,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -55090,6 +58177,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -55181,6 +58269,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -55235,6 +58324,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -55326,6 +58416,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -55380,6 +58471,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -55471,6 +58563,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -55525,6 +58618,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -55616,6 +58710,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -55670,6 +58765,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -55761,6 +58857,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -55815,6 +58912,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -55906,6 +59004,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -55960,6 +59059,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -56051,6 +59151,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -56105,6 +59206,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -56196,6 +59298,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -56250,6 +59353,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -56340,6 +59444,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -56394,6 +59499,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -56484,6 +59590,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -56538,6 +59645,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -56628,6 +59736,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -56682,6 +59791,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -56772,6 +59882,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -56826,6 +59937,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -56916,6 +60028,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -56970,6 +60083,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -57060,6 +60174,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -57114,6 +60229,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -57204,6 +60320,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -57258,6 +60375,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -57348,6 +60466,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -57402,6 +60521,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -57492,6 +60612,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -57546,6 +60667,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -57636,6 +60758,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -57690,6 +60813,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -57780,6 +60904,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -57834,6 +60959,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -57924,6 +61050,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -57978,6 +61105,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -58068,6 +61196,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -58122,6 +61251,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -58212,6 +61342,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -58266,6 +61397,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -58356,6 +61488,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -58410,6 +61543,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -58500,6 +61634,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -58554,6 +61689,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -58644,6 +61780,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -58698,6 +61835,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -58788,6 +61926,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -58842,6 +61981,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -58932,6 +62072,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -58986,6 +62127,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -59076,6 +62218,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -59130,6 +62273,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -59411,6 +62555,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -59464,6 +62609,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -59561,6 +62707,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -59615,6 +62762,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -59706,6 +62854,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -59760,6 +62909,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -59851,6 +63001,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -59905,6 +63056,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -59996,6 +63148,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -60050,6 +63203,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -60141,6 +63295,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -60195,6 +63350,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -60286,6 +63442,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -60340,6 +63497,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -60431,6 +63589,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -60485,6 +63644,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -60576,6 +63736,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -60630,6 +63791,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -60721,6 +63883,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -60775,6 +63938,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -60866,6 +64030,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -60920,6 +64085,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -61011,6 +64177,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -61065,6 +64232,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -61155,6 +64323,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -61209,6 +64378,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -61299,6 +64469,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -61353,6 +64524,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -61443,6 +64615,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -61497,6 +64670,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -61587,6 +64761,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -61641,6 +64816,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -61731,6 +64907,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -61785,6 +64962,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -61875,6 +65053,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -61929,6 +65108,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -62019,6 +65199,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -62073,6 +65254,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -62163,6 +65345,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -62217,6 +65400,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -62307,6 +65491,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -62361,6 +65546,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -62451,6 +65637,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -62505,6 +65692,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -62595,6 +65783,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -62649,6 +65838,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -62739,6 +65929,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -62793,6 +65984,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -62883,6 +66075,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -62937,6 +66130,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -63027,6 +66221,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -63081,6 +66276,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -63171,6 +66367,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -63225,6 +66422,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -63315,6 +66513,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -63369,6 +66568,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -63459,6 +66659,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -63513,6 +66714,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -63603,6 +66805,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -63657,6 +66860,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -63747,6 +66951,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -63801,6 +67006,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -63891,6 +67097,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -63945,6 +67152,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -64042,6 +67250,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -64096,6 +67305,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -64186,6 +67396,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -64240,6 +67451,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -64330,6 +67542,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -64384,6 +67597,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -64474,6 +67688,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -64528,6 +67743,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -64618,6 +67834,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -64672,6 +67889,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -64762,6 +67980,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -64816,6 +68035,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -64906,6 +68126,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -64960,6 +68181,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -65050,6 +68272,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -65104,6 +68327,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -65194,6 +68418,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -65248,6 +68473,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -65338,6 +68564,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -65392,6 +68619,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -65482,6 +68710,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -65536,6 +68765,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -65626,6 +68856,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -65680,6 +68911,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -65770,6 +69002,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -65824,6 +69057,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -65914,6 +69148,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -65968,6 +69203,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -66058,6 +69294,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -66112,6 +69349,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -66202,6 +69440,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -66256,6 +69495,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -66346,6 +69586,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -66400,6 +69641,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -66490,6 +69732,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -66544,6 +69787,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -66634,6 +69878,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -66688,6 +69933,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -66778,6 +70024,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -66832,6 +70079,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -66922,6 +70170,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -66976,6 +70225,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -67066,6 +70316,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -67120,6 +70371,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -67210,6 +70462,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -67264,6 +70517,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -67354,6 +70608,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -67408,6 +70663,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -67498,6 +70754,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -67552,6 +70809,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -67642,6 +70900,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -67696,6 +70955,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -67786,6 +71046,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -67840,6 +71101,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -67930,6 +71192,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -67984,6 +71247,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -68074,6 +71338,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -68128,6 +71393,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -68218,6 +71484,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -68272,6 +71539,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -68721,6 +71989,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -68741,6 +72010,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -69487,7 +72757,7 @@ RectTransform: m_GameObject: {fileID: 113668398} 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: 139779010} - {fileID: 2085845717} @@ -70981,6 +74251,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 117662068} +--- !u!1 &117877180 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 117877181} + - component: {fileID: 117877183} + - component: {fileID: 117877182} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &117877181 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 117877180} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1568266774} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &117877182 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 117877180} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &117877183 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 117877180} --- !u!1 &118209924 GameObject: m_ObjectHideFlags: 1 @@ -71177,7 +74515,7 @@ RectTransform: m_GameObject: {fileID: 118692224} 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: 598607045} - {fileID: 1805377687} @@ -71815,7 +75153,7 @@ RectTransform: m_GameObject: {fileID: 120866519} 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: 713565272} - {fileID: 1094353747} @@ -73048,10 +76386,10 @@ RectTransform: m_Father: {fileID: 191364310} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -916} - m_SizeDelta: {x: 584, y: 300} + 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, y: 1} --- !u!114 &124833370 MonoBehaviour: @@ -73066,7 +76404,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 + m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] @@ -73255,10 +76593,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -73550,6 +76884,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -73603,6 +76938,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -73700,6 +77036,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -73754,6 +77091,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -73839,6 +77177,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -73893,6 +77232,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -73978,6 +77318,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -74032,6 +77373,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -74117,6 +77459,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -74171,6 +77514,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -74256,6 +77600,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -74310,6 +77655,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -74395,6 +77741,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -74449,6 +77796,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -74534,6 +77882,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -74588,6 +77937,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -74832,6 +78182,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -74885,6 +78236,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -74982,6 +78334,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -75036,6 +78389,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -75121,6 +78475,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -75175,6 +78530,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -75260,6 +78616,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -75314,6 +78671,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -75399,6 +78757,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -75453,6 +78812,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -75538,6 +78898,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -75592,6 +78953,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -75677,6 +79039,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -75731,6 +79094,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -75816,6 +79180,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -75870,6 +79235,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -76114,6 +79480,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -76167,6 +79534,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -76264,6 +79632,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -76318,6 +79687,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -76403,6 +79773,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -76457,6 +79828,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -76542,6 +79914,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -76596,6 +79969,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -76681,6 +80055,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -76735,6 +80110,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -76820,6 +80196,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -76874,6 +80251,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -76959,6 +80337,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -77013,6 +80392,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -77098,6 +80478,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -77152,6 +80533,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -77396,6 +80778,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -77449,6 +80832,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -77546,6 +80930,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -77600,6 +80985,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -77685,6 +81071,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -77739,6 +81126,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -77824,6 +81212,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -77878,6 +81267,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -77963,6 +81353,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -78017,6 +81408,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -78102,6 +81494,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -78156,6 +81549,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -78241,6 +81635,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -78295,6 +81690,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -78380,6 +81776,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -78434,6 +81831,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -78678,6 +82076,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -78731,6 +82130,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -78828,6 +82228,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -78882,6 +82283,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -78967,6 +82369,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -79021,6 +82424,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -79106,6 +82510,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -79160,6 +82565,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -79245,6 +82651,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -79299,6 +82706,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -79384,6 +82792,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -79438,6 +82847,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -79523,6 +82933,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -79577,6 +82988,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -79662,6 +83074,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -79716,6 +83129,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -80171,6 +83585,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -80191,6 +83606,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -80641,6 +84057,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 126039828} +--- !u!1 &126087303 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 126087304} + - component: {fileID: 126087306} + - component: {fileID: 126087305} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &126087304 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 126087303} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1873266334} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &126087305 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 126087303} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &126087306 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 126087303} --- !u!1 &126182274 GameObject: m_ObjectHideFlags: 0 @@ -80732,7 +84222,7 @@ RectTransform: m_GameObject: {fileID: 126382306} 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: 1254823148} - {fileID: 1831202093} @@ -81085,7 +84575,7 @@ RectTransform: m_GameObject: {fileID: 127624813} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 33011420} - {fileID: 1120132868} @@ -81385,6 +84875,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 128071033} +--- !u!1 &128143238 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 128143239} + - component: {fileID: 128143241} + - component: {fileID: 128143240} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &128143239 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 128143238} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1057578491} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &128143240 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 128143238} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &128143241 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 128143238} --- !u!1 &128315030 GameObject: m_ObjectHideFlags: 0 @@ -81626,7 +85184,7 @@ RectTransform: m_GameObject: {fileID: 128620766} 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: 1567607684} - {fileID: 562859458} @@ -81661,7 +85219,7 @@ RectTransform: m_GameObject: {fileID: 128641795} 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: 1419109672} - {fileID: 1996823448} @@ -82965,6 +86523,41 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 12, y: 19.333332} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &132880767 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 132880768} + m_Layer: 0 + m_Name: label_1_3_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &132880768 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 132880767} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1284324835} + - {fileID: 2129928394} + m_Father: {fileID: 1574269530} + m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &132928071 GameObject: m_ObjectHideFlags: 0 @@ -84519,10 +88112,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -84811,6 +88400,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -84864,6 +88454,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -84961,6 +88552,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -85015,6 +88607,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -85100,6 +88693,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -85154,6 +88748,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -85239,6 +88834,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -85293,6 +88889,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -85378,6 +88975,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -85432,6 +89030,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -85517,6 +89116,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -85571,6 +89171,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -85656,6 +89257,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -85710,6 +89312,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -85954,6 +89557,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -86007,6 +89611,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -86104,6 +89709,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -86158,6 +89764,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -86243,6 +89850,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -86297,6 +89905,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -86382,6 +89991,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -86436,6 +90046,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -86521,6 +90132,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -86575,6 +90187,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -86660,6 +90273,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -86714,6 +90328,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -86799,6 +90414,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -86853,6 +90469,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -87307,6 +90924,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -87327,6 +90945,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -87550,6 +91169,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 137963547} +--- !u!1 &138035054 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 138035055} + m_Layer: 0 + m_Name: label_1_6_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &138035055 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 138035054} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 909266513} + - {fileID: 1494281415} + m_Father: {fileID: 960174449} + m_RootOrder: 13 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &138292119 GameObject: m_ObjectHideFlags: 0 @@ -90489,7 +94143,7 @@ RectTransform: m_GameObject: {fileID: 146066450} 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: 1187623844} - {fileID: 618108850} @@ -91325,10 +94979,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -91616,6 +95266,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -91669,6 +95320,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -91766,6 +95418,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -91820,6 +95473,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -91905,6 +95559,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -91959,6 +95614,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -92044,6 +95700,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -92098,6 +95755,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -92183,6 +95841,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -92237,6 +95896,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -92322,6 +95982,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -92376,6 +96037,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -92461,6 +96123,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -92515,6 +96178,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -92600,6 +96264,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -92654,6 +96319,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -93109,6 +96775,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -93129,6 +96796,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -93823,6 +97491,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &149025930 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 149025931} + - component: {fileID: 149025933} + - component: {fileID: 149025932} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &149025931 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 149025930} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1057949150} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &149025932 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 149025930} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &149025933 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 149025930} --- !u!1 &149055287 GameObject: m_ObjectHideFlags: 0 @@ -98350,6 +102092,74 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 310} m_Pivot: {x: 0, y: 1} +--- !u!1 &161096445 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 161096446} + - component: {fileID: 161096448} + - component: {fileID: 161096447} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &161096446 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 161096445} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1323130069} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &161096447 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 161096445} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &161096448 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 161096445} --- !u!1 &161184053 GameObject: m_ObjectHideFlags: 0 @@ -100281,6 +104091,110 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 167156045} +--- !u!1 &167300116 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 167300117} + m_Layer: 0 + m_Name: label_2_5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &167300117 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 167300116} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 926071833} + - {fileID: 2138240373} + m_Father: {fileID: 1969376537} + m_RootOrder: 33 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &167349220 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 167349221} + - component: {fileID: 167349223} + - component: {fileID: 167349222} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &167349221 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 167349220} + m_LocalRotation: {x: -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: 342261717} + m_Father: {fileID: 1665609509} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0, y: 1} +--- !u!114 &167349222 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 167349220} + 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.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374} + m_RaycastTarget: 0 + 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 &167349223 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 167349220} --- !u!1 &167440077 GameObject: m_ObjectHideFlags: 0 @@ -100417,6 +104331,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 167633780} +--- !u!1 &168679408 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 168679409} + - component: {fileID: 168679411} + - component: {fileID: 168679410} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &168679409 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 168679408} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 842420271} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &168679410 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 168679408} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &168679411 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 168679408} --- !u!1 &168708492 GameObject: m_ObjectHideFlags: 0 @@ -100543,7 +104531,7 @@ RectTransform: m_GameObject: {fileID: 168875578} 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: 1934843274} - {fileID: 29142410} @@ -101265,6 +105253,41 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &170164531 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 170164532} + m_Layer: 0 + m_Name: label_2_4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &170164532 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 170164531} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 336154631} + - {fileID: 1419997650} + m_Father: {fileID: 960174449} + m_RootOrder: 32 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &170194480 GameObject: m_ObjectHideFlags: 0 @@ -101477,6 +105500,80 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &170637348 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 170637349} + - component: {fileID: 170637351} + - component: {fileID: 170637350} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &170637349 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 170637348} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 32373140} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &170637350 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 170637348} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &170637351 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 170637348} --- !u!1 &170670419 GameObject: m_ObjectHideFlags: 0 @@ -104310,6 +108407,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 176743812} +--- !u!1 &176863572 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 176863573} + - component: {fileID: 176863575} + - component: {fileID: 176863574} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &176863573 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 176863572} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1459118359} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &176863574 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 176863572} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &176863575 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 176863572} --- !u!1 &176877519 GameObject: m_ObjectHideFlags: 0 @@ -105063,6 +109228,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 178942756} +--- !u!1 &179170838 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 179170839} + m_Layer: 0 + m_Name: label_2_2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &179170839 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 179170838} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 516190404} + - {fileID: 1677325096} + m_Father: {fileID: 1969376537} + m_RootOrder: 30 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &179285435 GameObject: m_ObjectHideFlags: 0 @@ -105559,6 +109759,154 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 180021948} +--- !u!1 &180285396 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 180285397} + - component: {fileID: 180285399} + - component: {fileID: 180285398} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &180285397 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 180285396} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1845826814} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &180285398 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 180285396} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &180285399 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 180285396} +--- !u!1 &180492457 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 180492458} + - component: {fileID: 180492460} + - component: {fileID: 180492459} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &180492458 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 180492457} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1311051468} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &180492459 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 180492457} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &180492460 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 180492457} --- !u!1 &180589781 GameObject: m_ObjectHideFlags: 0 @@ -106364,7 +110712,7 @@ RectTransform: m_GameObject: {fileID: 181860399} 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: 98548948} - {fileID: 391548200} @@ -106485,6 +110833,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 182041899} +--- !u!1 &182194462 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 182194463} + - component: {fileID: 182194465} + - component: {fileID: 182194464} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &182194463 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 182194462} + m_LocalRotation: {x: 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: 91286058} + 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: 1, y: 1} +--- !u!114 &182194464 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 182194462} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &182194465 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 182194462} --- !u!1 &182534250 GameObject: m_ObjectHideFlags: 0 @@ -106841,6 +111263,80 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &183460937 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 183460938} + - component: {fileID: 183460940} + - component: {fileID: 183460939} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &183460938 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 183460937} + m_LocalRotation: {x: 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: 1513382014} + 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: 1, y: 1} +--- !u!114 &183460939 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 183460937} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &183460940 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 183460937} --- !u!1 &183475946 GameObject: m_ObjectHideFlags: 0 @@ -107047,7 +111543,7 @@ RectTransform: m_GameObject: {fileID: 183863814} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 674418912} m_Father: {fileID: 1172973087} @@ -107161,6 +111657,80 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &184877919 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 184877920} + - component: {fileID: 184877922} + - component: {fileID: 184877921} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &184877920 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 184877919} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1183826487} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &184877921 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 184877919} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &184877922 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 184877919} --- !u!1 &184932092 GameObject: m_ObjectHideFlags: 0 @@ -107617,6 +112187,41 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &185924442 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 185924443} + m_Layer: 0 + m_Name: label_1_4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &185924443 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 185924442} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 2022685419} + - {fileID: 1955760424} + m_Father: {fileID: 1969376537} + m_RootOrder: 25 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &185987066 GameObject: m_ObjectHideFlags: 0 @@ -109221,7 +113826,7 @@ RectTransform: m_GameObject: {fileID: 189853732} 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: 477455442} - {fileID: 718229901} @@ -109691,7 +114296,7 @@ GameObject: m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 0 + m_IsActive: 1 --- !u!224 &191364310 RectTransform: m_ObjectHideFlags: 0 @@ -109717,13 +114322,16 @@ RectTransform: - {fileID: 1481638111} - {fileID: 358352446} - {fileID: 1923450786} + - {fileID: 92764070} + - {fileID: 297285224} + - {fileID: 2066464034} m_Father: {fileID: 1621547891} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} m_AnchoredPosition: {x: 0, y: 0.000002203305} - m_SizeDelta: {x: 1180, y: 2440} + m_SizeDelta: {x: 1180, y: 2740} m_Pivot: {x: 0, y: 1} --- !u!114 &191364311 MonoBehaviour: @@ -113572,6 +118180,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 201751818} +--- !u!1 &201898323 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 201898324} + - component: {fileID: 201898326} + - component: {fileID: 201898325} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &201898324 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 201898323} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 345470878} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &201898325 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 201898323} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &201898326 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 201898323} --- !u!1 &202328099 GameObject: m_ObjectHideFlags: 0 @@ -113892,6 +118574,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 203277027} +--- !u!1 &204277366 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 204277367} + - component: {fileID: 204277369} + - component: {fileID: 204277368} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &204277367 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 204277366} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1630297116} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &204277368 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 204277366} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &204277369 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 204277366} --- !u!1 &204331002 GameObject: m_ObjectHideFlags: 0 @@ -115967,7 +120723,7 @@ RectTransform: m_GameObject: {fileID: 210428821} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 1524551273} m_Father: {fileID: 1934324170} @@ -116761,6 +121517,80 @@ RectTransform: m_AnchoredPosition: {x: 10.916687, y: -74.14285} m_SizeDelta: {x: 12, y: 19.333332} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &212840861 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 212840862} + - component: {fileID: 212840864} + - component: {fileID: 212840863} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &212840862 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 212840861} + m_LocalRotation: {x: 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: 1977688062} + 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: 1, y: 1} +--- !u!114 &212840863 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 212840861} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &212840864 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 212840861} --- !u!1 &212988609 GameObject: m_ObjectHideFlags: 1 @@ -118097,6 +122927,18 @@ MonoBehaviour: m_Calls: [] m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - 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 &215911819 MonoBehaviour: @@ -118117,8 +122959,8 @@ MonoBehaviour: m_SelectOnRight: {fileID: 0} m_Transition: 1 m_Colors: - m_NormalColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} - m_HighlightedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} + m_NormalColor: {r: 0.16078432, g: 0.23529412, b: 0.33333334, a: 1} + m_HighlightedColor: {r: 0.05490196, g: 0.08235294, b: 0.12156863, a: 1} m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 @@ -118500,6 +123342,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 1} +--- !u!1 &217208734 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 217208735} + - component: {fileID: 217208737} + - component: {fileID: 217208736} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &217208735 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 217208734} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1638602735} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &217208736 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 217208734} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &217208737 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 217208734} --- !u!1 &217263923 GameObject: m_ObjectHideFlags: 0 @@ -119703,6 +124619,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 1} +--- !u!1 &220301004 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 220301005} + - component: {fileID: 220301007} + - component: {fileID: 220301006} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &220301005 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 220301004} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 867650150} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &220301006 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 220301004} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &220301007 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 220301004} --- !u!1 &220330404 GameObject: m_ObjectHideFlags: 0 @@ -120144,7 +125134,7 @@ RectTransform: m_GameObject: {fileID: 222901474} 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: 325628738} - {fileID: 1420558412} @@ -127012,6 +132002,18 @@ MonoBehaviour: m_Calls: [] m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - 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 &237218502 MonoBehaviour: @@ -127032,8 +132034,8 @@ MonoBehaviour: m_SelectOnRight: {fileID: 0} m_Transition: 1 m_Colors: - m_NormalColor: {r: 0.16078432, g: 0.23529412, b: 0.33333334, a: 1} - m_HighlightedColor: {r: 0.05490196, g: 0.08235294, b: 0.12156863, a: 1} + m_NormalColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} + m_HighlightedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} m_ColorMultiplier: 1 @@ -128377,7 +133379,7 @@ RectTransform: m_GameObject: {fileID: 240628713} 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: 785713740} - {fileID: 1881706841} @@ -129085,6 +134087,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 241924927} +--- !u!1 &242107319 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 242107320} + - component: {fileID: 242107322} + - component: {fileID: 242107321} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &242107320 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 242107319} + m_LocalRotation: {x: 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: 1770661788} + 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: 1, y: 1} +--- !u!114 &242107321 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 242107319} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &242107322 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 242107319} --- !u!1 &242221595 GameObject: m_ObjectHideFlags: 0 @@ -129480,6 +134556,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 243037060} +--- !u!1 &243077497 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 243077498} + - component: {fileID: 243077500} + - component: {fileID: 243077499} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &243077498 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 243077497} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1170337933} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &243077499 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 243077497} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &243077500 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 243077497} --- !u!1 &243150790 GameObject: m_ObjectHideFlags: 0 @@ -130058,6 +135208,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} m_Pivot: {x: 0, y: 1} +--- !u!1 &244691067 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 244691068} + - component: {fileID: 244691070} + - component: {fileID: 244691069} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &244691068 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 244691067} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1765407046} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &244691069 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 244691067} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &244691070 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 244691067} --- !u!1 &244727747 GameObject: m_ObjectHideFlags: 0 @@ -130496,10 +135720,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -130789,6 +136009,7 @@ MonoBehaviour: m_Show: 1 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -130842,6 +136063,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -130939,6 +136161,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -130993,6 +136216,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -131240,6 +136464,7 @@ MonoBehaviour: m_Show: 1 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -131293,6 +136518,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -131390,6 +136616,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -131444,6 +136671,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -131694,6 +136922,7 @@ MonoBehaviour: m_Show: 1 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -131747,6 +136976,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -131844,6 +137074,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -131898,6 +137129,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -132148,6 +137380,7 @@ MonoBehaviour: m_Show: 1 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -132201,6 +137434,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -132298,6 +137532,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -132352,6 +137587,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -135316,7 +140552,7 @@ RectTransform: m_GameObject: {fileID: 252393582} 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: 1732549645} - {fileID: 1576534359} @@ -136242,6 +141478,18 @@ MonoBehaviour: m_Calls: [] m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - 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 &252560113 MonoBehaviour: @@ -137795,7 +143043,7 @@ RectTransform: m_GameObject: {fileID: 257945977} 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: 1259636634} - {fileID: 1508551684} @@ -138077,7 +143325,7 @@ RectTransform: m_GameObject: {fileID: 258253535} 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: 1629793976} - {fileID: 1341818897} @@ -139153,10 +144401,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -139445,6 +144689,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -139498,6 +144743,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -139595,6 +144841,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -139649,6 +144896,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -139734,6 +144982,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -139788,6 +145037,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -139873,6 +145123,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -139927,6 +145178,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -140012,6 +145264,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -140066,6 +145319,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -140151,6 +145405,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -140205,6 +145460,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -140290,6 +145546,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -140344,6 +145601,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -140588,6 +145846,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -140641,6 +145900,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -140738,6 +145998,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -140792,6 +146053,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -140877,6 +146139,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -140931,6 +146194,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -141016,6 +146280,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -141070,6 +146335,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -141155,6 +146421,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -141209,6 +146476,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -141294,6 +146562,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -141348,6 +146617,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -141433,6 +146703,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -141487,6 +146758,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -141941,6 +147213,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -141961,6 +147234,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -142692,6 +147966,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 262526844} +--- !u!1 &262679618 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 262679619} + - component: {fileID: 262679621} + - component: {fileID: 262679620} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &262679619 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 262679618} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1164514050} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &262679620 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 262679618} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &262679621 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 262679618} --- !u!1 &263018210 GameObject: m_ObjectHideFlags: 0 @@ -148370,7 +153718,7 @@ RectTransform: m_GameObject: {fileID: 277717486} 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: 2079954647} - {fileID: 725136154} @@ -149286,7 +154634,7 @@ RectTransform: m_GameObject: {fileID: 279731285} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 785823241} - {fileID: 670593588} @@ -149582,6 +154930,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 279958505} +--- !u!1 &280088644 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 280088645} + - component: {fileID: 280088647} + - component: {fileID: 280088646} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &280088645 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 280088644} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 282324227} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &280088646 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 280088644} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &280088647 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 280088644} --- !u!1 &280289642 GameObject: m_ObjectHideFlags: 0 @@ -150073,7 +155489,7 @@ RectTransform: m_GameObject: {fileID: 281806470} 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: 408536198} m_RootOrder: 1 @@ -150435,6 +155851,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 282303925} +--- !u!1 &282324226 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 282324227} + m_Layer: 0 + m_Name: label_2_5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &282324227 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 282324226} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 280088645} + - {fileID: 1927692691} + m_Father: {fileID: 960174449} + m_RootOrder: 33 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &282430366 GameObject: m_ObjectHideFlags: 0 @@ -151557,7 +157008,7 @@ RectTransform: m_GameObject: {fileID: 285207338} 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: 202563973} - {fileID: 782634229} @@ -153821,6 +159272,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 290627407} +--- !u!1 &290712909 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 290712910} + - component: {fileID: 290712912} + - component: {fileID: 290712911} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &290712910 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 290712909} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 551222446} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &290712911 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 290712909} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &290712912 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 290712909} --- !u!1 &290818737 GameObject: m_ObjectHideFlags: 0 @@ -154714,6 +160239,44 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &292644575 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 292644576} + m_Layer: 0 + m_Name: axis_x2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &292644576 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 292644575} + m_LocalRotation: {x: -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: 443107754} + - {fileID: 1858632239} + - {fileID: 1222568508} + - {fileID: 1407917829} + - {fileID: 919094198} + m_Father: {fileID: 92764070} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} --- !u!1 &292865994 GameObject: m_ObjectHideFlags: 0 @@ -155346,6 +160909,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 294813011} +--- !u!1 &295111756 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 295111757} + - component: {fileID: 295111759} + - component: {fileID: 295111758} + m_Layer: 0 + m_Name: title_2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &295111757 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 295111756} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1253882584} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 12} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &295111758 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 295111756} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &295111759 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 295111756} --- !u!1 &295304998 GameObject: m_ObjectHideFlags: 0 @@ -155960,7 +161597,7 @@ RectTransform: m_GameObject: {fileID: 296835094} 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: 1208729982} - {fileID: 193879360} @@ -156144,6 +161781,1822 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 297127080} +--- !u!1 &297285223 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 297285224} + - component: {fileID: 297285225} + - component: {fileID: 297285226} + m_Layer: 5 + m_Name: linechart_gradient1 (1) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &297285224 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 297285223} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.99996465, y: 0.99996465, z: 0.99996465} + m_Children: + - {fileID: 1688440197} + - {fileID: 1747167663} + - {fileID: 768249169} + - {fileID: 1934019931} + - {fileID: 1212200373} + - {fileID: 1730376708} + - {fileID: 434931474} + - {fileID: 1574269530} + - {fileID: 2129889692} + - {fileID: 1417273492} + m_Father: {fileID: 191364310} + m_RootOrder: 16 + 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, y: 1} +--- !u!222 &297285225 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 297285223} +--- !u!114 &297285226 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 297285223} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b4f38bd00b4648c448cabfc167538f7c, 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_DebugMode: 0 + m_ChartName: + m_ThemeInfo: + m_JsonData: + m_DataFromJson: 0 + m_Theme: 0 + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_BackgroundColor: + serializedVersion: 2 + rgba: 4294967295 + m_TitleTextColor: + serializedVersion: 2 + rgba: 4283256145 + m_TitleSubTextColor: + serializedVersion: 2 + rgba: 4283256145 + m_LegendTextColor: + serializedVersion: 2 + rgba: 4283256145 + m_LegendUnableColor: + serializedVersion: 2 + rgba: 4291611852 + m_AxisTextColor: + serializedVersion: 2 + rgba: 4283256145 + m_AxisLineColor: + serializedVersion: 2 + rgba: 4283256145 + m_AxisSplitLineColor: + serializedVersion: 2 + rgba: 542200145 + m_TooltipBackgroundColor: + serializedVersion: 2 + rgba: 3360772433 + m_TooltipFlagAreaColor: + serializedVersion: 2 + rgba: 542200145 + m_TooltipTextColor: + serializedVersion: 2 + rgba: 4294967295 + m_TooltipLabelColor: + serializedVersion: 2 + rgba: 4280887593 + m_TooltipLineColor: + serializedVersion: 2 + rgba: 1680419113 + m_DataZoomTextColor: + serializedVersion: 2 + rgba: 4283256145 + m_DataZoomLineColor: + serializedVersion: 2 + rgba: 542200145 + m_DataZoomSelectedColor: + serializedVersion: 2 + rgba: 542200145 + m_VisualMapBackgroundColor: + serializedVersion: 2 + rgba: 542200145 + m_VisualMapBorderColor: + serializedVersion: 2 + rgba: 4291611852 + m_ColorPalette: + - serializedVersion: 2 + rgba: 4281415106 + - serializedVersion: 2 + rgba: 4283712815 + - serializedVersion: 2 + rgba: 4289241185 + - serializedVersion: 2 + rgba: 4284842708 + - serializedVersion: 2 + rgba: 4289644433 + - serializedVersion: 2 + rgba: 4286816116 + - serializedVersion: 2 + rgba: 4280452810 + - serializedVersion: 2 + rgba: 4288324285 + - serializedVersion: 2 + rgba: 4285821038 + - serializedVersion: 2 + rgba: 4285556052 + - serializedVersion: 2 + rgba: 4292070596 + m_CustomFont: {fileID: 0} + m_CustomBackgroundColor: + serializedVersion: 2 + rgba: 0 + m_CustomTitleTextColor: + serializedVersion: 2 + rgba: 0 + m_CustomTitleSubTextColor: + serializedVersion: 2 + rgba: 0 + m_CustomLegendTextColor: + serializedVersion: 2 + rgba: 0 + m_CustomLegendUnableColor: + serializedVersion: 2 + rgba: 0 + m_CustomAxisTextColor: + serializedVersion: 2 + rgba: 0 + m_CustomAxisLineColor: + serializedVersion: 2 + rgba: 0 + m_CustomAxisSplitLineColor: + serializedVersion: 2 + rgba: 0 + m_CustomTooltipBackgroundColor: + serializedVersion: 2 + rgba: 0 + m_CustomTooltipFlagAreaColor: + serializedVersion: 2 + rgba: 0 + m_CustomTooltipTextColor: + serializedVersion: 2 + rgba: 0 + m_CustomTooltipLabelColor: + serializedVersion: 2 + rgba: 0 + m_CustomTooltipLineColor: + serializedVersion: 2 + rgba: 0 + m_CustomDataZoomTextColor: + serializedVersion: 2 + rgba: 0 + m_CustomDataZoomLineColor: + serializedVersion: 2 + rgba: 0 + m_CustomDataZoomSelectedColor: + serializedVersion: 2 + rgba: 0 + m_CustomVisualMapBackgroundColor: + serializedVersion: 2 + rgba: 0 + m_CustomVisualMapBorderColor: + serializedVersion: 2 + rgba: 0 + m_CustomColorPalette: + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + m_Title: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Text: "X\u8F74\u6E10\u53D8" + m_TextStyle: + m_JsonData: + m_DataFromJson: 0 + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_LineSpacing: 1 + m_SubText: "\u901A\u8FC7VisualMap" + m_SubTextStyle: + m_JsonData: + m_DataFromJson: 0 + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_LineSpacing: 1 + m_ItemGap: 8 + m_Location: + m_JsonData: + m_DataFromJson: 0 + m_Align: 2 + m_Left: 0 + m_Right: 0 + m_Top: 5 + m_Bottom: 0 + m_Background: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Image: {fileID: 0} + m_ImageType: 1 + m_ImageColor: {r: 1, g: 1, b: 1, a: 1} + m_HideThemeBackgroundColor: 1 + m_Legend: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_SelectedMode: 0 + m_Orient: 0 + m_Location: + m_JsonData: + m_DataFromJson: 0 + m_Align: 2 + m_Left: 0 + m_Right: 0 + m_Top: 30 + m_Bottom: 0 + m_ItemWidth: 24 + m_ItemHeight: 12 + m_ItemGap: 10 + m_ItemAutoColor: 1 + m_Formatter: + m_TextStyle: + m_JsonData: + m_DataFromJson: 0 + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 2, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Data: [] + m_Icons: [] + m_Tooltip: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Formatter: + m_ItemFormatter: + m_TitleFormatter: + m_FixedWidth: 0 + m_FixedHeight: 0 + m_MinWidth: 0 + m_MinHeight: 0 + m_NumericFormatter: + m_PaddingLeftRight: 5 + m_PaddingTopBottom: 5 + m_IgnoreDataDefaultContent: '-' + m_AlwayShow: 0 + m_Offset: {x: 18, y: -25} + m_BackgroundImage: {fileID: 0} + m_TextStyle: + m_JsonData: + m_DataFromJson: 0 + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_LineSpacing: 1 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_Width: 0.7 + m_Opacity: 1 + m_Series: + m_JsonData: + m_DataFromJson: 0 + m_Series: + - m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Name: serie1 + m_Stack: + m_AxisIndex: 0 + m_RadarIndex: 0 + m_VesselIndex: 0 + m_MinShow: 0 + m_MaxShow: 0 + m_MaxCache: 0 + m_AreaStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Origin: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipHighlight: 0 + m_HighlightColor: {r: 0, g: 0, b: 0, a: 0} + m_HighlightToColor: {r: 0, g: 0, b: 0, a: 0} + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 2.5 + m_SelectedSize: 5 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_SampleDist: 0 + m_SampleType: 1 + m_SampleAverage: 0 + m_LineType: 1 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_Width: 0.8 + m_Opacity: 1 + m_BarType: 0 + m_BarPercentStack: 0 + m_BarWidth: 0.6 + m_BarGap: 0.3 + m_BarCategoryGap: 0.2 + m_BarZebraWidth: 4 + m_BarZebraGap: 2 + m_Min: 0 + m_Max: 0 + m_StartAngle: 0 + m_EndAngle: 0 + m_Clockwise: 1 + m_RoundCap: 0 + m_RingGap: 10 + m_SplitNumber: 0 + m_GaugeType: 0 + m_GaugeAxis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_AxisLine: + m_Show: 1 + m_Width: 15 + m_Opacity: 1 + m_BarColor: {r: 0, g: 0, b: 0, a: 0} + m_BarBackgroundColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_StageColor: + - m_Percent: 0.2 + m_Color: {r: 0.5686275, g: 0.78039217, b: 0.68235296, a: 1} + - m_Percent: 0.8 + m_Color: {r: 0.3882353, g: 0.5254902, b: 0.61960787, a: 1} + - m_Percent: 1 + m_Color: {r: 0.7607843, g: 0.20784314, b: 0.19215687, a: 1} + m_SplitLine: + m_Show: 1 + m_Length: 15 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_Width: 1.5 + m_Opacity: 1 + m_AxisTick: + m_Show: 1 + m_Length: 5 + m_SplitNumber: 5 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_Width: 1 + m_Opacity: 1 + m_AxisLabel: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_AxisLabelText: [] + runtimeStageAngle: [] + runtimeLabelPosition: [] + m_GaugePointer: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Length: 0.8 + m_Width: 15 + m_ClickOffset: 1 + m_RoseType: 0 + m_Space: 0 + m_Center: + - 0.5 + - 0.5 + m_Radius: + - 0 + - 80 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_Animation: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 1 + m_Easting: 0 + m_Threshold: 2000 + m_FadeInDuration: 1000 + m_FadeInDelay: 0 + m_FadeOutDuration: 1000 + m_FadeOutDelay: 0 + m_DataChangeEnable: 1 + m_DataChangeDuration: 500 + m_ActualDuration: 0 + m_CurrDetailProgress: 100.4 + m_DestDetailProgress: 503.6 + m_LineArrow: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Width: 10 + m_Height: 15 + m_Offset: 0 + m_Dent: 3 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_TitleStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_TextStyle: + m_JsonData: + m_DataFromJson: 0 + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_LineSpacing: 1 + m_ShowDataDimension: 1 + m_ShowDataName: 0 + m_ShowDataIcon: 0 + m_Clip: 0 + m_Ignore: 0 + m_IgnoreValue: 0 + m_ShowAsPositiveNumber: 0 + m_Large: 1 + m_LargeThreshold: 200 + m_AvoidLabelOverlap: 0 + m_WaveHeight: 10 + m_WaveLength: 20 + m_WaveSpeed: 5 + m_WaveOffset: 0 + m_RadarType: 0 + m_Data: + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 6 + m_SelectedSize: 10 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 0 + - 66 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 6 + m_SelectedSize: 10 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 1 + - 77 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 6 + m_SelectedSize: 10 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 2 + - 66 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 6 + m_SelectedSize: 10 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 3 + - 77 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 6 + m_SelectedSize: 10 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 4 + - 66 + m_Settings: + m_JsonData: + m_DataFromJson: 0 + m_LineSmoothStyle: 3 + m_LineSmoothness: 2 + m_LineSegmentDistance: 3 + m_CicleSmoothness: 2 + m_VisualMapTriangeLen: 20 + m_PieTooltipExtraRadius: 8 + m_PieSelectedOffset: 8 + m_Grid: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Left: 50 + m_Right: 30 + m_Top: 50 + m_Bottom: 30 + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_XAxises: + - m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 1 + m_MinMaxType: 0 + m_Min: 0 + m_Max: 0 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 1 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: + - x1 + - x2 + - x3 + - x4 + - x5 + m_AxisLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_OnZero: 1 + m_Width: 0.7 + m_Symbol: 0 + m_SymbolWidth: 10 + m_SymbolHeight: 15 + m_SymbolOffset: -5 + m_SymbolDent: 3 + m_AxisName: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_Offset: {x: 0, y: 0} + m_Rotate: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_AxisTick: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_Length: 5 + m_Width: 0 + m_AxisLabel: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Rotate: 0 + m_Margin: 8 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 1 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: '...' + m_SplitLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Interval: 0 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 1 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_Width: 0.7 + m_Opacity: 1 + m_SplitArea: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: + - {r: 0.98039216, g: 0.98039216, b: 0.98039216, a: 0.3019608} + - {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.3019608} + - m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Type: 1 + m_MinMaxType: 0 + m_Min: 0 + m_Max: 0 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 1 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: [] + m_AxisLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_OnZero: 1 + m_Width: 0.7 + m_Symbol: 0 + m_SymbolWidth: 10 + m_SymbolHeight: 15 + m_SymbolOffset: -5 + m_SymbolDent: 3 + m_AxisName: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_Offset: {x: 0, y: 0} + m_Rotate: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_AxisTick: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_Length: 5 + m_Width: 0 + m_AxisLabel: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Rotate: 0 + m_Margin: 8 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 1 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: '...' + m_SplitLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Interval: 0 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 1 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_Width: 0.7 + m_Opacity: 1 + m_SplitArea: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: + - {r: 0.98039216, g: 0.98039216, b: 0.98039216, a: 0.3019608} + - {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.3019608} + m_YAxises: + - m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_MinMaxType: 2 + m_Min: 0 + m_Max: 100 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 0 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: [] + m_AxisLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_OnZero: 1 + m_Width: 0.7 + m_Symbol: 0 + m_SymbolWidth: 10 + m_SymbolHeight: 15 + m_SymbolOffset: -5 + m_SymbolDent: 3 + m_AxisName: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_Offset: {x: 0, y: 0} + m_Rotate: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_AxisTick: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_Length: 5 + m_Width: 0 + m_AxisLabel: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Rotate: 0 + m_Margin: 8 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 0 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: '...' + m_SplitLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Interval: 0 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 1 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_Width: 0.7 + m_Opacity: 1 + m_SplitArea: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: + - {r: 0.98039216, g: 0.98039216, b: 0.98039216, a: 0.3019608} + - {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.3019608} + - m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Type: 0 + m_MinMaxType: 0 + m_Min: 0 + m_Max: 0 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 0 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: [] + m_AxisLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_OnZero: 1 + m_Width: 0.7 + m_Symbol: 0 + m_SymbolWidth: 10 + m_SymbolHeight: 15 + m_SymbolOffset: -5 + m_SymbolDent: 3 + m_AxisName: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_Offset: {x: 0, y: 0} + m_Rotate: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_AxisTick: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_Length: 5 + m_Width: 0 + m_AxisLabel: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Rotate: 0 + m_Margin: 8 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 0 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: '...' + m_SplitLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Interval: 0 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 1 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_Width: 0.7 + m_Opacity: 1 + m_SplitArea: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: + - {r: 0.98039216, g: 0.98039216, b: 0.98039216, a: 0.3019608} + - {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.3019608} + m_DataZoom: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 0 + m_FilterMode: 3 + m_XAxisIndex: 0 + m_YAxisIndex: 0 + m_SupportInside: 0 + m_SupportSlider: 0 + m_SupportSelect: 0 + m_ShowDataShadow: 1 + m_ShowDetail: 0 + m_ZoomLock: 0 + m_Realtime: 0 + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_Height: 0 + m_Bottom: 10 + m_RangeMode: 0 + m_Start: 30 + m_End: 70 + m_StartValue: 0 + m_EndValue: 0 + m_MinShowNum: 1 + m_ScrollSensitivity: 10 + m_FontSize: 18 + m_FontStyle: 0 + m_VisualMap: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 1 + m_Show: 0 + m_Type: 0 + m_Direction: 1 + m_SelectedMode: 0 + m_Min: 0 + m_Max: 5 + m_Range: + - 0 + - 100 + m_Text: + - + - + m_TextGap: + - 10 + - 10 + m_SplitNumber: 5 + m_Calculable: 0 + m_Realtime: 1 + m_ItemWidth: 20 + m_ItemHeight: 140 + m_BorderWidth: 0 + m_Dimension: -1 + m_HoverLink: 1 + m_AutoMinMax: 1 + m_Orient: 0 + m_Location: + m_JsonData: + m_DataFromJson: 0 + m_Align: 7 + m_Left: 5 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_InRange: + - {r: 0, g: 0, b: 1, a: 1} + - {r: 1, g: 0, b: 0, a: 1} + m_OutOfRange: [] --- !u!1 &297420529 GameObject: m_ObjectHideFlags: 0 @@ -157232,7 +164685,7 @@ RectTransform: m_GameObject: {fileID: 300972850} 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: 531967387} - {fileID: 1196060582} @@ -157751,7 +165204,7 @@ RectTransform: m_GameObject: {fileID: 302180100} 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: 1886465995} - {fileID: 413081934} @@ -158812,6 +166265,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 305400298} +--- !u!1 &305636700 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 305636701} + - component: {fileID: 305636703} + - component: {fileID: 305636702} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &305636701 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 305636700} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 561512801} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &305636702 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 305636700} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &305636703 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 305636700} --- !u!1 &305676257 GameObject: m_ObjectHideFlags: 0 @@ -159994,6 +167521,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 308503343} +--- !u!1 &308738036 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 308738037} + - component: {fileID: 308738039} + - component: {fileID: 308738038} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &308738037 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 308738036} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1272083834} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &308738038 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 308738036} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &308738039 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 308738036} --- !u!1 &308753776 GameObject: m_ObjectHideFlags: 0 @@ -160959,6 +168554,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 310691116} +--- !u!1 &310711340 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 310711341} + - component: {fileID: 310711343} + - component: {fileID: 310711342} + m_Layer: 0 + m_Name: axis_y24 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &310711341 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 310711340} + m_LocalRotation: {x: 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: 350111563} + 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: 562, y: 250} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &310711342 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 310711340} + 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: 0 + 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: +--- !u!222 &310711343 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 310711340} --- !u!1 &310898094 GameObject: m_ObjectHideFlags: 0 @@ -163169,6 +170838,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 316354769} +--- !u!1 &316917403 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 316917404} + - component: {fileID: 316917406} + - component: {fileID: 316917405} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &316917404 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 316917403} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 596980261} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &316917405 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 316917403} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &316917406 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 316917403} --- !u!1 &316950292 GameObject: m_ObjectHideFlags: 0 @@ -163587,7 +171324,7 @@ RectTransform: m_GameObject: {fileID: 317885265} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 2017360562} m_Father: {fileID: 1395806835} @@ -168260,6 +175997,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 331175872} +--- !u!1 &331280719 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 331280720} + - component: {fileID: 331280722} + - component: {fileID: 331280721} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &331280720 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 331280719} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1729109235} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &331280721 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 331280719} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &331280722 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 331280719} --- !u!1 &331297087 GameObject: m_ObjectHideFlags: 0 @@ -169603,6 +177408,74 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &336154630 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 336154631} + - component: {fileID: 336154633} + - component: {fileID: 336154632} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &336154631 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 336154630} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 170164532} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &336154632 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 336154630} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &336154633 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 336154630} --- !u!1 &336515604 GameObject: m_ObjectHideFlags: 0 @@ -171403,6 +179276,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 340778371} +--- !u!1 &340873957 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 340873958} + - component: {fileID: 340873960} + - component: {fileID: 340873959} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &340873958 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 340873957} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1849396351} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &340873959 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 340873957} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &340873960 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 340873957} --- !u!1 &340880177 GameObject: m_ObjectHideFlags: 0 @@ -171897,6 +179838,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 342174849} +--- !u!1 &342261716 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 342261717} + - component: {fileID: 342261719} + - component: {fileID: 342261718} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &342261717 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 342261716} + m_LocalRotation: {x: 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: 167349221} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 3, y: -3} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0, y: 1} +--- !u!114 &342261718 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 342261716} + 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: 0 + 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: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &342261719 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 342261716} --- !u!1 &342273304 GameObject: m_ObjectHideFlags: 0 @@ -172079,6 +180094,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: -20, y: -20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &342844496 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 342844497} + - component: {fileID: 342844499} + - component: {fileID: 342844498} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &342844497 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 342844496} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 795222399} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &342844498 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 342844496} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &342844499 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 342844496} --- !u!1 &343099983 GameObject: m_ObjectHideFlags: 0 @@ -172796,6 +180885,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 345302370} +--- !u!1 &345470877 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 345470878} + m_Layer: 0 + m_Name: label_0_6_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &345470878 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 345470877} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 201898324} + - {fileID: 373161770} + m_Father: {fileID: 1574269530} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &345967361 GameObject: m_ObjectHideFlags: 0 @@ -173083,6 +181207,41 @@ RectTransform: m_AnchoredPosition: {x: 38.725403, y: 59.10285} m_SizeDelta: {x: 20, y: 19.333332} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &346419770 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 346419771} + m_Layer: 0 + m_Name: label_2_3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &346419771 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 346419770} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1257374211} + - {fileID: 84989577} + m_Father: {fileID: 960174449} + m_RootOrder: 31 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &346660809 GameObject: m_ObjectHideFlags: 0 @@ -174265,6 +182424,44 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 350050288} +--- !u!1 &350111562 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 350111563} + m_Layer: 0 + m_Name: axis_y2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &350111563 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 350111562} + m_LocalRotation: {x: -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: 568896928} + - {fileID: 460783274} + - {fileID: 2082174656} + - {fileID: 1873499414} + - {fileID: 310711341} + m_Father: {fileID: 2066464034} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} --- !u!1 &350526524 GameObject: m_ObjectHideFlags: 0 @@ -174788,7 +182985,7 @@ RectTransform: m_GameObject: {fileID: 351218166} 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: 363472572} - {fileID: 135229960} @@ -176306,6 +184503,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 355419621} +--- !u!1 &355558052 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 355558053} + - component: {fileID: 355558055} + - component: {fileID: 355558054} + m_Layer: 0 + m_Name: axis_x2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &355558053 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 355558052} + m_LocalRotation: {x: 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: 1934019931} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 352.40002, y: -287} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &355558054 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 355558052} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x3 +--- !u!222 &355558055 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 355558052} --- !u!1 &355764764 GameObject: m_ObjectHideFlags: 0 @@ -177089,7 +185360,7 @@ RectTransform: m_GameObject: {fileID: 358077727} 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: 1013712970} - {fileID: 434856689} @@ -177288,10 +185559,10 @@ RectTransform: m_Father: {fileID: 191364310} m_RootOrder: 13 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -1828} - m_SizeDelta: {x: 584, y: 300} + 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, y: 1} --- !u!114 &358352447 MonoBehaviour: @@ -177306,7 +185577,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 + m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] @@ -177495,10 +185766,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -177787,6 +186054,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -177840,6 +186108,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -177937,6 +186206,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -177991,6 +186261,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -178076,6 +186347,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -178130,6 +186402,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -178215,6 +186488,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -178269,6 +186543,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -178354,6 +186629,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -178408,6 +186684,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -178493,6 +186770,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -178547,6 +186825,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -178632,6 +186911,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -178686,6 +186966,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -178771,6 +187052,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -178825,6 +187107,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -179069,6 +187352,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -179122,6 +187406,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -179219,6 +187504,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -179273,6 +187559,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -179358,6 +187645,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -179412,6 +187700,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -179497,6 +187786,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -179551,6 +187841,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -179636,6 +187927,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -179690,6 +187982,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -179775,6 +188068,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -179829,6 +188123,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -179914,6 +188209,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -179968,6 +188264,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -180053,6 +188350,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -180107,6 +188405,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -180351,6 +188650,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -180404,6 +188704,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -180501,6 +188802,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -180555,6 +188857,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -180640,6 +188943,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -180694,6 +188998,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -180779,6 +189084,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -180833,6 +189139,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -180918,6 +189225,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -180972,6 +189280,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -181057,6 +189366,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -181111,6 +189421,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -181196,6 +189507,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -181250,6 +189562,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -181335,6 +189648,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -181389,6 +189703,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -181844,6 +190159,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -181864,6 +190180,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -182589,6 +190906,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 359374701} +--- !u!1 &359754581 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 359754582} + m_Layer: 0 + m_Name: label_0_3_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &359754582 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 359754581} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1120553436} + - {fileID: 665215428} + m_Father: {fileID: 1574269530} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &359756668 GameObject: m_ObjectHideFlags: 0 @@ -184230,10 +192582,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -184523,6 +192871,7 @@ MonoBehaviour: m_Show: 1 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -184576,6 +192925,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -184673,6 +193023,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -184727,6 +193078,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -185314,6 +193666,74 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &363423512 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 363423513} + - component: {fileID: 363423515} + - component: {fileID: 363423514} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &363423513 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 363423512} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1815798207} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &363423514 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 363423512} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &363423515 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 363423512} --- !u!1 &363472571 GameObject: m_ObjectHideFlags: 0 @@ -185887,6 +194307,80 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &365764163 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 365764164} + - component: {fileID: 365764166} + - component: {fileID: 365764165} + m_Layer: 0 + m_Name: axis_x1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &365764164 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 365764163} + m_LocalRotation: {x: 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: 869298477} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 251.6, y: -287} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &365764165 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 365764163} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x2 +--- !u!222 &365764166 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 365764163} --- !u!1 &365927010 GameObject: m_ObjectHideFlags: 0 @@ -186268,6 +194762,74 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &366843629 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 366843630} + - component: {fileID: 366843632} + - component: {fileID: 366843631} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &366843630 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 366843629} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1552353045} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &366843631 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 366843629} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &366843632 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 366843629} --- !u!1 &367077069 GameObject: m_ObjectHideFlags: 0 @@ -186632,6 +195194,154 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 367460851} +--- !u!1 &367584585 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 367584586} + - component: {fileID: 367584588} + - component: {fileID: 367584587} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &367584586 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 367584585} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1464084637} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &367584587 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 367584585} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &367584588 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 367584585} +--- !u!1 &367687336 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 367687337} + - component: {fileID: 367687339} + - component: {fileID: 367687338} + m_Layer: 0 + m_Name: axis_y0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &367687337 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 367687336} + m_LocalRotation: {x: 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: 1216071423} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 30} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &367687338 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 367687336} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &367687339 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 367687336} --- !u!1 &367866059 GameObject: m_ObjectHideFlags: 0 @@ -187277,6 +195987,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 370232680} +--- !u!1 &370324311 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 370324312} + - component: {fileID: 370324314} + - component: {fileID: 370324313} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &370324312 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 370324311} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1469716240} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &370324313 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 370324311} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &370324314 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 370324311} --- !u!1 &370431231 GameObject: m_ObjectHideFlags: 0 @@ -187524,6 +196308,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 370624247} +--- !u!1 &371183033 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 371183034} + - component: {fileID: 371183036} + - component: {fileID: 371183035} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &371183034 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 371183033} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 9993739} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &371183035 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 371183033} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &371183036 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 371183033} --- !u!1 &371227434 GameObject: m_ObjectHideFlags: 0 @@ -188055,7 +196913,7 @@ RectTransform: m_GameObject: {fileID: 372013667} 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: 447551668} m_Father: {fileID: 517131343} @@ -188453,6 +197311,74 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &373161769 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 373161770} + - component: {fileID: 373161772} + - component: {fileID: 373161771} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &373161770 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 373161769} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 345470878} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &373161771 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 373161769} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &373161772 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 373161769} --- !u!1 &373484615 GameObject: m_ObjectHideFlags: 0 @@ -188704,6 +197630,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 373903548} +--- !u!1 &373920454 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 373920455} + - component: {fileID: 373920457} + - component: {fileID: 373920456} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &373920455 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 373920454} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1812311448} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &373920456 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 373920454} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &373920457 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 373920454} --- !u!1 &374094885 GameObject: m_ObjectHideFlags: 0 @@ -189808,6 +198802,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 377358237} +--- !u!1 &377368527 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 377368528} + - component: {fileID: 377368530} + - component: {fileID: 377368529} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &377368528 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 377368527} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 2068651475} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &377368529 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 377368527} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &377368530 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 377368527} --- !u!1 &377459084 GameObject: m_ObjectHideFlags: 0 @@ -192164,7 +201226,7 @@ RectTransform: m_GameObject: {fileID: 385220452} 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: 1674745765} - {fileID: 1783622131} @@ -192669,7 +201731,7 @@ RectTransform: m_GameObject: {fileID: 386982169} 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: 1892107895} - {fileID: 928225616} @@ -192894,6 +201956,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 387208781} +--- !u!1 &387325685 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 387325686} + m_Layer: 0 + m_Name: label_0_5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &387325686 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 387325685} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1774145740} + - {fileID: 568058315} + m_Father: {fileID: 1969376537} + m_RootOrder: 19 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &387337075 GameObject: m_ObjectHideFlags: 1 @@ -193930,7 +203027,7 @@ RectTransform: m_GameObject: {fileID: 390377901} 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: 957243862} - {fileID: 1201659210} @@ -194968,7 +204065,7 @@ RectTransform: m_GameObject: {fileID: 393282090} 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: 920129650} - {fileID: 1713441744} @@ -198195,6 +207292,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 402610251} +--- !u!1 &402645807 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 402645808} + - component: {fileID: 402645810} + - component: {fileID: 402645809} + m_Layer: 0 + m_Name: axis_y20 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &402645808 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 402645807} + m_LocalRotation: {x: 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: 1020874435} + 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: 562, y: 30} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &402645809 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 402645807} + 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: 0 + 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: +--- !u!222 &402645810 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 402645807} --- !u!1 &402701346 GameObject: m_ObjectHideFlags: 0 @@ -198292,7 +207463,7 @@ RectTransform: m_GameObject: {fileID: 402726533} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 1934324170} m_RootOrder: 1 @@ -199808,7 +208979,7 @@ RectTransform: m_GameObject: {fileID: 406691108} 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: 782651941} m_RootOrder: 1 @@ -200737,10 +209908,10 @@ RectTransform: m_Father: {fileID: 191364310} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -1220} - m_SizeDelta: {x: 584, y: 300} + 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, y: 1} --- !u!114 &408536199 MonoBehaviour: @@ -200755,7 +209926,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 + m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] @@ -200944,10 +210115,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -201236,6 +210403,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -201289,6 +210457,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -201386,6 +210555,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -201440,6 +210610,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -201525,6 +210696,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -201579,6 +210751,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -201664,6 +210837,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -201718,6 +210892,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -201803,6 +210978,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -201857,6 +211033,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -201942,6 +211119,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -201996,6 +211174,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -202081,6 +211260,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -202135,6 +211315,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -202220,6 +211401,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -202274,6 +211456,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -202518,6 +211701,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -202571,6 +211755,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -202668,6 +211853,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -202722,6 +211908,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -202807,6 +211994,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -202861,6 +212049,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -202946,6 +212135,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -203000,6 +212190,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -203085,6 +212276,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -203139,6 +212331,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -203224,6 +212417,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -203278,6 +212472,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -203363,6 +212558,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -203417,6 +212613,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -203502,6 +212699,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -203556,6 +212754,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -204011,6 +213210,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -204031,6 +213231,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -206048,6 +215249,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 413163469} +--- !u!1 &413185096 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 413185097} + - component: {fileID: 413185099} + - component: {fileID: 413185098} + m_Layer: 0 + m_Name: axis_x2_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &413185097 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 413185096} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 500275906} + m_Father: {fileID: 1665609509} + 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: 300} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &413185098 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 413185096} + 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.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374} + 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 &413185099 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 413185096} --- !u!1 &413298171 GameObject: m_ObjectHideFlags: 0 @@ -207712,6 +216982,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 416862345} +--- !u!1 &416935374 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 416935375} + - component: {fileID: 416935377} + - component: {fileID: 416935376} + m_Layer: 0 + m_Name: axis_x0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &416935375 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 416935374} + m_LocalRotation: {x: 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: 811752472} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 150.8, y: -287} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &416935376 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 416935374} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x1 +--- !u!222 &416935377 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 416935374} --- !u!1 &417058224 GameObject: m_ObjectHideFlags: 0 @@ -211712,10 +221056,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -212010,6 +221350,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -212063,6 +221404,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -212160,6 +221502,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -212214,6 +221557,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -212299,6 +221643,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -212353,6 +221698,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -212438,6 +221784,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -212492,6 +221839,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -212577,6 +221925,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -212631,6 +221980,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -212716,6 +222066,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -212770,6 +222121,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -215498,6 +224850,44 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 434856688} +--- !u!1 &434931473 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 434931474} + m_Layer: 0 + m_Name: axis_y2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &434931474 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 434931473} + m_LocalRotation: {x: -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: 734705505} + - {fileID: 1776131346} + - {fileID: 535589648} + - {fileID: 2035907002} + - {fileID: 1665409577} + m_Father: {fileID: 297285224} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} --- !u!1 &435190019 GameObject: m_ObjectHideFlags: 0 @@ -218325,6 +227715,41 @@ RectTransform: m_AnchoredPosition: {x: -141.91666, y: 104.14285} m_SizeDelta: {x: 12, y: 19.333332} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &442524935 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 442524936} + m_Layer: 0 + m_Name: label_1_6_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &442524936 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 442524935} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1231369414} + - {fileID: 1549882563} + m_Father: {fileID: 1574269530} + m_RootOrder: 13 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &442808207 GameObject: m_ObjectHideFlags: 0 @@ -218393,6 +227818,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 442808207} +--- !u!1 &443107753 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 443107754} + - component: {fileID: 443107756} + - component: {fileID: 443107755} + m_Layer: 0 + m_Name: axis_x20 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &443107754 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 443107753} + m_LocalRotation: {x: 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: 292644576} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 150.8, y: -33} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &443107755 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 443107753} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &443107756 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 443107753} --- !u!1 &443218150 GameObject: m_ObjectHideFlags: 0 @@ -221136,7 +230635,7 @@ RectTransform: m_GameObject: {fileID: 449132772} 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: 483459837} - {fileID: 768545461} @@ -221639,10 +231138,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -221942,6 +231437,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -221995,6 +231491,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -222092,6 +231589,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -222146,6 +231644,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -222237,6 +231736,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -222291,6 +231791,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -222382,6 +231883,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -222436,6 +231938,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -222527,6 +232030,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -222581,6 +232085,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -222672,6 +232177,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -222726,6 +232232,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -222817,6 +232324,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -222871,6 +232379,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -222962,6 +232471,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -223016,6 +232526,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -223107,6 +232618,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -223161,6 +232673,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -223252,6 +232765,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -223306,6 +232820,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -223397,6 +232912,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -223451,6 +232967,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -223542,6 +233059,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -223596,6 +233114,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -223686,6 +233205,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -223740,6 +233260,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -223830,6 +233351,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -223884,6 +233406,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -223974,6 +233497,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -224028,6 +233552,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -224118,6 +233643,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -224172,6 +233698,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -224262,6 +233789,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -224316,6 +233844,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -224406,6 +233935,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -224460,6 +233990,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -224550,6 +234081,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -224604,6 +234136,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -224694,6 +234227,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -224748,6 +234282,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -224838,6 +234373,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -224892,6 +234428,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -224982,6 +234519,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -225036,6 +234574,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -225126,6 +234665,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -225180,6 +234720,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -225270,6 +234811,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -225324,6 +234866,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -225414,6 +234957,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -225468,6 +235012,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -225558,6 +235103,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -225612,6 +235158,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -225702,6 +235249,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -225756,6 +235304,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -225846,6 +235395,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -225900,6 +235450,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -225990,6 +235541,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -226044,6 +235596,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -226134,6 +235687,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -226188,6 +235742,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -226278,6 +235833,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -226332,6 +235888,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -226422,6 +235979,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -226476,6 +236034,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -226736,6 +236295,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -226789,6 +236349,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -226886,6 +236447,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -226940,6 +236502,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -227031,6 +236594,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -227085,6 +236649,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -227176,6 +236741,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -227230,6 +236796,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -227321,6 +236888,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -227375,6 +236943,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -227466,6 +237035,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -227520,6 +237090,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -227611,6 +237182,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -227665,6 +237237,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -227756,6 +237329,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -227810,6 +237384,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -227901,6 +237476,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -227955,6 +237531,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -228046,6 +237623,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -228100,6 +237678,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -228191,6 +237770,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -228245,6 +237825,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -228336,6 +237917,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -228390,6 +237972,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -228480,6 +238063,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -228534,6 +238118,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -228624,6 +238209,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -228678,6 +238264,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -228768,6 +238355,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -228822,6 +238410,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -228912,6 +238501,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -228966,6 +238556,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -229056,6 +238647,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -229110,6 +238702,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -229200,6 +238793,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -229254,6 +238848,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -229344,6 +238939,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -229398,6 +238994,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -229488,6 +239085,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -229542,6 +239140,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -229632,6 +239231,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -229686,6 +239286,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -229776,6 +239377,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -229830,6 +239432,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -229920,6 +239523,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -229974,6 +239578,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -230064,6 +239669,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -230118,6 +239724,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -230208,6 +239815,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -230262,6 +239870,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -230352,6 +239961,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -230406,6 +240016,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -230496,6 +240107,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -230550,6 +240162,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -230640,6 +240253,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -230694,6 +240308,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -230784,6 +240399,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -230838,6 +240454,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -230928,6 +240545,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -230982,6 +240600,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -231072,6 +240691,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -231126,6 +240746,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -231216,6 +240837,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -231270,6 +240892,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -231530,6 +241153,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -231583,6 +241207,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -231680,6 +241305,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -231734,6 +241360,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -231825,6 +241452,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -231879,6 +241507,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -231970,6 +241599,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -232024,6 +241654,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -232115,6 +241746,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -232169,6 +241801,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -232260,6 +241893,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -232314,6 +241948,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -232405,6 +242040,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -232459,6 +242095,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -232550,6 +242187,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -232604,6 +242242,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -232695,6 +242334,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -232749,6 +242389,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -232840,6 +242481,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -232894,6 +242536,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -232985,6 +242628,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -233039,6 +242683,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -233130,6 +242775,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -233184,6 +242830,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -233274,6 +242921,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -233328,6 +242976,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -233418,6 +243067,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -233472,6 +243122,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -233562,6 +243213,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -233616,6 +243268,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -233706,6 +243359,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -233760,6 +243414,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -233850,6 +243505,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -233904,6 +243560,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -233994,6 +243651,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -234048,6 +243706,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -234138,6 +243797,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -234192,6 +243852,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -234282,6 +243943,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -234336,6 +243998,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -234426,6 +244089,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -234480,6 +244144,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -234570,6 +244235,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -234624,6 +244290,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -234714,6 +244381,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -234768,6 +244436,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -234858,6 +244527,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -234912,6 +244582,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -235002,6 +244673,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -235056,6 +244728,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -235146,6 +244819,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -235200,6 +244874,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -235290,6 +244965,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -235344,6 +245020,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -235434,6 +245111,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -235488,6 +245166,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -235578,6 +245257,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -235632,6 +245312,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -235722,6 +245403,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -235776,6 +245458,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -235866,6 +245549,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -235920,6 +245604,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -236010,6 +245695,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -236064,6 +245750,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -236146,6 +245833,7 @@ MonoBehaviour: m_PositionType: 0 m_IndicatorGap: 10 m_CeilRate: 0 + m_IsAxisTooltip: 0 m_IndicatorList: - m_Name: AQI m_Max: 300 @@ -237246,6 +246934,18 @@ MonoBehaviour: m_Calls: [] m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - 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 &449913328 MonoBehaviour: @@ -238470,6 +248170,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 453360191} +--- !u!1 &453391169 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 453391170} + - component: {fileID: 453391172} + - component: {fileID: 453391171} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &453391170 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 453391169} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 9993739} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &453391171 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 453391169} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &453391172 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 453391169} --- !u!1 &453420525 GameObject: m_ObjectHideFlags: 0 @@ -239302,6 +249070,18 @@ MonoBehaviour: m_Calls: [] m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - 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 &453606764 MonoBehaviour: @@ -240876,7 +250656,7 @@ RectTransform: m_GameObject: {fileID: 459570894} 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: 930446419} m_RootOrder: 1 @@ -241168,6 +250948,115 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &460529236 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 460529237} + m_Layer: 0 + m_Name: label_1_0_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &460529237 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 460529236} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1469850821} + - {fileID: 1313621592} + m_Father: {fileID: 1969376537} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &460783273 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 460783274} + - component: {fileID: 460783276} + - component: {fileID: 460783275} + m_Layer: 0 + m_Name: axis_y21 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &460783274 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 460783273} + m_LocalRotation: {x: 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: 350111563} + 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: 562, y: 85} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &460783275 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 460783273} + 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: 0 + 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: +--- !u!222 &460783276 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 460783273} --- !u!1 &460785674 GameObject: m_ObjectHideFlags: 1 @@ -242969,7 +252858,7 @@ RectTransform: m_GameObject: {fileID: 463927862} 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: 214677402} - {fileID: 1654916129} @@ -243589,6 +253478,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 465849016} +--- !u!1 &465991909 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 465991910} + - component: {fileID: 465991912} + - component: {fileID: 465991911} + m_Layer: 0 + m_Name: axis_x22 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &465991910 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 465991909} + m_LocalRotation: {x: 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: 1212200373} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 352.40002, y: -33} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &465991911 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 465991909} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &465991912 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 465991909} --- !u!1 &466066090 GameObject: m_ObjectHideFlags: 0 @@ -245401,6 +255364,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &470492847 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 470492848} + - component: {fileID: 470492850} + - component: {fileID: 470492849} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &470492848 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 470492847} + m_LocalRotation: {x: 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: 2042599803} + 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: 1, y: 1} +--- !u!114 &470492849 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 470492847} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &470492850 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 470492847} --- !u!1 &470777969 GameObject: m_ObjectHideFlags: 0 @@ -246504,10 +256541,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -246794,6 +256827,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -246847,6 +256881,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -246944,6 +256979,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -246998,6 +257034,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -247083,6 +257120,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -247137,6 +257175,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -247222,6 +257261,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -247276,6 +257316,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -247361,6 +257402,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -247415,6 +257457,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -247500,6 +257543,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -247554,6 +257598,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -248002,6 +258047,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -248022,6 +258068,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -249325,7 +259372,7 @@ RectTransform: m_GameObject: {fileID: 476016311} 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: 242871875} - {fileID: 494809808} @@ -250871,6 +260918,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &478871469 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 478871470} + - component: {fileID: 478871472} + - component: {fileID: 478871471} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &478871470 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 478871469} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 673369356} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &478871471 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 478871469} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &478871472 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 478871469} --- !u!1 &478975926 GameObject: m_ObjectHideFlags: 0 @@ -254301,6 +264422,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 488173813} +--- !u!1 &488274078 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 488274079} + - component: {fileID: 488274081} + - component: {fileID: 488274080} + m_Layer: 0 + m_Name: axis_y1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &488274079 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 488274078} + m_LocalRotation: {x: 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: 1216071423} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 85} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &488274080 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 488274078} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 25 +--- !u!222 &488274081 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 488274078} --- !u!1 &488529638 GameObject: m_ObjectHideFlags: 1 @@ -254324,7 +264519,7 @@ RectTransform: m_GameObject: {fileID: 488529638} 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: 1742219152} - {fileID: 1215396464} @@ -255993,7 +266188,7 @@ RectTransform: m_GameObject: {fileID: 492335003} 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: 1798743258} - {fileID: 2058646399} @@ -257515,6 +267710,75 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &497451448 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 497451449} + - component: {fileID: 497451451} + - component: {fileID: 497451450} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &497451449 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 497451448} + m_LocalRotation: {x: -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: 2057861161} + m_Father: {fileID: 1819605193} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0, y: 1} +--- !u!114 &497451450 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 497451448} + 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.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374} + m_RaycastTarget: 0 + 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 &497451451 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 497451448} --- !u!1 &497536033 GameObject: m_ObjectHideFlags: 0 @@ -258665,6 +268929,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 500195867} +--- !u!1 &500275905 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 500275906} + - component: {fileID: 500275908} + - component: {fileID: 500275907} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &500275906 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 500275905} + m_LocalRotation: {x: 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: 413185097} + 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: 1, y: 1} +--- !u!114 &500275907 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 500275905} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &500275908 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 500275905} --- !u!1 &500428355 GameObject: m_ObjectHideFlags: 0 @@ -259223,7 +269561,7 @@ RectTransform: m_GameObject: {fileID: 500875642} 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: 1440667799} - {fileID: 1329903460} @@ -259789,6 +270127,154 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 502927718} +--- !u!1 &502936422 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 502936423} + - component: {fileID: 502936425} + - component: {fileID: 502936424} + m_Layer: 0 + m_Name: title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &502936423 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 502936422} + m_LocalRotation: {x: 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: 1688440197} + 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: 0, y: 0} + m_SizeDelta: {x: 584, y: 16} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &502936424 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 502936422} + 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: 0 + 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: 1 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: "X\u8F74\u6E10\u53D8" +--- !u!222 &502936425 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 502936422} +--- !u!1 &502967884 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 502967885} + - component: {fileID: 502967887} + - component: {fileID: 502967886} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &502967885 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 502967884} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1089001423} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &502967886 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 502967884} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &502967887 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 502967884} --- !u!1 &503352553 GameObject: m_ObjectHideFlags: 0 @@ -260427,6 +270913,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 504284096} +--- !u!1 &504552083 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 504552084} + - component: {fileID: 504552086} + - component: {fileID: 504552085} + m_Layer: 0 + m_Name: datazoomstart + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &504552084 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 504552083} + m_LocalRotation: {x: 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: 1232265987} + 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: 300} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &504552085 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 504552083} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &504552086 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 504552083} --- !u!1 &504603338 GameObject: m_ObjectHideFlags: 0 @@ -261664,7 +272224,7 @@ RectTransform: m_GameObject: {fileID: 509092020} 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: 1383220189} m_Father: {fileID: 782651941} @@ -262007,6 +272567,41 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 1} +--- !u!1 &510300488 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 510300489} + m_Layer: 0 + m_Name: label_1_3_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &510300489 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 510300488} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 871427467} + - {fileID: 1874858699} + m_Father: {fileID: 960174449} + m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &510539509 GameObject: m_ObjectHideFlags: 0 @@ -262143,7 +272738,7 @@ RectTransform: m_GameObject: {fileID: 510757551} 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: 1112835002} - {fileID: 439928885} @@ -262645,7 +273240,7 @@ RectTransform: m_GameObject: {fileID: 511253721} 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: 1749389127} - {fileID: 1450287547} @@ -263925,6 +274520,74 @@ RectTransform: m_AnchoredPosition: {x: 229.25, y: -74.14285} m_SizeDelta: {x: 12, y: 19.333332} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &516190403 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 516190404} + - component: {fileID: 516190406} + - component: {fileID: 516190405} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &516190404 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 516190403} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 179170839} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &516190405 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 516190403} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &516190406 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 516190403} --- !u!1 &516560931 GameObject: m_ObjectHideFlags: 0 @@ -264381,10 +275044,10 @@ RectTransform: m_Father: {fileID: 191364310} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -4} - m_SizeDelta: {x: 584, y: 300} + 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, y: 1} --- !u!114 &517131344 MonoBehaviour: @@ -264399,7 +275062,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 + m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] @@ -264588,10 +275251,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -264879,6 +275538,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -264932,6 +275592,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -265029,6 +275690,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -265083,6 +275745,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -265168,6 +275831,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -265222,6 +275886,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -265307,6 +275972,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -265361,6 +276027,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -265446,6 +276113,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -265500,6 +276168,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -265585,6 +276254,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -265639,6 +276309,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -265724,6 +276395,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -265778,6 +276450,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -265863,6 +276536,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -265917,6 +276591,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -266372,6 +277047,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -266392,6 +277068,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -266620,6 +277297,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 517379997} +--- !u!1 &517451580 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 517451581} + m_Layer: 0 + m_Name: label_1_5_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &517451581 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 517451580} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 2129952572} + - {fileID: 677771698} + m_Father: {fileID: 1574269530} + m_RootOrder: 12 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &517637985 GameObject: m_ObjectHideFlags: 0 @@ -266688,6 +277400,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 517637985} +--- !u!1 &517676381 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 517676382} + - component: {fileID: 517676384} + - component: {fileID: 517676383} + m_Layer: 0 + m_Name: axis_y2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &517676382 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 517676381} + m_LocalRotation: {x: 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: 1730376708} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 140} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &517676383 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 517676381} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 50 +--- !u!222 &517676384 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 517676381} --- !u!1 &518245918 GameObject: m_ObjectHideFlags: 0 @@ -267618,6 +278404,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 1} +--- !u!1 &520836228 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 520836229} + - component: {fileID: 520836231} + - component: {fileID: 520836230} + m_Layer: 0 + m_Name: axis_y22 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &520836229 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 520836228} + m_LocalRotation: {x: 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: 1020874435} + 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: 562, y: 140} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &520836230 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 520836228} + 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: 0 + 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: +--- !u!222 &520836231 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 520836228} --- !u!1 &521109155 GameObject: m_ObjectHideFlags: 0 @@ -271117,6 +281977,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 530289873} +--- !u!1 &530351781 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 530351782} + - component: {fileID: 530351784} + - component: {fileID: 530351783} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &530351782 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 530351781} + m_LocalRotation: {x: 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: 663936051} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 3, y: -3} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0, y: 1} +--- !u!114 &530351783 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 530351781} + 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: 0 + 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: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &530351784 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 530351781} --- !u!1 &530370250 GameObject: m_ObjectHideFlags: 0 @@ -271249,7 +282183,7 @@ RectTransform: m_GameObject: {fileID: 530487938} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 1585373950} m_Father: {fileID: 1341658977} @@ -272019,6 +282953,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 531889678} +--- !u!1 &531929606 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 531929607} + - component: {fileID: 531929609} + - component: {fileID: 531929608} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &531929607 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 531929606} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 595624506} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &531929608 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 531929606} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &531929609 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 531929606} --- !u!1 &531967386 GameObject: m_ObjectHideFlags: 0 @@ -273201,6 +284209,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 535404013} +--- !u!1 &535589647 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 535589648} + - component: {fileID: 535589650} + - component: {fileID: 535589649} + m_Layer: 0 + m_Name: axis_y22 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &535589648 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 535589647} + m_LocalRotation: {x: 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: 434931474} + 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: 562, y: 140} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &535589649 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 535589647} + 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: 0 + 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: +--- !u!222 &535589650 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 535589647} --- !u!1 &535819263 GameObject: m_ObjectHideFlags: 0 @@ -273304,6 +284386,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 536038117} +--- !u!1 &536364677 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 536364678} + - component: {fileID: 536364680} + - component: {fileID: 536364679} + m_Layer: 0 + m_Name: axis_y3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &536364678 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 536364677} + m_LocalRotation: {x: 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: 1216071423} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 195} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &536364679 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 536364677} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 75 +--- !u!222 &536364680 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 536364677} --- !u!1 &536417057 GameObject: m_ObjectHideFlags: 0 @@ -273590,6 +284746,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 536808716} +--- !u!1 &537006885 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 537006886} + - component: {fileID: 537006888} + - component: {fileID: 537006887} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &537006886 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 537006885} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1903940828} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &537006887 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 537006885} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &537006888 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 537006885} --- !u!1 &537326641 GameObject: m_ObjectHideFlags: 0 @@ -275002,6 +286232,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 541236671} +--- !u!1 &541636091 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 541636092} + - component: {fileID: 541636094} + - component: {fileID: 541636093} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &541636092 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 541636091} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 2136282817} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &541636093 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 541636091} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &541636094 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 541636091} --- !u!1 &541957324 GameObject: m_ObjectHideFlags: 0 @@ -275913,10 +287217,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -276203,6 +287503,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -276256,6 +287557,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -276353,6 +287655,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -276407,6 +287710,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -276492,6 +287796,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -276546,6 +287851,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -276631,6 +287937,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -276685,6 +287992,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -276770,6 +288078,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -276824,6 +288133,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -276909,6 +288219,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -276963,6 +288274,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -277207,6 +288519,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -277260,6 +288573,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -277357,6 +288671,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -277411,6 +288726,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -277496,6 +288812,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -277550,6 +288867,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -277635,6 +288953,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -277689,6 +289008,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -277774,6 +289094,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -277828,6 +289149,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -277913,6 +289235,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -277967,6 +289290,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -278415,6 +289739,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -278435,6 +289760,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -278997,6 +290323,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 546165249} +--- !u!1 &546419433 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 546419434} + - component: {fileID: 546419436} + - component: {fileID: 546419435} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &546419434 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 546419433} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1536587590} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &546419435 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 546419433} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &546419436 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 546419433} --- !u!1 &547193114 GameObject: m_ObjectHideFlags: 1 @@ -280696,7 +292096,7 @@ RectTransform: m_GameObject: {fileID: 550970634} 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: 517131343} m_RootOrder: 1 @@ -280809,6 +292209,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 551220587} +--- !u!1 &551222445 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 551222446} + m_Layer: 0 + m_Name: label_0_4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &551222446 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 551222445} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 976196021} + - {fileID: 290712910} + m_Father: {fileID: 1574269530} + m_RootOrder: 18 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &551239599 GameObject: m_ObjectHideFlags: 0 @@ -281827,6 +293262,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 552304489} +--- !u!1 &552317600 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 552317601} + - component: {fileID: 552317603} + - component: {fileID: 552317602} + m_Layer: 0 + m_Name: datazoomstart + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &552317601 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 552317600} + m_LocalRotation: {x: 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: 768249169} + 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: 300} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &552317602 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 552317600} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &552317603 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 552317600} --- !u!1 &552399620 GameObject: m_ObjectHideFlags: 0 @@ -282294,6 +293803,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &554553189 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 554553190} + - component: {fileID: 554553192} + - component: {fileID: 554553191} + m_Layer: 0 + m_Name: axis_y0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &554553190 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 554553189} + m_LocalRotation: {x: 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: 1730376708} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 30} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &554553191 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 554553189} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &554553192 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 554553189} --- !u!1 &554560158 GameObject: m_ObjectHideFlags: 0 @@ -284121,7 +295704,7 @@ RectTransform: m_GameObject: {fileID: 560432388} 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: 2140913709} - {fileID: 2033047293} @@ -284513,7 +296096,7 @@ RectTransform: m_GameObject: {fileID: 561384330} 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: 1443079308} - {fileID: 1411976777} @@ -284602,6 +296185,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 561432593} +--- !u!1 &561512800 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 561512801} + m_Layer: 0 + m_Name: label_0_2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &561512801 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 561512800} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1580555760} + - {fileID: 305636701} + m_Father: {fileID: 1574269530} + m_RootOrder: 16 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &561563643 GameObject: m_ObjectHideFlags: 0 @@ -285565,6 +297183,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 563564958} +--- !u!1 &563690978 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 563690979} + - component: {fileID: 563690981} + - component: {fileID: 563690980} + m_Layer: 0 + m_Name: title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &563690979 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 563690978} + m_LocalRotation: {x: 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: 689814814} + 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: 0, y: 0} + m_SizeDelta: {x: 584, y: 16} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &563690980 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 563690978} + 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: 0 + 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: 1 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: "X\u8F74\u6E10\u53D8" +--- !u!222 &563690981 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 563690978} --- !u!1 &563753343 GameObject: m_ObjectHideFlags: 0 @@ -285810,6 +297502,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 563965995} +--- !u!1 &564022982 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 564022983} + - component: {fileID: 564022985} + - component: {fileID: 564022984} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &564022983 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 564022982} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 851063900} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &564022984 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 564022982} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &564022985 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 564022982} --- !u!1 &564025449 GameObject: m_ObjectHideFlags: 0 @@ -287415,6 +299175,80 @@ RectTransform: m_AnchoredPosition: {x: 210.30002, y: 0} m_SizeDelta: {x: 50, y: 19.333332} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &567585871 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 567585872} + - component: {fileID: 567585874} + - component: {fileID: 567585873} + m_Layer: 0 + m_Name: axis_x24 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &567585872 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 567585871} + m_LocalRotation: {x: 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: 1212200373} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 554, y: -33} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &567585873 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 567585871} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &567585874 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 567585871} --- !u!1 &567622745 GameObject: m_ObjectHideFlags: 0 @@ -287559,6 +299393,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 567717963} +--- !u!1 &568058314 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 568058315} + - component: {fileID: 568058317} + - component: {fileID: 568058316} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &568058315 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 568058314} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 387325686} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &568058316 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 568058314} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &568058317 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 568058314} --- !u!1 &568422065 GameObject: m_ObjectHideFlags: 0 @@ -287627,6 +299535,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 568422065} +--- !u!1 &568896927 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 568896928} + - component: {fileID: 568896930} + - component: {fileID: 568896929} + m_Layer: 0 + m_Name: axis_y20 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &568896928 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 568896927} + m_LocalRotation: {x: 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: 350111563} + 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: 562, y: 30} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &568896929 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 568896927} + 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: 0 + 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: +--- !u!222 &568896930 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 568896927} --- !u!1 &569006225 GameObject: m_ObjectHideFlags: 0 @@ -290990,10 +302972,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -291281,6 +303259,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -291334,6 +303313,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -291431,6 +303411,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -291485,6 +303466,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -291570,6 +303552,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -291624,6 +303607,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -291709,6 +303693,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -291763,6 +303748,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -291848,6 +303834,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -291902,6 +303889,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -291987,6 +303975,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -292041,6 +304030,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -292126,6 +304116,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -292180,6 +304171,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -292265,6 +304257,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -292319,6 +304312,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -292781,6 +304775,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -292801,6 +304796,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -293140,10 +305136,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -293430,6 +305422,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -293483,6 +305476,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -293580,6 +305574,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -293634,6 +305629,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -293720,6 +305716,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -293774,6 +305771,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -294071,6 +306069,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -294124,6 +306123,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -294221,6 +306221,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -294275,6 +306276,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -294366,6 +306368,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -294420,6 +306423,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -294511,6 +306515,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -294565,6 +306570,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -294656,6 +306662,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -294710,6 +306717,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -294801,6 +306809,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -294855,6 +306864,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -294946,6 +306956,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -295000,6 +307011,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -295091,6 +307103,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -295145,6 +307158,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -295236,6 +307250,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -295290,6 +307305,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -295381,6 +307397,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -295435,6 +307452,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -295526,6 +307544,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -295580,6 +307599,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -295671,6 +307691,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -295725,6 +307746,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -295810,6 +307832,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -295864,6 +307887,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -295949,6 +307973,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -296003,6 +308028,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -296088,6 +308114,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -296142,6 +308169,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -296227,6 +308255,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -296281,6 +308310,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -296366,6 +308396,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -296420,6 +308451,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -296505,6 +308537,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -296559,6 +308592,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -296644,6 +308678,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -296698,6 +308733,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -296783,6 +308819,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -296837,6 +308874,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -296922,6 +308960,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -296976,6 +309015,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -297061,6 +309101,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -297115,6 +309156,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -297200,6 +309242,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -297254,6 +309297,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -297339,6 +309383,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -297393,6 +309438,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -297478,6 +309524,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -297532,6 +309579,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -297617,6 +309665,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -297671,6 +309720,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -297756,6 +309806,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -297810,6 +309861,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -297895,6 +309947,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -297949,6 +310002,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -298034,6 +310088,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -298088,6 +310143,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -298173,6 +310229,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -298227,6 +310284,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -298312,6 +310370,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -298366,6 +310425,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -298451,6 +310511,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -298505,6 +310566,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -298590,6 +310652,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -298644,6 +310707,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -298729,6 +310793,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -298783,6 +310848,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -298868,6 +310934,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -298922,6 +310989,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -299007,6 +311075,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -299061,6 +311130,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -299146,6 +311216,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -299200,6 +311271,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -299285,6 +311357,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -299339,6 +311412,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -299424,6 +311498,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -299478,6 +311553,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -299563,6 +311639,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -299617,6 +311694,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -299702,6 +311780,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -299756,6 +311835,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -299841,6 +311921,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -299895,6 +311976,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -299980,6 +312062,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -300034,6 +312117,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -300119,6 +312203,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -300173,6 +312258,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -300258,6 +312344,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -300312,6 +312399,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -300397,6 +312485,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -300451,6 +312540,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -300536,6 +312626,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -300590,6 +312681,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -300675,6 +312767,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -300729,6 +312822,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -300814,6 +312908,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -300868,6 +312963,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -300953,6 +313049,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -301007,6 +313104,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -301092,6 +313190,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -301146,6 +313245,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -301231,6 +313331,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -301285,6 +313386,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -301370,6 +313472,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -301424,6 +313527,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -301509,6 +313613,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -301563,6 +313668,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -301648,6 +313754,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -301702,6 +313809,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -301787,6 +313895,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -301841,6 +313950,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -301926,6 +314036,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -301980,6 +314091,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -302065,6 +314177,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -302119,6 +314232,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -302204,6 +314318,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -302258,6 +314373,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -302343,6 +314459,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -302397,6 +314514,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -302482,6 +314600,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -302536,6 +314655,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -302621,6 +314741,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -302675,6 +314796,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -302760,6 +314882,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -302814,6 +314937,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -302899,6 +315023,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -302953,6 +315078,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -303038,6 +315164,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -303092,6 +315219,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -303177,6 +315305,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -303231,6 +315360,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -303316,6 +315446,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -303370,6 +315501,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -303455,6 +315587,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -303509,6 +315642,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -303594,6 +315728,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -303648,6 +315783,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -303733,6 +315869,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -303787,6 +315924,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -303872,6 +316010,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -303926,6 +316065,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -304011,6 +316151,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -304065,6 +316206,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -304150,6 +316292,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -304204,6 +316347,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -304289,6 +316433,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -304343,6 +316488,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -304428,6 +316574,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -304482,6 +316629,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -304567,6 +316715,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -304621,6 +316770,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -304706,6 +316856,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -304760,6 +316911,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -304845,6 +316997,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -304899,6 +317052,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -304984,6 +317138,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -305038,6 +317193,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -305123,6 +317279,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -305177,6 +317334,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -305262,6 +317420,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -305316,6 +317475,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -305401,6 +317561,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -305455,6 +317616,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -305540,6 +317702,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -305594,6 +317757,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -305679,6 +317843,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -305733,6 +317898,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -305818,6 +317984,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -305872,6 +318039,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -305957,6 +318125,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -306011,6 +318180,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -306096,6 +318266,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -306150,6 +318321,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -306235,6 +318407,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -306289,6 +318462,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -306374,6 +318548,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -306428,6 +318603,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -306513,6 +318689,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -306567,6 +318744,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -306652,6 +318830,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -306706,6 +318885,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -306791,6 +318971,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -306845,6 +319026,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -306930,6 +319112,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -306984,6 +319167,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -307069,6 +319253,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -307123,6 +319308,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -307208,6 +319394,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -307262,6 +319449,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -307347,6 +319535,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -307401,6 +319590,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -307486,6 +319676,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -307540,6 +319731,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -307625,6 +319817,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -307679,6 +319872,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -307764,6 +319958,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -307818,6 +320013,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -307903,6 +320099,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -307957,6 +320154,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -308042,6 +320240,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -308096,6 +320295,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -308181,6 +320381,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -308235,6 +320436,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -308320,6 +320522,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -308374,6 +320577,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -308459,6 +320663,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -308513,6 +320718,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -308598,6 +320804,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -308652,6 +320859,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -308737,6 +320945,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -308791,6 +321000,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -308876,6 +321086,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -308930,6 +321141,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -309015,6 +321227,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -309069,6 +321282,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -309154,6 +321368,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -309208,6 +321423,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -309293,6 +321509,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -309347,6 +321564,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -309432,6 +321650,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -309486,6 +321705,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -309571,6 +321791,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -309625,6 +321846,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -309710,6 +321932,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -309764,6 +321987,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -309849,6 +322073,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -309903,6 +322128,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -309988,6 +322214,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -310042,6 +322269,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -310127,6 +322355,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -310181,6 +322410,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -310266,6 +322496,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -310320,6 +322551,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -310405,6 +322637,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -310459,6 +322692,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -310544,6 +322778,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -310598,6 +322833,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -310683,6 +322919,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -310737,6 +322974,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -310822,6 +323060,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -310876,6 +323115,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -310961,6 +323201,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -311015,6 +323256,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -311100,6 +323342,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -311154,6 +323397,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -311239,6 +323483,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -311293,6 +323538,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -311378,6 +323624,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -311432,6 +323679,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -311517,6 +323765,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -311571,6 +323820,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -311656,6 +323906,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -311710,6 +323961,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -311795,6 +324047,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -311849,6 +324102,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -311934,6 +324188,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -311988,6 +324243,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -312073,6 +324329,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -312127,6 +324384,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -312212,6 +324470,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -312266,6 +324525,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -312351,6 +324611,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -312405,6 +324666,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -312490,6 +324752,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -312544,6 +324807,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -312629,6 +324893,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -312683,6 +324948,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -312768,6 +325034,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -312822,6 +325089,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -312907,6 +325175,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -312961,6 +325230,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -313046,6 +325316,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -313100,6 +325371,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -313185,6 +325457,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -313239,6 +325512,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -313324,6 +325598,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -313378,6 +325653,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -313463,6 +325739,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -313517,6 +325794,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -313602,6 +325880,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -313656,6 +325935,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -313741,6 +326021,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -313795,6 +326076,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -313880,6 +326162,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -313934,6 +326217,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -314019,6 +326303,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -314073,6 +326358,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -314158,6 +326444,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -314212,6 +326499,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -314297,6 +326585,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -314351,6 +326640,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -314436,6 +326726,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -314490,6 +326781,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -314575,6 +326867,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -314629,6 +326922,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -314714,6 +327008,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -314768,6 +327063,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -314853,6 +327149,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -314907,6 +327204,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -314992,6 +327290,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -315046,6 +327345,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -315131,6 +327431,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -315185,6 +327486,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -315270,6 +327572,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -315324,6 +327627,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -315409,6 +327713,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -315463,6 +327768,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -315548,6 +327854,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -315602,6 +327909,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -315687,6 +327995,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -315741,6 +328050,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -315826,6 +328136,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -315880,6 +328191,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -315965,6 +328277,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -316019,6 +328332,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -316104,6 +328418,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -316158,6 +328473,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -316243,6 +328559,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -316297,6 +328614,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -316382,6 +328700,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -316436,6 +328755,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -316521,6 +328841,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -316575,6 +328896,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -316660,6 +328982,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -316714,6 +329037,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -316799,6 +329123,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -316853,6 +329178,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -316938,6 +329264,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -316992,6 +329319,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -317077,6 +329405,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -317131,6 +329460,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -317216,6 +329546,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -317270,6 +329601,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -317355,6 +329687,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -317409,6 +329742,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -317494,6 +329828,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -317548,6 +329883,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -317633,6 +329969,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -317687,6 +330024,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -317772,6 +330110,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -317826,6 +330165,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -317911,6 +330251,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -317965,6 +330306,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -318050,6 +330392,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -318104,6 +330447,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -318189,6 +330533,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -318243,6 +330588,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -318328,6 +330674,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -318382,6 +330729,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -318467,6 +330815,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -318521,6 +330870,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -318606,6 +330956,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -318660,6 +331011,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -318745,6 +331097,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -318799,6 +331152,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -318884,6 +331238,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -318938,6 +331293,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -319023,6 +331379,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -319077,6 +331434,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -319162,6 +331520,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -319216,6 +331575,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -319301,6 +331661,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -319355,6 +331716,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -319440,6 +331802,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -319494,6 +331857,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -319579,6 +331943,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -319633,6 +331998,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -319718,6 +332084,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -319772,6 +332139,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -319857,6 +332225,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -319911,6 +332280,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -319996,6 +332366,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -320050,6 +332421,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -320135,6 +332507,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -320189,6 +332562,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -320274,6 +332648,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -320328,6 +332703,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -320413,6 +332789,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -320467,6 +332844,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -320552,6 +332930,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -320606,6 +332985,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -320691,6 +333071,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -320745,6 +333126,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -320830,6 +333212,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -320884,6 +333267,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -320969,6 +333353,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -321023,6 +333408,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -321108,6 +333494,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -321162,6 +333549,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -321247,6 +333635,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -321301,6 +333690,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -321386,6 +333776,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -321440,6 +333831,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -321525,6 +333917,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -321579,6 +333972,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -321664,6 +334058,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -321718,6 +334113,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -321803,6 +334199,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -321857,6 +334254,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -321942,6 +334340,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -321996,6 +334395,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -322081,6 +334481,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -322135,6 +334536,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -322220,6 +334622,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -322274,6 +334677,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -322359,6 +334763,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -322413,6 +334818,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -322498,6 +334904,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -322552,6 +334959,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -322637,6 +335045,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -322691,6 +335100,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -322776,6 +335186,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -322830,6 +335241,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -322915,6 +335327,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -322969,6 +335382,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -323054,6 +335468,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -323108,6 +335523,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -323193,6 +335609,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -323247,6 +335664,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -323332,6 +335750,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -323386,6 +335805,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -323471,6 +335891,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -323525,6 +335946,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -323610,6 +336032,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -323664,6 +336087,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -323749,6 +336173,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -323803,6 +336228,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -323888,6 +336314,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -323942,6 +336369,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -324027,6 +336455,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -324081,6 +336510,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -324166,6 +336596,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -324220,6 +336651,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -324305,6 +336737,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -324359,6 +336792,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -324444,6 +336878,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -324498,6 +336933,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -324583,6 +337019,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -324637,6 +337074,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -324722,6 +337160,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -324776,6 +337215,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -324861,6 +337301,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -324915,6 +337356,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -325000,6 +337442,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -325054,6 +337497,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -325139,6 +337583,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -325193,6 +337638,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -325278,6 +337724,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -325332,6 +337779,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -325417,6 +337865,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -325471,6 +337920,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -325556,6 +338006,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -325610,6 +338061,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -325695,6 +338147,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -325749,6 +338202,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -325834,6 +338288,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -325888,6 +338343,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -325973,6 +338429,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -326027,6 +338484,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -326112,6 +338570,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -326166,6 +338625,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -326251,6 +338711,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -326305,6 +338766,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -326390,6 +338852,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -326444,6 +338907,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -326529,6 +338993,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -326583,6 +339048,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -326668,6 +339134,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -326722,6 +339189,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -326807,6 +339275,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -326861,6 +339330,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -326946,6 +339416,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -327000,6 +339471,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -327085,6 +339557,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -327139,6 +339612,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -327224,6 +339698,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -327278,6 +339753,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -327363,6 +339839,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -327417,6 +339894,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -327502,6 +339980,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -327556,6 +340035,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -327641,6 +340121,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -327695,6 +340176,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -327780,6 +340262,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -327834,6 +340317,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -327919,6 +340403,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -327973,6 +340458,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -328058,6 +340544,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -328112,6 +340599,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -328197,6 +340685,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -328251,6 +340740,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -328336,6 +340826,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -328390,6 +340881,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -328475,6 +340967,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -328529,6 +341022,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -328614,6 +341108,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -328668,6 +341163,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -328753,6 +341249,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -328807,6 +341304,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -328892,6 +341390,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -328946,6 +341445,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -329031,6 +341531,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -329085,6 +341586,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -329170,6 +341672,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -329224,6 +341727,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -329309,6 +341813,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -329363,6 +341868,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -329448,6 +341954,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -329502,6 +342009,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -329587,6 +342095,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -329641,6 +342150,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -329726,6 +342236,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -329780,6 +342291,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -329865,6 +342377,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -329919,6 +342432,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -330004,6 +342518,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -330058,6 +342573,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -330143,6 +342659,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -330197,6 +342714,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -330282,6 +342800,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -330336,6 +342855,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -330785,6 +343305,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -330805,6 +343326,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -331102,7 +343624,7 @@ RectTransform: m_GameObject: {fileID: 576020850} 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: 126039829} - {fileID: 690933509} @@ -332269,6 +344791,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 &579909488 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 579909489} + - component: {fileID: 579909491} + - component: {fileID: 579909490} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &579909489 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 579909488} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1665899162} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &579909490 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 579909488} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &579909491 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 579909488} --- !u!1 &579945759 GameObject: m_ObjectHideFlags: 0 @@ -334844,10 +347434,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -335134,6 +347720,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -335187,6 +347774,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -335284,6 +347872,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -335338,6 +347927,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -335423,6 +348013,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -335477,6 +348068,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -335562,6 +348154,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -335616,6 +348209,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -335701,6 +348295,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -335755,6 +348350,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -335840,6 +348436,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -335894,6 +348491,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -335979,6 +348577,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -336033,6 +348632,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -336118,6 +348718,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -336172,6 +348773,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -336257,6 +348859,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -336311,6 +348914,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -336396,6 +349000,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -336450,6 +349055,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -336535,6 +349141,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -336589,6 +349196,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -336674,6 +349282,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -336728,6 +349337,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -336813,6 +349423,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -336867,6 +349478,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -336952,6 +349564,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -337006,6 +349619,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -337091,6 +349705,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -337145,6 +349760,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -337230,6 +349846,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -337284,6 +349901,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -337369,6 +349987,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -337423,6 +350042,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -337508,6 +350128,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -337562,6 +350183,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -337647,6 +350269,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -337701,6 +350324,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -337786,6 +350410,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -337840,6 +350465,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -337925,6 +350551,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -337979,6 +350606,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -338064,6 +350692,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -338118,6 +350747,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -338203,6 +350833,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -338257,6 +350888,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -338342,6 +350974,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -338396,6 +351029,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -338481,6 +351115,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -338535,6 +351170,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -338620,6 +351256,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -338674,6 +351311,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -338759,6 +351397,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -338813,6 +351452,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -338898,6 +351538,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -338952,6 +351593,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -339037,6 +351679,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -339091,6 +351734,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -339176,6 +351820,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -339230,6 +351875,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -339315,6 +351961,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -339369,6 +352016,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -339454,6 +352102,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -339508,6 +352157,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -339593,6 +352243,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -339647,6 +352298,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -339732,6 +352384,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -339786,6 +352439,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -339871,6 +352525,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -339925,6 +352580,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -340010,6 +352666,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -340064,6 +352721,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -340149,6 +352807,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -340203,6 +352862,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -340288,6 +352948,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -340342,6 +353003,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -340427,6 +353089,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -340481,6 +353144,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -340566,6 +353230,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -340620,6 +353285,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -340705,6 +353371,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -340759,6 +353426,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -341242,6 +353910,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -341262,6 +353931,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -342340,6 +355010,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 589067195} +--- !u!1 &589080006 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 589080007} + m_Layer: 0 + m_Name: label_0_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &589080007 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 589080006} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 2091982210} + - {fileID: 1862376153} + m_Father: {fileID: 1969376537} + m_RootOrder: 14 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &589477025 GameObject: m_ObjectHideFlags: 0 @@ -344439,6 +357144,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 595238820} +--- !u!1 &595624505 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 595624506} + m_Layer: 0 + m_Name: label_1_2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &595624506 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 595624505} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 798960111} + - {fileID: 531929607} + m_Father: {fileID: 960174449} + m_RootOrder: 23 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &595962166 GameObject: m_ObjectHideFlags: 0 @@ -344947,6 +357687,41 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &596980260 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 596980261} + m_Layer: 0 + m_Name: label_0_6 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &596980261 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 596980260} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 316917404} + - {fileID: 978536954} + m_Father: {fileID: 960174449} + m_RootOrder: 20 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &597084794 GameObject: m_ObjectHideFlags: 0 @@ -345162,6 +357937,74 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 1} +--- !u!1 &597398844 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 597398845} + - component: {fileID: 597398847} + - component: {fileID: 597398846} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &597398845 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 597398844} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1702826699} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &597398846 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 597398844} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &597398847 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 597398844} --- !u!1 &597612027 GameObject: m_ObjectHideFlags: 0 @@ -351447,6 +364290,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &611857705 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 611857706} + - component: {fileID: 611857708} + - component: {fileID: 611857707} + m_Layer: 0 + m_Name: title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &611857706 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 611857705} + m_LocalRotation: {x: 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: 2060236888} + 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: 0, y: 0} + m_SizeDelta: {x: 584, y: 16} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &611857707 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 611857705} + 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: 0 + 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: 1 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: "Y\u8F74\u6E10\u53D8" +--- !u!222 &611857708 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 611857705} --- !u!1 &611862102 GameObject: m_ObjectHideFlags: 0 @@ -351556,6 +364473,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 612183296} +--- !u!1 &612188211 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 612188212} + - component: {fileID: 612188214} + - component: {fileID: 612188213} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &612188212 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 612188211} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 883072300} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &612188213 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 612188211} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &612188214 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 612188211} --- !u!1 &612313900 GameObject: m_ObjectHideFlags: 0 @@ -354074,6 +367065,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 620203904} +--- !u!1 &620347054 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 620347055} + - component: {fileID: 620347057} + - component: {fileID: 620347056} + m_Layer: 0 + m_Name: axis_y24 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &620347055 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 620347054} + m_LocalRotation: {x: 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: 1020874435} + 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: 562, y: 250} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &620347056 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 620347054} + 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: 0 + 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: +--- !u!222 &620347057 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 620347054} --- !u!1 &620410482 GameObject: m_ObjectHideFlags: 0 @@ -355828,6 +368893,79 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &623994318 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 623994319} + m_Layer: 0 + m_Name: axis_x2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &623994319 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 623994318} + m_LocalRotation: {x: -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: 1432173832} + - {fileID: 1772762426} + - {fileID: 2146451472} + - {fileID: 963198653} + - {fileID: 2004444742} + m_Father: {fileID: 2066464034} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} +--- !u!1 &624054214 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 624054215} + m_Layer: 0 + m_Name: label_1_3_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &624054215 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 624054214} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1895483536} + - {fileID: 1465469858} + m_Father: {fileID: 1969376537} + m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &624228062 GameObject: m_ObjectHideFlags: 0 @@ -356674,10 +369812,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -356964,6 +370098,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -357017,6 +370152,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -357114,6 +370250,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -357168,6 +370305,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -357253,6 +370391,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -357307,6 +370446,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -357392,6 +370532,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -357446,6 +370587,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -357622,7 +370764,7 @@ RectTransform: m_GameObject: {fileID: 625987613} 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: 358352446} m_RootOrder: 1 @@ -358234,10 +371376,10 @@ RectTransform: m_Father: {fileID: 191364310} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -612} - m_SizeDelta: {x: 584, y: 300} + 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, y: 1} --- !u!114 &627765468 MonoBehaviour: @@ -358252,7 +371394,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 + m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] @@ -358441,10 +371583,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -358732,6 +371870,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -358785,6 +371924,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -358882,6 +372022,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -358936,6 +372077,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -359021,6 +372163,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -359075,6 +372218,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -359160,6 +372304,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -359214,6 +372359,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -359299,6 +372445,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -359353,6 +372500,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -359438,6 +372586,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -359492,6 +372641,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -359577,6 +372727,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -359631,6 +372782,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -359716,6 +372868,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -359770,6 +372923,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -360014,6 +373168,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -360067,6 +373222,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -360164,6 +373320,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -360218,6 +373375,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -360303,6 +373461,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -360357,6 +373516,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -360442,6 +373602,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -360496,6 +373657,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -360581,6 +373743,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -360635,6 +373798,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -360720,6 +373884,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -360774,6 +373939,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -360859,6 +374025,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -360913,6 +374080,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -360998,6 +374166,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -361052,6 +374221,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -361514,6 +374684,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -361534,6 +374705,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -363276,6 +376448,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 630970730} +--- !u!1 &631052970 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 631052971} + - component: {fileID: 631052973} + - component: {fileID: 631052972} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &631052971 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 631052970} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 867650150} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &631052972 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 631052970} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &631052973 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 631052970} --- !u!1 &631174654 GameObject: m_ObjectHideFlags: 0 @@ -365207,10 +378447,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -365509,6 +378745,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -365562,6 +378799,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -365659,6 +378897,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -365713,6 +378952,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -365798,6 +379038,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -365852,6 +379093,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -365937,6 +379179,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -365991,6 +379234,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -366076,6 +379320,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -366130,6 +379375,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -366215,6 +379461,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -366269,6 +379516,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -366354,6 +379602,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -366408,6 +379657,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -366493,6 +379743,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -366547,6 +379798,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -366632,6 +379884,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -366686,6 +379939,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -366934,6 +380188,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -366987,6 +380242,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -367084,6 +380340,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -367138,6 +380395,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -367223,6 +380481,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -367277,6 +380536,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -367362,6 +380622,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -367416,6 +380677,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -367501,6 +380763,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -367555,6 +380818,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -367640,6 +380904,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -367694,6 +380959,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -367779,6 +381045,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -367833,6 +381100,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -367918,6 +381186,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -367972,6 +381241,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -368057,6 +381327,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -368111,6 +381382,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -373761,6 +387033,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 651971621} +--- !u!1 &652380819 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 652380820} + - component: {fileID: 652380822} + - component: {fileID: 652380821} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &652380820 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 652380819} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 2046678787} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &652380821 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 652380819} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &652380822 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 652380819} --- !u!1 &652391596 GameObject: m_ObjectHideFlags: 0 @@ -374444,10 +387784,10 @@ RectTransform: m_Father: {fileID: 191364310} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -308} - m_SizeDelta: {x: 584, y: 300} + 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, y: 1} --- !u!114 &654135077 MonoBehaviour: @@ -374462,7 +387802,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 + m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] @@ -374651,10 +387991,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -374941,6 +388277,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -374994,6 +388331,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -375091,6 +388429,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -375145,6 +388484,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -375230,6 +388570,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -375284,6 +388625,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -375369,6 +388711,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -375423,6 +388766,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -375508,6 +388852,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -375562,6 +388907,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -375647,6 +388993,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -375701,6 +389048,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -375786,6 +389134,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -375840,6 +389189,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -375925,6 +389275,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -375979,6 +389330,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -376223,6 +389575,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -376276,6 +389629,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -376373,6 +389727,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -376427,6 +389782,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -376512,6 +389868,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -376566,6 +389923,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -376651,6 +390009,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -376705,6 +390064,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -376790,6 +390150,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -376844,6 +390205,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -376929,6 +390291,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -376983,6 +390346,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -377068,6 +390432,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -377122,6 +390487,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -377207,6 +390573,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -377261,6 +390628,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -377716,6 +391084,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -377736,6 +391105,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -377988,7 +391358,7 @@ RectTransform: m_GameObject: {fileID: 654464995} 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: 1231187880} - {fileID: 1299590447} @@ -379954,6 +393324,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 659218931} +--- !u!1 &659281391 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 659281392} + - component: {fileID: 659281394} + - component: {fileID: 659281393} + m_Layer: 0 + m_Name: datazoomstart + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &659281392 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 659281391} + m_LocalRotation: {x: 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: 2102306885} + 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: 300} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &659281393 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 659281391} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &659281394 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 659281391} --- !u!1 &659413819 GameObject: m_ObjectHideFlags: 0 @@ -381995,6 +395439,75 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &663936050 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 663936051} + - component: {fileID: 663936053} + - component: {fileID: 663936052} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &663936051 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 663936050} + m_LocalRotation: {x: -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: 530351782} + m_Father: {fileID: 1417273492} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0, y: 1} +--- !u!114 &663936052 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 663936050} + 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.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374} + m_RaycastTarget: 0 + 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 &663936053 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 663936050} --- !u!1 &664085285 GameObject: m_ObjectHideFlags: 0 @@ -382281,6 +395794,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 664831465} +--- !u!1 &665215427 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 665215428} + - component: {fileID: 665215430} + - component: {fileID: 665215429} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &665215428 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 665215427} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 359754582} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &665215429 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 665215427} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &665215430 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 665215427} --- !u!1 &665443688 GameObject: m_ObjectHideFlags: 0 @@ -384541,6 +398122,80 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &669530610 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 669530611} + - component: {fileID: 669530613} + - component: {fileID: 669530612} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &669530611 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 669530610} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1459118359} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &669530612 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 669530610} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &669530613 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 669530610} --- !u!1 &669669974 GameObject: m_ObjectHideFlags: 0 @@ -384677,6 +398332,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 669682947} +--- !u!1 &669903974 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 669903975} + m_Layer: 0 + m_Name: label_1_3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &669903975 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 669903974} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1343823756} + - {fileID: 1402111654} + m_Father: {fileID: 1574269530} + m_RootOrder: 24 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &670067086 GameObject: m_ObjectHideFlags: 0 @@ -384774,7 +398464,7 @@ RectTransform: m_GameObject: {fileID: 670105513} 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: 242863300} - {fileID: 910749565} @@ -386266,6 +399956,41 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &673369355 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 673369356} + m_Layer: 0 + m_Name: label_1_2_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &673369356 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 673369355} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 478871470} + - {fileID: 1932780868} + m_Father: {fileID: 960174449} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &673485933 GameObject: m_ObjectHideFlags: 0 @@ -387769,6 +401494,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 677619681} +--- !u!1 &677771697 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 677771698} + - component: {fileID: 677771700} + - component: {fileID: 677771699} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &677771698 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 677771697} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 517451581} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &677771699 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 677771697} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &677771700 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 677771697} --- !u!1 &677811842 GameObject: m_ObjectHideFlags: 0 @@ -389687,6 +403480,41 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &683041499 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 683041500} + m_Layer: 0 + m_Name: label_0_6 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &683041500 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 683041499} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1697873054} + - {fileID: 1680183604} + m_Father: {fileID: 1969376537} + m_RootOrder: 20 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &683279679 GameObject: m_ObjectHideFlags: 0 @@ -389761,6 +403589,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 683279679} +--- !u!1 &683443168 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 683443169} + - component: {fileID: 683443171} + - component: {fileID: 683443170} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &683443169 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 683443168} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 969754090} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &683443170 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 683443168} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &683443171 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 683443168} --- !u!1 &683562960 GameObject: m_ObjectHideFlags: 0 @@ -389829,6 +403731,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 683562960} +--- !u!1 &684154734 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 684154735} + - component: {fileID: 684154737} + - component: {fileID: 684154736} + m_Layer: 0 + m_Name: title_1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &684154735 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 684154734} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1253882584} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 12} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &684154736 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 684154734} + 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.18431373, g: 0.27058825, b: 0.32941177, a: 1} + m_RaycastTarget: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &684154737 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 684154734} --- !u!1 &684186741 GameObject: m_ObjectHideFlags: 0 @@ -390562,6 +404538,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 685391693} +--- !u!1 &685696404 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 685696405} + - component: {fileID: 685696407} + - component: {fileID: 685696406} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &685696405 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 685696404} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1167577191} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &685696406 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 685696404} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &685696407 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 685696404} --- !u!1 &686311607 GameObject: m_ObjectHideFlags: 0 @@ -390912,7 +404956,7 @@ RectTransform: m_GameObject: {fileID: 688350009} 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: 1007861760} - {fileID: 847878303} @@ -391312,10 +405356,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -391610,6 +405650,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -391663,6 +405704,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -391760,6 +405802,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -391814,6 +405857,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -391899,6 +405943,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -391953,6 +405998,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -392038,6 +406084,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -392092,6 +406139,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -392177,6 +406225,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -392231,6 +406280,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -392316,6 +406366,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -392370,6 +406421,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -392529,6 +406581,41 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &689814813 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 689814814} + m_Layer: 0 + m_Name: title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &689814814 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 689814813} + m_LocalRotation: {x: -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: 563690979} + - {fileID: 1485074353} + m_Father: {fileID: 2066464034} + 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: 0, y: -5} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0.5, y: 1} --- !u!1 &689871785 GameObject: m_ObjectHideFlags: 0 @@ -400398,6 +414485,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 709879483} +--- !u!1 &710050565 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 710050566} + - component: {fileID: 710050568} + - component: {fileID: 710050567} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &710050566 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 710050565} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1104735288} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &710050567 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 710050565} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &710050568 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 710050565} --- !u!1 &710133247 GameObject: m_ObjectHideFlags: 0 @@ -400561,7 +414716,7 @@ RectTransform: m_GameObject: {fileID: 710340048} 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: 500707008} - {fileID: 179483483} @@ -405019,6 +419174,80 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &723020416 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 723020417} + - component: {fileID: 723020419} + - component: {fileID: 723020418} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &723020417 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 723020416} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 102760328} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &723020418 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 723020416} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &723020419 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 723020416} --- !u!1 &723091721 GameObject: m_ObjectHideFlags: 0 @@ -408228,6 +422457,18 @@ MonoBehaviour: m_Calls: [] m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - 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 &728093146 MonoBehaviour: @@ -408727,10 +422968,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -409018,6 +423255,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -409071,6 +423309,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -409168,6 +423407,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -409222,6 +423462,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -409307,6 +423548,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -409361,6 +423603,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -409446,6 +423689,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -409500,6 +423744,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -409585,6 +423830,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -409639,6 +423885,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -409724,6 +423971,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -409778,6 +424026,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -409863,6 +424112,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -409917,6 +424167,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -410002,6 +424253,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -410056,6 +424308,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -410141,6 +424394,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -410195,6 +424449,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -410280,6 +424535,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -410334,6 +424590,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -410419,6 +424676,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -410473,6 +424731,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -410916,6 +425175,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -410936,6 +425196,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -411665,7 +425926,7 @@ RectTransform: m_GameObject: {fileID: 729772763} 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: 549403546} - {fileID: 1930066801} @@ -413538,6 +427799,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 734609925} +--- !u!1 &734705504 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 734705505} + - component: {fileID: 734705507} + - component: {fileID: 734705506} + m_Layer: 0 + m_Name: axis_y20 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &734705505 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 734705504} + m_LocalRotation: {x: 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: 434931474} + 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: 562, y: 30} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &734705506 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 734705504} + 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: 0 + 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: +--- !u!222 &734705507 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 734705504} --- !u!1 &734871880 GameObject: m_ObjectHideFlags: 0 @@ -413911,7 +428246,7 @@ RectTransform: m_GameObject: {fileID: 736153127} 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: 896259669} - {fileID: 1006329597} @@ -414020,7 +428355,7 @@ RectTransform: m_GameObject: {fileID: 736265613} 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: 1663145619} - {fileID: 449244531} @@ -418120,7 +432455,7 @@ RectTransform: m_GameObject: {fileID: 747552767} 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: 1606640024} - {fileID: 2058976018} @@ -419163,6 +433498,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 749929283} +--- !u!1 &750167150 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 750167151} + - component: {fileID: 750167153} + - component: {fileID: 750167152} + m_Layer: 0 + m_Name: title_sub + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &750167151 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 750167150} + m_LocalRotation: {x: 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: 2060236888} + 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: 0, y: -24} + m_SizeDelta: {x: 584, y: 14} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &750167152 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 750167150} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 1 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: "\u901A\u8FC7VisualMap" +--- !u!222 &750167153 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 750167150} --- !u!1 &750263438 GameObject: m_ObjectHideFlags: 0 @@ -420701,7 +435110,7 @@ RectTransform: m_GameObject: {fileID: 754413906} 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: 1809169555} - {fileID: 555697850} @@ -422001,6 +436410,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 757761423} +--- !u!1 &757869649 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 757869650} + - component: {fileID: 757869652} + - component: {fileID: 757869651} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &757869650 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 757869649} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1702826699} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &757869651 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 757869649} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &757869652 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 757869649} --- !u!1 &757871092 GameObject: m_ObjectHideFlags: 0 @@ -423510,6 +437993,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 760754072} +--- !u!1 &761075301 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 761075302} + m_Layer: 0 + m_Name: label_0_2_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &761075302 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 761075301} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1233910516} + - {fileID: 881437452} + m_Father: {fileID: 960174449} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &761660698 GameObject: m_ObjectHideFlags: 0 @@ -424030,7 +438548,7 @@ RectTransform: m_GameObject: {fileID: 763052334} 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: 851216511} - {fileID: 1473173590} @@ -426174,6 +440692,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 767436738} +--- !u!1 &767493186 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 767493187} + - component: {fileID: 767493189} + - component: {fileID: 767493188} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &767493187 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 767493186} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1934000866} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &767493188 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 767493186} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &767493189 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 767493186} --- !u!1 &767505394 GameObject: m_ObjectHideFlags: 1 @@ -426197,7 +440789,7 @@ RectTransform: m_GameObject: {fileID: 767505394} 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: 1293391714} - {fileID: 498351081} @@ -426361,6 +440953,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 768188619} +--- !u!1 &768249168 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 768249169} + m_Layer: 0 + m_Name: datazoom + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &768249169 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 768249168} + m_LocalRotation: {x: -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: 552317601} + - {fileID: 1845278165} + m_Father: {fileID: 297285224} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} --- !u!1 &768433734 GameObject: m_ObjectHideFlags: 0 @@ -426454,7 +441081,7 @@ RectTransform: m_GameObject: {fileID: 768513295} 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: 1604870689} - {fileID: 917629832} @@ -426820,6 +441447,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 770030533} +--- !u!1 &770099475 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 770099476} + - component: {fileID: 770099478} + - component: {fileID: 770099477} + m_Layer: 0 + m_Name: axis_y0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &770099476 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 770099475} + m_LocalRotation: {x: 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: 1790542136} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 30} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &770099477 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 770099475} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &770099478 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 770099475} --- !u!1 &770130473 GameObject: m_ObjectHideFlags: 1 @@ -426928,6 +441629,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 770165730} +--- !u!1 &770344128 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 770344129} + - component: {fileID: 770344131} + - component: {fileID: 770344130} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &770344129 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 770344128} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1116243853} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &770344130 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 770344128} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &770344131 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 770344128} --- !u!1 &770384691 GameObject: m_ObjectHideFlags: 0 @@ -429048,10 +443817,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -429338,6 +444103,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -429391,6 +444157,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -429488,6 +444255,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -429542,6 +444310,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -429627,6 +444396,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -429681,6 +444451,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -429766,6 +444537,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -429820,6 +444592,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -429905,6 +444678,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -429959,6 +444733,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -430044,6 +444819,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -430098,6 +444874,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -430183,6 +444960,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -430237,6 +445015,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -430322,6 +445101,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -430376,6 +445156,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -430461,6 +445242,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -430515,6 +445297,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -430600,6 +445383,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -430654,6 +445438,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -430739,6 +445524,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -430793,6 +445579,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -430878,6 +445665,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -430932,6 +445720,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -431017,6 +445806,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -431071,6 +445861,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -431156,6 +445947,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -431210,6 +446002,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -431295,6 +446088,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -431349,6 +446143,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -431434,6 +446229,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -431488,6 +446284,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -431573,6 +446370,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -431627,6 +446425,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -431712,6 +446511,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -431766,6 +446566,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -431851,6 +446652,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -431905,6 +446707,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -431990,6 +446793,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -432044,6 +446848,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -432129,6 +446934,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -432183,6 +446989,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -432268,6 +447075,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -432322,6 +447130,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -432407,6 +447216,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -432461,6 +447271,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -432546,6 +447357,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -432600,6 +447412,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -432685,6 +447498,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -432739,6 +447553,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -432824,6 +447639,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -432878,6 +447694,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -432963,6 +447780,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -433017,6 +447835,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -433102,6 +447921,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -433156,6 +447976,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -433241,6 +448062,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -433295,6 +448117,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -433380,6 +448203,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -433434,6 +448258,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -433519,6 +448344,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -433573,6 +448399,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -433658,6 +448485,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -433712,6 +448540,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -433797,6 +448626,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -433851,6 +448681,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -433936,6 +448767,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -433990,6 +448822,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -434075,6 +448908,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -434129,6 +448963,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -434214,6 +449049,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -434268,6 +449104,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -434353,6 +449190,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -434407,6 +449245,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -434492,6 +449331,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -434546,6 +449386,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -434631,6 +449472,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -434685,6 +449527,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -434770,6 +449613,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -434824,6 +449668,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -434909,6 +449754,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -434963,6 +449809,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -435048,6 +449895,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -435102,6 +449950,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -435187,6 +450036,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -435241,6 +450091,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -435326,6 +450177,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -435380,6 +450232,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -435465,6 +450318,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -435519,6 +450373,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -435604,6 +450459,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -435658,6 +450514,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -435743,6 +450600,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -435797,6 +450655,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -435882,6 +450741,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -435936,6 +450796,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -436021,6 +450882,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -436075,6 +450937,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -436160,6 +451023,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -436214,6 +451078,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -436299,6 +451164,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -436353,6 +451219,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -436438,6 +451305,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -436492,6 +451360,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -436577,6 +451446,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -436631,6 +451501,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -436716,6 +451587,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -436770,6 +451642,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -436855,6 +451728,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -436909,6 +451783,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -436994,6 +451869,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -437048,6 +451924,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -437133,6 +452010,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -437187,6 +452065,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -437272,6 +452151,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -437326,6 +452206,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -437411,6 +452292,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -437465,6 +452347,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -437550,6 +452433,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -437604,6 +452488,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -437689,6 +452574,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -437743,6 +452629,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -437828,6 +452715,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -437882,6 +452770,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -437967,6 +452856,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -438021,6 +452911,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -438106,6 +452997,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -438160,6 +453052,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -438245,6 +453138,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -438299,6 +453193,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -438384,6 +453279,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -438438,6 +453334,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -438523,6 +453420,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -438577,6 +453475,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -438662,6 +453561,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -438716,6 +453616,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -438801,6 +453702,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -438855,6 +453757,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -438940,6 +453843,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -438994,6 +453898,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -439079,6 +453984,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -439133,6 +454039,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -439218,6 +454125,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -439272,6 +454180,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -439357,6 +454266,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -439411,6 +454321,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -439496,6 +454407,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -439550,6 +454462,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -439635,6 +454548,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -439689,6 +454603,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -439774,6 +454689,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -439828,6 +454744,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -439913,6 +454830,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -439967,6 +454885,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -440052,6 +454971,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -440106,6 +455026,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -440191,6 +455112,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -440245,6 +455167,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -440330,6 +455253,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -440384,6 +455308,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -440469,6 +455394,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -440523,6 +455449,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -440608,6 +455535,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -440662,6 +455590,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -440747,6 +455676,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -440801,6 +455731,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -440886,6 +455817,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -440940,6 +455872,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -441025,6 +455958,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -441079,6 +456013,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -441164,6 +456099,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -441218,6 +456154,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -441303,6 +456240,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -441357,6 +456295,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -441442,6 +456381,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -441496,6 +456436,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -441581,6 +456522,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -441635,6 +456577,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -441720,6 +456663,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -441774,6 +456718,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -441859,6 +456804,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -441913,6 +456859,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -441998,6 +456945,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -442052,6 +457000,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -442137,6 +457086,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -442191,6 +457141,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -442276,6 +457227,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -442330,6 +457282,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -442415,6 +457368,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -442469,6 +457423,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -442554,6 +457509,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -442608,6 +457564,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -442693,6 +457650,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -442747,6 +457705,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -442832,6 +457791,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -442886,6 +457846,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -442971,6 +457932,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -443025,6 +457987,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -443110,6 +458073,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -443164,6 +458128,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -443249,6 +458214,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -443303,6 +458269,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -443388,6 +458355,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -443442,6 +458410,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -443527,6 +458496,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -443581,6 +458551,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -443666,6 +458637,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -443720,6 +458692,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -443805,6 +458778,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -443859,6 +458833,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -443944,6 +458919,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -443998,6 +458974,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -444083,6 +459060,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -444137,6 +459115,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -444222,6 +459201,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -444276,6 +459256,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -444361,6 +459342,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -444415,6 +459397,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -444500,6 +459483,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -444554,6 +459538,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -444639,6 +459624,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -444693,6 +459679,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -444778,6 +459765,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -444832,6 +459820,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -444917,6 +459906,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -444971,6 +459961,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -445056,6 +460047,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -445110,6 +460102,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -445195,6 +460188,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -445249,6 +460243,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -445334,6 +460329,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -445388,6 +460384,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -445473,6 +460470,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -445527,6 +460525,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -445612,6 +460611,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -445666,6 +460666,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -445751,6 +460752,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -445805,6 +460807,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -445890,6 +460893,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -445944,6 +460948,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -446029,6 +461034,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -446083,6 +461089,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -446168,6 +461175,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -446222,6 +461230,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -446307,6 +461316,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -446361,6 +461371,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -446446,6 +461457,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -446500,6 +461512,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -446585,6 +461598,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -446639,6 +461653,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -446724,6 +461739,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -446778,6 +461794,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -446863,6 +461880,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -446917,6 +461935,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -447002,6 +462021,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -447056,6 +462076,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -447141,6 +462162,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -447195,6 +462217,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -447280,6 +462303,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -447334,6 +462358,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -447419,6 +462444,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -447473,6 +462499,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -447558,6 +462585,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -447612,6 +462640,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -447697,6 +462726,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -447751,6 +462781,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -447836,6 +462867,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -447890,6 +462922,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -447975,6 +463008,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -448029,6 +463063,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -448114,6 +463149,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -448168,6 +463204,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -448253,6 +463290,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -448307,6 +463345,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -448392,6 +463431,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -448446,6 +463486,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -448531,6 +463572,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -448585,6 +463627,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -448670,6 +463713,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -448724,6 +463768,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -448809,6 +463854,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -448863,6 +463909,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -448948,6 +463995,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -449002,6 +464050,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -449087,6 +464136,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -449141,6 +464191,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -449226,6 +464277,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -449280,6 +464332,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -449365,6 +464418,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -449419,6 +464473,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -449504,6 +464559,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -449558,6 +464614,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -449643,6 +464700,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -449697,6 +464755,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -449782,6 +464841,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -449836,6 +464896,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -449921,6 +464982,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -449975,6 +465037,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -450060,6 +465123,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -450114,6 +465178,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -450199,6 +465264,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -450253,6 +465319,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -450338,6 +465405,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -450392,6 +465460,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -450477,6 +465546,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -450531,6 +465601,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -450616,6 +465687,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -450670,6 +465742,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -450755,6 +465828,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -450809,6 +465883,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -450894,6 +465969,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -450948,6 +466024,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -451033,6 +466110,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -451087,6 +466165,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -451172,6 +466251,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -451226,6 +466306,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -451311,6 +466392,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -451365,6 +466447,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -451450,6 +466533,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -451504,6 +466588,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -451589,6 +466674,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -451643,6 +466729,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -451728,6 +466815,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -451782,6 +466870,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -451867,6 +466956,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -451921,6 +467011,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -452006,6 +467097,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -452060,6 +467152,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -452145,6 +467238,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -452199,6 +467293,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -452284,6 +467379,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -452338,6 +467434,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -452423,6 +467520,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -452477,6 +467575,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -452562,6 +467661,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -452616,6 +467716,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -452701,6 +467802,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -452755,6 +467857,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -452840,6 +467943,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -452894,6 +467998,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -452979,6 +468084,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -453033,6 +468139,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -453118,6 +468225,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -453172,6 +468280,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -453257,6 +468366,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -453311,6 +468421,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -453396,6 +468507,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -453450,6 +468562,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -453535,6 +468648,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -453589,6 +468703,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -453674,6 +468789,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -453728,6 +468844,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -453813,6 +468930,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -453867,6 +468985,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -453952,6 +469071,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -454006,6 +469126,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -454091,6 +469212,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -454145,6 +469267,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -454230,6 +469353,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -454284,6 +469408,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -454369,6 +469494,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -454423,6 +469549,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -454508,6 +469635,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -454562,6 +469690,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -454647,6 +469776,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -454701,6 +469831,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -454786,6 +469917,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -454840,6 +469972,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -454925,6 +470058,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -454979,6 +470113,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -455064,6 +470199,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -455118,6 +470254,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -455203,6 +470340,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -455257,6 +470395,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -455342,6 +470481,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -455396,6 +470536,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -455481,6 +470622,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -455535,6 +470677,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -455620,6 +470763,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -455674,6 +470818,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -455759,6 +470904,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -455813,6 +470959,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -455898,6 +471045,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -455952,6 +471100,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -456037,6 +471186,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -456091,6 +471241,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -456176,6 +471327,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -456230,6 +471382,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -456315,6 +471468,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -456369,6 +471523,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -456454,6 +471609,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -456508,6 +471664,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -456593,6 +471750,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -456647,6 +471805,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -456732,6 +471891,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -456786,6 +471946,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -456871,6 +472032,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -456925,6 +472087,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -457010,6 +472173,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -457064,6 +472228,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -457149,6 +472314,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -457203,6 +472369,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -457288,6 +472455,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -457342,6 +472510,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -457427,6 +472596,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -457481,6 +472651,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -457566,6 +472737,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -457620,6 +472792,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -457705,6 +472878,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -457759,6 +472933,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -457844,6 +473019,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -457898,6 +473074,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -457983,6 +473160,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -458037,6 +473215,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -458122,6 +473301,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -458176,6 +473356,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -458261,6 +473442,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -458315,6 +473497,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -458400,6 +473583,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -458454,6 +473638,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -458539,6 +473724,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -458593,6 +473779,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -458678,6 +473865,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -458732,6 +473920,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -458817,6 +474006,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -458871,6 +474061,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -458956,6 +474147,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -459010,6 +474202,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -459095,6 +474288,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -459149,6 +474343,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -459234,6 +474429,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -459288,6 +474484,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -459373,6 +474570,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -459427,6 +474625,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -459512,6 +474711,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -459566,6 +474766,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -459651,6 +474852,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -459705,6 +474907,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -459790,6 +474993,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -459844,6 +475048,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -459929,6 +475134,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -459983,6 +475189,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -460068,6 +475275,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -460122,6 +475330,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -460207,6 +475416,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -460261,6 +475471,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -460346,6 +475557,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -460400,6 +475612,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -460485,6 +475698,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -460539,6 +475753,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -460624,6 +475839,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -460678,6 +475894,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -460763,6 +475980,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -460817,6 +476035,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -460902,6 +476121,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -460956,6 +476176,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -461041,6 +476262,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -461095,6 +476317,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -461180,6 +476403,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -461234,6 +476458,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -461319,6 +476544,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -461373,6 +476599,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -461458,6 +476685,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -461512,6 +476740,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -461597,6 +476826,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -461651,6 +476881,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -461736,6 +476967,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -461790,6 +477022,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -461875,6 +477108,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -461929,6 +477163,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -462014,6 +477249,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -462068,6 +477304,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -462153,6 +477390,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -462207,6 +477445,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -462292,6 +477531,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -462346,6 +477586,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -462431,6 +477672,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -462485,6 +477727,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -462570,6 +477813,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -462624,6 +477868,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -462709,6 +477954,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -462763,6 +478009,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -462848,6 +478095,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -462902,6 +478150,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -462987,6 +478236,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -463041,6 +478291,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -463126,6 +478377,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -463180,6 +478432,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -463265,6 +478518,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -463319,6 +478573,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -463404,6 +478659,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -463458,6 +478714,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -463543,6 +478800,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -463597,6 +478855,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -463682,6 +478941,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -463736,6 +478996,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -463821,6 +479082,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -463875,6 +479137,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -463960,6 +479223,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -464014,6 +479278,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -464099,6 +479364,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -464153,6 +479419,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -464238,6 +479505,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -464292,6 +479560,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -464377,6 +479646,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -464431,6 +479701,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -464516,6 +479787,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -464570,6 +479842,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -464655,6 +479928,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -464709,6 +479983,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -464794,6 +480069,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -464848,6 +480124,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -464933,6 +480210,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -464987,6 +480265,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -465072,6 +480351,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -465126,6 +480406,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -465211,6 +480492,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -465265,6 +480547,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -465350,6 +480633,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -465404,6 +480688,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -465489,6 +480774,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -465543,6 +480829,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -465628,6 +480915,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -465682,6 +480970,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -465767,6 +481056,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -465821,6 +481111,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -465906,6 +481197,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -465960,6 +481252,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -466045,6 +481338,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -466099,6 +481393,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -466184,6 +481479,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -466238,6 +481534,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -466323,6 +481620,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -466377,6 +481675,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -466462,6 +481761,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -466516,6 +481816,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -466601,6 +481902,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -466655,6 +481957,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -466740,6 +482043,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -466794,6 +482098,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -466879,6 +482184,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -466933,6 +482239,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -467018,6 +482325,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -467072,6 +482380,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -467157,6 +482466,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -467211,6 +482521,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -467296,6 +482607,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -467350,6 +482662,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -467435,6 +482748,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -467489,6 +482803,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -467574,6 +482889,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -467628,6 +482944,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -467713,6 +483030,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -467767,6 +483085,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -467852,6 +483171,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -467906,6 +483226,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -467991,6 +483312,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -468045,6 +483367,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -468130,6 +483453,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -468184,6 +483508,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -468269,6 +483594,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -468323,6 +483649,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -468408,6 +483735,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -468462,6 +483790,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -468547,6 +483876,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -468601,6 +483931,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -468686,6 +484017,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -468740,6 +484072,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -468825,6 +484158,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -468879,6 +484213,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -468964,6 +484299,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -469018,6 +484354,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -469103,6 +484440,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -469157,6 +484495,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -469242,6 +484581,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -469296,6 +484636,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -469381,6 +484722,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -469435,6 +484777,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -469520,6 +484863,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -469574,6 +484918,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -469659,6 +485004,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -469713,6 +485059,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -469798,6 +485145,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -469852,6 +485200,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -469937,6 +485286,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -469991,6 +485341,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -470076,6 +485427,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -470130,6 +485482,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -470215,6 +485568,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -470269,6 +485623,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -470354,6 +485709,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -470408,6 +485764,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -470493,6 +485850,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -470547,6 +485905,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -470632,6 +485991,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -470686,6 +486046,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -470771,6 +486132,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -470825,6 +486187,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -470910,6 +486273,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -470964,6 +486328,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -471049,6 +486414,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -471103,6 +486469,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -471188,6 +486555,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -471242,6 +486610,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -471327,6 +486696,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -471381,6 +486751,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -471466,6 +486837,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -471520,6 +486892,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -471605,6 +486978,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -471659,6 +487033,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -471744,6 +487119,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -471798,6 +487174,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -471883,6 +487260,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -471937,6 +487315,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -472022,6 +487401,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -472076,6 +487456,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -472161,6 +487542,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -472215,6 +487597,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -472300,6 +487683,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -472354,6 +487738,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -472439,6 +487824,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -472493,6 +487879,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -472578,6 +487965,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -472632,6 +488020,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -472717,6 +488106,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -472771,6 +488161,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -472856,6 +488247,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -472910,6 +488302,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -472995,6 +488388,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -473049,6 +488443,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -473134,6 +488529,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -473188,6 +488584,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -473273,6 +488670,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -473327,6 +488725,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -473412,6 +488811,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -473466,6 +488866,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -473551,6 +488952,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -473605,6 +489007,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -473690,6 +489093,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -473744,6 +489148,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -473829,6 +489234,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -473883,6 +489289,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -473968,6 +489375,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -474022,6 +489430,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -474107,6 +489516,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -474161,6 +489571,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -474246,6 +489657,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -474300,6 +489712,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -474385,6 +489798,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -474439,6 +489853,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -474524,6 +489939,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -474578,6 +489994,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -474663,6 +490080,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -474717,6 +490135,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -474802,6 +490221,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -474856,6 +490276,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -474941,6 +490362,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -474995,6 +490417,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -475080,6 +490503,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -475134,6 +490558,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -475219,6 +490644,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -475273,6 +490699,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -475358,6 +490785,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -475412,6 +490840,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -475497,6 +490926,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -475551,6 +490981,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -475636,6 +491067,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -475690,6 +491122,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -475775,6 +491208,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -475829,6 +491263,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -475914,6 +491349,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -475968,6 +491404,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -476053,6 +491490,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -476107,6 +491545,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -476192,6 +491631,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -476246,6 +491686,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -476331,6 +491772,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -476385,6 +491827,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -476470,6 +491913,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -476524,6 +491968,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -476609,6 +492054,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -476663,6 +492109,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -476748,6 +492195,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -476802,6 +492250,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -476887,6 +492336,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -476941,6 +492391,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -477026,6 +492477,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -477080,6 +492532,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -477165,6 +492618,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -477219,6 +492673,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -477304,6 +492759,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -477358,6 +492814,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -477443,6 +492900,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -477497,6 +492955,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -477582,6 +493041,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -477636,6 +493096,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -477721,6 +493182,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -477775,6 +493237,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -477860,6 +493323,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -477914,6 +493378,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -477999,6 +493464,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -478053,6 +493519,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -478138,6 +493605,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -478192,6 +493660,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -478277,6 +493746,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -478331,6 +493801,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -478416,6 +493887,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -478470,6 +493942,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -478555,6 +494028,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -478609,6 +494083,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -478694,6 +494169,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -478748,6 +494224,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -478833,6 +494310,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -478887,6 +494365,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -478972,6 +494451,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -479026,6 +494506,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -479111,6 +494592,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -479165,6 +494647,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -479250,6 +494733,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -479304,6 +494788,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -479389,6 +494874,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -479443,6 +494929,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -479528,6 +495015,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -479582,6 +495070,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -481078,6 +496567,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 778537737} +--- !u!1 &778595205 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 778595206} + m_Layer: 0 + m_Name: label_1_4_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &778595206 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 778595205} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1872254434} + - {fileID: 899497527} + m_Father: {fileID: 960174449} + m_RootOrder: 11 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &779094622 GameObject: m_ObjectHideFlags: 0 @@ -482504,10 +498028,10 @@ RectTransform: m_Father: {fileID: 191364310} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -4} - m_SizeDelta: {x: 584, y: 300} + 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, y: 1} --- !u!114 &782651942 MonoBehaviour: @@ -482522,7 +498046,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 + m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] @@ -482711,10 +498235,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -483002,6 +498522,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -483055,6 +498576,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -483152,6 +498674,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -483206,6 +498729,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -483291,6 +498815,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -483345,6 +498870,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -483430,6 +498956,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -483484,6 +499011,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -483569,6 +499097,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -483623,6 +499152,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -483708,6 +499238,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -483762,6 +499293,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -483847,6 +499379,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -483901,6 +499434,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -483986,6 +499520,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -484040,6 +499575,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -484495,6 +500031,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -484515,6 +500052,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -485316,6 +500854,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 784042861} +--- !u!1 &784456184 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 784456185} + - component: {fileID: 784456187} + - component: {fileID: 784456186} + m_Layer: 0 + m_Name: axis_x6 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &784456185 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 784456184} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 811752472} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 554, y: -287} + m_SizeDelta: {x: 72, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &784456186 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 784456184} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Sun +--- !u!222 &784456187 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 784456184} --- !u!1 &784679420 GameObject: m_ObjectHideFlags: 0 @@ -486064,6 +501676,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 1} +--- !u!1 &786151539 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 786151540} + - component: {fileID: 786151542} + - component: {fileID: 786151541} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &786151540 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 786151539} + m_LocalRotation: {x: 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: 1662190220} + 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: 1, y: 1} +--- !u!114 &786151541 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 786151539} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &786151542 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 786151539} --- !u!1 &786159335 GameObject: m_ObjectHideFlags: 0 @@ -489801,6 +505487,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 795122438} +--- !u!1 &795222398 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 795222399} + m_Layer: 0 + m_Name: label_0_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &795222399 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 795222398} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1191119162} + - {fileID: 342844497} + m_Father: {fileID: 960174449} + m_RootOrder: 14 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &795369622 GameObject: m_ObjectHideFlags: 0 @@ -490653,6 +506374,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 797275419} +--- !u!1 &797288397 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 797288398} + - component: {fileID: 797288400} + - component: {fileID: 797288399} + m_Layer: 0 + m_Name: title_2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &797288398 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 797288397} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 2129889692} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 12} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &797288399 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 797288397} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &797288400 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 797288397} --- !u!1 &797323803 GameObject: m_ObjectHideFlags: 0 @@ -491269,6 +507064,74 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 1} +--- !u!1 &798960110 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 798960111} + - component: {fileID: 798960113} + - component: {fileID: 798960112} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &798960111 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 798960110} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 595624506} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &798960112 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 798960110} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &798960113 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 798960110} --- !u!1 &799095860 GameObject: m_ObjectHideFlags: 0 @@ -491932,7 +507795,7 @@ RectTransform: m_GameObject: {fileID: 801884282} 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: 820711623} - {fileID: 2055032661} @@ -492951,7 +508814,7 @@ RectTransform: m_GameObject: {fileID: 804056303} 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: 422319711} - {fileID: 175981294} @@ -495783,6 +511646,46 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &811752471 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 811752472} + m_Layer: 0 + m_Name: axis_x + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &811752472 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 811752471} + m_LocalRotation: {x: -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: 416935375} + - {fileID: 1146243309} + - {fileID: 1769092906} + - {fileID: 1230780900} + - {fileID: 1401023187} + - {fileID: 66440965} + - {fileID: 784456185} + m_Father: {fileID: 92764070} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} --- !u!1 &811895507 GameObject: m_ObjectHideFlags: 1 @@ -497885,7 +513788,7 @@ RectTransform: m_GameObject: {fileID: 817350104} 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: 1776527721} - {fileID: 1548333713} @@ -500215,6 +516118,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 823365340} +--- !u!1 &823434814 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 823434815} + m_Layer: 0 + m_Name: label_0_3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &823434815 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 823434814} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1230658545} + - {fileID: 974581844} + m_Father: {fileID: 960174449} + m_RootOrder: 17 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &823439985 GameObject: m_ObjectHideFlags: 0 @@ -500424,6 +516362,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 823917006} +--- !u!1 &823975425 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 823975426} + - component: {fileID: 823975428} + - component: {fileID: 823975427} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &823975426 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 823975425} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1209130970} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &823975427 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 823975425} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &823975428 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 823975425} --- !u!1 &824125096 GameObject: m_ObjectHideFlags: 0 @@ -505384,7 +521396,7 @@ RectTransform: m_GameObject: {fileID: 838765783} 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: 186634837} - {fileID: 709879484} @@ -506918,6 +522930,41 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &842420270 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 842420271} + m_Layer: 0 + m_Name: label_0_3_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &842420271 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 842420270} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 168679409} + - {fileID: 880357586} + m_Father: {fileID: 960174449} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &842536508 GameObject: m_ObjectHideFlags: 0 @@ -507021,6 +523068,74 @@ RectTransform: m_AnchoredPosition: {x: 120.08334, y: 44.71428} m_SizeDelta: {x: 12, y: 19.333332} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &842604063 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 842604064} + - component: {fileID: 842604066} + - component: {fileID: 842604065} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &842604064 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 842604063} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1635946209} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &842604065 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 842604063} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &842604066 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 842604063} --- !u!1 &842691989 GameObject: m_ObjectHideFlags: 0 @@ -507272,6 +523387,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 843095826} +--- !u!1 &843208558 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 843208559} + - component: {fileID: 843208561} + - component: {fileID: 843208560} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &843208559 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 843208558} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 848795358} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &843208560 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 843208558} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &843208561 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 843208558} --- !u!1 &843278555 GameObject: m_ObjectHideFlags: 0 @@ -509935,6 +526124,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 848781418} +--- !u!1 &848795357 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 848795358} + m_Layer: 0 + m_Name: label_0_1_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &848795358 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 848795357} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 843208559} + - {fileID: 1567759020} + m_Father: {fileID: 1969376537} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &848844516 GameObject: m_ObjectHideFlags: 0 @@ -510495,7 +526719,7 @@ RectTransform: m_GameObject: {fileID: 849504903} 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: 654135076} m_RootOrder: 1 @@ -511189,6 +527413,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 850977449} +--- !u!1 &851063899 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 851063900} + m_Layer: 0 + m_Name: label_2_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &851063900 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 851063899} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 564022983} + - {fileID: 1235521912} + m_Father: {fileID: 960174449} + m_RootOrder: 28 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &851073836 GameObject: m_ObjectHideFlags: 0 @@ -513419,6 +529678,18 @@ MonoBehaviour: m_Calls: [] m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - 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 &855605996 MonoBehaviour: @@ -518236,6 +534507,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 867578869} +--- !u!1 &867650149 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 867650150} + m_Layer: 0 + m_Name: label_1_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &867650150 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 867650149} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 631052971} + - {fileID: 220301005} + m_Father: {fileID: 1969376537} + m_RootOrder: 21 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &867823198 GameObject: m_ObjectHideFlags: 0 @@ -518870,6 +535176,46 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 869001953} +--- !u!1 &869298476 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 869298477} + m_Layer: 0 + m_Name: axis_x + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &869298477 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 869298476} + m_LocalRotation: {x: -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: 1055692405} + - {fileID: 365764164} + - {fileID: 1333057694} + - {fileID: 1916793301} + - {fileID: 1552867487} + - {fileID: 1611091101} + - {fileID: 1480370528} + m_Father: {fileID: 2066464034} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} --- !u!1 &869324038 GameObject: m_ObjectHideFlags: 0 @@ -519296,6 +535642,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 869744404} +--- !u!1 &869758432 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 869758433} + - component: {fileID: 869758435} + - component: {fileID: 869758434} + m_Layer: 0 + m_Name: axis_y4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &869758433 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 869758432} + m_LocalRotation: {x: 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: 1216071423} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 250} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &869758434 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 869758432} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 100 +--- !u!222 &869758435 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 869758432} --- !u!1 &870027470 GameObject: m_ObjectHideFlags: 0 @@ -519729,6 +536149,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 870472289} +--- !u!1 &870488540 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 870488541} + m_Layer: 0 + m_Name: label_0_4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &870488541 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 870488540} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1747063440} + - {fileID: 2007008243} + m_Father: {fileID: 960174449} + m_RootOrder: 18 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &870526852 GameObject: m_ObjectHideFlags: 0 @@ -520377,6 +536832,80 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &871427466 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 871427467} + - component: {fileID: 871427469} + - component: {fileID: 871427468} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &871427467 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 871427466} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 510300489} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &871427468 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 871427466} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &871427469 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 871427466} --- !u!1 &871696514 GameObject: m_ObjectHideFlags: 0 @@ -520953,6 +537482,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 872661529} +--- !u!1 &872795481 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 872795482} + - component: {fileID: 872795484} + - component: {fileID: 872795483} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &872795482 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 872795481} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 109150041} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &872795483 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 872795481} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &872795484 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 872795481} --- !u!1 &873052562 GameObject: m_ObjectHideFlags: 0 @@ -521156,7 +537753,7 @@ RectTransform: m_GameObject: {fileID: 873321997} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 1023455109} m_Father: {fileID: 1934324170} @@ -524019,6 +540616,74 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &880357585 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 880357586} + - component: {fileID: 880357588} + - component: {fileID: 880357587} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &880357586 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 880357585} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 842420271} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &880357587 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 880357585} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &880357588 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 880357585} --- !u!1 &880438407 GameObject: m_ObjectHideFlags: 0 @@ -524474,6 +541139,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 881195189} +--- !u!1 &881437451 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 881437452} + - component: {fileID: 881437454} + - component: {fileID: 881437453} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &881437452 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 881437451} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 761075302} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &881437453 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 881437451} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &881437454 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 881437451} --- !u!1 &881502369 GameObject: m_ObjectHideFlags: 0 @@ -525205,7 +541938,7 @@ RectTransform: m_GameObject: {fileID: 882958251} 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: 494657976} - {fileID: 1592959899} @@ -525358,6 +542091,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 883070494} +--- !u!1 &883072299 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 883072300} + m_Layer: 0 + m_Name: label_2_2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &883072300 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 883072299} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 960978836} + - {fileID: 612188212} + m_Father: {fileID: 1574269530} + m_RootOrder: 30 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &883092545 GameObject: m_ObjectHideFlags: 0 @@ -525466,10 +542234,10 @@ RectTransform: m_Father: {fileID: 191364310} 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: 592, y: -1220} - m_SizeDelta: {x: 584, y: 300} + 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, y: 1} --- !u!114 &883296609 MonoBehaviour: @@ -525484,7 +542252,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 + m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] @@ -525673,10 +542441,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -525965,6 +542729,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -526018,6 +542783,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -526115,6 +542881,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -526169,6 +542936,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -526254,6 +543022,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -526308,6 +543077,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -526393,6 +543163,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -526447,6 +543218,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -526902,6 +543674,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -526922,6 +543695,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -526962,7 +543736,7 @@ RectTransform: m_GameObject: {fileID: 883448915} 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: 1291734685} - {fileID: 562557415} @@ -529235,6 +546009,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 888490529} +--- !u!1 &888523590 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 888523591} + - component: {fileID: 888523593} + - component: {fileID: 888523592} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &888523591 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 888523590} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1873266334} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &888523592 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 888523590} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &888523593 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 888523590} --- !u!1 &888847738 GameObject: m_ObjectHideFlags: 0 @@ -533721,10 +550563,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -534011,6 +550849,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -534064,6 +550903,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -534161,6 +551001,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -534215,6 +551056,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -534301,6 +551143,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -534355,6 +551198,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -534441,6 +551285,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -534495,6 +551340,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -535085,6 +551931,74 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &899497526 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 899497527} + - component: {fileID: 899497529} + - component: {fileID: 899497528} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &899497527 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 899497526} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 778595206} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &899497528 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 899497526} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &899497529 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 899497526} --- !u!1 &899549426 GameObject: m_ObjectHideFlags: 0 @@ -535938,6 +552852,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 901562224} +--- !u!1 &901824679 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 901824680} + - component: {fileID: 901824682} + - component: {fileID: 901824681} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &901824680 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 901824679} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 102760328} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &901824681 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 901824679} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &901824682 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 901824679} --- !u!1 &902043628 GameObject: m_ObjectHideFlags: 0 @@ -537995,7 +554977,7 @@ RectTransform: m_GameObject: {fileID: 908522327} 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: 671304405} - {fileID: 2005597647} @@ -538283,6 +555265,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 909146605} +--- !u!1 &909266512 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 909266513} + - component: {fileID: 909266515} + - component: {fileID: 909266514} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &909266513 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 909266512} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 138035055} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &909266514 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 909266512} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &909266515 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 909266512} --- !u!1 &909355353 GameObject: m_ObjectHideFlags: 0 @@ -538666,7 +555722,7 @@ RectTransform: m_GameObject: {fileID: 910106118} 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: 1697988097} - {fileID: 751328720} @@ -540384,7 +557440,7 @@ RectTransform: m_GameObject: {fileID: 914585924} 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: 204331003} - {fileID: 1669370324} @@ -540609,6 +557665,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 914709391} +--- !u!1 &914807401 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 914807402} + - component: {fileID: 914807404} + - component: {fileID: 914807403} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &914807402 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 914807401} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1675162275} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &914807403 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 914807401} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &914807404 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 914807401} --- !u!1 &914876245 GameObject: m_ObjectHideFlags: 0 @@ -541391,6 +558521,41 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &916494242 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 916494243} + m_Layer: 0 + m_Name: label_1_5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &916494243 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 916494242} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 924360200} + - {fileID: 968271076} + m_Father: {fileID: 1969376537} + m_RootOrder: 26 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &917003875 GameObject: m_ObjectHideFlags: 0 @@ -542690,6 +559855,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 919016715} +--- !u!1 &919094197 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 919094198} + - component: {fileID: 919094200} + - component: {fileID: 919094199} + m_Layer: 0 + m_Name: axis_x24 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &919094198 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 919094197} + m_LocalRotation: {x: 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: 292644576} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 554, y: -33} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &919094199 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 919094197} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &919094200 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 919094197} --- !u!1 &919419543 GameObject: m_ObjectHideFlags: 0 @@ -544893,6 +562132,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &924011408 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 924011409} + - component: {fileID: 924011411} + - component: {fileID: 924011410} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &924011409 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 924011408} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1893519936} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &924011410 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 924011408} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &924011411 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 924011408} --- !u!1 &924012228 GameObject: m_ObjectHideFlags: 0 @@ -545144,6 +562457,74 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &924360199 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 924360200} + - component: {fileID: 924360202} + - component: {fileID: 924360201} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &924360200 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 924360199} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 916494243} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &924360201 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 924360199} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &924360202 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 924360199} --- !u!1 &924361953 GameObject: m_ObjectHideFlags: 0 @@ -545958,6 +563339,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 926025907} +--- !u!1 &926071832 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 926071833} + - component: {fileID: 926071835} + - component: {fileID: 926071834} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &926071833 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 926071832} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 167300117} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &926071834 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 926071832} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &926071835 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 926071832} --- !u!1 &926159339 GameObject: m_ObjectHideFlags: 0 @@ -546431,10 +563880,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -546724,6 +564169,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -546777,6 +564223,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -546874,6 +564321,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -546928,6 +564376,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -547018,6 +564467,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -547072,6 +564522,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -547154,6 +564605,7 @@ MonoBehaviour: m_PositionType: 1 m_IndicatorGap: 10 m_CeilRate: 0 + m_IsAxisTooltip: 0 m_IndicatorList: - m_Name: "\u9500\u552E" m_Max: 6500 @@ -547492,7 +564944,7 @@ RectTransform: m_GameObject: {fileID: 927295139} 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: 1389620132} - {fileID: 1025727823} @@ -548727,10 +566179,10 @@ RectTransform: m_Father: {fileID: 191364310} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -612} - m_SizeDelta: {x: 584, y: 300} + 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, y: 1} --- !u!114 &930446420 MonoBehaviour: @@ -548745,7 +566197,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 + m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] @@ -548934,10 +566386,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -549224,6 +566672,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -549277,6 +566726,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -549374,6 +566824,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -549428,6 +566879,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -549513,6 +566965,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -549567,6 +567020,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -549652,6 +567106,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -549706,6 +567161,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -549791,6 +567247,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -549845,6 +567302,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -549930,6 +567388,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -549984,6 +567443,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -550069,6 +567529,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -550123,6 +567584,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -550208,6 +567670,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -550262,6 +567725,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -550506,6 +567970,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -550559,6 +568024,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -550656,6 +568122,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -550710,6 +568177,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -550795,6 +568263,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -550849,6 +568318,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -550934,6 +568404,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -550988,6 +568459,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -551073,6 +568545,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -551127,6 +568600,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -551212,6 +568686,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -551266,6 +568741,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -551351,6 +568827,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -551405,6 +568882,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -551490,6 +568968,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -551544,6 +569023,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -551788,6 +569268,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -551841,6 +569322,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -551938,6 +569420,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -551992,6 +569475,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -552077,6 +569561,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -552131,6 +569616,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -552216,6 +569702,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -552270,6 +569757,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -552355,6 +569843,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -552409,6 +569898,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -552494,6 +569984,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -552548,6 +570039,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -552633,6 +570125,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -552687,6 +570180,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -552772,6 +570266,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -552826,6 +570321,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -553281,6 +570777,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -553301,6 +570798,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -554099,6 +571597,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &932661114 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 932661115} + - component: {fileID: 932661117} + - component: {fileID: 932661116} + m_Layer: 0 + m_Name: axis_x0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &932661115 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 932661114} + m_LocalRotation: {x: 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: 1934019931} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 150.8, y: -287} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &932661116 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 932661114} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x1 +--- !u!222 &932661117 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 932661114} --- !u!1 &932662024 GameObject: m_ObjectHideFlags: 0 @@ -554629,6 +572201,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 934011986} +--- !u!1 &934119596 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 934119597} + - component: {fileID: 934119599} + - component: {fileID: 934119598} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &934119597 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 934119596} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1638602735} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &934119598 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 934119596} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &934119599 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 934119596} --- !u!1 &934305744 GameObject: m_ObjectHideFlags: 0 @@ -554845,6 +572485,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 934574837} +--- !u!1 &934700878 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 934700879} + m_Layer: 0 + m_Name: label_1_5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &934700879 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 934700878} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1321894819} + - {fileID: 1899320677} + m_Father: {fileID: 1574269530} + m_RootOrder: 26 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &934733529 GameObject: m_ObjectHideFlags: 0 @@ -554996,7 +572671,7 @@ GameObject: m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 1 + m_IsActive: 0 --- !u!224 &935316430 RectTransform: m_ObjectHideFlags: 0 @@ -555910,10 +573585,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -556201,6 +573872,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -556254,6 +573926,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -556351,6 +574024,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -556405,6 +574079,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -556490,6 +574165,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -556544,6 +574220,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -556629,6 +574306,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -556683,6 +574361,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -556768,6 +574447,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -556822,6 +574502,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -556907,6 +574588,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -556961,6 +574643,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -557046,6 +574729,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -557100,6 +574784,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -557185,6 +574870,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -557239,6 +574925,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -557483,6 +575170,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -557536,6 +575224,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -557633,6 +575322,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -557687,6 +575377,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -557772,6 +575463,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -557826,6 +575518,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -557911,6 +575604,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -557965,6 +575659,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -558050,6 +575745,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -558104,6 +575800,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -558189,6 +575886,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -558243,6 +575941,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -558328,6 +576027,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -558382,6 +576082,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -558467,6 +576168,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -558521,6 +576223,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -558976,6 +576679,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -558996,6 +576700,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -561422,6 +579127,80 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &943893883 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 943893884} + - component: {fileID: 943893886} + - component: {fileID: 943893885} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &943893884 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 943893883} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1909749949} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &943893885 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 943893883} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &943893886 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 943893883} --- !u!1 &943963445 GameObject: m_ObjectHideFlags: 0 @@ -561525,6 +579304,41 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &944017769 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 944017770} + m_Layer: 0 + m_Name: label_1_0_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &944017770 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 944017769} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1582605572} + - {fileID: 2067085227} + m_Father: {fileID: 960174449} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &944158112 GameObject: m_ObjectHideFlags: 0 @@ -563103,6 +580917,18 @@ MonoBehaviour: m_Calls: [] m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - 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 &946052564 MonoBehaviour: @@ -564034,10 +581860,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -564325,6 +582147,7 @@ MonoBehaviour: m_Show: 1 m_Color: {r: 0.9044118, g: 0.93101215, b: 0.93101215, a: 0.816} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -564378,6 +582201,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -564475,6 +582299,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -564529,6 +582354,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -564614,6 +582440,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -564668,6 +582495,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -564753,6 +582581,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -564807,6 +582636,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -564892,6 +582722,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -564946,6 +582777,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -565031,6 +582863,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -565085,6 +582918,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -565170,6 +583004,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -565224,6 +583059,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -565309,6 +583145,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -565363,6 +583200,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -565607,6 +583445,7 @@ MonoBehaviour: m_Show: 1 m_Color: {r: 0.06520329, g: 0.37613064, b: 0.9852941, a: 0.778} m_ToColor: {r: 0.28384516, g: 0.9191176, b: 0.89283043, a: 0.572} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -565660,6 +583499,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -565757,6 +583597,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -565811,6 +583652,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -565896,6 +583738,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -565950,6 +583793,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -566035,6 +583879,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -566089,6 +583934,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -566174,6 +584020,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -566228,6 +584075,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -566313,6 +584161,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -566367,6 +584216,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -566452,6 +584302,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -566506,6 +584357,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -566591,6 +584443,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -566645,6 +584498,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -567100,6 +584954,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -567120,6 +584975,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -569275,6 +587131,24 @@ MonoBehaviour: - {fileID: 1364794516} - {fileID: 1395806837} - {fileID: 1934324172} + - {fileID: 1923450787} + - {fileID: 1835109744} + - {fileID: 1737585332} + - {fileID: 1520897808} + - {fileID: 1481638112} + - {fileID: 930446420} + - {fileID: 883296609} + - {fileID: 782651942} + - {fileID: 654135077} + - {fileID: 627765468} + - {fileID: 517131344} + - {fileID: 408536199} + - {fileID: 358352447} + - {fileID: 124833370} + - {fileID: 33516771} + - {fileID: 92764072} + - {fileID: 297285226} + - {fileID: 2066464032} --- !u!4 &953846993 Transform: m_ObjectHideFlags: 0 @@ -570140,6 +588014,74 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &956424670 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 956424671} + - component: {fileID: 956424673} + - component: {fileID: 956424672} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &956424671 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 956424670} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1673074415} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &956424672 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 956424670} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &956424673 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 956424670} --- !u!1 &956522140 GameObject: m_ObjectHideFlags: 0 @@ -570393,6 +588335,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 957243861} +--- !u!1 &957407362 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 957407363} + m_Layer: 0 + m_Name: label_0_3_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &957407363 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 957407362} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1671873967} + - {fileID: 2120508909} + m_Father: {fileID: 1969376537} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &957492235 GameObject: m_ObjectHideFlags: 0 @@ -570641,6 +588618,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 958243585} +--- !u!1 &958302363 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 958302364} + - component: {fileID: 958302366} + - component: {fileID: 958302365} + m_Layer: 0 + m_Name: axis_x1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &958302364 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 958302363} + m_LocalRotation: {x: 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: 1934019931} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 251.6, y: -287} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &958302365 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 958302363} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x2 +--- !u!222 &958302366 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 958302363} --- !u!1 &958569640 GameObject: m_ObjectHideFlags: 0 @@ -571472,6 +589523,148 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 960022311} +--- !u!1 &960174448 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 960174449} + m_Layer: 0 + m_Name: label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &960174449 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 960174448} + m_LocalRotation: {x: -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: 1057578491} + - {fileID: 1116243853} + - {fileID: 761075302} + - {fileID: 842420271} + - {fileID: 1104735288} + - {fileID: 1117190222} + - {fileID: 1536587590} + - {fileID: 944017770} + - {fileID: 1170337933} + - {fileID: 673369356} + - {fileID: 510300489} + - {fileID: 778595206} + - {fileID: 1812311448} + - {fileID: 138035055} + - {fileID: 795222399} + - {fileID: 1464084637} + - {fileID: 9993739} + - {fileID: 823434815} + - {fileID: 870488541} + - {fileID: 2100206178} + - {fileID: 596980261} + - {fileID: 58599968} + - {fileID: 1638602735} + - {fileID: 595624506} + - {fileID: 1903940828} + - {fileID: 32373140} + - {fileID: 2141965504} + - {fileID: 1635946209} + - {fileID: 851063900} + - {fileID: 1644291520} + - {fileID: 1673074415} + - {fileID: 346419771} + - {fileID: 170164532} + - {fileID: 282324227} + - {fileID: 1562587876} + m_Father: {fileID: 92764070} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} +--- !u!1 &960192541 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 960192542} + - component: {fileID: 960192544} + - component: {fileID: 960192543} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &960192542 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 960192541} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1558033565} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &960192543 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 960192541} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &960192544 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 960192541} --- !u!1 &960197049 GameObject: m_ObjectHideFlags: 0 @@ -571907,6 +590100,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 960661771} +--- !u!1 &960978835 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 960978836} + - component: {fileID: 960978838} + - component: {fileID: 960978837} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &960978836 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 960978835} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 883072300} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &960978837 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 960978835} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &960978838 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 960978835} --- !u!1 &961007903 GameObject: m_ObjectHideFlags: 0 @@ -572625,6 +590886,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 963198141} +--- !u!1 &963198652 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 963198653} + - component: {fileID: 963198655} + - component: {fileID: 963198654} + m_Layer: 0 + m_Name: axis_x23 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &963198653 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 963198652} + m_LocalRotation: {x: 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: 623994319} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 453.2, y: -33} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &963198654 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 963198652} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &963198655 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 963198652} --- !u!1 &963538056 GameObject: m_ObjectHideFlags: 0 @@ -572958,10 +591293,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -573248,6 +591579,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -573301,6 +591633,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -573398,6 +591731,7 @@ MonoBehaviour: m_Show: 1 m_Color: {r: 0.8161765, g: 0.45560196, b: 0.22204803, a: 1} m_ToColor: {r: 1, g: 1, b: 1, a: 0.747} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -573452,6 +591786,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -573537,6 +591872,7 @@ MonoBehaviour: m_Show: 1 m_Color: {r: 0.19609644, g: 0.8602941, b: 0.5304856, a: 0.778} m_ToColor: {r: 1, g: 1, b: 1, a: 0.747} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -573591,6 +591927,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -573676,6 +592013,7 @@ MonoBehaviour: m_Show: 1 m_Color: {r: 0.11580882, g: 0.7587473, b: 0.9264706, a: 0.791} m_ToColor: {r: 1, g: 1, b: 1, a: 0.747} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -573730,6 +592068,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -574323,6 +592662,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 964651906} +--- !u!1 &964712576 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 964712577} + - component: {fileID: 964712579} + - component: {fileID: 964712578} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &964712577 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 964712576} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1909749949} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &964712578 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 964712576} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &964712579 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 964712576} --- !u!1 &964940819 GameObject: m_ObjectHideFlags: 0 @@ -575423,6 +593830,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 968183498} +--- !u!1 &968271075 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 968271076} + - component: {fileID: 968271078} + - component: {fileID: 968271077} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &968271076 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 968271075} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 916494243} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &968271077 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 968271075} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &968271078 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 968271075} --- !u!1 &968398317 GameObject: m_ObjectHideFlags: 0 @@ -575992,6 +594473,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 969277844} +--- !u!1 &969754089 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 969754090} + m_Layer: 0 + m_Name: label_1_1_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &969754090 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 969754089} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 683443169} + - {fileID: 1851716329} + m_Father: {fileID: 1969376537} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &969906842 GameObject: m_ObjectHideFlags: 0 @@ -578559,6 +597075,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 974344686} +--- !u!1 &974581843 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 974581844} + - component: {fileID: 974581846} + - component: {fileID: 974581845} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &974581844 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 974581843} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 823434815} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &974581845 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 974581843} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &974581846 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 974581843} --- !u!1 &974865536 GameObject: m_ObjectHideFlags: 0 @@ -578810,6 +597400,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 975108934} +--- !u!1 &975159627 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 975159628} + - component: {fileID: 975159630} + - component: {fileID: 975159629} + m_Layer: 0 + m_Name: axis_x3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &975159628 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 975159627} + m_LocalRotation: {x: 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: 1934019931} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 453.2, y: -287} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &975159629 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 975159627} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x4 +--- !u!222 &975159630 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 975159627} --- !u!1 &975459543 GameObject: m_ObjectHideFlags: 0 @@ -578987,6 +597651,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 975527259} +--- !u!1 &975619204 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 975619205} + - component: {fileID: 975619207} + - component: {fileID: 975619206} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &975619205 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 975619204} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1673074415} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &975619206 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 975619204} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &975619207 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 975619204} --- !u!1 &975725357 GameObject: m_ObjectHideFlags: 0 @@ -579096,6 +597834,74 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &976196020 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 976196021} + - component: {fileID: 976196023} + - component: {fileID: 976196022} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &976196021 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 976196020} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 551222446} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &976196022 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 976196020} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &976196023 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 976196020} --- !u!1 &976331539 GameObject: m_ObjectHideFlags: 0 @@ -580195,6 +599001,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 978474794} +--- !u!1 &978536953 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 978536954} + - component: {fileID: 978536956} + - component: {fileID: 978536955} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &978536954 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 978536953} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 596980261} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &978536955 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 978536953} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &978536956 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 978536953} --- !u!1 &979122851 GameObject: m_ObjectHideFlags: 0 @@ -581002,7 +599882,7 @@ RectTransform: m_GameObject: {fileID: 982938179} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 1950391618} m_Father: {fileID: 1934324170} @@ -582546,6 +601426,18 @@ MonoBehaviour: m_Calls: [] m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - 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 &986402342 MonoBehaviour: @@ -583674,10 +602566,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -583964,6 +602852,7 @@ MonoBehaviour: m_Show: 1 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -584017,6 +602906,7 @@ MonoBehaviour: m_Show: 1 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -584114,6 +603004,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -584168,6 +603059,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -584254,6 +603146,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -584308,6 +603201,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -584394,6 +603288,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -584448,6 +603343,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -584534,6 +603430,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -584588,6 +603485,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -584674,6 +603572,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -584728,6 +603627,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -584814,6 +603714,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -584868,6 +603769,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -584954,6 +603856,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -585008,6 +603911,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -585094,6 +603998,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -585148,6 +604053,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -585234,6 +604140,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -585288,6 +604195,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -585374,6 +604282,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -585428,6 +604337,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -585514,6 +604424,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -585568,6 +604479,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -585654,6 +604566,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -585708,6 +604621,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -585794,6 +604708,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -585848,6 +604763,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -585934,6 +604850,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -585988,6 +604905,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -586074,6 +604992,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -586128,6 +605047,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -586214,6 +605134,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -586268,6 +605189,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -586354,6 +605276,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -586408,6 +605331,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -586494,6 +605418,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -586548,6 +605473,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -586634,6 +605560,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -586688,6 +605615,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -586774,6 +605702,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -586828,6 +605757,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -586914,6 +605844,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -586968,6 +605899,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -587054,6 +605986,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -587108,6 +606041,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -587194,6 +606128,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -587248,6 +606183,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -587334,6 +606270,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -587388,6 +606325,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -587474,6 +606412,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -587528,6 +606467,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -587614,6 +606554,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -587668,6 +606609,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -587754,6 +606696,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -587808,6 +606751,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -587894,6 +606838,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -587948,6 +606893,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -588034,6 +606980,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -588088,6 +607035,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -588174,6 +607122,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -588228,6 +607177,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -588314,6 +607264,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -588368,6 +607319,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -588454,6 +607406,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -588508,6 +607461,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -588594,6 +607548,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -588648,6 +607603,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -588734,6 +607690,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -588788,6 +607745,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -588874,6 +607832,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -588928,6 +607887,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -589014,6 +607974,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -589068,6 +608029,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -589154,6 +608116,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -589208,6 +608171,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -589294,6 +608258,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -589348,6 +608313,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -589434,6 +608400,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -589488,6 +608455,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -589574,6 +608542,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -589628,6 +608597,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -589714,6 +608684,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -589768,6 +608739,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -589854,6 +608826,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -589908,6 +608881,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -589994,6 +608968,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -590048,6 +609023,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -590134,6 +609110,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -590188,6 +609165,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -590274,6 +609252,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -590328,6 +609307,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -590414,6 +609394,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -590468,6 +609449,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -590554,6 +609536,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -590608,6 +609591,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -590694,6 +609678,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -590748,6 +609733,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -590834,6 +609820,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -590888,6 +609875,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -590974,6 +609962,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -591028,6 +610017,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -591114,6 +610104,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -591168,6 +610159,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -591254,6 +610246,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -591308,6 +610301,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -591394,6 +610388,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -591448,6 +610443,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -591534,6 +610530,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -591588,6 +610585,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -591674,6 +610672,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -591728,6 +610727,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -591814,6 +610814,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -591868,6 +610869,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -591954,6 +610956,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -592008,6 +611011,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -592094,6 +611098,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -592148,6 +611153,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -592234,6 +611240,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -592288,6 +611295,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -592374,6 +611382,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -592428,6 +611437,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -592514,6 +611524,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -592568,6 +611579,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -592654,6 +611666,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -592708,6 +611721,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -592794,6 +611808,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -592848,6 +611863,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -592934,6 +611950,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -592988,6 +612005,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -593074,6 +612092,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -593128,6 +612147,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -593214,6 +612234,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -593268,6 +612289,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -593354,6 +612376,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -593408,6 +612431,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -593494,6 +612518,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -593548,6 +612573,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -593634,6 +612660,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -593688,6 +612715,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -593774,6 +612802,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -593828,6 +612857,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -593914,6 +612944,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -593968,6 +612999,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -594054,6 +613086,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -594108,6 +613141,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -594194,6 +613228,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -594248,6 +613283,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -594334,6 +613370,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -594388,6 +613425,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -594474,6 +613512,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -594528,6 +613567,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -594614,6 +613654,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -594668,6 +613709,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -594754,6 +613796,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -594808,6 +613851,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -594894,6 +613938,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -594948,6 +613993,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -595034,6 +614080,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -595088,6 +614135,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -595174,6 +614222,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -595228,6 +614277,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -595314,6 +614364,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -595368,6 +614419,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -595454,6 +614506,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -595508,6 +614561,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -595594,6 +614648,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -595648,6 +614703,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -595734,6 +614790,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -595788,6 +614845,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -595874,6 +614932,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -595928,6 +614987,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -596014,6 +615074,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -596068,6 +615129,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -596154,6 +615216,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -596208,6 +615271,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -596294,6 +615358,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -596348,6 +615413,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -596434,6 +615500,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -596488,6 +615555,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -596574,6 +615642,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -596628,6 +615697,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -596714,6 +615784,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -596768,6 +615839,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -596854,6 +615926,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -596908,6 +615981,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -596994,6 +616068,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -597048,6 +616123,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -597134,6 +616210,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -597188,6 +616265,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -597274,6 +616352,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -597328,6 +616407,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -597414,6 +616494,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -597468,6 +616549,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -597554,6 +616636,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -597608,6 +616691,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -597694,6 +616778,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -597748,6 +616833,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -597834,6 +616920,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -597888,6 +616975,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -597974,6 +617062,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -598028,6 +617117,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -598114,6 +617204,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -598168,6 +617259,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -598254,6 +617346,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -598308,6 +617401,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -598394,6 +617488,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -598448,6 +617543,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -598534,6 +617630,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -598588,6 +617685,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -598674,6 +617772,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -598728,6 +617827,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -598814,6 +617914,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -598868,6 +617969,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -598954,6 +618056,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -599008,6 +618111,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -599094,6 +618198,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -599148,6 +618253,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -599234,6 +618340,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -599288,6 +618395,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -599374,6 +618482,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -599428,6 +618537,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -599514,6 +618624,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -599568,6 +618679,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -599654,6 +618766,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -599708,6 +618821,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -599794,6 +618908,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -599848,6 +618963,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -599934,6 +619050,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -599988,6 +619105,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -600074,6 +619192,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -600128,6 +619247,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -600214,6 +619334,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -600268,6 +619389,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -600354,6 +619476,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -600408,6 +619531,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -600494,6 +619618,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -600548,6 +619673,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -600634,6 +619760,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -600688,6 +619815,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -600774,6 +619902,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -600828,6 +619957,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -600914,6 +620044,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -600968,6 +620099,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -601054,6 +620186,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -601108,6 +620241,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -601194,6 +620328,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -601248,6 +620383,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -601334,6 +620470,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -601388,6 +620525,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -601474,6 +620612,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -601528,6 +620667,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -601614,6 +620754,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -601668,6 +620809,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -601754,6 +620896,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -601808,6 +620951,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -601894,6 +621038,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -601948,6 +621093,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -602034,6 +621180,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -602088,6 +621235,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -602174,6 +621322,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -602228,6 +621377,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -602314,6 +621464,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -602368,6 +621519,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -602454,6 +621606,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -602508,6 +621661,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -602594,6 +621748,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -602648,6 +621803,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -602734,6 +621890,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -602788,6 +621945,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -602874,6 +622032,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -602928,6 +622087,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -603014,6 +622174,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -603068,6 +622229,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -603154,6 +622316,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -603208,6 +622371,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -603294,6 +622458,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -603348,6 +622513,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -603434,6 +622600,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -603488,6 +622655,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -603574,6 +622742,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -603628,6 +622797,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -603714,6 +622884,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -603768,6 +622939,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -603854,6 +623026,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -603908,6 +623081,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -603994,6 +623168,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -604048,6 +623223,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -604134,6 +623310,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -604188,6 +623365,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -604274,6 +623452,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -604328,6 +623507,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -604414,6 +623594,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -604468,6 +623649,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -604554,6 +623736,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -604608,6 +623791,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -604694,6 +623878,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -604748,6 +623933,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -604834,6 +624020,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -604888,6 +624075,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -604974,6 +624162,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -605028,6 +624217,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -605114,6 +624304,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -605168,6 +624359,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -605254,6 +624446,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -605308,6 +624501,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -605394,6 +624588,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -605448,6 +624643,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -605534,6 +624730,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -605588,6 +624785,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -605674,6 +624872,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -605728,6 +624927,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -605814,6 +625014,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -605868,6 +625069,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -605954,6 +625156,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -606008,6 +625211,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -606094,6 +625298,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -606148,6 +625353,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -606234,6 +625440,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -606288,6 +625495,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -606374,6 +625582,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -606428,6 +625637,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -606514,6 +625724,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -606568,6 +625779,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -606654,6 +625866,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -606708,6 +625921,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -606794,6 +626008,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -606848,6 +626063,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -606934,6 +626150,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -606988,6 +626205,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -607074,6 +626292,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -607128,6 +626347,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -607214,6 +626434,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -607268,6 +626489,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -607354,6 +626576,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -607408,6 +626631,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -607494,6 +626718,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -607548,6 +626773,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -607634,6 +626860,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -607688,6 +626915,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -607774,6 +627002,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -607828,6 +627057,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -607914,6 +627144,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -607968,6 +627199,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -608054,6 +627286,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -608108,6 +627341,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -608194,6 +627428,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -608248,6 +627483,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -608334,6 +627570,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -608388,6 +627625,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -608474,6 +627712,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -608528,6 +627767,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -608614,6 +627854,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -608668,6 +627909,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -608754,6 +627996,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -608808,6 +628051,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -608894,6 +628138,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -608948,6 +628193,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -609034,6 +628280,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -609088,6 +628335,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -609174,6 +628422,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -609228,6 +628477,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -609314,6 +628564,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -609368,6 +628619,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -609454,6 +628706,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -609508,6 +628761,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -609594,6 +628848,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -609648,6 +628903,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -609734,6 +628990,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -609788,6 +629045,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -609874,6 +629132,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -609928,6 +629187,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -610014,6 +629274,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -610068,6 +629329,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -610154,6 +629416,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -610208,6 +629471,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -610294,6 +629558,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -610348,6 +629613,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -610434,6 +629700,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -610488,6 +629755,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -610574,6 +629842,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -610628,6 +629897,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -610714,6 +629984,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -610768,6 +630039,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -610854,6 +630126,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -610908,6 +630181,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -610994,6 +630268,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -611048,6 +630323,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -611134,6 +630410,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -611188,6 +630465,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -611274,6 +630552,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -611328,6 +630607,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -611414,6 +630694,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -611468,6 +630749,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -611554,6 +630836,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -611608,6 +630891,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -611694,6 +630978,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -611748,6 +631033,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -611834,6 +631120,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -611888,6 +631175,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -611974,6 +631262,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -612028,6 +631317,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -612114,6 +631404,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -612168,6 +631459,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -612254,6 +631546,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -612308,6 +631601,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -612394,6 +631688,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -612448,6 +631743,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -612534,6 +631830,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -612588,6 +631885,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -612674,6 +631972,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -612728,6 +632027,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -612814,6 +632114,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -612868,6 +632169,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -612954,6 +632256,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -613008,6 +632311,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -613094,6 +632398,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -613148,6 +632453,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -613234,6 +632540,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -613288,6 +632595,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -613374,6 +632682,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -613428,6 +632737,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -613514,6 +632824,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -613568,6 +632879,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -613654,6 +632966,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -613708,6 +633021,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -613794,6 +633108,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -613848,6 +633163,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -613934,6 +633250,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -613988,6 +633305,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -614074,6 +633392,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -614128,6 +633447,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -614214,6 +633534,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -614268,6 +633589,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -614354,6 +633676,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -614408,6 +633731,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -614494,6 +633818,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -614548,6 +633873,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -614634,6 +633960,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -614688,6 +634015,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -614774,6 +634102,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -614828,6 +634157,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -614914,6 +634244,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -614968,6 +634299,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -615054,6 +634386,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -615108,6 +634441,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -615194,6 +634528,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -615248,6 +634583,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -615334,6 +634670,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -615388,6 +634725,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -615474,6 +634812,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -615528,6 +634867,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -615614,6 +634954,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -615668,6 +635009,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -615754,6 +635096,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -615808,6 +635151,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -615894,6 +635238,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -615948,6 +635293,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -616034,6 +635380,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -616088,6 +635435,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -616174,6 +635522,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -616228,6 +635577,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -616314,6 +635664,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -616368,6 +635719,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -616454,6 +635806,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -616508,6 +635861,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -616594,6 +635948,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -616648,6 +636003,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -616734,6 +636090,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -616788,6 +636145,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -616874,6 +636232,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -616928,6 +636287,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -617014,6 +636374,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -617068,6 +636429,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -617154,6 +636516,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -617208,6 +636571,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -617294,6 +636658,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -617348,6 +636713,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -617434,6 +636800,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -617488,6 +636855,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -617574,6 +636942,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -617628,6 +636997,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -617714,6 +637084,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -617768,6 +637139,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -617854,6 +637226,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -617908,6 +637281,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -617994,6 +637368,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -618048,6 +637423,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -618134,6 +637510,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -618188,6 +637565,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -618274,6 +637652,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -618328,6 +637707,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -618414,6 +637794,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -618468,6 +637849,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -618554,6 +637936,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -618608,6 +637991,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -618694,6 +638078,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -618748,6 +638133,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -618834,6 +638220,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -618888,6 +638275,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -618974,6 +638362,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -619028,6 +638417,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -619114,6 +638504,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -619168,6 +638559,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -619254,6 +638646,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -619308,6 +638701,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -619394,6 +638788,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -619448,6 +638843,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -619534,6 +638930,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -619588,6 +638985,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -619674,6 +639072,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -619728,6 +639127,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -619814,6 +639214,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -619868,6 +639269,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -619954,6 +639356,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -620008,6 +639411,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -620094,6 +639498,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -620148,6 +639553,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -620234,6 +639640,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -620288,6 +639695,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -620374,6 +639782,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -620428,6 +639837,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -620514,6 +639924,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -620568,6 +639979,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -620654,6 +640066,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -620708,6 +640121,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -620794,6 +640208,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -620848,6 +640263,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -620934,6 +640350,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -620988,6 +640405,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -621074,6 +640492,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -621128,6 +640547,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -621214,6 +640634,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -621268,6 +640689,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -621354,6 +640776,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -621408,6 +640831,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -621494,6 +640918,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -621548,6 +640973,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -621634,6 +641060,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -621688,6 +641115,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -621774,6 +641202,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -621828,6 +641257,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -621914,6 +641344,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -621968,6 +641399,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -622054,6 +641486,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -622108,6 +641541,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -622194,6 +641628,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -622248,6 +641683,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -622334,6 +641770,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -622388,6 +641825,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -622474,6 +641912,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -622528,6 +641967,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -622614,6 +642054,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -622668,6 +642109,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -622754,6 +642196,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -622808,6 +642251,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -622894,6 +642338,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -622948,6 +642393,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -623034,6 +642480,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -623088,6 +642535,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -623174,6 +642622,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -623228,6 +642677,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -623314,6 +642764,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -623368,6 +642819,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -623454,6 +642906,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -623508,6 +642961,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -623594,6 +643048,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -623648,6 +643103,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -623734,6 +643190,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -623788,6 +643245,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -623874,6 +643332,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -623928,6 +643387,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -624014,6 +643474,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -624068,6 +643529,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -624154,6 +643616,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -624208,6 +643671,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -624294,6 +643758,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -624348,6 +643813,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -624434,6 +643900,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -624488,6 +643955,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -624574,6 +644042,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -624628,6 +644097,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -624714,6 +644184,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -624768,6 +644239,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -624854,6 +644326,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -624908,6 +644381,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -624994,6 +644468,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -625048,6 +644523,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -625134,6 +644610,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -625188,6 +644665,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -625274,6 +644752,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -625328,6 +644807,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -625414,6 +644894,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -625468,6 +644949,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -625554,6 +645036,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -625608,6 +645091,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -625694,6 +645178,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -625748,6 +645233,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -625834,6 +645320,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -625888,6 +645375,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -625974,6 +645462,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -626028,6 +645517,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -626114,6 +645604,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -626168,6 +645659,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -626254,6 +645746,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -626308,6 +645801,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -626394,6 +645888,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -626448,6 +645943,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -626534,6 +646030,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -626588,6 +646085,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -626674,6 +646172,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -626728,6 +646227,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -626814,6 +646314,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -626868,6 +646369,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -626954,6 +646456,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -627008,6 +646511,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -627094,6 +646598,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -627148,6 +646653,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -627234,6 +646740,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -627288,6 +646795,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -627374,6 +646882,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -627428,6 +646937,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -627514,6 +647024,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -627568,6 +647079,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -627654,6 +647166,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -627708,6 +647221,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -627794,6 +647308,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -627848,6 +647363,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -627934,6 +647450,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -627988,6 +647505,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -628074,6 +647592,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -628128,6 +647647,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -628214,6 +647734,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -628268,6 +647789,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -628354,6 +647876,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -628408,6 +647931,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -628494,6 +648018,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -628548,6 +648073,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -628634,6 +648160,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -628688,6 +648215,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -628774,6 +648302,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -628828,6 +648357,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -628914,6 +648444,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -628968,6 +648499,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -629054,6 +648586,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -629108,6 +648641,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -629194,6 +648728,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -629248,6 +648783,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -629334,6 +648870,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -629388,6 +648925,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -629474,6 +649012,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -629528,6 +649067,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -629614,6 +649154,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -629668,6 +649209,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -629754,6 +649296,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -629808,6 +649351,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -629894,6 +649438,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -629948,6 +649493,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -630034,6 +649580,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -630088,6 +649635,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -630174,6 +649722,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -630228,6 +649777,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -630314,6 +649864,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -630368,6 +649919,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -630454,6 +650006,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -630508,6 +650061,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -630594,6 +650148,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -630648,6 +650203,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -630734,6 +650290,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -630788,6 +650345,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -630874,6 +650432,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -630928,6 +650487,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -631014,6 +650574,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -631068,6 +650629,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -631154,6 +650716,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -631208,6 +650771,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -631294,6 +650858,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -631348,6 +650913,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -631434,6 +651000,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -631488,6 +651055,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -631574,6 +651142,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -631628,6 +651197,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -631714,6 +651284,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -631768,6 +651339,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -631854,6 +651426,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -631908,6 +651481,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -631994,6 +651568,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -632048,6 +651623,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -632134,6 +651710,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -632188,6 +651765,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -632274,6 +651852,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -632328,6 +651907,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -632414,6 +651994,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -632468,6 +652049,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -632554,6 +652136,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -632608,6 +652191,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -632694,6 +652278,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -632748,6 +652333,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -632834,6 +652420,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -632888,6 +652475,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -632974,6 +652562,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -633028,6 +652617,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -633114,6 +652704,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -633168,6 +652759,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -633254,6 +652846,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -633308,6 +652901,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -633394,6 +652988,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -633448,6 +653043,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -633534,6 +653130,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -633588,6 +653185,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -633674,6 +653272,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -633728,6 +653327,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -633814,6 +653414,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -633868,6 +653469,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -633954,6 +653556,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -634008,6 +653611,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -634094,6 +653698,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -634148,6 +653753,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -634234,6 +653840,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -634288,6 +653895,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -634374,6 +653982,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -634428,6 +654037,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -634514,6 +654124,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -634568,6 +654179,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -634654,6 +654266,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -634708,6 +654321,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -634794,6 +654408,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -634848,6 +654463,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -634934,6 +654550,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -634988,6 +654605,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -635074,6 +654692,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -635128,6 +654747,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -635214,6 +654834,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -635268,6 +654889,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -635354,6 +654976,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -635408,6 +655031,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -635494,6 +655118,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -635548,6 +655173,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -635634,6 +655260,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -635688,6 +655315,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -635774,6 +655402,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -635828,6 +655457,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -635914,6 +655544,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -635968,6 +655599,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -636054,6 +655686,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -636108,6 +655741,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -636194,6 +655828,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -636248,6 +655883,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -636334,6 +655970,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -636388,6 +656025,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -636474,6 +656112,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -636528,6 +656167,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -636614,6 +656254,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -636668,6 +656309,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -636754,6 +656396,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -636808,6 +656451,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -636894,6 +656538,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -636948,6 +656593,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -637034,6 +656680,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -637088,6 +656735,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -637174,6 +656822,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -637228,6 +656877,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -637314,6 +656964,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -637368,6 +657019,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -637454,6 +657106,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -637508,6 +657161,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -637594,6 +657248,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -637648,6 +657303,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -637734,6 +657390,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -637788,6 +657445,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -637874,6 +657532,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -637928,6 +657587,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -638014,6 +657674,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -638068,6 +657729,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -638154,6 +657816,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -638208,6 +657871,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -638294,6 +657958,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -638348,6 +658013,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -638434,6 +658100,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -638488,6 +658155,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -638574,6 +658242,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -638628,6 +658297,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -638714,6 +658384,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -638768,6 +658439,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -638854,6 +658526,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -638908,6 +658581,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -638994,6 +658668,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -639048,6 +658723,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -639134,6 +658810,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -639188,6 +658865,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -639274,6 +658952,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -639328,6 +659007,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -639414,6 +659094,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -639468,6 +659149,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -639554,6 +659236,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -639608,6 +659291,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -639694,6 +659378,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -639748,6 +659433,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -639834,6 +659520,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -639888,6 +659575,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -639974,6 +659662,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -640028,6 +659717,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -640114,6 +659804,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -640168,6 +659859,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -640254,6 +659946,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -640308,6 +660001,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -640394,6 +660088,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -640448,6 +660143,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -640534,6 +660230,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -640588,6 +660285,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -640674,6 +660372,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -640728,6 +660427,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -640814,6 +660514,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -640868,6 +660569,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -640954,6 +660656,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -641008,6 +660711,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -641094,6 +660798,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -641148,6 +660853,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -641234,6 +660940,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -641288,6 +660995,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -641374,6 +661082,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -641428,6 +661137,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -641514,6 +661224,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -641568,6 +661279,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -641654,6 +661366,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -641708,6 +661421,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -641794,6 +661508,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -641848,6 +661563,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -641934,6 +661650,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -641988,6 +661705,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -642074,6 +661792,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -642128,6 +661847,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -642214,6 +661934,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -642268,6 +661989,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -642354,6 +662076,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -642408,6 +662131,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -642494,6 +662218,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -642548,6 +662273,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -642634,6 +662360,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -642688,6 +662415,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -642774,6 +662502,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -642828,6 +662557,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -642914,6 +662644,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -642968,6 +662699,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -643054,6 +662786,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -643108,6 +662841,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -643194,6 +662928,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -643248,6 +662983,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -643334,6 +663070,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -643388,6 +663125,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -643474,6 +663212,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -643528,6 +663267,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -643614,6 +663354,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -643668,6 +663409,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -643754,6 +663496,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -643808,6 +663551,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -643894,6 +663638,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -643948,6 +663693,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -644034,6 +663780,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -644088,6 +663835,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -644174,6 +663922,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -644228,6 +663977,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -644314,6 +664064,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -644368,6 +664119,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -644454,6 +664206,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -644508,6 +664261,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -644594,6 +664348,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -644648,6 +664403,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -644734,6 +664490,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -644788,6 +664545,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -644874,6 +664632,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -644928,6 +664687,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -645014,6 +664774,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -645068,6 +664829,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -645154,6 +664916,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -645208,6 +664971,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -645294,6 +665058,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -645348,6 +665113,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -645434,6 +665200,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -645488,6 +665255,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -645574,6 +665342,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -645628,6 +665397,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -645714,6 +665484,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -645768,6 +665539,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -645854,6 +665626,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -645908,6 +665681,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -645994,6 +665768,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -646048,6 +665823,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -646134,6 +665910,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -646188,6 +665965,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -646274,6 +666052,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -646328,6 +666107,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -646414,6 +666194,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -646468,6 +666249,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -646554,6 +666336,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -646608,6 +666391,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -646694,6 +666478,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -646748,6 +666533,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -646834,6 +666620,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -646888,6 +666675,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -646974,6 +666762,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -647028,6 +666817,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -647114,6 +666904,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -647168,6 +666959,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -647254,6 +667046,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -647308,6 +667101,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -647394,6 +667188,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -647448,6 +667243,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -647534,6 +667330,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -647588,6 +667385,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -647674,6 +667472,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -647728,6 +667527,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -647814,6 +667614,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -647868,6 +667669,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -647954,6 +667756,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -648008,6 +667811,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -648094,6 +667898,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -648148,6 +667953,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -648234,6 +668040,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -648288,6 +668095,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -648374,6 +668182,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -648428,6 +668237,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -648514,6 +668324,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -648568,6 +668379,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -648654,6 +668466,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -648708,6 +668521,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -648794,6 +668608,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -648848,6 +668663,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -648934,6 +668750,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -648988,6 +668805,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -649074,6 +668892,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -649128,6 +668947,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -649214,6 +669034,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -649268,6 +669089,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -649354,6 +669176,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -649408,6 +669231,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -649494,6 +669318,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -649548,6 +669373,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -649634,6 +669460,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -649688,6 +669515,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -649774,6 +669602,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -649828,6 +669657,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -649914,6 +669744,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -649968,6 +669799,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -650054,6 +669886,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -650108,6 +669941,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -650194,6 +670028,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -650248,6 +670083,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -650334,6 +670170,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -650388,6 +670225,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -650474,6 +670312,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -650528,6 +670367,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -650614,6 +670454,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -650668,6 +670509,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -650754,6 +670596,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -650808,6 +670651,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -650894,6 +670738,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -650948,6 +670793,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -651034,6 +670880,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -651088,6 +670935,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -651174,6 +671022,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -651228,6 +671077,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -651314,6 +671164,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -651368,6 +671219,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -651454,6 +671306,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -651508,6 +671361,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -651594,6 +671448,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -651648,6 +671503,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -651734,6 +671590,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -651788,6 +671645,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -651874,6 +671732,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -651928,6 +671787,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -652014,6 +671874,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -652068,6 +671929,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -652154,6 +672016,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -652208,6 +672071,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -652294,6 +672158,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -652348,6 +672213,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -652434,6 +672300,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -652488,6 +672355,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -652574,6 +672442,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -652628,6 +672497,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -652714,6 +672584,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -652768,6 +672639,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -652854,6 +672726,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -652908,6 +672781,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -652994,6 +672868,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -653048,6 +672923,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -653134,6 +673010,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -653188,6 +673065,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -653274,6 +673152,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -653328,6 +673207,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -653414,6 +673294,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -653468,6 +673349,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -653554,6 +673436,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -653608,6 +673491,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -653694,6 +673578,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -653748,6 +673633,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -653834,6 +673720,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -653888,6 +673775,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -653974,6 +673862,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -654028,6 +673917,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -654114,6 +674004,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -654168,6 +674059,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -654254,6 +674146,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -654308,6 +674201,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -654394,6 +674288,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -654448,6 +674343,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -654534,6 +674430,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -654588,6 +674485,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -654674,6 +674572,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -654728,6 +674627,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -654814,6 +674714,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -654868,6 +674769,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -654954,6 +674856,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -655008,6 +674911,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -655094,6 +674998,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -655148,6 +675053,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -655234,6 +675140,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -655288,6 +675195,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -655374,6 +675282,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -655428,6 +675337,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -655514,6 +675424,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -655568,6 +675479,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -655654,6 +675566,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -655708,6 +675621,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -655794,6 +675708,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -655848,6 +675763,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -655934,6 +675850,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -655988,6 +675905,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -656074,6 +675992,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -656128,6 +676047,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -656214,6 +676134,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -656268,6 +676189,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -656354,6 +676276,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -656408,6 +676331,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -656494,6 +676418,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -656548,6 +676473,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -656634,6 +676560,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -656688,6 +676615,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -656774,6 +676702,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -656828,6 +676757,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -656914,6 +676844,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -656968,6 +676899,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -657054,6 +676986,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -657108,6 +677041,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -657194,6 +677128,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -657248,6 +677183,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -657334,6 +677270,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -657388,6 +677325,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -657474,6 +677412,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -657528,6 +677467,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -657614,6 +677554,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -657668,6 +677609,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -657754,6 +677696,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -657808,6 +677751,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -657894,6 +677838,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -657948,6 +677893,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -658034,6 +677980,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -658088,6 +678035,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -658174,6 +678122,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -658228,6 +678177,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -658314,6 +678264,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -658368,6 +678319,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -658454,6 +678406,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -658508,6 +678461,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -658594,6 +678548,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -658648,6 +678603,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -658734,6 +678690,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -658788,6 +678745,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -658874,6 +678832,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -658928,6 +678887,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -659014,6 +678974,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -659068,6 +679029,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -659154,6 +679116,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -659208,6 +679171,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -659294,6 +679258,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -659348,6 +679313,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -659434,6 +679400,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -659488,6 +679455,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -659574,6 +679542,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -659628,6 +679597,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -659714,6 +679684,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -659768,6 +679739,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -659854,6 +679826,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -659908,6 +679881,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -659994,6 +679968,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -660048,6 +680023,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -660134,6 +680110,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -660188,6 +680165,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -660274,6 +680252,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -660328,6 +680307,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -660414,6 +680394,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -660468,6 +680449,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -660554,6 +680536,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -660608,6 +680591,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -660694,6 +680678,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -660748,6 +680733,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -660834,6 +680820,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -660888,6 +680875,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -660974,6 +680962,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -661028,6 +681017,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -661114,6 +681104,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -661168,6 +681159,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -661254,6 +681246,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -661308,6 +681301,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -661394,6 +681388,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -661448,6 +681443,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -661534,6 +681530,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -661588,6 +681585,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -661674,6 +681672,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -661728,6 +681727,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -661814,6 +681814,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -661868,6 +681869,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -661954,6 +681956,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -662008,6 +682011,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -662094,6 +682098,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -662148,6 +682153,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -662234,6 +682240,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -662288,6 +682295,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -662374,6 +682382,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -662428,6 +682437,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -662514,6 +682524,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -662568,6 +682579,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -662654,6 +682666,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -662708,6 +682721,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -662794,6 +682808,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -662848,6 +682863,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -662934,6 +682950,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -662988,6 +683005,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -663074,6 +683092,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -663128,6 +683147,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -663214,6 +683234,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -663268,6 +683289,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -663354,6 +683376,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -663408,6 +683431,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -663494,6 +683518,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -663548,6 +683573,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -663634,6 +683660,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -663688,6 +683715,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -663774,6 +683802,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -663828,6 +683857,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -663914,6 +683944,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -663968,6 +683999,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -664054,6 +684086,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -664108,6 +684141,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -664194,6 +684228,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -664248,6 +684283,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -664334,6 +684370,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -664388,6 +684425,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -664474,6 +684512,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -664528,6 +684567,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -664614,6 +684654,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -664668,6 +684709,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -664754,6 +684796,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -664808,6 +684851,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -664894,6 +684938,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -664948,6 +684993,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -665034,6 +685080,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -665088,6 +685135,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -665174,6 +685222,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -665228,6 +685277,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -665314,6 +685364,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -665368,6 +685419,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -665454,6 +685506,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -665508,6 +685561,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -665594,6 +685648,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -665648,6 +685703,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -665734,6 +685790,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -665788,6 +685845,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -665874,6 +685932,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -665928,6 +685987,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -666014,6 +686074,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -666068,6 +686129,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -666154,6 +686216,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -666208,6 +686271,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -666294,6 +686358,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -666348,6 +686413,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -666434,6 +686500,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -666488,6 +686555,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -666574,6 +686642,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -666628,6 +686697,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -666714,6 +686784,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -666768,6 +686839,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -666854,6 +686926,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -666908,6 +686981,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -666994,6 +687068,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -667048,6 +687123,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -667134,6 +687210,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -667188,6 +687265,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -667274,6 +687352,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -667328,6 +687407,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -667414,6 +687494,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -667468,6 +687549,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -667554,6 +687636,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -667608,6 +687691,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -667694,6 +687778,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -667748,6 +687833,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -667834,6 +687920,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -667888,6 +687975,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -667974,6 +688062,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -668028,6 +688117,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -668114,6 +688204,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -668168,6 +688259,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -668254,6 +688346,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -668308,6 +688401,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -668394,6 +688488,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -668448,6 +688543,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -668534,6 +688630,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -668588,6 +688685,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -668674,6 +688772,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -668728,6 +688827,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -668814,6 +688914,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -668868,6 +688969,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -668954,6 +689056,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -669008,6 +689111,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -669094,6 +689198,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -669148,6 +689253,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -669234,6 +689340,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -669288,6 +689395,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -669374,6 +689482,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -669428,6 +689537,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -669514,6 +689624,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -669568,6 +689679,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -669654,6 +689766,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -669708,6 +689821,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -669794,6 +689908,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -669848,6 +689963,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -669934,6 +690050,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -669988,6 +690105,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -670074,6 +690192,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -670128,6 +690247,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -670214,6 +690334,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -670268,6 +690389,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -670354,6 +690476,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -670408,6 +690531,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -670494,6 +690618,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -670548,6 +690673,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -670634,6 +690760,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -670688,6 +690815,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -670774,6 +690902,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -670828,6 +690957,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -670914,6 +691044,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -670968,6 +691099,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -671054,6 +691186,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -671108,6 +691241,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -671194,6 +691328,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -671248,6 +691383,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -671334,6 +691470,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -671388,6 +691525,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -671474,6 +691612,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -671528,6 +691667,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -671614,6 +691754,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -671668,6 +691809,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -671754,6 +691896,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -671808,6 +691951,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -671894,6 +692038,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -671948,6 +692093,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -672034,6 +692180,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -672088,6 +692235,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -672174,6 +692322,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -672228,6 +692377,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -672314,6 +692464,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -672368,6 +692519,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -672454,6 +692606,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -672508,6 +692661,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -672594,6 +692748,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -672648,6 +692803,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -672734,6 +692890,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -672788,6 +692945,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -672874,6 +693032,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -672928,6 +693087,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -673014,6 +693174,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -673068,6 +693229,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -673154,6 +693316,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -673208,6 +693371,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -673294,6 +693458,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -673348,6 +693513,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -673434,6 +693600,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -673488,6 +693655,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -673574,6 +693742,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -673628,6 +693797,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -673714,6 +693884,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -673768,6 +693939,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -673854,6 +694026,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -673908,6 +694081,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -673994,6 +694168,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -674048,6 +694223,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -674134,6 +694310,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -674188,6 +694365,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -674274,6 +694452,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -674328,6 +694507,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -674414,6 +694594,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -674468,6 +694649,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -674554,6 +694736,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -674608,6 +694791,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -674694,6 +694878,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -674748,6 +694933,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -674834,6 +695020,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -674888,6 +695075,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -674974,6 +695162,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -675028,6 +695217,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -675114,6 +695304,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -675168,6 +695359,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -675254,6 +695446,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -675308,6 +695501,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -675394,6 +695588,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -675448,6 +695643,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -675534,6 +695730,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -675588,6 +695785,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -675674,6 +695872,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -675728,6 +695927,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -675814,6 +696014,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -675868,6 +696069,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -675954,6 +696156,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -676008,6 +696211,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -676094,6 +696298,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -676148,6 +696353,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -676234,6 +696440,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -676288,6 +696495,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -676374,6 +696582,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -676428,6 +696637,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -676514,6 +696724,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -676568,6 +696779,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -676654,6 +696866,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -676708,6 +696921,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -676794,6 +697008,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -676848,6 +697063,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -676934,6 +697150,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -676988,6 +697205,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -677074,6 +697292,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -677128,6 +697347,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -677214,6 +697434,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -677268,6 +697489,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -677354,6 +697576,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -677408,6 +697631,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -677494,6 +697718,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -677548,6 +697773,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -677634,6 +697860,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -677688,6 +697915,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -677774,6 +698002,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -677828,6 +698057,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -677914,6 +698144,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -677968,6 +698199,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -678054,6 +698286,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -678108,6 +698341,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -678194,6 +698428,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -678248,6 +698483,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -678334,6 +698570,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -678388,6 +698625,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -678474,6 +698712,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -678528,6 +698767,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -678614,6 +698854,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -678668,6 +698909,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -678754,6 +698996,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -678808,6 +699051,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -678894,6 +699138,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -678948,6 +699193,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -679034,6 +699280,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -679088,6 +699335,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -679174,6 +699422,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -679228,6 +699477,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -679314,6 +699564,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -679368,6 +699619,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -679454,6 +699706,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -679508,6 +699761,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -679594,6 +699848,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -679648,6 +699903,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -679734,6 +699990,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -679788,6 +700045,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -679874,6 +700132,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -679928,6 +700187,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -680014,6 +700274,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -680068,6 +700329,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -680154,6 +700416,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -680208,6 +700471,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -680294,6 +700558,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -680348,6 +700613,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -680434,6 +700700,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -680488,6 +700755,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -680574,6 +700842,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -680628,6 +700897,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -680714,6 +700984,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -680768,6 +701039,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -680854,6 +701126,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -680908,6 +701181,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -680994,6 +701268,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -681048,6 +701323,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -681134,6 +701410,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -681188,6 +701465,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -681274,6 +701552,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -681328,6 +701607,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -681414,6 +701694,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -681468,6 +701749,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -681554,6 +701836,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -681608,6 +701891,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -681694,6 +701978,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -681748,6 +702033,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -681834,6 +702120,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -681888,6 +702175,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -681974,6 +702262,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -682028,6 +702317,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -682114,6 +702404,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -682168,6 +702459,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -682254,6 +702546,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -682308,6 +702601,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -682394,6 +702688,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -682448,6 +702743,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -682534,6 +702830,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -682588,6 +702885,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -682674,6 +702972,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -682728,6 +703027,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -682814,6 +703114,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -682868,6 +703169,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -682954,6 +703256,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -683008,6 +703311,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -683094,6 +703398,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -683148,6 +703453,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -683234,6 +703540,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -683288,6 +703595,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -683374,6 +703682,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -683428,6 +703737,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -683514,6 +703824,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -683568,6 +703879,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -683654,6 +703966,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -683708,6 +704021,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -683794,6 +704108,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -683848,6 +704163,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -683934,6 +704250,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -683988,6 +704305,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -684074,6 +704392,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -684128,6 +704447,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -684214,6 +704534,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -684268,6 +704589,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -684354,6 +704676,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -684408,6 +704731,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -684494,6 +704818,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -684548,6 +704873,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -684634,6 +704960,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -684688,6 +705015,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -684774,6 +705102,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -684828,6 +705157,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -684914,6 +705244,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -684968,6 +705299,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -685054,6 +705386,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -685108,6 +705441,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -685194,6 +705528,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -685248,6 +705583,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -685334,6 +705670,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -685388,6 +705725,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -685474,6 +705812,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -685528,6 +705867,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -685614,6 +705954,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -685668,6 +706009,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -685754,6 +706096,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -685808,6 +706151,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -685894,6 +706238,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -685948,6 +706293,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -686034,6 +706380,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -686088,6 +706435,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -686174,6 +706522,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -686228,6 +706577,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -686314,6 +706664,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -686368,6 +706719,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -686454,6 +706806,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -686508,6 +706861,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -686594,6 +706948,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -686648,6 +707003,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -686734,6 +707090,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -686788,6 +707145,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -686874,6 +707232,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -686928,6 +707287,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -687014,6 +707374,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -687068,6 +707429,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -687154,6 +707516,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -687208,6 +707571,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -687294,6 +707658,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -687348,6 +707713,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -687434,6 +707800,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -687488,6 +707855,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -687574,6 +707942,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -687628,6 +707997,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -687714,6 +708084,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -687768,6 +708139,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -687854,6 +708226,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -687908,6 +708281,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -687994,6 +708368,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -688048,6 +708423,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -688134,6 +708510,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -688188,6 +708565,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -688274,6 +708652,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -688328,6 +708707,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -688414,6 +708794,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -688468,6 +708849,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -688554,6 +708936,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -688608,6 +708991,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -688694,6 +709078,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -688748,6 +709133,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -688834,6 +709220,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -688888,6 +709275,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -688974,6 +709362,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -689028,6 +709417,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -689114,6 +709504,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -689168,6 +709559,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -689254,6 +709646,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -689308,6 +709701,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -689394,6 +709788,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -689448,6 +709843,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -689534,6 +709930,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -689588,6 +709985,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -689674,6 +710072,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -689728,6 +710127,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -689814,6 +710214,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -689868,6 +710269,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -689954,6 +710356,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -690008,6 +710411,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -690094,6 +710498,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -690148,6 +710553,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -690234,6 +710640,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -690288,6 +710695,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -690374,6 +710782,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -690428,6 +710837,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -690514,6 +710924,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -690568,6 +710979,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -690654,6 +711066,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -690708,6 +711121,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -690794,6 +711208,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -690848,6 +711263,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -690934,6 +711350,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -690988,6 +711405,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -691074,6 +711492,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -691128,6 +711547,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -691214,6 +711634,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -691268,6 +711689,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -691354,6 +711776,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -691408,6 +711831,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -691494,6 +711918,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -691548,6 +711973,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -691634,6 +712060,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -691688,6 +712115,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -691774,6 +712202,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -691828,6 +712257,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -691914,6 +712344,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -691968,6 +712399,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -692054,6 +712486,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -692108,6 +712541,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -692194,6 +712628,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -692248,6 +712683,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -692334,6 +712770,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -692388,6 +712825,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -692474,6 +712912,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -692528,6 +712967,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -692614,6 +713054,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -692668,6 +713109,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -692754,6 +713196,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -692808,6 +713251,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -692894,6 +713338,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -692948,6 +713393,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -693034,6 +713480,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -693088,6 +713535,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -693174,6 +713622,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -693228,6 +713677,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -693314,6 +713764,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -693368,6 +713819,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -693454,6 +713906,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -693508,6 +713961,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -693594,6 +714048,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -693648,6 +714103,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -693734,6 +714190,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -693788,6 +714245,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -693874,6 +714332,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -693928,6 +714387,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -694014,6 +714474,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -694068,6 +714529,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -694154,6 +714616,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -694208,6 +714671,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -694294,6 +714758,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -694348,6 +714813,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -694434,6 +714900,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -694488,6 +714955,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -694574,6 +715042,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -694628,6 +715097,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -694714,6 +715184,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -694768,6 +715239,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -694854,6 +715326,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -694908,6 +715381,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -694994,6 +715468,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -695048,6 +715523,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -695134,6 +715610,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -695188,6 +715665,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -695274,6 +715752,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -695328,6 +715807,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -695414,6 +715894,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -695468,6 +715949,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -695554,6 +716036,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -695608,6 +716091,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -695694,6 +716178,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -695748,6 +716233,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -695834,6 +716320,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -695888,6 +716375,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -695974,6 +716462,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -696028,6 +716517,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -696114,6 +716604,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -696168,6 +716659,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -696254,6 +716746,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -696308,6 +716801,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -696394,6 +716888,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -696448,6 +716943,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -696534,6 +717030,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -696588,6 +717085,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -696674,6 +717172,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -696728,6 +717227,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -696814,6 +717314,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -696868,6 +717369,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -696954,6 +717456,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -697008,6 +717511,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -697094,6 +717598,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -697148,6 +717653,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -697234,6 +717740,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -697288,6 +717795,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -697374,6 +717882,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -697428,6 +717937,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -697514,6 +718024,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -697568,6 +718079,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -697654,6 +718166,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -697708,6 +718221,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -697794,6 +718308,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -697848,6 +718363,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -697934,6 +718450,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -697988,6 +718505,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -698074,6 +718592,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -698128,6 +718647,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -698214,6 +718734,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -698268,6 +718789,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -698354,6 +718876,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -698408,6 +718931,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -698494,6 +719018,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -698548,6 +719073,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -698634,6 +719160,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -698688,6 +719215,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -698774,6 +719302,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -698828,6 +719357,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -698914,6 +719444,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -698968,6 +719499,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -699054,6 +719586,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -699108,6 +719641,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -699194,6 +719728,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -699248,6 +719783,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -699334,6 +719870,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -699388,6 +719925,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -699474,6 +720012,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -699528,6 +720067,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -699614,6 +720154,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -699668,6 +720209,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -699754,6 +720296,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -699808,6 +720351,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -699894,6 +720438,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -699948,6 +720493,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -700034,6 +720580,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -700088,6 +720635,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -700174,6 +720722,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -700228,6 +720777,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -700314,6 +720864,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -700368,6 +720919,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -700454,6 +721006,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -700508,6 +721061,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -700594,6 +721148,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -700648,6 +721203,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -700734,6 +721290,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -700788,6 +721345,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -700874,6 +721432,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -700928,6 +721487,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -701014,6 +721574,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -701068,6 +721629,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -701154,6 +721716,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -701208,6 +721771,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -701294,6 +721858,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -701348,6 +721913,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -701434,6 +722000,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -701488,6 +722055,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -701574,6 +722142,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -701628,6 +722197,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -701714,6 +722284,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -701768,6 +722339,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -701854,6 +722426,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -701908,6 +722481,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -701994,6 +722568,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -702048,6 +722623,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -702134,6 +722710,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -702188,6 +722765,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -702274,6 +722852,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -702328,6 +722907,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -702414,6 +722994,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -702468,6 +723049,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -702554,6 +723136,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -702608,6 +723191,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -702694,6 +723278,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -702748,6 +723333,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -702834,6 +723420,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -702888,6 +723475,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -702974,6 +723562,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -703028,6 +723617,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -703114,6 +723704,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -703168,6 +723759,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -703254,6 +723846,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -703308,6 +723901,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -703394,6 +723988,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -703448,6 +724043,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -703534,6 +724130,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -703588,6 +724185,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -703674,6 +724272,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -703728,6 +724327,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -703814,6 +724414,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -703868,6 +724469,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -703954,6 +724556,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -704008,6 +724611,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -704094,6 +724698,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -704148,6 +724753,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -704234,6 +724840,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -704288,6 +724895,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -704374,6 +724982,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -704428,6 +725037,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -704514,6 +725124,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -704568,6 +725179,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -704654,6 +725266,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -704708,6 +725321,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -704794,6 +725408,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -704848,6 +725463,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -704934,6 +725550,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -704988,6 +725605,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -705074,6 +725692,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -705128,6 +725747,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -705214,6 +725834,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -705268,6 +725889,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -705354,6 +725976,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -705408,6 +726031,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -705494,6 +726118,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -705548,6 +726173,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -705634,6 +726260,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -705688,6 +726315,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -705774,6 +726402,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -705828,6 +726457,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -705914,6 +726544,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -705968,6 +726599,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -706054,6 +726686,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -706108,6 +726741,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -706194,6 +726828,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -706248,6 +726883,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -706334,6 +726970,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -706388,6 +727025,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -706474,6 +727112,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -706528,6 +727167,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -706614,6 +727254,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -706668,6 +727309,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -706754,6 +727396,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -706808,6 +727451,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -706894,6 +727538,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -706948,6 +727593,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -707034,6 +727680,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -707088,6 +727735,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -707174,6 +727822,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -707228,6 +727877,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -707314,6 +727964,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -707368,6 +728019,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -707454,6 +728106,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -707508,6 +728161,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -707594,6 +728248,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -707648,6 +728303,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -707734,6 +728390,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -707788,6 +728445,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -707874,6 +728532,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -707928,6 +728587,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -708014,6 +728674,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -708068,6 +728729,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -708154,6 +728816,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -708208,6 +728871,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -708294,6 +728958,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -708348,6 +729013,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -708434,6 +729100,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -708488,6 +729155,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -708574,6 +729242,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -708628,6 +729297,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -708714,6 +729384,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -708768,6 +729439,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -708854,6 +729526,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -708908,6 +729581,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -708994,6 +729668,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -709048,6 +729723,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -709134,6 +729810,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -709188,6 +729865,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -709274,6 +729952,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -709328,6 +730007,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -709414,6 +730094,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -709468,6 +730149,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -709554,6 +730236,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -709608,6 +730291,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -709694,6 +730378,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -709748,6 +730433,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -709834,6 +730520,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -709888,6 +730575,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -709974,6 +730662,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -710028,6 +730717,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -710114,6 +730804,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -710168,6 +730859,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -710254,6 +730946,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -710308,6 +731001,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -710394,6 +731088,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -710448,6 +731143,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -710534,6 +731230,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -710588,6 +731285,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -710674,6 +731372,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -710728,6 +731427,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -710814,6 +731514,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -710868,6 +731569,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -710954,6 +731656,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -711008,6 +731711,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -711094,6 +731798,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -711148,6 +731853,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -711234,6 +731940,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -711288,6 +731995,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -711374,6 +732082,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -711428,6 +732137,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -711514,6 +732224,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -711568,6 +732279,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -711654,6 +732366,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -711708,6 +732421,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -711794,6 +732508,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -711848,6 +732563,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -711934,6 +732650,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -711988,6 +732705,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -712074,6 +732792,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -712128,6 +732847,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -712214,6 +732934,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -712268,6 +732989,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -712354,6 +733076,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -712408,6 +733131,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -712494,6 +733218,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -712548,6 +733273,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -712634,6 +733360,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -712688,6 +733415,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -712774,6 +733502,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -712828,6 +733557,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -712914,6 +733644,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -712968,6 +733699,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -713054,6 +733786,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -713108,6 +733841,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -713194,6 +733928,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -713248,6 +733983,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -713334,6 +734070,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -713388,6 +734125,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -713896,6 +734634,7 @@ MonoBehaviour: m_Enable: 1 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 10 @@ -713916,6 +734655,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: -1 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 1 m_Location: m_JsonData: @@ -714288,7 +735028,7 @@ RectTransform: m_GameObject: {fileID: 988857829} 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: 2064442487} - {fileID: 2074252535} @@ -715320,7 +736060,7 @@ RectTransform: m_GameObject: {fileID: 991820879} 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: 1239681118} - {fileID: 1368770240} @@ -715577,7 +736317,7 @@ RectTransform: m_GameObject: {fileID: 992262141} 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: 1282858482} - {fileID: 569353997} @@ -719488,10 +740228,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -719778,6 +740514,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -719831,6 +740568,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -719928,6 +740666,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -719982,6 +740721,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -720067,6 +740807,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -720121,6 +740862,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -720206,6 +740948,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -720260,6 +741003,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -720345,6 +741089,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -720399,6 +741144,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -720484,6 +741230,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -720538,6 +741285,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -720994,6 +741742,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1002772872} +--- !u!1 &1002951599 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1002951600} + - component: {fileID: 1002951602} + - component: {fileID: 1002951601} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1002951600 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1002951599} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1332649028} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1002951601 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1002951599} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1002951602 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1002951599} --- !u!1 &1003183297 GameObject: m_ObjectHideFlags: 0 @@ -721271,6 +742093,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1003749054} +--- !u!1 &1003816656 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1003816657} + m_Layer: 0 + m_Name: label_0_1_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1003816657 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1003816656} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1577272335} + - {fileID: 1237689643} + m_Father: {fileID: 1574269530} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1004058828 GameObject: m_ObjectHideFlags: 0 @@ -721874,6 +742731,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1005383654} +--- !u!1 &1005660354 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1005660355} + m_Layer: 0 + m_Name: label_0_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1005660355 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1005660354} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1604427505} + - {fileID: 100823666} + m_Father: {fileID: 1574269530} + m_RootOrder: 14 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1005798411 GameObject: m_ObjectHideFlags: 0 @@ -723357,7 +744249,7 @@ RectTransform: m_GameObject: {fileID: 1009125080} 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: 285206202} - {fileID: 782862163} @@ -724052,10 +744944,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -724342,6 +745230,7 @@ MonoBehaviour: m_Show: 1 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0.8088235, g: 0.8088235, b: 0.8088235, a: 1} m_BackgroundWidth: 2 m_CenterColor: {r: 0.66176474, g: 0.70608515, b: 1, a: 1} @@ -724395,6 +745284,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -724492,6 +745382,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -724546,6 +745437,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -725233,6 +746125,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1013439129} +--- !u!1 &1013490584 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1013490585} + - component: {fileID: 1013490587} + - component: {fileID: 1013490586} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1013490585 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1013490584} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1977829224} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1013490586 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1013490584} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1013490587 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1013490584} --- !u!1 &1013712969 GameObject: m_ObjectHideFlags: 0 @@ -726438,6 +747404,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1015803948} +--- !u!1 &1015856839 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1015856840} + - component: {fileID: 1015856842} + - component: {fileID: 1015856841} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1015856840 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1015856839} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1729109235} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1015856841 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1015856839} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1015856842 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1015856839} --- !u!1 &1016061063 GameObject: m_ObjectHideFlags: 0 @@ -728380,6 +749420,44 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1020629954} +--- !u!1 &1020874434 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1020874435} + m_Layer: 0 + m_Name: axis_y2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1020874435 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1020874434} + m_LocalRotation: {x: -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: 402645808} + - {fileID: 2115649165} + - {fileID: 520836229} + - {fileID: 1779966641} + - {fileID: 620347055} + m_Father: {fileID: 92764070} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} --- !u!1 &1020917735 GameObject: m_ObjectHideFlags: 0 @@ -733195,6 +754273,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1033947833} +--- !u!1 &1034007320 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1034007321} + m_Layer: 0 + m_Name: label_2_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1034007321 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1034007320} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1163439218} + - {fileID: 1726239754} + m_Father: {fileID: 1574269530} + m_RootOrder: 28 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1034164211 GameObject: m_ObjectHideFlags: 0 @@ -736261,7 +757374,7 @@ RectTransform: m_GameObject: {fileID: 1043998531} 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: 1099491263} - {fileID: 2048696299} @@ -737275,6 +758388,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1046116679} +--- !u!1 &1046143566 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1046143567} + - component: {fileID: 1046143569} + - component: {fileID: 1046143568} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1046143567 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1046143566} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1815798207} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1046143568 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1046143566} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1046143569 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1046143566} --- !u!1 &1046176295 GameObject: m_ObjectHideFlags: 0 @@ -738318,6 +759505,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1047866722} +--- !u!1 &1047883136 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1047883137} + - component: {fileID: 1047883139} + - component: {fileID: 1047883138} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1047883137 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1047883136} + m_LocalRotation: {x: 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: 1918371884} + 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: 1, y: 1} +--- !u!114 &1047883138 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1047883136} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1047883139 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1047883136} --- !u!1 &1048209614 GameObject: m_ObjectHideFlags: 0 @@ -741239,6 +762500,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1055589365} +--- !u!1 &1055692404 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1055692405} + - component: {fileID: 1055692407} + - component: {fileID: 1055692406} + m_Layer: 0 + m_Name: axis_x0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1055692405 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1055692404} + m_LocalRotation: {x: 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: 869298477} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 150.8, y: -287} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1055692406 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1055692404} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x1 +--- !u!222 &1055692407 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1055692404} --- !u!1 &1056434910 GameObject: m_ObjectHideFlags: 0 @@ -741422,6 +762757,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1056698271} +--- !u!1 &1056725559 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1056725560} + - component: {fileID: 1056725562} + - component: {fileID: 1056725561} + m_Layer: 0 + m_Name: axis_y2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1056725560 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1056725559} + m_LocalRotation: {x: 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: 1790542136} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 140} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1056725561 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1056725559} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 45 +--- !u!222 &1056725562 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1056725559} --- !u!1 &1056824444 GameObject: m_ObjectHideFlags: 0 @@ -742113,6 +763522,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1057557284} +--- !u!1 &1057578490 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1057578491} + m_Layer: 0 + m_Name: label_0_0_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1057578491 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1057578490} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 2115372855} + - {fileID: 128143239} + m_Father: {fileID: 960174449} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1057661026 GameObject: m_ObjectHideFlags: 0 @@ -742181,6 +763625,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1057661026} +--- !u!1 &1057949149 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1057949150} + m_Layer: 0 + m_Name: label_2_4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1057949150 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1057949149} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1631596363} + - {fileID: 149025931} + m_Father: {fileID: 1574269530} + m_RootOrder: 32 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1057987047 GameObject: m_ObjectHideFlags: 0 @@ -743785,7 +765264,7 @@ RectTransform: m_GameObject: {fileID: 1061455336} 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: 1546455224} - {fileID: 1445264867} @@ -745727,6 +767206,18 @@ MonoBehaviour: m_Calls: [] m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - 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 &1064300881 MonoBehaviour: @@ -751350,10 +772841,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -751640,6 +773127,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -751693,6 +773181,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -751790,6 +773279,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -751844,6 +773334,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -751933,6 +773424,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -751987,6 +773479,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -752076,6 +773569,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -752130,6 +773624,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -752219,6 +773714,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -752273,6 +773769,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -752362,6 +773859,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -752416,6 +773914,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -752497,6 +773996,7 @@ MonoBehaviour: m_PositionType: 0 m_IndicatorGap: 10 m_CeilRate: 0 + m_IsAxisTooltip: 0 m_IndicatorList: - m_Name: indicator1 m_Max: 100 @@ -755643,6 +777143,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1084266871} +--- !u!1 &1084427484 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1084427485} + - component: {fileID: 1084427487} + - component: {fileID: 1084427486} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1084427485 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1084427484} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 2046678787} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1084427486 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1084427484} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1084427487 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1084427484} --- !u!1 &1084567263 GameObject: m_ObjectHideFlags: 0 @@ -757225,6 +778799,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1088487668} +--- !u!1 &1089001422 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1089001423} + m_Layer: 0 + m_Name: label_2_6 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1089001423 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1089001422} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 73880185} + - {fileID: 502967885} + m_Father: {fileID: 1969376537} + m_RootOrder: 34 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1089318956 GameObject: m_ObjectHideFlags: 0 @@ -757357,7 +778966,7 @@ RectTransform: m_GameObject: {fileID: 1089583344} 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: 1043699312} - {fileID: 1415589104} @@ -757855,6 +779464,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1090818283} +--- !u!1 &1090981965 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1090981966} + - component: {fileID: 1090981968} + - component: {fileID: 1090981967} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1090981966 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1090981965} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1102845753} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1090981967 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1090981965} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1090981968 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1090981965} --- !u!1 &1091323404 GameObject: m_ObjectHideFlags: 0 @@ -758055,7 +779732,7 @@ RectTransform: m_GameObject: {fileID: 1091577179} 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: 603513118} - {fileID: 1176174276} @@ -758731,7 +780408,7 @@ RectTransform: m_GameObject: {fileID: 1093127497} 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: 1990828240} - {fileID: 986943874} @@ -762892,6 +784569,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1102420369} +--- !u!1 &1102845752 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1102845753} + m_Layer: 0 + m_Name: label_1_6 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1102845753 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1102845752} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1090981966} + - {fileID: 92752105} + m_Father: {fileID: 1574269530} + m_RootOrder: 27 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1102980699 GameObject: m_ObjectHideFlags: 0 @@ -763721,6 +785433,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1104732889} +--- !u!1 &1104735287 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1104735288} + m_Layer: 0 + m_Name: label_0_4_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1104735288 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1104735287} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1177539995} + - {fileID: 710050566} + m_Father: {fileID: 960174449} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1104831772 GameObject: m_ObjectHideFlags: 0 @@ -764891,10 +786638,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -765185,6 +786928,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -765238,6 +786982,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -765335,6 +787080,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -765389,6 +787135,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -765478,6 +787225,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -765532,6 +787280,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -765780,6 +787529,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -765833,6 +787583,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -765930,6 +787681,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -765984,6 +787736,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -766074,6 +787827,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -766128,6 +787882,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -766216,6 +787971,7 @@ MonoBehaviour: m_PositionType: 0 m_IndicatorGap: 10 m_CeilRate: 0 + m_IsAxisTooltip: 0 m_IndicatorList: - m_Name: "\u6307\u6807\u4E00" m_Max: 0 @@ -766323,6 +788079,7 @@ MonoBehaviour: m_PositionType: 0 m_IndicatorGap: 10 m_CeilRate: 0 + m_IsAxisTooltip: 0 m_IndicatorList: - m_Name: "\u8BED\u6587" m_Max: 150 @@ -768463,7 +790220,7 @@ RectTransform: m_GameObject: {fileID: 1112722406} 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: 351458202} - {fileID: 572587408} @@ -769346,7 +791103,7 @@ RectTransform: m_GameObject: {fileID: 1114977646} 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: 1604830268} - {fileID: 2115821941} @@ -769683,6 +791440,41 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1116243852 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1116243853} + m_Layer: 0 + m_Name: label_0_1_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1116243853 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1116243852} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1422041990} + - {fileID: 770344129} + m_Father: {fileID: 960174449} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1116432915 GameObject: m_ObjectHideFlags: 0 @@ -770199,6 +791991,41 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1117190221 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1117190222} + m_Layer: 0 + m_Name: label_0_5_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1117190222 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1117190221} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1866275258} + - {fileID: 1195731592} + m_Father: {fileID: 960174449} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1117287344 GameObject: m_ObjectHideFlags: 0 @@ -771233,6 +793060,80 @@ RectTransform: m_AnchoredPosition: {x: -291.485, y: 150.25} m_SizeDelta: {x: 116, y: 35.333336} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1120553435 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1120553436} + - component: {fileID: 1120553438} + - component: {fileID: 1120553437} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1120553436 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1120553435} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 359754582} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1120553437 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1120553435} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1120553438 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1120553435} --- !u!1 &1120662738 GameObject: m_ObjectHideFlags: 0 @@ -771614,7 +793515,7 @@ RectTransform: m_GameObject: {fileID: 1121183903} 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: 1121413830} - {fileID: 1879115382} @@ -774147,10 +796048,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -774437,6 +796334,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -774490,6 +796388,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -774587,6 +796486,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -774641,6 +796541,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -774726,6 +796627,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -774780,6 +796682,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -774865,6 +796768,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -774919,6 +796823,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -775004,6 +796909,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -775058,6 +796964,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -775143,6 +797050,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -775197,6 +797105,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -775645,6 +797554,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -775665,6 +797575,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -776675,7 +798586,7 @@ RectTransform: m_GameObject: {fileID: 1130359735} 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: 2073361685} - {fileID: 1823713971} @@ -778352,7 +800263,7 @@ RectTransform: m_GameObject: {fileID: 1134047080} 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: 223252524} - {fileID: 706764597} @@ -778750,6 +800661,74 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1135131976 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1135131977} + - component: {fileID: 1135131979} + - component: {fileID: 1135131978} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1135131977 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1135131976} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 32373140} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1135131978 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1135131976} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1135131979 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1135131976} --- !u!1 &1135178131 GameObject: m_ObjectHideFlags: 0 @@ -778915,7 +800894,7 @@ RectTransform: m_GameObject: {fileID: 1135436264} 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: 700069309} - {fileID: 1296127878} @@ -782344,6 +804323,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1145203976} +--- !u!1 &1145375318 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1145375319} + - component: {fileID: 1145375321} + - component: {fileID: 1145375320} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1145375319 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1145375318} + m_LocalRotation: {x: 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: 2113097240} + 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: 1, y: 1} +--- !u!114 &1145375320 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1145375318} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1145375321 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1145375318} --- !u!1 &1145406126 GameObject: m_ObjectHideFlags: 0 @@ -782726,6 +804779,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 1} +--- !u!1 &1146243308 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1146243309} + - component: {fileID: 1146243311} + - component: {fileID: 1146243310} + m_Layer: 0 + m_Name: axis_x1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1146243309 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1146243308} + m_LocalRotation: {x: 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: 811752472} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 251.6, y: -287} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1146243310 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1146243308} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x2 +--- !u!222 &1146243311 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1146243308} --- !u!1 &1146435014 GameObject: m_ObjectHideFlags: 0 @@ -783317,6 +805444,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1147991970} +--- !u!1 &1148222669 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1148222670} + - component: {fileID: 1148222672} + - component: {fileID: 1148222671} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1148222670 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1148222669} + m_LocalRotation: {x: 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: 1645605402} + 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: 1, y: 1} +--- !u!114 &1148222671 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1148222669} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1148222672 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1148222669} --- !u!1 &1148654318 GameObject: m_ObjectHideFlags: 0 @@ -784638,10 +806839,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -784928,6 +807125,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -784981,6 +807179,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -785078,6 +807277,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -785132,6 +807332,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -785217,6 +807418,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -785271,6 +807473,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -785356,6 +807559,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -785410,6 +807614,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -785495,6 +807700,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -785549,6 +807755,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -785634,6 +807841,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -785688,6 +807896,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -785773,6 +807982,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -785827,6 +808037,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -785912,6 +808123,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -785966,6 +808178,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -786051,6 +808264,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -786105,6 +808319,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -786190,6 +808405,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -786244,6 +808460,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -786329,6 +808546,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -786383,6 +808601,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -786468,6 +808687,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -786522,6 +808742,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -786607,6 +808828,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -786661,6 +808883,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -786746,6 +808969,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -786800,6 +809024,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -786885,6 +809110,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -786939,6 +809165,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -787024,6 +809251,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -787078,6 +809306,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -787163,6 +809392,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -787217,6 +809447,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -787302,6 +809533,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -787356,6 +809588,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -787441,6 +809674,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -787495,6 +809729,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -787580,6 +809815,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -787634,6 +809870,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -787719,6 +809956,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -787773,6 +810011,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -787858,6 +810097,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -787912,6 +810152,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -787997,6 +810238,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -788051,6 +810293,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -788136,6 +810379,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -788190,6 +810434,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -788275,6 +810520,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -788329,6 +810575,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -788414,6 +810661,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -788468,6 +810716,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -788553,6 +810802,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -788607,6 +810857,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -788692,6 +810943,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -788746,6 +810998,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -788831,6 +811084,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -788885,6 +811139,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -788970,6 +811225,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -789024,6 +811280,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -789109,6 +811366,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -789163,6 +811421,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -789248,6 +811507,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -789302,6 +811562,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -789387,6 +811648,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -789441,6 +811703,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -789526,6 +811789,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -789580,6 +811844,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -789665,6 +811930,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -789719,6 +811985,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -789804,6 +812071,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -789858,6 +812126,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -790336,6 +812605,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -790356,6 +812626,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -791796,6 +814067,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1152822788} +--- !u!1 &1153046781 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1153046782} + - component: {fileID: 1153046784} + - component: {fileID: 1153046783} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1153046782 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1153046781} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1845826814} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1153046783 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1153046781} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1153046784 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1153046781} --- !u!1 &1153072925 GameObject: m_ObjectHideFlags: 0 @@ -793459,7 +815798,7 @@ MonoBehaviour: m_Script: {fileID: 1367256648, guid: f70555f144d8491a825f0804e09c671c, type: 3} m_Name: m_EditorClassIdentifier: - m_Content: {fileID: 935316430} + m_Content: {fileID: 191364310} m_Horizontal: 0 m_Vertical: 1 m_MovementType: 1 @@ -794486,10 +816825,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -794776,6 +817111,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -794829,6 +817165,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -794926,6 +817263,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -794980,6 +817318,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -795065,6 +817404,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -795119,6 +817459,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -795204,6 +817545,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -795258,6 +817600,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -795343,6 +817686,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -795397,6 +817741,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -795482,6 +817827,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -795536,6 +817882,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -795780,6 +818127,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -795833,6 +818181,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -795930,6 +818279,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -795984,6 +818334,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -796069,6 +818420,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -796123,6 +818475,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -796208,6 +818561,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -796262,6 +818616,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -796347,6 +818702,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -796401,6 +818757,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -796486,6 +818843,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -796540,6 +818898,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -796784,6 +819143,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -796837,6 +819197,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -796934,6 +819295,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -796988,6 +819350,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -797073,6 +819436,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -797127,6 +819491,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -797212,6 +819577,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -797266,6 +819632,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -797351,6 +819718,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -797405,6 +819773,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -797490,6 +819859,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -797544,6 +819914,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -797992,6 +820363,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -798012,6 +820384,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -799321,6 +821694,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1163256288} +--- !u!1 &1163439217 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1163439218} + - component: {fileID: 1163439220} + - component: {fileID: 1163439219} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1163439218 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1163439217} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1034007321} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1163439219 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1163439217} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1163439220 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1163439217} --- !u!1 &1163511876 GameObject: m_ObjectHideFlags: 0 @@ -799931,6 +822372,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1164511743} +--- !u!1 &1164514049 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1164514050} + m_Layer: 0 + m_Name: label_2_4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1164514050 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1164514049} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1738125719} + - {fileID: 262679619} + m_Father: {fileID: 1969376537} + m_RootOrder: 32 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1165009075 GameObject: m_ObjectHideFlags: 0 @@ -800601,6 +823077,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1167287925} +--- !u!1 &1167577190 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1167577191} + m_Layer: 0 + m_Name: label_0_1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1167577191 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1167577190} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 685696405} + - {fileID: 1861200273} + m_Father: {fileID: 1969376537} + m_RootOrder: 15 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1167901189 GameObject: m_ObjectHideFlags: 0 @@ -801296,6 +823807,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1169633312} +--- !u!1 &1169667796 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1169667797} + - component: {fileID: 1169667799} + - component: {fileID: 1169667798} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1169667797 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1169667796} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1183826487} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1169667798 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1169667796} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1169667799 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1169667796} --- !u!1 &1169767543 GameObject: m_ObjectHideFlags: 0 @@ -801872,6 +824451,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1170285934} +--- !u!1 &1170337932 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1170337933} + m_Layer: 0 + m_Name: label_1_1_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1170337933 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1170337932} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 243077498} + - {fileID: 1653139863} + m_Father: {fileID: 960174449} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1170424155 GameObject: m_ObjectHideFlags: 0 @@ -802220,6 +824834,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1171168405} +--- !u!1 &1171642556 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1171642557} + - component: {fileID: 1171642559} + - component: {fileID: 1171642558} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1171642557 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1171642556} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1977829224} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1171642558 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1171642556} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1171642559 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1171642556} --- !u!1 &1171738556 GameObject: m_ObjectHideFlags: 0 @@ -802393,7 +825075,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 + m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] @@ -802604,10 +825286,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -802894,6 +825572,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -802947,6 +825626,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -803044,6 +825724,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -803098,6 +825779,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -803342,6 +826024,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -803395,6 +826078,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -803492,6 +826176,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -803546,6 +826231,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -804947,6 +827633,80 @@ RectTransform: m_AnchoredPosition: {x: -87.29999, y: 53.200005} m_SizeDelta: {x: 40, y: 24} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1176354984 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1176354985} + - component: {fileID: 1176354987} + - component: {fileID: 1176354986} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1176354985 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1176354984} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 58599968} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1176354986 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1176354984} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1176354987 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1176354984} --- !u!1 &1176785119 GameObject: m_ObjectHideFlags: 0 @@ -805239,6 +827999,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1177384273} +--- !u!1 &1177539994 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1177539995} + - component: {fileID: 1177539997} + - component: {fileID: 1177539996} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1177539995 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1177539994} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1104735288} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1177539996 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1177539994} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1177539997 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1177539994} --- !u!1 &1177712238 GameObject: m_ObjectHideFlags: 0 @@ -806256,10 +829090,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -806546,6 +829376,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -806599,6 +829430,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -806696,6 +829528,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -806750,6 +829583,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -806836,6 +829670,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -806890,6 +829725,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -807135,6 +829971,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -807188,6 +830025,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -807285,6 +830123,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -807339,6 +830178,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -807538,6 +830378,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1179630415} +--- !u!1 &1180433392 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1180433393} + - component: {fileID: 1180433395} + - component: {fileID: 1180433394} + m_Layer: 0 + m_Name: title_1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1180433393 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1180433392} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1507643177} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 12} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1180433394 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1180433392} + 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.18431373, g: 0.27058825, b: 0.32941177, a: 1} + m_RaycastTarget: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1180433395 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1180433392} --- !u!1 &1180585625 GameObject: m_ObjectHideFlags: 0 @@ -807715,6 +830629,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1180972230} +--- !u!1 &1181353853 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1181353854} + - component: {fileID: 1181353856} + - component: {fileID: 1181353855} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1181353854 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1181353853} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1665899162} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1181353855 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1181353853} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1181353856 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1181353853} --- !u!1 &1181712980 GameObject: m_ObjectHideFlags: 0 @@ -808359,6 +831347,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1183781005} +--- !u!1 &1183826486 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1183826487} + m_Layer: 0 + m_Name: label_2_1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1183826487 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1183826486} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1169667797} + - {fileID: 184877920} + m_Father: {fileID: 1574269530} + m_RootOrder: 29 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1183991980 GameObject: m_ObjectHideFlags: 0 @@ -810810,6 +833833,74 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1191119161 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1191119162} + - component: {fileID: 1191119164} + - component: {fileID: 1191119163} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1191119162 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1191119161} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 795222399} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1191119163 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1191119161} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1191119164 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1191119161} --- !u!1 &1191294711 GameObject: m_ObjectHideFlags: 0 @@ -812411,6 +835502,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1195683371} +--- !u!1 &1195731591 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1195731592} + - component: {fileID: 1195731594} + - component: {fileID: 1195731593} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1195731592 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1195731591} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1117190222} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1195731593 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1195731591} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1195731594 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1195731591} --- !u!1 &1195935108 GameObject: m_ObjectHideFlags: 0 @@ -816142,6 +839301,80 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1206143732 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1206143733} + - component: {fileID: 1206143735} + - component: {fileID: 1206143734} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1206143733 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1206143732} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1475368771} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1206143734 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1206143732} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1206143735 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1206143732} --- !u!1 &1206454323 GameObject: m_ObjectHideFlags: 0 @@ -816348,7 +839581,7 @@ RectTransform: m_GameObject: {fileID: 1206685165} 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: 524134089} - {fileID: 784778750} @@ -817309,6 +840542,41 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1209130969 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1209130970} + m_Layer: 0 + m_Name: label_0_4_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1209130970 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1209130969} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 823975426} + - {fileID: 1525153242} + m_Father: {fileID: 1574269530} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1209658533 GameObject: m_ObjectHideFlags: 0 @@ -817476,7 +840744,7 @@ RectTransform: m_GameObject: {fileID: 1210106344} 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: 334941097} - {fileID: 1713952698} @@ -817799,6 +841067,112 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1212092183} +--- !u!1 &1212200372 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1212200373} + m_Layer: 0 + m_Name: axis_x2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1212200373 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1212200372} + m_LocalRotation: {x: -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: 1670113951} + - {fileID: 1740215539} + - {fileID: 465991910} + - {fileID: 1417671657} + - {fileID: 567585872} + m_Father: {fileID: 297285224} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} +--- !u!1 &1212343006 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1212343007} + - component: {fileID: 1212343009} + - component: {fileID: 1212343008} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1212343007 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1212343006} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1377618222} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1212343008 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1212343006} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1212343009 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1212343006} --- !u!1 &1212768427 GameObject: m_ObjectHideFlags: 0 @@ -818699,7 +842073,7 @@ MonoBehaviour: m_HorizontalOverflow: 0 m_VerticalOverflow: 0 m_LineSpacing: 1 - m_Text: "\u6C34\u4F4D\u56FE LiquidChart" + m_Text: "\u6298\u7EBF\u56FE LineChart" --- !u!222 &1214602855 CanvasRenderer: m_ObjectHideFlags: 0 @@ -818729,7 +842103,7 @@ RectTransform: m_GameObject: {fileID: 1214734737} 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: 1835109743} m_RootOrder: 1 @@ -818990,6 +842364,44 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1216050167} +--- !u!1 &1216071422 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1216071423} + m_Layer: 0 + m_Name: axis_y + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1216071423 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1216071422} + m_LocalRotation: {x: -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: 367687337} + - {fileID: 488274079} + - {fileID: 2073593009} + - {fileID: 536364678} + - {fileID: 869758433} + m_Father: {fileID: 2066464034} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} --- !u!1 &1216129863 GameObject: m_ObjectHideFlags: 0 @@ -820092,6 +843504,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1218796715} +--- !u!1 &1218821236 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1218821237} + - component: {fileID: 1218821239} + - component: {fileID: 1218821238} + m_Layer: 0 + m_Name: axis_y1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1218821237 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1218821236} + m_LocalRotation: {x: 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: 1790542136} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 85} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1218821238 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1218821236} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 22.5 +--- !u!222 &1218821239 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1218821236} --- !u!1 &1218966688 GameObject: m_ObjectHideFlags: 0 @@ -821149,6 +844635,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1221523318} +--- !u!1 &1221717581 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1221717582} + - component: {fileID: 1221717584} + - component: {fileID: 1221717583} + m_Layer: 0 + m_Name: datazoomend + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1221717582 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1221717581} + m_LocalRotation: {x: 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: 1232265987} + 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: 300} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1221717583 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1221717581} + 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: 0 + 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: Text +--- !u!222 &1221717584 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1221717581} --- !u!1 &1221762030 GameObject: m_ObjectHideFlags: 0 @@ -821719,6 +845279,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1222563866} +--- !u!1 &1222568507 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1222568508} + - component: {fileID: 1222568510} + - component: {fileID: 1222568509} + m_Layer: 0 + m_Name: axis_x22 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1222568508 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1222568507} + m_LocalRotation: {x: 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: 292644576} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 352.40002, y: -33} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1222568509 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1222568507} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1222568510 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1222568507} --- !u!1 &1222646268 GameObject: m_ObjectHideFlags: 0 @@ -821787,6 +845421,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1222646268} +--- !u!1 &1222715925 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1222715926} + - component: {fileID: 1222715928} + - component: {fileID: 1222715927} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1222715926 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1222715925} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1812311448} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1222715927 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1222715925} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1222715928 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1222715925} --- !u!1 &1222800326 GameObject: m_ObjectHideFlags: 0 @@ -824466,6 +848174,148 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1230658544 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1230658545} + - component: {fileID: 1230658547} + - component: {fileID: 1230658546} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1230658545 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1230658544} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 823434815} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1230658546 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1230658544} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1230658547 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1230658544} +--- !u!1 &1230780899 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1230780900} + - component: {fileID: 1230780902} + - component: {fileID: 1230780901} + m_Layer: 0 + m_Name: axis_x3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1230780900 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1230780899} + m_LocalRotation: {x: 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: 811752472} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 453.2, y: -287} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1230780901 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1230780899} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x4 +--- !u!222 &1230780902 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1230780899} --- !u!1 &1230992847 GameObject: m_ObjectHideFlags: 0 @@ -824717,6 +848567,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1231336336} +--- !u!1 &1231369413 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1231369414} + - component: {fileID: 1231369416} + - component: {fileID: 1231369415} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1231369414 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1231369413} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 442524936} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1231369415 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1231369413} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1231369416 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1231369413} --- !u!1 &1231561348 GameObject: m_ObjectHideFlags: 0 @@ -825030,6 +848954,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1232195505} +--- !u!1 &1232265986 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1232265987} + m_Layer: 0 + m_Name: datazoom + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1232265987 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1232265986} + m_LocalRotation: {x: -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: 504552084} + - {fileID: 1221717582} + m_Father: {fileID: 92764070} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} --- !u!1 &1232713780 GameObject: m_ObjectHideFlags: 0 @@ -825680,6 +849639,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} +--- !u!1 &1233910515 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1233910516} + - component: {fileID: 1233910518} + - component: {fileID: 1233910517} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1233910516 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1233910515} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 761075302} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1233910517 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1233910515} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1233910518 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1233910515} --- !u!1 &1234058253 GameObject: m_ObjectHideFlags: 0 @@ -826152,6 +850185,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1235317224} +--- !u!1 &1235521911 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1235521912} + - component: {fileID: 1235521914} + - component: {fileID: 1235521913} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1235521912 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1235521911} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 851063900} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1235521913 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1235521911} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1235521914 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1235521911} --- !u!1 &1235557523 GameObject: m_ObjectHideFlags: 0 @@ -826512,6 +850619,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1237424364} +--- !u!1 &1237689642 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1237689643} + - component: {fileID: 1237689645} + - component: {fileID: 1237689644} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1237689643 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1237689642} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1003816657} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1237689644 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1237689642} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1237689645 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1237689642} --- !u!1 &1237706672 GameObject: m_ObjectHideFlags: 0 @@ -831723,7 +855898,7 @@ RectTransform: m_GameObject: {fileID: 1252066640} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 1378641094} - {fileID: 1513849689} @@ -832128,6 +856303,42 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1253825079} +--- !u!1 &1253882583 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1253882584} + m_Layer: 0 + m_Name: serie + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1253882584 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1253882583} + m_LocalRotation: {x: -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: 21344400} + - {fileID: 684154735} + - {fileID: 295111757} + m_Father: {fileID: 92764070} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} --- !u!1 &1253932631 GameObject: m_ObjectHideFlags: 0 @@ -833612,6 +857823,74 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1257374210 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1257374211} + - component: {fileID: 1257374213} + - component: {fileID: 1257374212} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1257374211 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1257374210} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 346419771} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1257374212 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1257374210} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1257374213 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1257374210} --- !u!1 &1257583417 GameObject: m_ObjectHideFlags: 0 @@ -836393,6 +860672,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1264344103} +--- !u!1 &1264385010 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1264385011} + - component: {fileID: 1264385013} + - component: {fileID: 1264385012} + m_Layer: 0 + m_Name: axis_x5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1264385011 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1264385010} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1934019931} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 482, y: -287} + m_SizeDelta: {x: 72, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1264385012 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1264385010} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Sat +--- !u!222 &1264385013 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1264385010} --- !u!1 &1264475754 GameObject: m_ObjectHideFlags: 0 @@ -837611,6 +861964,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1266778208} +--- !u!1 &1266857120 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1266857121} + - component: {fileID: 1266857123} + - component: {fileID: 1266857122} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1266857121 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1266857120} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1323130069} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1266857122 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1266857120} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1266857123 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1266857120} --- !u!1 &1267055005 GameObject: m_ObjectHideFlags: 0 @@ -839869,6 +864296,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1271989104} +--- !u!1 &1272083833 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1272083834} + m_Layer: 0 + m_Name: label_1_2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1272083834 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1272083833} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 308738037} + - {fileID: 1891588727} + m_Father: {fileID: 1969376537} + m_RootOrder: 23 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1272277699 GameObject: m_ObjectHideFlags: 0 @@ -841189,6 +865651,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1274577762} +--- !u!1 &1274862286 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1274862287} + - component: {fileID: 1274862289} + - component: {fileID: 1274862288} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1274862287 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1274862286} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1849396351} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1274862288 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1274862286} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1274862289 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1274862286} --- !u!1 &1275129651 GameObject: m_ObjectHideFlags: 0 @@ -841280,7 +865816,7 @@ RectTransform: m_GameObject: {fileID: 1275276992} 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: 1615517596} - {fileID: 2034061292} @@ -842454,6 +866990,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1279893826 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1279893827} + - component: {fileID: 1279893829} + - component: {fileID: 1279893828} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1279893827 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1279893826} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1568290205} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1279893828 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1279893826} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1279893829 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1279893826} --- !u!1 &1279957286 GameObject: m_ObjectHideFlags: 0 @@ -844244,6 +868854,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1284278191} +--- !u!1 &1284324834 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1284324835} + - component: {fileID: 1284324837} + - component: {fileID: 1284324836} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1284324835 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1284324834} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 132880768} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1284324836 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1284324834} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1284324837 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1284324834} --- !u!1 &1284348303 GameObject: m_ObjectHideFlags: 0 @@ -847860,6 +872544,39 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1294377183} +--- !u!1 &1294467024 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1294467025} + m_Layer: 0 + m_Name: legend + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1294467025 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1294467024} + m_LocalRotation: {x: -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: 2066464034} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} --- !u!1 &1294603929 GameObject: m_ObjectHideFlags: 0 @@ -848836,10 +873553,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -849134,6 +873847,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -849187,6 +873901,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -849284,6 +873999,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -849338,6 +874054,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -849423,6 +874140,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -849477,6 +874195,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -849562,6 +874281,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -849616,6 +874336,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -849701,6 +874422,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -849755,6 +874477,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -849840,6 +874563,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -849894,6 +874618,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -853623,10 +878348,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -853913,6 +878634,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0.9411765, g: 0.9411765, b: 0.9411765, a: 1} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -853966,6 +878688,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -854063,6 +878786,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -854117,6 +878841,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -854203,6 +878928,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -854257,6 +878983,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -854343,6 +879070,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -854397,6 +879125,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -854916,6 +879645,74 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1305954948 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1305954949} + - component: {fileID: 1305954951} + - component: {fileID: 1305954950} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1305954949 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1305954948} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1469716240} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1305954950 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1305954948} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1305954951 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1305954948} --- !u!1 &1306167787 GameObject: m_ObjectHideFlags: 0 @@ -857606,6 +882403,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1311042561} +--- !u!1 &1311051467 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1311051468} + m_Layer: 0 + m_Name: label_0_0_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1311051468 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1311051467} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 180492458} + - {fileID: 1858739376} + m_Father: {fileID: 1574269530} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1311214551 GameObject: m_ObjectHideFlags: 0 @@ -858417,7 +883249,7 @@ RectTransform: m_GameObject: {fileID: 1313405137} 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: 1079999496} - {fileID: 881011479} @@ -858637,6 +883469,74 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1313621591 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1313621592} + - component: {fileID: 1313621594} + - component: {fileID: 1313621593} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1313621592 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1313621591} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 460529237} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1313621593 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1313621591} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1313621594 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1313621591} --- !u!1 &1314042434 GameObject: m_ObjectHideFlags: 0 @@ -858837,7 +883737,7 @@ RectTransform: m_GameObject: {fileID: 1314201127} 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: 1193848726} - {fileID: 271326687} @@ -861621,7 +886521,7 @@ RectTransform: m_GameObject: {fileID: 1320552123} 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: 1049699570} - {fileID: 132308084} @@ -862297,6 +887197,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1321800176} +--- !u!1 &1321894818 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1321894819} + - component: {fileID: 1321894821} + - component: {fileID: 1321894820} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1321894819 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1321894818} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 934700879} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1321894820 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1321894818} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1321894821 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1321894818} --- !u!1 &1322003209 GameObject: m_ObjectHideFlags: 0 @@ -862661,6 +887629,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1322672179} +--- !u!1 &1323130068 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1323130069} + m_Layer: 0 + m_Name: label_1_5_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1323130069 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1323130068} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1266857121} + - {fileID: 161096446} + m_Father: {fileID: 1969376537} + m_RootOrder: 12 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1323186117 GameObject: m_ObjectHideFlags: 0 @@ -866210,7 +891213,7 @@ RectTransform: m_GameObject: {fileID: 1332075058} 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: 749929284} - {fileID: 1260359365} @@ -866408,6 +891411,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1332371713} +--- !u!1 &1332649027 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1332649028} + m_Layer: 0 + m_Name: label_1_6_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1332649028 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1332649027} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1002951600} + - {fileID: 1483953444} + m_Father: {fileID: 1969376537} + m_RootOrder: 13 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1332663890 GameObject: m_ObjectHideFlags: 0 @@ -866579,6 +891617,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1332865813} +--- !u!1 &1333057693 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1333057694} + - component: {fileID: 1333057696} + - component: {fileID: 1333057695} + m_Layer: 0 + m_Name: axis_x2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1333057694 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1333057693} + m_LocalRotation: {x: 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: 869298477} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 352.40002, y: -287} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1333057695 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1333057693} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x3 +--- !u!222 &1333057696 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1333057693} --- !u!1 &1333243386 GameObject: m_ObjectHideFlags: 0 @@ -868100,6 +893212,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1337321852} +--- !u!1 &1337462742 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1337462743} + - component: {fileID: 1337462745} + - component: {fileID: 1337462744} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1337462743 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1337462742} + m_LocalRotation: {x: 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: 2098417499} + 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: 1, y: 1} +--- !u!114 &1337462744 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1337462742} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1337462745 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1337462742} --- !u!1 &1337522383 GameObject: m_ObjectHideFlags: 0 @@ -868765,7 +893951,7 @@ RectTransform: m_GameObject: {fileID: 1338692538} 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: 320153914} - {fileID: 1236513026} @@ -870646,7 +895832,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 + m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] @@ -870857,10 +896043,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -871147,6 +896329,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -871200,6 +896383,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -871297,6 +896481,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -871351,6 +896536,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -871595,6 +896781,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -871648,6 +896835,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -871745,6 +896933,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -871799,6 +896988,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -872622,6 +897812,74 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 1} +--- !u!1 &1342842464 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1342842465} + - component: {fileID: 1342842467} + - component: {fileID: 1342842466} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1342842465 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1342842464} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1811226810} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1342842466 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1342842464} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1342842467 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1342842464} --- !u!1 &1343055891 GameObject: m_ObjectHideFlags: 0 @@ -872908,6 +898166,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1343555334} +--- !u!1 &1343823755 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1343823756} + - component: {fileID: 1343823758} + - component: {fileID: 1343823757} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1343823756 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1343823755} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 669903975} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1343823757 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1343823755} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1343823758 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1343823755} --- !u!1 &1343858892 GameObject: m_ObjectHideFlags: 0 @@ -875973,7 +901299,7 @@ RectTransform: m_GameObject: {fileID: 1350675281} 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: 33516770} m_RootOrder: 1 @@ -878715,7 +904041,7 @@ RectTransform: m_GameObject: {fileID: 1357367414} 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: 1083696922} - {fileID: 1543119052} @@ -879214,7 +904540,7 @@ RectTransform: m_GameObject: {fileID: 1360157171} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 1395806835} m_RootOrder: 1 @@ -881407,7 +906733,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 + m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] @@ -881618,10 +906944,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -881908,6 +907230,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -881961,6 +907284,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -882058,6 +907382,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -882112,6 +907437,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -882356,6 +907682,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -882409,6 +907736,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -882506,6 +907834,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -882560,6 +907889,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -884802,10 +910132,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -885092,6 +910418,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -885145,6 +910472,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -885242,6 +910570,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -885296,6 +910625,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -885381,6 +910711,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -885435,6 +910766,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -885520,6 +910852,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -885574,6 +910907,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -885659,6 +910993,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -885713,6 +911048,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -885798,6 +911134,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -885852,6 +911189,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -885937,6 +911275,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -885991,6 +911330,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -886076,6 +911416,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -886130,6 +911471,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -886215,6 +911557,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -886269,6 +911612,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -886354,6 +911698,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -886408,6 +911753,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -886493,6 +911839,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -886547,6 +911894,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -886632,6 +911980,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -886686,6 +912035,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -886771,6 +912121,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -886825,6 +912176,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -886910,6 +912262,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -886964,6 +912317,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -887049,6 +912403,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -887103,6 +912458,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -887188,6 +912544,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -887242,6 +912599,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -887327,6 +912685,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -887381,6 +912740,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -887466,6 +912826,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -887520,6 +912881,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -887605,6 +912967,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -887659,6 +913022,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -887744,6 +913108,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -887798,6 +913163,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -887883,6 +913249,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -887937,6 +913304,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -888022,6 +913390,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -888076,6 +913445,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -888161,6 +913531,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -888215,6 +913586,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -888300,6 +913672,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -888354,6 +913727,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -888439,6 +913813,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -888493,6 +913868,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -888578,6 +913954,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -888632,6 +914009,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -888717,6 +914095,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -888771,6 +914150,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -888856,6 +914236,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -888910,6 +914291,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -888995,6 +914377,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -889049,6 +914432,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -889134,6 +914518,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -889188,6 +914573,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -889273,6 +914659,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -889327,6 +914714,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -889412,6 +914800,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -889466,6 +914855,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -889551,6 +914941,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -889605,6 +914996,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -889690,6 +915082,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -889744,6 +915137,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -889829,6 +915223,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -889883,6 +915278,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -889968,6 +915364,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -890022,6 +915419,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -890107,6 +915505,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -890161,6 +915560,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -890246,6 +915646,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -890300,6 +915701,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -890385,6 +915787,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -890439,6 +915842,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -890524,6 +915928,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -890578,6 +915983,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -890663,6 +916069,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -890717,6 +916124,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -890802,6 +916210,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -890856,6 +916265,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -890941,6 +916351,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -890995,6 +916406,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -891080,6 +916492,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -891134,6 +916547,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -891219,6 +916633,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -891273,6 +916688,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -891358,6 +916774,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -891412,6 +916829,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -891497,6 +916915,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -891551,6 +916970,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -891636,6 +917056,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -891690,6 +917111,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -891775,6 +917197,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -891829,6 +917252,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -891914,6 +917338,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -891968,6 +917393,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -892053,6 +917479,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -892107,6 +917534,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -892192,6 +917620,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -892246,6 +917675,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -892331,6 +917761,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -892385,6 +917816,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -892470,6 +917902,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -892524,6 +917957,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -892609,6 +918043,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -892663,6 +918098,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -892748,6 +918184,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -892802,6 +918239,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -892887,6 +918325,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -892941,6 +918380,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -893026,6 +918466,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -893080,6 +918521,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -893165,6 +918607,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -893219,6 +918662,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -893304,6 +918748,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -893358,6 +918803,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -893443,6 +918889,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -893497,6 +918944,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -893582,6 +919030,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -893636,6 +919085,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -893721,6 +919171,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -893775,6 +919226,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -893860,6 +919312,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -893914,6 +919367,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -893999,6 +919453,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -894053,6 +919508,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -894138,6 +919594,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -894192,6 +919649,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -894277,6 +919735,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -894331,6 +919790,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -894416,6 +919876,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -894470,6 +919931,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -894555,6 +920017,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -894609,6 +920072,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -894694,6 +920158,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -894748,6 +920213,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -894833,6 +920299,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -894887,6 +920354,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -894972,6 +920440,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -895026,6 +920495,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -895111,6 +920581,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -895165,6 +920636,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -895250,6 +920722,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -895304,6 +920777,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -895389,6 +920863,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -895443,6 +920918,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -895528,6 +921004,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -895582,6 +921059,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -895667,6 +921145,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -895721,6 +921200,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -895806,6 +921286,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -895860,6 +921341,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -895945,6 +921427,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -895999,6 +921482,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -896084,6 +921568,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -896138,6 +921623,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -896223,6 +921709,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -896277,6 +921764,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -896362,6 +921850,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -896416,6 +921905,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -896501,6 +921991,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -896555,6 +922046,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -896640,6 +922132,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -896694,6 +922187,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -896779,6 +922273,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -896833,6 +922328,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -896918,6 +922414,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -896972,6 +922469,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -897057,6 +922555,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -897111,6 +922610,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -897196,6 +922696,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -897250,6 +922751,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -897335,6 +922837,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -897389,6 +922892,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -897474,6 +922978,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -897528,6 +923033,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -897613,6 +923119,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -897667,6 +923174,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -897752,6 +923260,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -897806,6 +923315,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -897891,6 +923401,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -897945,6 +923456,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -898030,6 +923542,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -898084,6 +923597,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -898169,6 +923683,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -898223,6 +923738,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -898308,6 +923824,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -898362,6 +923879,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -898447,6 +923965,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -898501,6 +924020,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -898586,6 +924106,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -898640,6 +924161,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -898725,6 +924247,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -898779,6 +924302,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -898864,6 +924388,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -898918,6 +924443,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -899003,6 +924529,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -899057,6 +924584,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -899142,6 +924670,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -899196,6 +924725,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -899281,6 +924811,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -899335,6 +924866,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -899420,6 +924952,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -899474,6 +925007,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -899559,6 +925093,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -899613,6 +925148,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -899698,6 +925234,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -899752,6 +925289,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -899837,6 +925375,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -899891,6 +925430,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -899976,6 +925516,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -900030,6 +925571,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -900115,6 +925657,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -900169,6 +925712,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -900254,6 +925798,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -900308,6 +925853,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -900393,6 +925939,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -900447,6 +925994,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -900532,6 +926080,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -900586,6 +926135,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -900671,6 +926221,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -900725,6 +926276,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -900810,6 +926362,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -900864,6 +926417,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -900949,6 +926503,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -901003,6 +926558,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -901088,6 +926644,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -901142,6 +926699,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -901227,6 +926785,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -901281,6 +926840,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -901366,6 +926926,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -901420,6 +926981,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -901505,6 +927067,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -901559,6 +927122,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -901644,6 +927208,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -901698,6 +927263,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -901783,6 +927349,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -901837,6 +927404,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -901922,6 +927490,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -901976,6 +927545,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -902061,6 +927631,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -902115,6 +927686,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -902200,6 +927772,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -902254,6 +927827,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -902339,6 +927913,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -902393,6 +927968,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -902478,6 +928054,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -902532,6 +928109,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -902617,6 +928195,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -902671,6 +928250,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -902756,6 +928336,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -902810,6 +928391,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -902895,6 +928477,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -902949,6 +928532,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -903034,6 +928618,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -903088,6 +928673,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -903173,6 +928759,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -903227,6 +928814,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -903312,6 +928900,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -903366,6 +928955,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -903451,6 +929041,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -903505,6 +929096,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -903590,6 +929182,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -903644,6 +929237,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -903729,6 +929323,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -903783,6 +929378,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -903868,6 +929464,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -903922,6 +929519,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -904007,6 +929605,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -904061,6 +929660,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -904146,6 +929746,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -904200,6 +929801,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -904285,6 +929887,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -904339,6 +929942,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -904424,6 +930028,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -904478,6 +930083,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -904563,6 +930169,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -904617,6 +930224,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -904702,6 +930310,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -904756,6 +930365,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -904841,6 +930451,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -904895,6 +930506,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -904980,6 +930592,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -905034,6 +930647,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -905119,6 +930733,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -905173,6 +930788,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -905258,6 +930874,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -905312,6 +930929,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -905397,6 +931015,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -905451,6 +931070,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -905536,6 +931156,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -905590,6 +931211,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -905675,6 +931297,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -905729,6 +931352,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -905814,6 +931438,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -905868,6 +931493,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -905953,6 +931579,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -906007,6 +931634,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -906092,6 +931720,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -906146,6 +931775,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -906231,6 +931861,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -906285,6 +931916,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -906370,6 +932002,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -906424,6 +932057,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -906509,6 +932143,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -906563,6 +932198,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -906648,6 +932284,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -906702,6 +932339,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -906787,6 +932425,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -906841,6 +932480,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -906926,6 +932566,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -906980,6 +932621,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -907065,6 +932707,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -907119,6 +932762,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -907204,6 +932848,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -907258,6 +932903,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -907343,6 +932989,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -907397,6 +933044,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -907482,6 +933130,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -907536,6 +933185,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -907621,6 +933271,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -907675,6 +933326,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -907760,6 +933412,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -907814,6 +933467,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -907899,6 +933553,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -907953,6 +933608,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -908038,6 +933694,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -908092,6 +933749,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -908177,6 +933835,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -908231,6 +933890,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -908316,6 +933976,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -908370,6 +934031,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -908455,6 +934117,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -908509,6 +934172,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -908594,6 +934258,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -908648,6 +934313,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -908733,6 +934399,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -908787,6 +934454,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -908872,6 +934540,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -908926,6 +934595,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -909011,6 +934681,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -909065,6 +934736,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -909150,6 +934822,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -909204,6 +934877,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -909289,6 +934963,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -909343,6 +935018,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -909428,6 +935104,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -909482,6 +935159,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -909567,6 +935245,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -909621,6 +935300,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -909706,6 +935386,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -909760,6 +935441,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -909845,6 +935527,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -909899,6 +935582,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -909984,6 +935668,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -910038,6 +935723,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -910123,6 +935809,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -910177,6 +935864,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -910262,6 +935950,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -910316,6 +936005,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -910401,6 +936091,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -910455,6 +936146,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -910540,6 +936232,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -910594,6 +936287,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -910679,6 +936373,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -910733,6 +936428,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -910818,6 +936514,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -910872,6 +936569,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -910957,6 +936655,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -911011,6 +936710,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -911096,6 +936796,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -911150,6 +936851,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -911235,6 +936937,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -911289,6 +936992,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -911374,6 +937078,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -911428,6 +937133,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -911513,6 +937219,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -911567,6 +937274,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -911652,6 +937360,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -911706,6 +937415,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -911791,6 +937501,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -911845,6 +937556,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -911930,6 +937642,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -911984,6 +937697,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -912069,6 +937783,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -912123,6 +937838,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -912208,6 +937924,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -912262,6 +937979,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -912347,6 +938065,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -912401,6 +938120,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -912486,6 +938206,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -912540,6 +938261,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -912625,6 +938347,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -912679,6 +938402,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -912764,6 +938488,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -912818,6 +938543,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -912903,6 +938629,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -912957,6 +938684,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -913042,6 +938770,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -913096,6 +938825,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -913181,6 +938911,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -913235,6 +938966,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -913320,6 +939052,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -913374,6 +939107,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -913459,6 +939193,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -913513,6 +939248,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -913598,6 +939334,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -913652,6 +939389,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -913737,6 +939475,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -913791,6 +939530,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -913876,6 +939616,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -913930,6 +939671,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -914015,6 +939757,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -914069,6 +939812,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -914154,6 +939898,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -914208,6 +939953,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -914293,6 +940039,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -914347,6 +940094,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -914432,6 +940180,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -914486,6 +940235,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -914571,6 +940321,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -914625,6 +940376,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -914710,6 +940462,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -914764,6 +940517,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -914849,6 +940603,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -914903,6 +940658,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -914988,6 +940744,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -915042,6 +940799,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -915127,6 +940885,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -915181,6 +940940,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -915266,6 +941026,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -915320,6 +941081,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -915405,6 +941167,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -915459,6 +941222,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -915544,6 +941308,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -915598,6 +941363,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -915683,6 +941449,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -915737,6 +941504,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -915822,6 +941590,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -915876,6 +941645,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -915961,6 +941731,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -916015,6 +941786,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -916100,6 +941872,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -916154,6 +941927,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -916239,6 +942013,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -916293,6 +942068,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -916378,6 +942154,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -916432,6 +942209,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -916517,6 +942295,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -916571,6 +942350,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -916656,6 +942436,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -916710,6 +942491,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -916795,6 +942577,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -916849,6 +942632,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -916934,6 +942718,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -916988,6 +942773,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -917073,6 +942859,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -917127,6 +942914,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -917212,6 +943000,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -917266,6 +943055,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -917351,6 +943141,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -917405,6 +943196,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -917490,6 +943282,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -917544,6 +943337,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -917629,6 +943423,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -917683,6 +943478,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -917768,6 +943564,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -917822,6 +943619,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -917907,6 +943705,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -917961,6 +943760,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -918046,6 +943846,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -918100,6 +943901,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -918185,6 +943987,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -918239,6 +944042,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -918324,6 +944128,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -918378,6 +944183,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -918463,6 +944269,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -918517,6 +944324,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -918602,6 +944410,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -918656,6 +944465,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -918741,6 +944551,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -918795,6 +944606,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -918880,6 +944692,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -918934,6 +944747,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -919019,6 +944833,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -919073,6 +944888,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -919158,6 +944974,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -919212,6 +945029,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -919297,6 +945115,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -919351,6 +945170,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -919436,6 +945256,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -919490,6 +945311,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -919575,6 +945397,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -919629,6 +945452,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -919714,6 +945538,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -919768,6 +945593,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -919853,6 +945679,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -919907,6 +945734,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -919992,6 +945820,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -920046,6 +945875,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -920131,6 +945961,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -920185,6 +946016,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -920270,6 +946102,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -920324,6 +946157,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -920409,6 +946243,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -920463,6 +946298,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -920548,6 +946384,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -920602,6 +946439,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -920687,6 +946525,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -920741,6 +946580,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -920826,6 +946666,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -920880,6 +946721,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -920965,6 +946807,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -921019,6 +946862,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -921104,6 +946948,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -921158,6 +947003,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -921243,6 +947089,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -921297,6 +947144,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -921382,6 +947230,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -921436,6 +947285,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -921521,6 +947371,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -921575,6 +947426,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -921660,6 +947512,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -921714,6 +947567,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -921799,6 +947653,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -921853,6 +947708,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -921938,6 +947794,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -921992,6 +947849,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -922077,6 +947935,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -922131,6 +947990,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -922216,6 +948076,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -922270,6 +948131,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -922355,6 +948217,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -922409,6 +948272,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -922494,6 +948358,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -922548,6 +948413,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -922633,6 +948499,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -922687,6 +948554,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -922772,6 +948640,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -922826,6 +948695,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -922911,6 +948781,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -922965,6 +948836,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -923050,6 +948922,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -923104,6 +948977,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -923189,6 +949063,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -923243,6 +949118,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -923328,6 +949204,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -923382,6 +949259,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -923467,6 +949345,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -923521,6 +949400,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -923606,6 +949486,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -923660,6 +949541,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -923745,6 +949627,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -923799,6 +949682,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -923884,6 +949768,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -923938,6 +949823,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -924023,6 +949909,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -924077,6 +949964,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -924162,6 +950050,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -924216,6 +950105,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -924301,6 +950191,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -924355,6 +950246,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -924440,6 +950332,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -924494,6 +950387,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -924579,6 +950473,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -924633,6 +950528,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -924718,6 +950614,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -924772,6 +950669,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -924857,6 +950755,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -924911,6 +950810,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -924996,6 +950896,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -925050,6 +950951,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -925135,6 +951037,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -925189,6 +951092,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -925274,6 +951178,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -925328,6 +951233,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -925413,6 +951319,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -925467,6 +951374,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -925552,6 +951460,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -925606,6 +951515,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -925691,6 +951601,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -925745,6 +951656,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -925830,6 +951742,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -925884,6 +951797,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -925969,6 +951883,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -926023,6 +951938,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -926108,6 +952024,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -926162,6 +952079,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -926247,6 +952165,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -926301,6 +952220,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -926386,6 +952306,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -926440,6 +952361,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -926525,6 +952447,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -926579,6 +952502,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -926664,6 +952588,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -926718,6 +952643,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -926803,6 +952729,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -926857,6 +952784,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -926942,6 +952870,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -926996,6 +952925,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -927081,6 +953011,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -927135,6 +953066,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -927220,6 +953152,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -927274,6 +953207,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -927359,6 +953293,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -927413,6 +953348,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -927498,6 +953434,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -927552,6 +953489,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -927637,6 +953575,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -927691,6 +953630,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -927776,6 +953716,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -927830,6 +953771,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -927915,6 +953857,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -927969,6 +953912,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -928054,6 +953998,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -928108,6 +954053,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -928193,6 +954139,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -928247,6 +954194,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -928332,6 +954280,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -928386,6 +954335,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -928471,6 +954421,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -928525,6 +954476,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -928610,6 +954562,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -928664,6 +954617,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -928749,6 +954703,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -928803,6 +954758,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -928888,6 +954844,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -928942,6 +954899,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -929027,6 +954985,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -929081,6 +955040,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -929166,6 +955126,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -929220,6 +955181,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -929305,6 +955267,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -929359,6 +955322,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -929444,6 +955408,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -929498,6 +955463,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -929583,6 +955549,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -929637,6 +955604,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -929722,6 +955690,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -929776,6 +955745,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -929861,6 +955831,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -929915,6 +955886,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -930000,6 +955972,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -930054,6 +956027,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -930139,6 +956113,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -930193,6 +956168,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -930278,6 +956254,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -930332,6 +956309,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -930417,6 +956395,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -930471,6 +956450,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -930556,6 +956536,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -930610,6 +956591,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -930695,6 +956677,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -930749,6 +956732,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -930834,6 +956818,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -930888,6 +956873,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -930973,6 +956959,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -931027,6 +957014,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -931112,6 +957100,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -931166,6 +957155,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -931251,6 +957241,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -931305,6 +957296,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -931390,6 +957382,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -931444,6 +957437,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -931529,6 +957523,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -931583,6 +957578,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -931668,6 +957664,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -931722,6 +957719,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -931807,6 +957805,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -931861,6 +957860,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -931946,6 +957946,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -932000,6 +958001,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -932085,6 +958087,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -932139,6 +958142,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -932224,6 +958228,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -932278,6 +958283,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -932363,6 +958369,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -932417,6 +958424,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -932502,6 +958510,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -932556,6 +958565,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -932641,6 +958651,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -932695,6 +958706,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -932780,6 +958792,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -932834,6 +958847,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -932919,6 +958933,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -932973,6 +958988,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -933058,6 +959074,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -933112,6 +959129,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -933197,6 +959215,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -933251,6 +959270,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -933336,6 +959356,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -933390,6 +959411,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -933475,6 +959497,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -933529,6 +959552,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -933614,6 +959638,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -933668,6 +959693,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -933753,6 +959779,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -933807,6 +959834,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -933892,6 +959920,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -933946,6 +959975,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -934031,6 +960061,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -934085,6 +960116,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -934170,6 +960202,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -934224,6 +960257,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -934309,6 +960343,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -934363,6 +960398,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -934448,6 +960484,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -934502,6 +960539,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -934587,6 +960625,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -934641,6 +960680,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -934726,6 +960766,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -934780,6 +960821,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -934865,6 +960907,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -934919,6 +960962,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -935004,6 +961048,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -935058,6 +961103,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -935143,6 +961189,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -935197,6 +961244,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -935282,6 +961330,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -935336,6 +961385,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -935421,6 +961471,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -935475,6 +961526,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -935560,6 +961612,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -935614,6 +961667,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -935699,6 +961753,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -935753,6 +961808,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -935838,6 +961894,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -935892,6 +961949,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -935977,6 +962035,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -936031,6 +962090,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -936116,6 +962176,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -936170,6 +962231,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -936255,6 +962317,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -936309,6 +962372,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -936394,6 +962458,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -936448,6 +962513,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -936533,6 +962599,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -936587,6 +962654,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -936672,6 +962740,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -936726,6 +962795,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -936811,6 +962881,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -936865,6 +962936,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -936950,6 +963022,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -937004,6 +963077,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -937089,6 +963163,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -937143,6 +963218,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -937228,6 +963304,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -937282,6 +963359,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -937367,6 +963445,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -937421,6 +963500,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -937506,6 +963586,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -937560,6 +963641,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -937645,6 +963727,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -937699,6 +963782,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -937784,6 +963868,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -937838,6 +963923,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -937923,6 +964009,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -937977,6 +964064,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -938062,6 +964150,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -938116,6 +964205,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -938201,6 +964291,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -938255,6 +964346,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -938340,6 +964432,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -938394,6 +964487,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -938479,6 +964573,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -938533,6 +964628,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -938618,6 +964714,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -938672,6 +964769,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -938757,6 +964855,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -938811,6 +964910,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -938896,6 +964996,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -938950,6 +965051,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -939035,6 +965137,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -939089,6 +965192,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -939174,6 +965278,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -939228,6 +965333,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -939313,6 +965419,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -939367,6 +965474,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -939452,6 +965560,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -939506,6 +965615,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -939591,6 +965701,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -939645,6 +965756,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -939730,6 +965842,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -939784,6 +965897,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -939869,6 +965983,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -939923,6 +966038,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -940008,6 +966124,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -940062,6 +966179,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -940147,6 +966265,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -940201,6 +966320,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -940286,6 +966406,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -940340,6 +966461,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -940425,6 +966547,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -940479,6 +966602,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -940564,6 +966688,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -940618,6 +966743,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -940703,6 +966829,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -940757,6 +966884,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -940842,6 +966970,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -940896,6 +967025,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -940981,6 +967111,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -941035,6 +967166,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -941120,6 +967252,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -941174,6 +967307,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -941259,6 +967393,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -941313,6 +967448,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -941398,6 +967534,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -941452,6 +967589,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -941537,6 +967675,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -941591,6 +967730,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -941676,6 +967816,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -941730,6 +967871,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -941815,6 +967957,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -941869,6 +968012,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -941954,6 +968098,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -942008,6 +968153,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -942093,6 +968239,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -942147,6 +968294,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -942232,6 +968380,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -942286,6 +968435,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -942371,6 +968521,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -942425,6 +968576,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -942510,6 +968662,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -942564,6 +968717,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -942649,6 +968803,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -942703,6 +968858,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -942788,6 +968944,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -942842,6 +968999,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -942927,6 +969085,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -942981,6 +969140,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -943066,6 +969226,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -943120,6 +969281,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -943205,6 +969367,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -943259,6 +969422,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -943344,6 +969508,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -943398,6 +969563,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -943483,6 +969649,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -943537,6 +969704,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -943622,6 +969790,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -943676,6 +969845,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -943761,6 +969931,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -943815,6 +969986,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -943900,6 +970072,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -943954,6 +970127,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -944039,6 +970213,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -944093,6 +970268,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -944178,6 +970354,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -944232,6 +970409,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -944317,6 +970495,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -944371,6 +970550,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -944456,6 +970636,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -944510,6 +970691,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -944595,6 +970777,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -944649,6 +970832,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -944734,6 +970918,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -944788,6 +970973,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -944873,6 +971059,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -944927,6 +971114,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -945012,6 +971200,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -945066,6 +971255,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -945151,6 +971341,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -945205,6 +971396,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -945290,6 +971482,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -945344,6 +971537,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -945429,6 +971623,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -945483,6 +971678,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -945568,6 +971764,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -945622,6 +971819,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -945707,6 +971905,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -945761,6 +971960,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -945846,6 +972046,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -945900,6 +972101,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -945985,6 +972187,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -946039,6 +972242,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -946124,6 +972328,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -946178,6 +972383,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -946263,6 +972469,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -946317,6 +972524,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -946402,6 +972610,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -946456,6 +972665,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -946541,6 +972751,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -946595,6 +972806,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -946680,6 +972892,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -946734,6 +972947,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -946819,6 +973033,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -946873,6 +973088,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -946958,6 +973174,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -947012,6 +973229,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -947097,6 +973315,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -947151,6 +973370,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -947236,6 +973456,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -947290,6 +973511,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -947375,6 +973597,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -947429,6 +973652,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -947514,6 +973738,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -947568,6 +973793,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -947653,6 +973879,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -947707,6 +973934,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -947792,6 +974020,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -947846,6 +974075,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -947931,6 +974161,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -947985,6 +974216,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -948070,6 +974302,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -948124,6 +974357,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -948209,6 +974443,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -948263,6 +974498,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -948348,6 +974584,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -948402,6 +974639,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -948487,6 +974725,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -948541,6 +974780,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -948626,6 +974866,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -948680,6 +974921,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -948765,6 +975007,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -948819,6 +975062,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -948904,6 +975148,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -948958,6 +975203,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -949043,6 +975289,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -949097,6 +975344,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -949182,6 +975430,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -949236,6 +975485,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -949321,6 +975571,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -949375,6 +975626,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -949460,6 +975712,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -949514,6 +975767,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -949599,6 +975853,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -949653,6 +975908,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -949738,6 +975994,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -949792,6 +976049,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -949877,6 +976135,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -949931,6 +976190,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -950016,6 +976276,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -950070,6 +976331,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -950155,6 +976417,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -950209,6 +976472,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -950294,6 +976558,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -950348,6 +976613,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -950433,6 +976699,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -950487,6 +976754,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -950572,6 +976840,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -950626,6 +976895,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -950711,6 +976981,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -950765,6 +977036,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -950850,6 +977122,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -950904,6 +977177,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -950989,6 +977263,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -951043,6 +977318,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -951128,6 +977404,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -951182,6 +977459,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -951267,6 +977545,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -951321,6 +977600,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -951406,6 +977686,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -951460,6 +977741,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -951545,6 +977827,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -951599,6 +977882,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -951684,6 +977968,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -951738,6 +978023,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -951823,6 +978109,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -951877,6 +978164,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -951962,6 +978250,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -952016,6 +978305,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -952101,6 +978391,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -952155,6 +978446,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -952240,6 +978532,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -952294,6 +978587,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -952379,6 +978673,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -952433,6 +978728,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -952518,6 +978814,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -952572,6 +978869,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -952657,6 +978955,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -952711,6 +979010,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -952796,6 +979096,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -952850,6 +979151,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -952935,6 +979237,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -952989,6 +979292,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -953074,6 +979378,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -953128,6 +979433,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -953213,6 +979519,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -953267,6 +979574,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -953352,6 +979660,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -953406,6 +979715,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -953491,6 +979801,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -953545,6 +979856,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -953630,6 +979942,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -953684,6 +979997,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -953769,6 +980083,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -953823,6 +980138,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -953908,6 +980224,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -953962,6 +980279,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -954047,6 +980365,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -954101,6 +980420,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -954186,6 +980506,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -954240,6 +980561,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -954325,6 +980647,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -954379,6 +980702,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -954464,6 +980788,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -954518,6 +980843,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -954603,6 +980929,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -954657,6 +980984,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -954742,6 +981070,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -954796,6 +981125,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -954881,6 +981211,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -954935,6 +981266,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -955020,6 +981352,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -955074,6 +981407,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -955159,6 +981493,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -955213,6 +981548,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -955298,6 +981634,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -955352,6 +981689,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -955437,6 +981775,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -955491,6 +981830,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -955576,6 +981916,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -955630,6 +981971,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -955715,6 +982057,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -955769,6 +982112,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -955854,6 +982198,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -955908,6 +982253,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -955993,6 +982339,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -956047,6 +982394,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -956132,6 +982480,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -956186,6 +982535,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -956271,6 +982621,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -956325,6 +982676,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -956410,6 +982762,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -956464,6 +982817,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -956549,6 +982903,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -956603,6 +982958,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -956688,6 +983044,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -956742,6 +983099,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -956827,6 +983185,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -956881,6 +983240,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -956966,6 +983326,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -957020,6 +983381,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -957105,6 +983467,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -957159,6 +983522,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -957244,6 +983608,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -957298,6 +983663,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -957383,6 +983749,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -957437,6 +983804,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -957522,6 +983890,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -957576,6 +983945,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -957661,6 +984031,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -957715,6 +984086,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -957800,6 +984172,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -957854,6 +984227,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -957939,6 +984313,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -957993,6 +984368,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -958078,6 +984454,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -958132,6 +984509,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -958217,6 +984595,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -958271,6 +984650,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -958356,6 +984736,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -958410,6 +984791,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -958495,6 +984877,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -958549,6 +984932,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -958634,6 +985018,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -958688,6 +985073,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -958773,6 +985159,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -958827,6 +985214,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -958912,6 +985300,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -958966,6 +985355,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -959051,6 +985441,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -959105,6 +985496,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -959190,6 +985582,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -959244,6 +985637,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -959329,6 +985723,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -959383,6 +985778,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -959468,6 +985864,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -959522,6 +985919,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -959607,6 +986005,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -959661,6 +986060,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -959746,6 +986146,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -959800,6 +986201,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -959885,6 +986287,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -959939,6 +986342,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -960024,6 +986428,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -960078,6 +986483,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -960163,6 +986569,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -960217,6 +986624,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -960302,6 +986710,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -960356,6 +986765,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -960441,6 +986851,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -960495,6 +986906,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -960580,6 +986992,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -960634,6 +987047,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -960719,6 +987133,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -960773,6 +987188,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -960858,6 +987274,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -960912,6 +987329,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -960997,6 +987415,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -961051,6 +987470,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -961136,6 +987556,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -961190,6 +987611,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -961275,6 +987697,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -961329,6 +987752,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -961414,6 +987838,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -961468,6 +987893,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -961553,6 +987979,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -961607,6 +988034,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -961692,6 +988120,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -961746,6 +988175,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -961831,6 +988261,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -961885,6 +988316,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -961970,6 +988402,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -962024,6 +988457,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -962109,6 +988543,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -962163,6 +988598,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -962248,6 +988684,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -962302,6 +988739,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -962387,6 +988825,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -962441,6 +988880,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -962526,6 +988966,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -962580,6 +989021,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -962665,6 +989107,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -962719,6 +989162,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -962804,6 +989248,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -962858,6 +989303,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -962943,6 +989389,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -962997,6 +989444,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -963082,6 +989530,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -963136,6 +989585,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -963221,6 +989671,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -963275,6 +989726,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -963360,6 +989812,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -963414,6 +989867,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -963499,6 +989953,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -963553,6 +990008,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -963638,6 +990094,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -963692,6 +990149,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -963777,6 +990235,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -963831,6 +990290,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -963916,6 +990376,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -963970,6 +990431,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -964055,6 +990517,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -964109,6 +990572,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -964194,6 +990658,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -964248,6 +990713,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -964333,6 +990799,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -964387,6 +990854,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -964472,6 +990940,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -964526,6 +990995,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -964611,6 +991081,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -964665,6 +991136,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -964750,6 +991222,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -964804,6 +991277,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -964889,6 +991363,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -964943,6 +991418,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -965028,6 +991504,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -965082,6 +991559,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -965167,6 +991645,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -965221,6 +991700,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -965306,6 +991786,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -965360,6 +991841,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -965445,6 +991927,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -965499,6 +991982,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -965584,6 +992068,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -965638,6 +992123,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -965723,6 +992209,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -965777,6 +992264,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -965862,6 +992350,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -965916,6 +992405,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -966001,6 +992491,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -966055,6 +992546,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -966140,6 +992632,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -966194,6 +992687,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -966279,6 +992773,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -966333,6 +992828,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -966418,6 +992914,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -966472,6 +992969,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -966557,6 +993055,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -966611,6 +993110,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -966696,6 +993196,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -966750,6 +993251,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -966835,6 +993337,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -966889,6 +993392,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -966974,6 +993478,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -967028,6 +993533,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -967113,6 +993619,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -967167,6 +993674,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -967252,6 +993760,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -967306,6 +993815,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -967391,6 +993901,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -967445,6 +993956,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -967530,6 +994042,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -967584,6 +994097,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -967669,6 +994183,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -967723,6 +994238,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -967808,6 +994324,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -967862,6 +994379,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -967947,6 +994465,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -968001,6 +994520,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -968086,6 +994606,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -968140,6 +994661,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -968225,6 +994747,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -968279,6 +994802,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -968364,6 +994888,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -968418,6 +994943,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -968503,6 +995029,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -968557,6 +995084,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -968642,6 +995170,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -968696,6 +995225,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -968781,6 +995311,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -968835,6 +995366,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -968920,6 +995452,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -968974,6 +995507,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -969059,6 +995593,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -969113,6 +995648,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -969198,6 +995734,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -969252,6 +995789,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -969337,6 +995875,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -969391,6 +995930,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -969476,6 +996016,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -969530,6 +996071,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -969615,6 +996157,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -969669,6 +996212,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -969754,6 +996298,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -969808,6 +996353,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -969893,6 +996439,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -969947,6 +996494,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -970032,6 +996580,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -970086,6 +996635,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -970171,6 +996721,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -970225,6 +996776,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -970310,6 +996862,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -970364,6 +996917,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -970449,6 +997003,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -970503,6 +997058,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -970588,6 +997144,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -970642,6 +997199,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -970727,6 +997285,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -970781,6 +997340,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -970866,6 +997426,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -970920,6 +997481,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -971005,6 +997567,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -971059,6 +997622,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -971144,6 +997708,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -971198,6 +997763,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -971283,6 +997849,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -971337,6 +997904,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -971422,6 +997990,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -971476,6 +998045,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -971561,6 +998131,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -971615,6 +998186,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -971700,6 +998272,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -971754,6 +998327,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -971839,6 +998413,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -971893,6 +998468,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -971978,6 +998554,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -972032,6 +998609,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -972117,6 +998695,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -972171,6 +998750,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -972256,6 +998836,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -972310,6 +998891,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -972395,6 +998977,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -972449,6 +999032,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -972534,6 +999118,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -972588,6 +999173,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -972673,6 +999259,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -972727,6 +999314,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -972812,6 +999400,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -972866,6 +999455,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -972951,6 +999541,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -973005,6 +999596,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -973090,6 +999682,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -973144,6 +999737,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -973229,6 +999823,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -973283,6 +999878,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -973368,6 +999964,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -973422,6 +1000019,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -973507,6 +1000105,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -973561,6 +1000160,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -973646,6 +1000246,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -973700,6 +1000301,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -973785,6 +1000387,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -973839,6 +1000442,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -973924,6 +1000528,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -973978,6 +1000583,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -974063,6 +1000669,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -974117,6 +1000724,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -974202,6 +1000810,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -974256,6 +1000865,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -974341,6 +1000951,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -974395,6 +1001006,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -974480,6 +1001092,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -974534,6 +1001147,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -974619,6 +1001233,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -974673,6 +1001288,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -974758,6 +1001374,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -974812,6 +1001429,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -974897,6 +1001515,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -974951,6 +1001570,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -975036,6 +1001656,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -975090,6 +1001711,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -975175,6 +1001797,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -975229,6 +1001852,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -975314,6 +1001938,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -975368,6 +1001993,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -975453,6 +1002079,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -975507,6 +1002134,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -975592,6 +1002220,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -975646,6 +1002275,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -975731,6 +1002361,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -975785,6 +1002416,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -975870,6 +1002502,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -975924,6 +1002557,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -976009,6 +1002643,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -976063,6 +1002698,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -976148,6 +1002784,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -976202,6 +1002839,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -976287,6 +1002925,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -976341,6 +1002980,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -976426,6 +1003066,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -976480,6 +1003121,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -976565,6 +1003207,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -976619,6 +1003262,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -976704,6 +1003348,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -976758,6 +1003403,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -976843,6 +1003489,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -976897,6 +1003544,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -976982,6 +1003630,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -977036,6 +1003685,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -977121,6 +1003771,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -977175,6 +1003826,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -977260,6 +1003912,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -977314,6 +1003967,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -977399,6 +1004053,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -977453,6 +1004108,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -977538,6 +1004194,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -977592,6 +1004249,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -977677,6 +1004335,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -977731,6 +1004390,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -977816,6 +1004476,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -977870,6 +1004531,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -977955,6 +1004617,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -978009,6 +1004672,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -978094,6 +1004758,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -978148,6 +1004813,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -978233,6 +1004899,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -978287,6 +1004954,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -978372,6 +1005040,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -978426,6 +1005095,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -978511,6 +1005181,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -978565,6 +1005236,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -978650,6 +1005322,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -978704,6 +1005377,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -978789,6 +1005463,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -978843,6 +1005518,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -978928,6 +1005604,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -978982,6 +1005659,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -979067,6 +1005745,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -979121,6 +1005800,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -979206,6 +1005886,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -979260,6 +1005941,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -979345,6 +1006027,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -979399,6 +1006082,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -979484,6 +1006168,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -979538,6 +1006223,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -979623,6 +1006309,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -979677,6 +1006364,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -979762,6 +1006450,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -979816,6 +1006505,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -979901,6 +1006591,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -979955,6 +1006646,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -980040,6 +1006732,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -980094,6 +1006787,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -980179,6 +1006873,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -980233,6 +1006928,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -980318,6 +1007014,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -980372,6 +1007069,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -980457,6 +1007155,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -980511,6 +1007210,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -980596,6 +1007296,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -980650,6 +1007351,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -980735,6 +1007437,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -980789,6 +1007492,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -980874,6 +1007578,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -980928,6 +1007633,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -981013,6 +1007719,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -981067,6 +1007774,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -981152,6 +1007860,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -981206,6 +1007915,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -981291,6 +1008001,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -981345,6 +1008056,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -981430,6 +1008142,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -981484,6 +1008197,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -981569,6 +1008283,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -981623,6 +1008338,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -981708,6 +1008424,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -981762,6 +1008479,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -981847,6 +1008565,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -981901,6 +1008620,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -981986,6 +1008706,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -982040,6 +1008761,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -982125,6 +1008847,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -982179,6 +1008902,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -982264,6 +1008988,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -982318,6 +1009043,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -982403,6 +1009129,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -982457,6 +1009184,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -982542,6 +1009270,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -982596,6 +1009325,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -982681,6 +1009411,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -982735,6 +1009466,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -982820,6 +1009552,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -982874,6 +1009607,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -982959,6 +1009693,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -983013,6 +1009748,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -983098,6 +1009834,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -983152,6 +1009889,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -983237,6 +1009975,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -983291,6 +1010030,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -983376,6 +1010116,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -983430,6 +1010171,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -983515,6 +1010257,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -983569,6 +1010312,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -983654,6 +1010398,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -983708,6 +1010453,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -983793,6 +1010539,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -983847,6 +1010594,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -983932,6 +1010680,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -983986,6 +1010735,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -984071,6 +1010821,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -984125,6 +1010876,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -984210,6 +1010962,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -984264,6 +1011017,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -984349,6 +1011103,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -984403,6 +1011158,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -984488,6 +1011244,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -984542,6 +1011299,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -984627,6 +1011385,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -984681,6 +1011440,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -984766,6 +1011526,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -984820,6 +1011581,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -984905,6 +1011667,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -984959,6 +1011722,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -985044,6 +1011808,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -985098,6 +1011863,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -985183,6 +1011949,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -985237,6 +1012004,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -985322,6 +1012090,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -985376,6 +1012145,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -985461,6 +1012231,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -985515,6 +1012286,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -985600,6 +1012372,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -985654,6 +1012427,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -985739,6 +1012513,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -985793,6 +1012568,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -985878,6 +1012654,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -985932,6 +1012709,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -986017,6 +1012795,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -986071,6 +1012850,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -986156,6 +1012936,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -986210,6 +1012991,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -986295,6 +1013077,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -986349,6 +1013132,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -986434,6 +1013218,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -986488,6 +1013273,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -986573,6 +1013359,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -986627,6 +1013414,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -986712,6 +1013500,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -986766,6 +1013555,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -986851,6 +1013641,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -986905,6 +1013696,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -986990,6 +1013782,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -987044,6 +1013837,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -987129,6 +1013923,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -987183,6 +1013978,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -987268,6 +1014064,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -987322,6 +1014119,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -987407,6 +1014205,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -987461,6 +1014260,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -987546,6 +1014346,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -987600,6 +1014401,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -987685,6 +1014487,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -987739,6 +1014542,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -987824,6 +1014628,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -987878,6 +1014683,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -987963,6 +1014769,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -988017,6 +1014824,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -988102,6 +1014910,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -988156,6 +1014965,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -988241,6 +1015051,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -988295,6 +1015106,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -988380,6 +1015192,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -988434,6 +1015247,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -988519,6 +1015333,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -988573,6 +1015388,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -988658,6 +1015474,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -988712,6 +1015529,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -988797,6 +1015615,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -988851,6 +1015670,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -988936,6 +1015756,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -988990,6 +1015811,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -989075,6 +1015897,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -989129,6 +1015952,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -989214,6 +1016038,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -989268,6 +1016093,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -989353,6 +1016179,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -989407,6 +1016234,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -989492,6 +1016320,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -989546,6 +1016375,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -989631,6 +1016461,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -989685,6 +1016516,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -989770,6 +1016602,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -989824,6 +1016657,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -989909,6 +1016743,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -989963,6 +1016798,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -990048,6 +1016884,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -990102,6 +1016939,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -990187,6 +1017025,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -990241,6 +1017080,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -990326,6 +1017166,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -990380,6 +1017221,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -990465,6 +1017307,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -990519,6 +1017362,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -990604,6 +1017448,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -990658,6 +1017503,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -990743,6 +1017589,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -990797,6 +1017644,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -990882,6 +1017730,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -990936,6 +1017785,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -991021,6 +1017871,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -991075,6 +1017926,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -991160,6 +1018012,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -991214,6 +1018067,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -991299,6 +1018153,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -991353,6 +1018208,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -991438,6 +1018294,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -991492,6 +1018349,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -991577,6 +1018435,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -991631,6 +1018490,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -991716,6 +1018576,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -991770,6 +1018631,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -991855,6 +1018717,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -991909,6 +1018772,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -991994,6 +1018858,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -992048,6 +1018913,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -992133,6 +1018999,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -992187,6 +1019054,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -992272,6 +1019140,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -992326,6 +1019195,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -992411,6 +1019281,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -992465,6 +1019336,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -992550,6 +1019422,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -992604,6 +1019477,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -992689,6 +1019563,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -992743,6 +1019618,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -992828,6 +1019704,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -992882,6 +1019759,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -992967,6 +1019845,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -993021,6 +1019900,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -993106,6 +1019986,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -993160,6 +1020041,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -993245,6 +1020127,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -993299,6 +1020182,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -993384,6 +1020268,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -993438,6 +1020323,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -993523,6 +1020409,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -993577,6 +1020464,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -993662,6 +1020550,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -993716,6 +1020605,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -993801,6 +1020691,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -993855,6 +1020746,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -993940,6 +1020832,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -993994,6 +1020887,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -994079,6 +1020973,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -994133,6 +1021028,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -994218,6 +1021114,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -994272,6 +1021169,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -994357,6 +1021255,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -994411,6 +1021310,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -994496,6 +1021396,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -994550,6 +1021451,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -994635,6 +1021537,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -994689,6 +1021592,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -994774,6 +1021678,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -994828,6 +1021733,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -994913,6 +1021819,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -994967,6 +1021874,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -995052,6 +1021960,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -995106,6 +1022015,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -995191,6 +1022101,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -995245,6 +1022156,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -995330,6 +1022242,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -995384,6 +1022297,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -995469,6 +1022383,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -995523,6 +1022438,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -995608,6 +1022524,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -995662,6 +1022579,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -995747,6 +1022665,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -995801,6 +1022720,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -995886,6 +1022806,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -995940,6 +1022861,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -996025,6 +1022947,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -996079,6 +1023002,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -996164,6 +1023088,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -996218,6 +1023143,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -996303,6 +1023229,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -996357,6 +1023284,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -996442,6 +1023370,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -996496,6 +1023425,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -996581,6 +1023511,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -996635,6 +1023566,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -996720,6 +1023652,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -996774,6 +1023707,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -996859,6 +1023793,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -996913,6 +1023848,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -996998,6 +1023934,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -997052,6 +1023989,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -997137,6 +1024075,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -997191,6 +1024130,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -997276,6 +1024216,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -997330,6 +1024271,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -997415,6 +1024357,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -997469,6 +1024412,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -997554,6 +1024498,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -997608,6 +1024553,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -997693,6 +1024639,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -997747,6 +1024694,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -997832,6 +1024780,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -997886,6 +1024835,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -997971,6 +1024921,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -998025,6 +1024976,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -998110,6 +1025062,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -998164,6 +1025117,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -998249,6 +1025203,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -998303,6 +1025258,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -998388,6 +1025344,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -998442,6 +1025399,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -998527,6 +1025485,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -998581,6 +1025540,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -998666,6 +1025626,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -998720,6 +1025681,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -998805,6 +1025767,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -998859,6 +1025822,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -998944,6 +1025908,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -998998,6 +1025963,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -999083,6 +1026049,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -999137,6 +1026104,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -999222,6 +1026190,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -999276,6 +1026245,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -999361,6 +1026331,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -999415,6 +1026386,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -999500,6 +1026472,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -999554,6 +1026527,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -999639,6 +1026613,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -999693,6 +1026668,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -999778,6 +1026754,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -999832,6 +1026809,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -999917,6 +1026895,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -999971,6 +1026950,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1000056,6 +1027036,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1000110,6 +1027091,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1000195,6 +1027177,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1000249,6 +1027232,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1000334,6 +1027318,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1000388,6 +1027373,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1000473,6 +1027459,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1000527,6 +1027514,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1000612,6 +1027600,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1000666,6 +1027655,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1000751,6 +1027741,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1000805,6 +1027796,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1000890,6 +1027882,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1000944,6 +1027937,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1001029,6 +1028023,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1001083,6 +1028078,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1001168,6 +1028164,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1001222,6 +1028219,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1001307,6 +1028305,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1001361,6 +1028360,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1001446,6 +1028446,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1001500,6 +1028501,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1001585,6 +1028587,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1001639,6 +1028642,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1001724,6 +1028728,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1001778,6 +1028783,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1001863,6 +1028869,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1001917,6 +1028924,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1002002,6 +1029010,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1002056,6 +1029065,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1002141,6 +1029151,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1002195,6 +1029206,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1002280,6 +1029292,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1002334,6 +1029347,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1002419,6 +1029433,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1002473,6 +1029488,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1002558,6 +1029574,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1002612,6 +1029629,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1002697,6 +1029715,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1002751,6 +1029770,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1002836,6 +1029856,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1002890,6 +1029911,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1002975,6 +1029997,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1003029,6 +1030052,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1003114,6 +1030138,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1003168,6 +1030193,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1003253,6 +1030279,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1003307,6 +1030334,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1003392,6 +1030420,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1003446,6 +1030475,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1003531,6 +1030561,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1003585,6 +1030616,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1003670,6 +1030702,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1003724,6 +1030757,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1003809,6 +1030843,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1003863,6 +1030898,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1003948,6 +1030984,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1004002,6 +1031039,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1004087,6 +1031125,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1004141,6 +1031180,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1004226,6 +1031266,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1004280,6 +1031321,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1004365,6 +1031407,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1004419,6 +1031462,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1004504,6 +1031548,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1004558,6 +1031603,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1004643,6 +1031689,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1004697,6 +1031744,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1004782,6 +1031830,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1004836,6 +1031885,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1004921,6 +1031971,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1004975,6 +1032026,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1005060,6 +1032112,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1005114,6 +1032167,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1005199,6 +1032253,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1005253,6 +1032308,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1005338,6 +1032394,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1005392,6 +1032449,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1005477,6 +1032535,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1005531,6 +1032590,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1005616,6 +1032676,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1005670,6 +1032731,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1005755,6 +1032817,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1005809,6 +1032872,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1005894,6 +1032958,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1005948,6 +1033013,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1006033,6 +1033099,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1006087,6 +1033154,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1006172,6 +1033240,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1006226,6 +1033295,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1006311,6 +1033381,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1006365,6 +1033436,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1006450,6 +1033522,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1006504,6 +1033577,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1006589,6 +1033663,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1006643,6 +1033718,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1006728,6 +1033804,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1006782,6 +1033859,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1006867,6 +1033945,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1006921,6 +1034000,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1007006,6 +1034086,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1007060,6 +1034141,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1007145,6 +1034227,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1007199,6 +1034282,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1007284,6 +1034368,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1007338,6 +1034423,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1007423,6 +1034509,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1007477,6 +1034564,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1007562,6 +1034650,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1007616,6 +1034705,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1007701,6 +1034791,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1007755,6 +1034846,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1007840,6 +1034932,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1007894,6 +1034987,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1007979,6 +1035073,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1008033,6 +1035128,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1008118,6 +1035214,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1008172,6 +1035269,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1008257,6 +1035355,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1008311,6 +1035410,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1008396,6 +1035496,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1008450,6 +1035551,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1008535,6 +1035637,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1008589,6 +1035692,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1008674,6 +1035778,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1008728,6 +1035833,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1008813,6 +1035919,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1008867,6 +1035974,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1008952,6 +1036060,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1009006,6 +1036115,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1009091,6 +1036201,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1009145,6 +1036256,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1009230,6 +1036342,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1009284,6 +1036397,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1009369,6 +1036483,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1009423,6 +1036538,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1009508,6 +1036624,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1009562,6 +1036679,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1009647,6 +1036765,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1009701,6 +1036820,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1009786,6 +1036906,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1009840,6 +1036961,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1009925,6 +1037047,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1009979,6 +1037102,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1010064,6 +1037188,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1010118,6 +1037243,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1010203,6 +1037329,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1010257,6 +1037384,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1010342,6 +1037470,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1010396,6 +1037525,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1010481,6 +1037611,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1010535,6 +1037666,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1010620,6 +1037752,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1010674,6 +1037807,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1010759,6 +1037893,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1010813,6 +1037948,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1010898,6 +1038034,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1010952,6 +1038089,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1011037,6 +1038175,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1011091,6 +1038230,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1011176,6 +1038316,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1011230,6 +1038371,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1011315,6 +1038457,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1011369,6 +1038512,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1011454,6 +1038598,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1011508,6 +1038653,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1011593,6 +1038739,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1011647,6 +1038794,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1011732,6 +1038880,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1011786,6 +1038935,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1011871,6 +1039021,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1011925,6 +1039076,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1012010,6 +1039162,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1012064,6 +1039217,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1012149,6 +1039303,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1012203,6 +1039358,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1012288,6 +1039444,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1012342,6 +1039499,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1012427,6 +1039585,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1012481,6 +1039640,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1012566,6 +1039726,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1012620,6 +1039781,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1012705,6 +1039867,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1012759,6 +1039922,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1012844,6 +1040008,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1012898,6 +1040063,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1012983,6 +1040149,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1013037,6 +1040204,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1013122,6 +1040290,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1013176,6 +1040345,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1013261,6 +1040431,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1013315,6 +1040486,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1013400,6 +1040572,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1013454,6 +1040627,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1013539,6 +1040713,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1013593,6 +1040768,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1013678,6 +1040854,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1013732,6 +1040909,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1013817,6 +1040995,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1013871,6 +1041050,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1013956,6 +1041136,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1014010,6 +1041191,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1014095,6 +1041277,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1014149,6 +1041332,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1014234,6 +1041418,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1014288,6 +1041473,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1014373,6 +1041559,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1014427,6 +1041614,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1014512,6 +1041700,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1014566,6 +1041755,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1014651,6 +1041841,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1014705,6 +1041896,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1014790,6 +1041982,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1014844,6 +1042037,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1014929,6 +1042123,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1014983,6 +1042178,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1015068,6 +1042264,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1015122,6 +1042319,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1015207,6 +1042405,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1015261,6 +1042460,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1015346,6 +1042546,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1015400,6 +1042601,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1015485,6 +1042687,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1015539,6 +1042742,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1015624,6 +1042828,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1015678,6 +1042883,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1015763,6 +1042969,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1015817,6 +1043024,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1015902,6 +1043110,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1015956,6 +1043165,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1016041,6 +1043251,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1016095,6 +1043306,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1016180,6 +1043392,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1016234,6 +1043447,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1016319,6 +1043533,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1016373,6 +1043588,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1016458,6 +1043674,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1016512,6 +1043729,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1016597,6 +1043815,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1016651,6 +1043870,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1016736,6 +1043956,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1016790,6 +1044011,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1016875,6 +1044097,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1016929,6 +1044152,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1017014,6 +1044238,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1017068,6 +1044293,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1017153,6 +1044379,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1017207,6 +1044434,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1017292,6 +1044520,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1017346,6 +1044575,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1017431,6 +1044661,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1017485,6 +1044716,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1017570,6 +1044802,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1017624,6 +1044857,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1017709,6 +1044943,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1017763,6 +1044998,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1017848,6 +1045084,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1017902,6 +1045139,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1017987,6 +1045225,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1018041,6 +1045280,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1018126,6 +1045366,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1018180,6 +1045421,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1018265,6 +1045507,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1018319,6 +1045562,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1018404,6 +1045648,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1018458,6 +1045703,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1018543,6 +1045789,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1018597,6 +1045844,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1018682,6 +1045930,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1018736,6 +1045985,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1018821,6 +1046071,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1018875,6 +1046126,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1018960,6 +1046212,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1019014,6 +1046267,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1019099,6 +1046353,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1019153,6 +1046408,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1019238,6 +1046494,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1019292,6 +1046549,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1019377,6 +1046635,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1019431,6 +1046690,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1019516,6 +1046776,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1019570,6 +1046831,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1019655,6 +1046917,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1019709,6 +1046972,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1019794,6 +1047058,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1019848,6 +1047113,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1019933,6 +1047199,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1019987,6 +1047254,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1020072,6 +1047340,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1020126,6 +1047395,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1020211,6 +1047481,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1020265,6 +1047536,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1020350,6 +1047622,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1020404,6 +1047677,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1020489,6 +1047763,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1020543,6 +1047818,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1020628,6 +1047904,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1020682,6 +1047959,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1020767,6 +1048045,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1020821,6 +1048100,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1020906,6 +1048186,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1020960,6 +1048241,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1021045,6 +1048327,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1021099,6 +1048382,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1021184,6 +1048468,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1021238,6 +1048523,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1021323,6 +1048609,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1021377,6 +1048664,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1021462,6 +1048750,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1021516,6 +1048805,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1021601,6 +1048891,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1021655,6 +1048946,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1021740,6 +1049032,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1021794,6 +1049087,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1021879,6 +1049173,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1021933,6 +1049228,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1022018,6 +1049314,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1022072,6 +1049369,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1022157,6 +1049455,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1022211,6 +1049510,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1022296,6 +1049596,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1022350,6 +1049651,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1022435,6 +1049737,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1022489,6 +1049792,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1022574,6 +1049878,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1022628,6 +1049933,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1022713,6 +1050019,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1022767,6 +1050074,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1022852,6 +1050160,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1022906,6 +1050215,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1022991,6 +1050301,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1023045,6 +1050356,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1023130,6 +1050442,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1023184,6 +1050497,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1023269,6 +1050583,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1023323,6 +1050638,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1023408,6 +1050724,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1023462,6 +1050779,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1023547,6 +1050865,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1023601,6 +1050920,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1023686,6 +1051006,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1023740,6 +1051061,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1023825,6 +1051147,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1023879,6 +1051202,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1023964,6 +1051288,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1024018,6 +1051343,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1024103,6 +1051429,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1024157,6 +1051484,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1024242,6 +1051570,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1024296,6 +1051625,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1024381,6 +1051711,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1024435,6 +1051766,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1024520,6 +1051852,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1024574,6 +1051907,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1024659,6 +1051993,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1024713,6 +1052048,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1024798,6 +1052134,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1024852,6 +1052189,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1024937,6 +1052275,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1024991,6 +1052330,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1025076,6 +1052416,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1025130,6 +1052471,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1025215,6 +1052557,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1025269,6 +1052612,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1025354,6 +1052698,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1025408,6 +1052753,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1025493,6 +1052839,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1025547,6 +1052894,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1025632,6 +1052980,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1025686,6 +1053035,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1025771,6 +1053121,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1025825,6 +1053176,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1025910,6 +1053262,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1025964,6 +1053317,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1026049,6 +1053403,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1026103,6 +1053458,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1026188,6 +1053544,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1026242,6 +1053599,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1026327,6 +1053685,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1026381,6 +1053740,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1026466,6 +1053826,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1026520,6 +1053881,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1026605,6 +1053967,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1026659,6 +1054022,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1026744,6 +1054108,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1026798,6 +1054163,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1026883,6 +1054249,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1026937,6 +1054304,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1027022,6 +1054390,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1027076,6 +1054445,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1027161,6 +1054531,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1027215,6 +1054586,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1027300,6 +1054672,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1027354,6 +1054727,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1027439,6 +1054813,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1027493,6 +1054868,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1027578,6 +1054954,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1027632,6 +1055009,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1027717,6 +1055095,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1027771,6 +1055150,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1027856,6 +1055236,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1027910,6 +1055291,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1027995,6 +1055377,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1028049,6 +1055432,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1028134,6 +1055518,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1028188,6 +1055573,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1028273,6 +1055659,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1028327,6 +1055714,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1028412,6 +1055800,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1028466,6 +1055855,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1028551,6 +1055941,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1028605,6 +1055996,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1028690,6 +1056082,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1028744,6 +1056137,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1028829,6 +1056223,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1028883,6 +1056278,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1028968,6 +1056364,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1029022,6 +1056419,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1029107,6 +1056505,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1029161,6 +1056560,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1029246,6 +1056646,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1029300,6 +1056701,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1029385,6 +1056787,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1029439,6 +1056842,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1029524,6 +1056928,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1029578,6 +1056983,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1029663,6 +1057069,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1029717,6 +1057124,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1029802,6 +1057210,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1029856,6 +1057265,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1029941,6 +1057351,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1029995,6 +1057406,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1030080,6 +1057492,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1030134,6 +1057547,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1030219,6 +1057633,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1030273,6 +1057688,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1030358,6 +1057774,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1030412,6 +1057829,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1030497,6 +1057915,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1030551,6 +1057970,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1030636,6 +1058056,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1030690,6 +1058111,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1030775,6 +1058197,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1030829,6 +1058252,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1030914,6 +1058338,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1030968,6 +1058393,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1031053,6 +1058479,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1031107,6 +1058534,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1031192,6 +1058620,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1031246,6 +1058675,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1031331,6 +1058761,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1031385,6 +1058816,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1031470,6 +1058902,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1031524,6 +1058957,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1031609,6 +1059043,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1031663,6 +1059098,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1031748,6 +1059184,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1031802,6 +1059239,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1031887,6 +1059325,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1031941,6 +1059380,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1032026,6 +1059466,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1032080,6 +1059521,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1032165,6 +1059607,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1032219,6 +1059662,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1032304,6 +1059748,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1032358,6 +1059803,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1032443,6 +1059889,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1032497,6 +1059944,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1032582,6 +1060030,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1032636,6 +1060085,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1032721,6 +1060171,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1032775,6 +1060226,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1032860,6 +1060312,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1032914,6 +1060367,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1032999,6 +1060453,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1033053,6 +1060508,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1033138,6 +1060594,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1033192,6 +1060649,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1033277,6 +1060735,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1033331,6 +1060790,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1033416,6 +1060876,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1033470,6 +1060931,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1033555,6 +1061017,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1033609,6 +1061072,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1033694,6 +1061158,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1033748,6 +1061213,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1033833,6 +1061299,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1033887,6 +1061354,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1033972,6 +1061440,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1034026,6 +1061495,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1034111,6 +1061581,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1034165,6 +1061636,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1034250,6 +1061722,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1034304,6 +1061777,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1034389,6 +1061863,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1034443,6 +1061918,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1034528,6 +1062004,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1034582,6 +1062059,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1034667,6 +1062145,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1034721,6 +1062200,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1034806,6 +1062286,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1034860,6 +1062341,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1034945,6 +1062427,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1034999,6 +1062482,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1035084,6 +1062568,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1035138,6 +1062623,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1035223,6 +1062709,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1035277,6 +1062764,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1035362,6 +1062850,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1035416,6 +1062905,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1035501,6 +1062991,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1035555,6 +1063046,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1035640,6 +1063132,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1035694,6 +1063187,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1035779,6 +1063273,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1035833,6 +1063328,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1036276,6 +1063772,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -1036296,6 +1063793,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -1036431,6 +1063929,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1369296663} +--- !u!1 &1369369732 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1369369733} + - component: {fileID: 1369369735} + - component: {fileID: 1369369734} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1369369733 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1369369732} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1765407046} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1369369734 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1369369732} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1369369735 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1369369732} --- !u!1 &1369396546 GameObject: m_ObjectHideFlags: 0 @@ -1037376,6 +1064942,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1371925981} +--- !u!1 &1372179099 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1372179100} + - component: {fileID: 1372179102} + - component: {fileID: 1372179101} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1372179100 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1372179099} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 2100206178} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1372179101 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1372179099} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1372179102 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1372179099} --- !u!1 &1372366939 GameObject: m_ObjectHideFlags: 0 @@ -1037623,6 +1065263,41 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1372552802 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1372552803} + m_Layer: 0 + m_Name: label_0_2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1372552803 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1372552802} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1984130286} + - {fileID: 1619316336} + m_Father: {fileID: 1969376537} + m_RootOrder: 16 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1372686886 GameObject: m_ObjectHideFlags: 0 @@ -1038284,7 +1065959,7 @@ RectTransform: m_GameObject: {fileID: 1374585133} 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: 627765467} m_RootOrder: 1 @@ -1039012,6 +1066687,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1377617665} +--- !u!1 &1377618221 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1377618222} + m_Layer: 0 + m_Name: label_0_6_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1377618222 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1377618221} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1687186304} + - {fileID: 1212343007} + m_Father: {fileID: 1969376537} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1377641552 GameObject: m_ObjectHideFlags: 0 @@ -1040391,7 +1068101,7 @@ RectTransform: m_GameObject: {fileID: 1380631386} 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: 1340638832} - {fileID: 1991350497} @@ -1042345,6 +1070055,74 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1385289700 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1385289701} + - component: {fileID: 1385289703} + - component: {fileID: 1385289702} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1385289701 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1385289700} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1893519936} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1385289702 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1385289700} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1385289703 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1385289700} --- !u!1 &1385427657 GameObject: m_ObjectHideFlags: 0 @@ -1043771,7 +1071549,7 @@ RectTransform: m_GameObject: {fileID: 1389317550} 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: 227493482} - {fileID: 2079628660} @@ -1047178,7 +1074956,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 + m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] @@ -1047389,10 +1075167,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1047679,6 +1075453,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1047732,6 +1075507,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1047829,6 +1075605,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1047883,6 +1075660,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1049235,6 +1077013,80 @@ RectTransform: m_AnchoredPosition: {x: 92.400024, y: 0} m_SizeDelta: {x: 50, y: 19.333332} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1401023186 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1401023187} + - component: {fileID: 1401023189} + - component: {fileID: 1401023188} + m_Layer: 0 + m_Name: axis_x4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1401023187 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1401023186} + m_LocalRotation: {x: 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: 811752472} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 554, y: -287} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1401023188 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1401023186} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x5 +--- !u!222 &1401023189 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1401023186} --- !u!1 &1401149535 GameObject: m_ObjectHideFlags: 0 @@ -1049326,7 +1077178,7 @@ RectTransform: m_GameObject: {fileID: 1401240353} 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: 1934381216} - {fileID: 1715912199} @@ -1049631,6 +1077483,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1401971464} +--- !u!1 &1402111653 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1402111654} + - component: {fileID: 1402111656} + - component: {fileID: 1402111655} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1402111654 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1402111653} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 669903975} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1402111655 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1402111653} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1402111656 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1402111653} --- !u!1 &1402501330 GameObject: m_ObjectHideFlags: 0 @@ -1051497,6 +1079423,74 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 389, y: 300} m_Pivot: {x: 0, y: 1} +--- !u!1 &1406697781 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1406697782} + - component: {fileID: 1406697784} + - component: {fileID: 1406697783} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1406697782 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1406697781} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1475368771} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1406697783 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1406697781} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1406697784 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1406697781} --- !u!1 &1406698599 GameObject: m_ObjectHideFlags: 0 @@ -1051882,6 +1079876,80 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1407917828 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1407917829} + - component: {fileID: 1407917831} + - component: {fileID: 1407917830} + m_Layer: 0 + m_Name: axis_x23 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1407917829 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1407917828} + m_LocalRotation: {x: 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: 292644576} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 453.2, y: -33} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1407917830 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1407917828} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1407917831 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1407917828} --- !u!1 &1408206783 GameObject: m_ObjectHideFlags: 0 @@ -1053741,6 +1081809,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1412992480} +--- !u!1 &1413014007 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1413014008} + - component: {fileID: 1413014010} + - component: {fileID: 1413014009} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1413014008 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1413014007} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1644291520} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1413014009 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1413014007} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1413014010 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1413014007} --- !u!1 &1413056121 GameObject: m_ObjectHideFlags: 0 @@ -1054731,6 +1082867,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1414870673} +--- !u!1 &1415030070 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1415030071} + - component: {fileID: 1415030073} + - component: {fileID: 1415030072} + m_Layer: 0 + m_Name: title_1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1415030071 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1415030070} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 2129889692} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 12} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1415030072 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1415030070} + 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.18431373, g: 0.27058825, b: 0.32941177, a: 1} + m_RaycastTarget: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1415030073 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1415030070} --- !u!1 &1415224962 GameObject: m_ObjectHideFlags: 0 @@ -1055579,6 +1083789,44 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1417254689} +--- !u!1 &1417273491 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1417273492} + m_Layer: 0 + m_Name: tooltip + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1417273492 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1417273491} + m_LocalRotation: {x: -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: 663936051} + - {fileID: 1662190220} + - {fileID: 1770661788} + - {fileID: 1645605402} + - {fileID: 2113097240} + m_Father: {fileID: 297285224} + 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: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} --- !u!1 &1417548769 GameObject: m_ObjectHideFlags: 1 @@ -1055602,7 +1083850,7 @@ RectTransform: m_GameObject: {fileID: 1417548769} 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: 1271484834} m_Father: {fileID: 883296608} @@ -1055613,6 +1083861,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 1} +--- !u!1 &1417671656 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1417671657} + - component: {fileID: 1417671659} + - component: {fileID: 1417671658} + m_Layer: 0 + m_Name: axis_x23 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1417671657 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1417671656} + m_LocalRotation: {x: 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: 1212200373} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 453.2, y: -33} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1417671658 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1417671656} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1417671659 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1417671656} --- !u!1 &1418048796 GameObject: m_ObjectHideFlags: 0 @@ -1056739,7 +1085061,7 @@ RectTransform: m_GameObject: {fileID: 1419598652} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 1515880356} m_Father: {fileID: 1395806835} @@ -1056960,6 +1085282,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1419994837} +--- !u!1 &1419997649 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1419997650} + - component: {fileID: 1419997652} + - component: {fileID: 1419997651} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1419997650 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1419997649} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 170164532} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1419997651 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1419997649} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1419997652 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1419997649} --- !u!1 &1420025697 GameObject: m_ObjectHideFlags: 0 @@ -1058130,6 +1086526,80 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1422041989 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1422041990} + - component: {fileID: 1422041992} + - component: {fileID: 1422041991} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1422041990 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1422041989} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1116243853} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1422041991 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1422041989} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1422041992 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1422041989} --- !u!1 &1422042534 GameObject: m_ObjectHideFlags: 0 @@ -1062741,6 +1091211,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 1} +--- !u!1 &1432173831 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1432173832} + - component: {fileID: 1432173834} + - component: {fileID: 1432173833} + m_Layer: 0 + m_Name: axis_x20 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1432173832 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1432173831} + m_LocalRotation: {x: 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: 623994319} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 150.8, y: -33} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1432173833 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1432173831} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1432173834 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1432173831} --- !u!1 &1432192732 GameObject: m_ObjectHideFlags: 0 @@ -1063842,6 +1092386,41 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 1} +--- !u!1 &1434474680 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1434474681} + m_Layer: 0 + m_Name: label_1_1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1434474681 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1434474680} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1887225877} + - {fileID: 2048545228} + m_Father: {fileID: 1969376537} + m_RootOrder: 22 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1434558430 GameObject: m_ObjectHideFlags: 0 @@ -1066622,7 +1095201,7 @@ RectTransform: m_GameObject: {fileID: 1440224941} 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: 174746849} - {fileID: 912293887} @@ -1068095,7 +1096674,7 @@ RectTransform: m_GameObject: {fileID: 1443107180} 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: 851683732} - {fileID: 1593828169} @@ -1074102,6 +1102681,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1458601552} +--- !u!1 &1458711901 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1458711902} + - component: {fileID: 1458711904} + - component: {fileID: 1458711903} + m_Layer: 0 + m_Name: axis_y3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1458711902 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1458711901} + m_LocalRotation: {x: 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: 1790542136} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 195} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1458711903 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1458711901} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 67.5 +--- !u!222 &1458711904 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1458711901} --- !u!1 &1458795366 GameObject: m_ObjectHideFlags: 0 @@ -1074274,6 +1102927,41 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1459118358 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1459118359} + m_Layer: 0 + m_Name: label_1_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1459118359 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1459118358} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 176863573} + - {fileID: 669530611} + m_Father: {fileID: 1574269530} + m_RootOrder: 21 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1459262166 GameObject: m_ObjectHideFlags: 0 @@ -1075001,7 +1103689,7 @@ RectTransform: m_GameObject: {fileID: 1463120095} 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: 1355095398} - {fileID: 824936422} @@ -1075304,6 +1103992,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1464031437} +--- !u!1 &1464084636 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1464084637} + m_Layer: 0 + m_Name: label_0_1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1464084637 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1464084636} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 2104660041} + - {fileID: 367584586} + m_Father: {fileID: 960174449} + m_RootOrder: 15 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1464156027 GameObject: m_ObjectHideFlags: 0 @@ -1075623,6 +1104346,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1465395743} +--- !u!1 &1465469857 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1465469858} + - component: {fileID: 1465469860} + - component: {fileID: 1465469859} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1465469858 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1465469857} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 624054215} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1465469859 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1465469857} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1465469860 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1465469857} --- !u!1 &1465683395 GameObject: m_ObjectHideFlags: 0 @@ -1076240,10 +1105031,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1076530,6 +1105317,7 @@ MonoBehaviour: m_Show: 1 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1076583,6 +1105371,7 @@ MonoBehaviour: m_Show: 1 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1076680,6 +1105469,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1076734,6 +1105524,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1076821,6 +1105612,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1076875,6 +1105667,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1076962,6 +1105755,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1077016,6 +1105810,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1077103,6 +1105898,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1077157,6 +1105953,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1077244,6 +1106041,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1077298,6 +1106096,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1077385,6 +1106184,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1077439,6 +1106239,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1077526,6 +1106327,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1077580,6 +1106382,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1077667,6 +1106470,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1077721,6 +1106525,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1077808,6 +1106613,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1077862,6 +1106668,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1077949,6 +1106756,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1078003,6 +1106811,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1078090,6 +1106899,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1078144,6 +1106954,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1078230,6 +1107041,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1078284,6 +1107096,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1078370,6 +1107183,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1078424,6 +1107238,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1078510,6 +1107325,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1078564,6 +1107380,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1078650,6 +1107467,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1078704,6 +1107522,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1078790,6 +1107609,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1078844,6 +1107664,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1078930,6 +1107751,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1078984,6 +1107806,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1079070,6 +1107893,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1079124,6 +1107948,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1079210,6 +1108035,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1079264,6 +1108090,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1079350,6 +1108177,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1079404,6 +1108232,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1079490,6 +1108319,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1079544,6 +1108374,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1079630,6 +1108461,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1079684,6 +1108516,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1079770,6 +1108603,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1079824,6 +1108658,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1079910,6 +1108745,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1079964,6 +1108800,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1080050,6 +1108887,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1080104,6 +1108942,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1080190,6 +1109029,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1080244,6 +1109084,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1080330,6 +1109171,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1080384,6 +1109226,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1080470,6 +1109313,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1080524,6 +1109368,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1080610,6 +1109455,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1080664,6 +1109510,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1080750,6 +1109597,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1080804,6 +1109652,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1080890,6 +1109739,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1080944,6 +1109794,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1081030,6 +1109881,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1081084,6 +1109936,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1081170,6 +1110023,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1081224,6 +1110078,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1081310,6 +1110165,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1081364,6 +1110220,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1081450,6 +1110307,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1081504,6 +1110362,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1081590,6 +1110449,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1081644,6 +1110504,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1081730,6 +1110591,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1081784,6 +1110646,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1081870,6 +1110733,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1081924,6 +1110788,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1082010,6 +1110875,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1082064,6 +1110930,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1082150,6 +1111017,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1082204,6 +1111072,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1082290,6 +1111159,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1082344,6 +1111214,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1082430,6 +1111301,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1082484,6 +1111356,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1082570,6 +1111443,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1082624,6 +1111498,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1082710,6 +1111585,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1082764,6 +1111640,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1082850,6 +1111727,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1082904,6 +1111782,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1082990,6 +1111869,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1083044,6 +1111924,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1083130,6 +1112011,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1083184,6 +1112066,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1083270,6 +1112153,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1083324,6 +1112208,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1083410,6 +1112295,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1083464,6 +1112350,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1083550,6 +1112437,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1083604,6 +1112492,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1083690,6 +1112579,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1083744,6 +1112634,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1083830,6 +1112721,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1083884,6 +1112776,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1083970,6 +1112863,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1084024,6 +1112918,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1084110,6 +1113005,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1084164,6 +1113060,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1084250,6 +1113147,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1084304,6 +1113202,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1084390,6 +1113289,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1084444,6 +1113344,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1084530,6 +1113431,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1084584,6 +1113486,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1084670,6 +1113573,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1084724,6 +1113628,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1084810,6 +1113715,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1084864,6 +1113770,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1084950,6 +1113857,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1085004,6 +1113912,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1085090,6 +1113999,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1085144,6 +1114054,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1085230,6 +1114141,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1085284,6 +1114196,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1085370,6 +1114283,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1085424,6 +1114338,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1085510,6 +1114425,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1085564,6 +1114480,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1085650,6 +1114567,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1085704,6 +1114622,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1085790,6 +1114709,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1085844,6 +1114764,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1085930,6 +1114851,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1085984,6 +1114906,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1086070,6 +1114993,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1086124,6 +1115048,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1086210,6 +1115135,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1086264,6 +1115190,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1086350,6 +1115277,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1086404,6 +1115332,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1086490,6 +1115419,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1086544,6 +1115474,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1086630,6 +1115561,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1086684,6 +1115616,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1086770,6 +1115703,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1086824,6 +1115758,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1086910,6 +1115845,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1086964,6 +1115900,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1087050,6 +1115987,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1087104,6 +1116042,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1087190,6 +1116129,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1087244,6 +1116184,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1087330,6 +1116271,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1087384,6 +1116326,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1087470,6 +1116413,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1087524,6 +1116468,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1087610,6 +1116555,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1087664,6 +1116610,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1087750,6 +1116697,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1087804,6 +1116752,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1087890,6 +1116839,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1087944,6 +1116894,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1088030,6 +1116981,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1088084,6 +1117036,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1088170,6 +1117123,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1088224,6 +1117178,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1088310,6 +1117265,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1088364,6 +1117320,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1088450,6 +1117407,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1088504,6 +1117462,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1088590,6 +1117549,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1088644,6 +1117604,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1088730,6 +1117691,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1088784,6 +1117746,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1088870,6 +1117833,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1088924,6 +1117888,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1089010,6 +1117975,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1089064,6 +1118030,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1089150,6 +1118117,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1089204,6 +1118172,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1089290,6 +1118259,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1089344,6 +1118314,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1089430,6 +1118401,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1089484,6 +1118456,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1089570,6 +1118543,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1089624,6 +1118598,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1089710,6 +1118685,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1089764,6 +1118740,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1089850,6 +1118827,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1089904,6 +1118882,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1089990,6 +1118969,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1090044,6 +1119024,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1090130,6 +1119111,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1090184,6 +1119166,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1090270,6 +1119253,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1090324,6 +1119308,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1090410,6 +1119395,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1090464,6 +1119450,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1090550,6 +1119537,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1090604,6 +1119592,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1090690,6 +1119679,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1090744,6 +1119734,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1090830,6 +1119821,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1090884,6 +1119876,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1090970,6 +1119963,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1091024,6 +1120018,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1091110,6 +1120105,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1091164,6 +1120160,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1091250,6 +1120247,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1091304,6 +1120302,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1091390,6 +1120389,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1091444,6 +1120444,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1091530,6 +1120531,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1091584,6 +1120586,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1091670,6 +1120673,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1091724,6 +1120728,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1091810,6 +1120815,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1091864,6 +1120870,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1091950,6 +1120957,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1092004,6 +1121012,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1092090,6 +1121099,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1092144,6 +1121154,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1092230,6 +1121241,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1092284,6 +1121296,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1092370,6 +1121383,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1092424,6 +1121438,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1092510,6 +1121525,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1092564,6 +1121580,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1092650,6 +1121667,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1092704,6 +1121722,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1092790,6 +1121809,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1092844,6 +1121864,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1092930,6 +1121951,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1092984,6 +1122006,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1093070,6 +1122093,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1093124,6 +1122148,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1093210,6 +1122235,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1093264,6 +1122290,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1093350,6 +1122377,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1093404,6 +1122432,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1093490,6 +1122519,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1093544,6 +1122574,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1093630,6 +1122661,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1093684,6 +1122716,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1093770,6 +1122803,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1093824,6 +1122858,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1093910,6 +1122945,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1093964,6 +1123000,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1094050,6 +1123087,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1094104,6 +1123142,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1094190,6 +1123229,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1094244,6 +1123284,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1094330,6 +1123371,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1094384,6 +1123426,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1094470,6 +1123513,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1094524,6 +1123568,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1094610,6 +1123655,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1094664,6 +1123710,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1094750,6 +1123797,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1094804,6 +1123852,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1094890,6 +1123939,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1094944,6 +1123994,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1095030,6 +1124081,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1095084,6 +1124136,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1095170,6 +1124223,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1095224,6 +1124278,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1095310,6 +1124365,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1095364,6 +1124420,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1095450,6 +1124507,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1095504,6 +1124562,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1095590,6 +1124649,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1095644,6 +1124704,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1095730,6 +1124791,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1095784,6 +1124846,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1095870,6 +1124933,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1095924,6 +1124988,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1096010,6 +1125075,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1096064,6 +1125130,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1096150,6 +1125217,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1096204,6 +1125272,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1096290,6 +1125359,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1096344,6 +1125414,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1096430,6 +1125501,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1096484,6 +1125556,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1096570,6 +1125643,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1096624,6 +1125698,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1096710,6 +1125785,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1096764,6 +1125840,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1096850,6 +1125927,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1096904,6 +1125982,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1096990,6 +1126069,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1097044,6 +1126124,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1097130,6 +1126211,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1097184,6 +1126266,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1097270,6 +1126353,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1097324,6 +1126408,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1097410,6 +1126495,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1097464,6 +1126550,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1097550,6 +1126637,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1097604,6 +1126692,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1097690,6 +1126779,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1097744,6 +1126834,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1097830,6 +1126921,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1097884,6 +1126976,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1097970,6 +1127063,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1098024,6 +1127118,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1098110,6 +1127205,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1098164,6 +1127260,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1098250,6 +1127347,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1098304,6 +1127402,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1098390,6 +1127489,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1098444,6 +1127544,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1098530,6 +1127631,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1098584,6 +1127686,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1098670,6 +1127773,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1098724,6 +1127828,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1098810,6 +1127915,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1098864,6 +1127970,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1098950,6 +1128057,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1099004,6 +1128112,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1099090,6 +1128199,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1099144,6 +1128254,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1099230,6 +1128341,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1099284,6 +1128396,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1099370,6 +1128483,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1099424,6 +1128538,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1099510,6 +1128625,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1099564,6 +1128680,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1099650,6 +1128767,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1099704,6 +1128822,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1099790,6 +1128909,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1099844,6 +1128964,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1099930,6 +1129051,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1099984,6 +1129106,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1100070,6 +1129193,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1100124,6 +1129248,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1100600,6 +1129725,7 @@ MonoBehaviour: m_Enable: 1 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 10 @@ -1100620,6 +1129746,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 3 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -1101993,6 +1131120,115 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1469494781} +--- !u!1 &1469716239 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1469716240} + m_Layer: 0 + m_Name: label_1_4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1469716240 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1469716239} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1305954949} + - {fileID: 370324312} + m_Father: {fileID: 1574269530} + m_RootOrder: 25 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1469850820 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1469850821} + - component: {fileID: 1469850823} + - component: {fileID: 1469850822} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1469850821 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1469850820} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 460529237} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1469850822 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1469850820} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1469850823 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1469850820} --- !u!1 &1470096564 GameObject: m_ObjectHideFlags: 0 @@ -1103590,10 +1132826,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1103880,6 +1133112,7 @@ MonoBehaviour: m_Show: 1 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0.9338235, g: 0.9338235, b: 0.9338235, a: 0.553} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1103933,6 +1133166,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1104030,6 +1133264,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1104084,6 +1133319,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1104170,6 +1133406,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1104224,6 +1133461,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1104310,6 +1133548,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1104364,6 +1133603,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1104450,6 +1133690,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1104504,6 +1133745,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1104590,6 +1133832,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1104644,6 +1133887,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1104730,6 +1133974,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1104784,6 +1134029,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1104870,6 +1134116,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1104924,6 +1134171,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1105333,6 +1134581,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1475218966} +--- !u!1 &1475368770 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1475368771} + m_Layer: 0 + m_Name: label_0_2_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1475368771 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1475368770} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1206143733} + - {fileID: 1406697782} + m_Father: {fileID: 1574269530} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1475409722 GameObject: m_ObjectHideFlags: 0 @@ -1107039,7 +1136322,7 @@ RectTransform: m_GameObject: {fileID: 1478458715} 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: 2140929300} - {fileID: 1424793325} @@ -1107299,6 +1136582,75 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1479209269 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1479209270} + - component: {fileID: 1479209272} + - component: {fileID: 1479209271} + m_Layer: 0 + m_Name: axis_y_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1479209270 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1479209269} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1722714139} + m_Father: {fileID: 1665609509} + 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: 300} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1479209271 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1479209269} + 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.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374} + 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 &1479209272 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1479209269} --- !u!1 &1479305358 GameObject: m_ObjectHideFlags: 0 @@ -1107567,7 +1136919,7 @@ RectTransform: m_GameObject: {fileID: 1480091483} 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: 1436353668} - {fileID: 94441771} @@ -1107618,6 +1136970,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 1} +--- !u!1 &1480370527 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1480370528} + - component: {fileID: 1480370530} + - component: {fileID: 1480370529} + m_Layer: 0 + m_Name: axis_x6 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1480370528 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1480370527} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 869298477} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 554, y: -287} + m_SizeDelta: {x: 72, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1480370529 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1480370527} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Sun +--- !u!222 &1480370530 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1480370527} --- !u!1 &1480904670 GameObject: m_ObjectHideFlags: 0 @@ -1107836,6 +1137262,74 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1481449810 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1481449811} + - component: {fileID: 1481449813} + - component: {fileID: 1481449812} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1481449811 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1481449810} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 58599968} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1481449812 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1481449810} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1481449813 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1481449810} --- !u!1 &1481638110 GameObject: m_ObjectHideFlags: 0 @@ -1107876,10 +1137370,10 @@ RectTransform: m_Father: {fileID: 191364310} m_RootOrder: 12 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -1828} - m_SizeDelta: {x: 584, y: 300} + 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, y: 1} --- !u!114 &1481638112 MonoBehaviour: @@ -1107894,7 +1137388,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 + m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] @@ -1108105,10 +1137599,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1108395,6 +1137885,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1108448,6 +1137939,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1108545,6 +1138037,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1108599,6 +1138092,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1108684,6 +1138178,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1108738,6 +1138233,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1108823,6 +1138319,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1108877,6 +1138374,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1108962,6 +1138460,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1109016,6 +1138515,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1109101,6 +1138601,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1109155,6 +1138656,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1109240,6 +1138742,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1109294,6 +1138797,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1109379,6 +1138883,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1109433,6 +1138938,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1109518,6 +1139024,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1109572,6 +1139079,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1109657,6 +1139165,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1109711,6 +1139220,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1109955,6 +1139465,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1110008,6 +1139519,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1110105,6 +1139617,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1110159,6 +1139672,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1110244,6 +1139758,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1110298,6 +1139813,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1110383,6 +1139899,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1110437,6 +1139954,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1110522,6 +1140040,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1110576,6 +1140095,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1110661,6 +1140181,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1110715,6 +1140236,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1110800,6 +1140322,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1110854,6 +1140377,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1110939,6 +1140463,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1110993,6 +1140518,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1111078,6 +1140604,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1111132,6 +1140659,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1111217,6 +1140745,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1111271,6 +1140800,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1111515,6 +1141045,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1111568,6 +1141099,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1111665,6 +1141197,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1111719,6 +1141252,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1111804,6 +1141338,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1111858,6 +1141393,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1111943,6 +1141479,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1111997,6 +1141534,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1112082,6 +1141620,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1112136,6 +1141675,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1112221,6 +1141761,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1112275,6 +1141816,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1112360,6 +1141902,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1112414,6 +1141957,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1112499,6 +1142043,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1112553,6 +1142098,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1112638,6 +1142184,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1112692,6 +1142239,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1112777,6 +1142325,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1112831,6 +1142380,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1113283,6 +1142833,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -1113303,6 +1142854,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -1113976,6 +1143528,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1483756565} +--- !u!1 &1483953443 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1483953444} + - component: {fileID: 1483953446} + - component: {fileID: 1483953445} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1483953444 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1483953443} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1332649028} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1483953445 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1483953443} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1483953446 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1483953443} --- !u!1 &1483960732 GameObject: m_ObjectHideFlags: 0 @@ -1114607,6 +1144227,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1485074352 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1485074353} + - component: {fileID: 1485074355} + - component: {fileID: 1485074354} + m_Layer: 0 + m_Name: title_sub + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1485074353 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1485074352} + m_LocalRotation: {x: 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: 689814814} + 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: 0, y: -24} + m_SizeDelta: {x: 584, y: 14} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1485074354 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1485074352} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 1 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: "\u901A\u8FC7ItemStyle" +--- !u!222 &1485074355 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1485074352} --- !u!1 &1485115263 GameObject: m_ObjectHideFlags: 0 @@ -1114986,7 +1144680,7 @@ RectTransform: m_GameObject: {fileID: 1485636067} 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: 878433488} - {fileID: 41737318} @@ -1116174,6 +1145868,41 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1488018542 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1488018543} + m_Layer: 0 + m_Name: label_0_4_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1488018543 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1488018542} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 2072263950} + - {fileID: 1566052591} + m_Father: {fileID: 1969376537} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1488166398 GameObject: m_ObjectHideFlags: 0 @@ -1116312,6 +1146041,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1488325761 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1488325762} + - component: {fileID: 1488325764} + - component: {fileID: 1488325763} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1488325762 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1488325761} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1644291520} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1488325763 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1488325761} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1488325764 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1488325761} --- !u!1 &1488460134 GameObject: m_ObjectHideFlags: 0 @@ -1118376,6 +1148179,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1494280887} +--- !u!1 &1494281414 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1494281415} + - component: {fileID: 1494281417} + - component: {fileID: 1494281416} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1494281415 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1494281414} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 138035055} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1494281416 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1494281414} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1494281417 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1494281414} --- !u!1 &1494284334 GameObject: m_ObjectHideFlags: 0 @@ -1119351,7 +1149222,7 @@ RectTransform: m_GameObject: {fileID: 1496788459} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 96701233} - {fileID: 968795059} @@ -1120721,10 +1150592,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1121012,6 +1150879,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1121065,6 +1150933,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1121162,6 +1151031,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1121216,6 +1151086,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1121301,6 +1151172,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1121355,6 +1151227,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1121440,6 +1151313,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1121494,6 +1151368,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1121579,6 +1151454,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1121633,6 +1151509,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1121718,6 +1151595,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1121772,6 +1151650,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1121857,6 +1151736,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1121911,6 +1151791,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1121996,6 +1151877,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1122050,6 +1151932,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1122505,6 +1152388,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -1122525,6 +1152409,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -1123056,6 +1152941,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1501380738} +--- !u!1 &1501564332 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1501564333} + - component: {fileID: 1501564335} + - component: {fileID: 1501564334} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1501564333 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1501564332} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1558033565} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1501564334 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1501564332} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1501564335 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1501564332} --- !u!1 &1501579673 GameObject: m_ObjectHideFlags: 0 @@ -1123188,7 +1153141,7 @@ RectTransform: m_GameObject: {fileID: 1501775005} 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: 1328030489} - {fileID: 1484114287} @@ -1123872,10 +1153825,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1124167,6 +1154116,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1124220,6 +1154170,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1124317,6 +1154268,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1124371,6 +1154323,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1124459,6 +1154412,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1124513,6 +1154467,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1124601,6 +1154556,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1124655,6 +1154611,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1124743,6 +1154700,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1124797,6 +1154755,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1124885,6 +1154844,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1124939,6 +1154899,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1125027,6 +1154988,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1125081,6 +1155043,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1125169,6 +1155132,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1125223,6 +1155187,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1125311,6 +1155276,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1125365,6 +1155331,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1125453,6 +1155420,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1125507,6 +1155475,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1125595,6 +1155564,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1125649,6 +1155619,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1125737,6 +1155708,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1125791,6 +1155763,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1125879,6 +1155852,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1125933,6 +1155907,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1126021,6 +1155996,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1126075,6 +1156051,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1126163,6 +1156140,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1126217,6 +1156195,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1126305,6 +1156284,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1126359,6 +1156339,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1126447,6 +1156428,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1126501,6 +1156483,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1126589,6 +1156572,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1126643,6 +1156627,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1126731,6 +1156716,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1126785,6 +1156771,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1126873,6 +1156860,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1126927,6 +1156915,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1127177,6 +1157166,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1127230,6 +1157220,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1127327,6 +1157318,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1127381,6 +1157373,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1127469,6 +1157462,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1127523,6 +1157517,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1127611,6 +1157606,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1127665,6 +1157661,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1127753,6 +1157750,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1127807,6 +1157805,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1127895,6 +1157894,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1127949,6 +1157949,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1128037,6 +1158038,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1128091,6 +1158093,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1128179,6 +1158182,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1128233,6 +1158237,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1128321,6 +1158326,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1128375,6 +1158381,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1128463,6 +1158470,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1128517,6 +1158525,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1128605,6 +1158614,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1128659,6 +1158669,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1128747,6 +1158758,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1128801,6 +1158813,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1128889,6 +1158902,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1128943,6 +1158957,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1129031,6 +1159046,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1129085,6 +1159101,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1129173,6 +1159190,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1129227,6 +1159245,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1129315,6 +1159334,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1129369,6 +1159389,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1129457,6 +1159478,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1129511,6 +1159533,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1129599,6 +1159622,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1129653,6 +1159677,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1129741,6 +1159766,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1129795,6 +1159821,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1129883,6 +1159910,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1129937,6 +1159965,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1130383,6 +1160412,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -1130403,6 +1160433,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -1130494,6 +1160525,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1503947909} +--- !u!1 &1504037477 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1504037478} + m_Layer: 0 + m_Name: label_1_2_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1504037478 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1504037477} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 2143148974} + - {fileID: 1646563340} + m_Father: {fileID: 1969376537} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1504221957 GameObject: m_ObjectHideFlags: 0 @@ -1130586,7 +1160652,7 @@ RectTransform: m_GameObject: {fileID: 1504359673} 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: 262236695} - {fileID: 853530426} @@ -1131765,6 +1161831,42 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1507464378} +--- !u!1 &1507643176 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1507643177} + m_Layer: 0 + m_Name: serie + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1507643177 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1507643176} + m_LocalRotation: {x: -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: 62451317} + - {fileID: 1180433393} + - {fileID: 1642373320} + m_Father: {fileID: 2066464034} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} --- !u!1 &1507884134 GameObject: m_ObjectHideFlags: 0 @@ -1132066,7 +1162168,7 @@ RectTransform: m_GameObject: {fileID: 1508525871} 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: 948816410} - {fileID: 562268189} @@ -1132603,7 +1162705,7 @@ RectTransform: m_GameObject: {fileID: 1510355197} 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: 237853428} - {fileID: 1734480035} @@ -1133890,7 +1163992,7 @@ RectTransform: m_GameObject: {fileID: 1513059328} 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: 1029199702} - {fileID: 1368851064} @@ -1133905,6 +1164007,75 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 1} +--- !u!1 &1513382013 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1513382014} + - component: {fileID: 1513382016} + - component: {fileID: 1513382015} + m_Layer: 0 + m_Name: axis_y_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1513382014 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1513382013} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 183460938} + m_Father: {fileID: 1819605193} + 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: 300} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1513382015 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1513382013} + 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.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374} + 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 &1513382016 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1513382013} --- !u!1 &1513498267 GameObject: m_ObjectHideFlags: 0 @@ -1134180,7 +1164351,7 @@ RectTransform: m_GameObject: {fileID: 1515189522} 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: 1737585331} m_RootOrder: 1 @@ -1135612,6 +1165783,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1518712234} +--- !u!1 &1518987259 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1518987260} + - component: {fileID: 1518987262} + - component: {fileID: 1518987261} + m_Layer: 0 + m_Name: datazoomend + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1518987260 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1518987259} + m_LocalRotation: {x: 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: 2102306885} + 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: 300} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1518987261 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1518987259} + 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: 0 + 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: Text +--- !u!222 &1518987262 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1518987259} --- !u!1 &1519317691 GameObject: m_ObjectHideFlags: 0 @@ -1136325,10 +1166570,10 @@ RectTransform: m_Father: {fileID: 191364310} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -916} - m_SizeDelta: {x: 584, y: 300} + 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, y: 1} --- !u!114 &1520897808 MonoBehaviour: @@ -1136343,7 +1166588,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 + m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] @@ -1136532,10 +1166777,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1136827,6 +1167068,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1136880,6 +1167122,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1136977,6 +1167220,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1137031,6 +1167275,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1137116,6 +1167361,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1137170,6 +1167416,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1137255,6 +1167502,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1137309,6 +1167557,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1137394,6 +1167643,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1137448,6 +1167698,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1137533,6 +1167784,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1137587,6 +1167839,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1137672,6 +1167925,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1137726,6 +1167980,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1137811,6 +1168066,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1137865,6 +1168121,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1138109,6 +1168366,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1138162,6 +1168420,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1138259,6 +1168518,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1138313,6 +1168573,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1138398,6 +1168659,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1138452,6 +1168714,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1138537,6 +1168800,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1138591,6 +1168855,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1138676,6 +1168941,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1138730,6 +1168996,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1138815,6 +1169082,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1138869,6 +1169137,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1138954,6 +1169223,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1139008,6 +1169278,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1139093,6 +1169364,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1139147,6 +1169419,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1139391,6 +1169664,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1139444,6 +1169718,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1139541,6 +1169816,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1139595,6 +1169871,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1139680,6 +1169957,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1139734,6 +1170012,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1139819,6 +1170098,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1139873,6 +1170153,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1139958,6 +1170239,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1140012,6 +1170294,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1140097,6 +1170380,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1140151,6 +1170435,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1140236,6 +1170521,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1140290,6 +1170576,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1140375,6 +1170662,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1140429,6 +1170717,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1140673,6 +1170962,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1140726,6 +1171016,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1140823,6 +1171114,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1140877,6 +1171169,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1140962,6 +1171255,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1141016,6 +1171310,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1141101,6 +1171396,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1141155,6 +1171451,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1141240,6 +1171537,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1141294,6 +1171592,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1141379,6 +1171678,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1141433,6 +1171733,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1141518,6 +1171819,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1141572,6 +1171874,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1141657,6 +1171960,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1141711,6 +1172015,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1141955,6 +1172260,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1142008,6 +1172314,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1142105,6 +1172412,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1142159,6 +1172467,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1142244,6 +1172553,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1142298,6 +1172608,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1142383,6 +1172694,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1142437,6 +1172749,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1142522,6 +1172835,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1142576,6 +1172890,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1142661,6 +1172976,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1142715,6 +1173031,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1142800,6 +1173117,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1142854,6 +1173172,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1142939,6 +1173258,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1142993,6 +1173313,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1143448,6 +1173769,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -1143468,6 +1173790,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -1145845,6 +1176168,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1524831766} +--- !u!1 &1525153241 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1525153242} + - component: {fileID: 1525153244} + - component: {fileID: 1525153243} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1525153242 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1525153241} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1209130970} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1525153243 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1525153241} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1525153244 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1525153241} --- !u!1 &1525275239 GameObject: m_ObjectHideFlags: 0 @@ -1149380,6 +1179771,115 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1536364967} +--- !u!1 &1536477417 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1536477418} + - component: {fileID: 1536477420} + - component: {fileID: 1536477419} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1536477418 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1536477417} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 2068651475} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1536477419 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1536477417} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1536477420 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1536477417} +--- !u!1 &1536587589 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1536587590} + m_Layer: 0 + m_Name: label_0_6_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1536587590 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1536587589} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 546419434} + - {fileID: 1925923710} + m_Father: {fileID: 960174449} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1536706523 GameObject: m_ObjectHideFlags: 0 @@ -1150148,7 +1180648,7 @@ RectTransform: m_GameObject: {fileID: 1539029538} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 515610499} - {fileID: 2119836176} @@ -1150183,7 +1180683,7 @@ RectTransform: m_GameObject: {fileID: 1539142216} 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: 1964582394} - {fileID: 318470313} @@ -1152246,7 +1182746,7 @@ RectTransform: m_GameObject: {fileID: 1543522397} 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: 1288166719} - {fileID: 311886667} @@ -1154611,6 +1185111,74 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1549882562 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1549882563} + - component: {fileID: 1549882565} + - component: {fileID: 1549882564} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1549882563 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1549882562} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 442524936} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1549882564 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1549882562} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1549882565 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1549882562} --- !u!1 &1549897742 GameObject: m_ObjectHideFlags: 0 @@ -1155472,6 +1186040,41 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 12, y: 19.333332} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1552353044 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1552353045} + m_Layer: 0 + m_Name: label_2_6 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1552353045 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1552353044} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 366843630} + - {fileID: 2085282376} + m_Father: {fileID: 1574269530} + m_RootOrder: 34 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1552477419 GameObject: m_ObjectHideFlags: 0 @@ -1155738,6 +1186341,80 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1552867486 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1552867487} + - component: {fileID: 1552867489} + - component: {fileID: 1552867488} + m_Layer: 0 + m_Name: axis_x4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1552867487 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1552867486} + m_LocalRotation: {x: 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: 869298477} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 554, y: -287} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1552867488 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1552867486} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x5 +--- !u!222 &1552867489 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1552867486} --- !u!1 &1552973462 GameObject: m_ObjectHideFlags: 0 @@ -1158207,6 +1188884,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1557500557} +--- !u!1 &1558033564 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1558033565} + m_Layer: 0 + m_Name: label_1_3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1558033565 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1558033564} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1501564333} + - {fileID: 960192542} + m_Father: {fileID: 1969376537} + m_RootOrder: 24 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1558093190 GameObject: m_ObjectHideFlags: 0 @@ -1158897,7 +1189609,7 @@ RectTransform: m_GameObject: {fileID: 1559863052} 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: 326592256} - {fileID: 1616048873} @@ -1159646,7 +1190358,7 @@ RectTransform: m_GameObject: {fileID: 1562136274} 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: 1854541961} - {fileID: 489452205} @@ -1159949,6 +1190661,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1562483400} +--- !u!1 &1562587875 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1562587876} + m_Layer: 0 + m_Name: label_2_6 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1562587876 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1562587875} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1909335454} + - {fileID: 1675635361} + m_Father: {fileID: 960174449} + m_RootOrder: 34 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1562718480 GameObject: m_ObjectHideFlags: 0 @@ -1161468,6 +1192215,74 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1566052590 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1566052591} + - component: {fileID: 1566052593} + - component: {fileID: 1566052592} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1566052591 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1566052590} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1488018543} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1566052592 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1566052590} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1566052593 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1566052590} --- !u!1 &1566133290 GameObject: m_ObjectHideFlags: 0 @@ -1161937,6 +1192752,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1567607683} +--- !u!1 &1567759019 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1567759020} + - component: {fileID: 1567759022} + - component: {fileID: 1567759021} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1567759020 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1567759019} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 848795358} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1567759021 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1567759019} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1567759022 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1567759019} --- !u!1 &1567882952 GameObject: m_ObjectHideFlags: 0 @@ -1162336,6 +1193219,76 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1568258085} +--- !u!1 &1568266773 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1568266774} + m_Layer: 0 + m_Name: label_1_4_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1568266774 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1568266773} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 11104413} + - {fileID: 117877181} + m_Father: {fileID: 1574269530} + m_RootOrder: 11 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1568290204 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1568290205} + m_Layer: 0 + m_Name: label_2_1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1568290205 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1568290204} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1619333928} + - {fileID: 1279893827} + m_Father: {fileID: 1969376537} + m_RootOrder: 29 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1568300108 GameObject: m_ObjectHideFlags: 0 @@ -1164733,7 +1195686,7 @@ RectTransform: m_GameObject: {fileID: 1573870953} 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: 1159662543} - {fileID: 820504209} @@ -1164857,6 +1195810,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1574129136} +--- !u!1 &1574269529 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1574269530} + m_Layer: 0 + m_Name: label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1574269530 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1574269529} + m_LocalRotation: {x: -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: 1311051468} + - {fileID: 1003816657} + - {fileID: 1475368771} + - {fileID: 359754582} + - {fileID: 1209130970} + - {fileID: 1977829224} + - {fileID: 345470878} + - {fileID: 1873266334} + - {fileID: 102760328} + - {fileID: 1849396351} + - {fileID: 132880768} + - {fileID: 1568266774} + - {fileID: 517451581} + - {fileID: 442524936} + - {fileID: 1005660355} + - {fileID: 1729109235} + - {fileID: 561512801} + - {fileID: 1702826699} + - {fileID: 551222446} + - {fileID: 109150041} + - {fileID: 2046678787} + - {fileID: 1459118359} + - {fileID: 1893519936} + - {fileID: 2136282817} + - {fileID: 669903975} + - {fileID: 1469716240} + - {fileID: 934700879} + - {fileID: 1102845753} + - {fileID: 1034007321} + - {fileID: 1183826487} + - {fileID: 883072300} + - {fileID: 1662746721} + - {fileID: 1057949150} + - {fileID: 1815798207} + - {fileID: 1552353045} + m_Father: {fileID: 297285224} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} --- !u!1 &1574371187 GameObject: m_ObjectHideFlags: 1 @@ -1166096,6 +1197117,80 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1577272334 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1577272335} + - component: {fileID: 1577272337} + - component: {fileID: 1577272336} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1577272335 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1577272334} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1003816657} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1577272336 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1577272334} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1577272337 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1577272334} --- !u!1 &1577283965 GameObject: m_ObjectHideFlags: 0 @@ -1167594,10 +1198689,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1167884,6 +1198975,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1167937,6 +1199029,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1168034,6 +1199127,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1168088,6 +1199182,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1168173,6 +1199268,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1168227,6 +1199323,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1168312,6 +1199409,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1168366,6 +1199464,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1168525,6 +1199624,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1580352224} +--- !u!1 &1580555759 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1580555760} + - component: {fileID: 1580555762} + - component: {fileID: 1580555761} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1580555760 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1580555759} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 561512801} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1580555761 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1580555759} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1580555762 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1580555759} --- !u!1 &1580808187 GameObject: m_ObjectHideFlags: 0 @@ -1169567,6 +1200734,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1582540188} +--- !u!1 &1582605571 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1582605572} + - component: {fileID: 1582605574} + - component: {fileID: 1582605573} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1582605572 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1582605571} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 944017770} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1582605573 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1582605571} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1582605574 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1582605571} --- !u!1 &1582865638 GameObject: m_ObjectHideFlags: 0 @@ -1177084,6 +1208325,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1601901486 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1601901487} + - component: {fileID: 1601901489} + - component: {fileID: 1601901488} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1601901487 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1601901486} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1635946209} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1601901488 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1601901486} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1601901489 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1601901486} --- !u!1 &1601983132 GameObject: m_ObjectHideFlags: 0 @@ -1178115,6 +1209430,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1604215693} +--- !u!1 &1604427504 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1604427505} + - component: {fileID: 1604427507} + - component: {fileID: 1604427506} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1604427505 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1604427504} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1005660355} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1604427506 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1604427504} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1604427507 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1604427504} --- !u!1 &1604449388 GameObject: m_ObjectHideFlags: 0 @@ -1179788,7 +1211171,7 @@ RectTransform: m_GameObject: {fileID: 1609309943} 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: 2108088664} - {fileID: 1497863482} @@ -1180661,6 +1212044,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1611057434} +--- !u!1 &1611091100 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1611091101} + - component: {fileID: 1611091103} + - component: {fileID: 1611091102} + m_Layer: 0 + m_Name: axis_x5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1611091101 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1611091100} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 869298477} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 482, y: -287} + m_SizeDelta: {x: 72, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1611091102 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1611091100} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Sat +--- !u!222 &1611091103 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1611091100} --- !u!1 &1611119472 GameObject: m_ObjectHideFlags: 0 @@ -1182133,6 +1213590,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1616048872} +--- !u!1 &1616168832 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1616168833} + - component: {fileID: 1616168835} + - component: {fileID: 1616168834} + m_Layer: 0 + m_Name: axis_y3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1616168833 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1616168832} + m_LocalRotation: {x: 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: 1730376708} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 195} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1616168834 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1616168832} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 75 +--- !u!222 &1616168835 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1616168832} --- !u!1 &1616371127 GameObject: m_ObjectHideFlags: 0 @@ -1182674,6 +1214205,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1617541860} +--- !u!1 &1617554697 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1617554698} + - component: {fileID: 1617554700} + - component: {fileID: 1617554699} + m_Layer: 0 + m_Name: axis_x6 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1617554698 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1617554697} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1934019931} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 554, y: -287} + m_SizeDelta: {x: 72, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1617554699 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1617554697} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Sun +--- !u!222 &1617554700 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1617554697} --- !u!1 &1617570183 GameObject: m_ObjectHideFlags: 0 @@ -1183069,6 +1214674,148 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1619316335 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1619316336} + - component: {fileID: 1619316338} + - component: {fileID: 1619316337} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1619316336 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1619316335} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1372552803} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1619316337 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1619316335} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1619316338 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1619316335} +--- !u!1 &1619333927 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1619333928} + - component: {fileID: 1619333930} + - component: {fileID: 1619333929} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1619333928 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1619333927} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1568290205} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1619333929 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1619333927} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1619333930 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1619333927} --- !u!1 &1619405738 GameObject: m_ObjectHideFlags: 0 @@ -1184823,7 +1216570,7 @@ RectTransform: m_GameObject: {fileID: 1624680139} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 1341658977} m_RootOrder: 1 @@ -1185072,7 +1216819,7 @@ RectTransform: m_GameObject: {fileID: 1625306770} 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: 23498925} - {fileID: 539395284} @@ -1185110,7 +1216857,7 @@ RectTransform: m_GameObject: {fileID: 1625721364} 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: 372869201} - {fileID: 438301749} @@ -1185520,6 +1217267,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 1} +--- !u!1 &1626989419 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1626989420} + - component: {fileID: 1626989422} + - component: {fileID: 1626989421} + m_Layer: 0 + m_Name: title_sub + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1626989420 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1626989419} + m_LocalRotation: {x: 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: 1688440197} + 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: 0, y: -24} + m_SizeDelta: {x: 584, y: 14} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1626989421 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1626989419} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 1 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: "\u901A\u8FC7VisualMap" +--- !u!222 &1626989422 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1626989419} --- !u!1 &1627275402 GameObject: m_ObjectHideFlags: 0 @@ -1186908,6 +1218729,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1630198838} +--- !u!1 &1630297115 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1630297116} + m_Layer: 0 + m_Name: label_0_4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1630297116 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1630297115} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1921414025} + - {fileID: 204277367} + m_Father: {fileID: 1969376537} + m_RootOrder: 18 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1630585583 GameObject: m_ObjectHideFlags: 0 @@ -1187480,6 +1219336,74 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1631596362 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1631596363} + - component: {fileID: 1631596365} + - component: {fileID: 1631596364} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1631596363 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1631596362} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1057949150} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1631596364 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1631596362} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1631596365 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1631596362} --- !u!1 &1631661042 GameObject: m_ObjectHideFlags: 0 @@ -1188840,10 +1220764,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1189130,6 +1221050,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0.63308305, g: 0.56806874, b: 0.97794116, a: 1} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0.86764705, g: 0.86764705, b: 0.86764705, a: 1} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1189183,6 +1221104,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1189280,6 +1221202,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1189334,6 +1221257,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1189419,6 +1221343,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1189473,6 +1221398,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1189558,6 +1221484,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1189612,6 +1221539,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1189697,6 +1221625,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1189751,6 +1221680,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1189836,6 +1221766,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1189890,6 +1221821,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1189975,6 +1221907,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1190029,6 +1221962,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1190114,6 +1222048,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1190168,6 +1222103,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1190253,6 +1222189,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1190307,6 +1222244,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1190758,6 +1222696,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -1190778,6 +1222717,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -1191030,7 +1222970,7 @@ RectTransform: m_GameObject: {fileID: 1635932181} 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: 1455493591} - {fileID: 640070584} @@ -1191045,6 +1222985,41 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 1} +--- !u!1 &1635946208 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1635946209} + m_Layer: 0 + m_Name: label_1_6 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1635946209 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1635946208} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 842604064} + - {fileID: 1601901487} + m_Father: {fileID: 960174449} + m_RootOrder: 27 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1635993951 GameObject: m_ObjectHideFlags: 0 @@ -1192043,6 +1224018,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1638234574} +--- !u!1 &1638602734 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1638602735} + m_Layer: 0 + m_Name: label_1_1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1638602735 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1638602734} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 934119597} + - {fileID: 217208735} + m_Father: {fileID: 960174449} + m_RootOrder: 22 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1639067552 GameObject: m_ObjectHideFlags: 0 @@ -1192820,7 +1224830,7 @@ RectTransform: m_GameObject: {fileID: 1640097153} 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: 2014428795} - {fileID: 1206020264} @@ -1193241,10 +1225251,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1193534,6 +1225540,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1193587,6 +1225594,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1193684,6 +1225692,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1193738,6 +1225747,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1193828,6 +1225838,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1193882,6 +1225893,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1193964,6 +1225976,7 @@ MonoBehaviour: m_PositionType: 0 m_IndicatorGap: 10 m_CeilRate: 0 + m_IsAxisTooltip: 0 m_IndicatorList: - m_Name: "\u9500\u552E" m_Max: 6500 @@ -1194619,6 +1226632,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1642342192} +--- !u!1 &1642373319 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1642373320} + - component: {fileID: 1642373322} + - component: {fileID: 1642373321} + m_Layer: 0 + m_Name: title_2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1642373320 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1642373319} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1507643177} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 12} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1642373321 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1642373319} + 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.38039216, g: 0.627451, b: 0.65882355, a: 1} + m_RaycastTarget: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1642373322 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1642373319} --- !u!1 &1642556374 GameObject: m_ObjectHideFlags: 0 @@ -1194784,7 +1226871,7 @@ RectTransform: m_GameObject: {fileID: 1642581337} 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: 75613577} - {fileID: 1168094860} @@ -1195691,6 +1227778,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1644112673} +--- !u!1 &1644291519 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1644291520} + m_Layer: 0 + m_Name: label_2_1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1644291520 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1644291519} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1413014008} + - {fileID: 1488325762} + m_Father: {fileID: 960174449} + m_RootOrder: 29 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1644374452 GameObject: m_ObjectHideFlags: 0 @@ -1196341,6 +1228463,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1645441515} +--- !u!1 &1645605401 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1645605402} + - component: {fileID: 1645605404} + - component: {fileID: 1645605403} + m_Layer: 0 + m_Name: axis_y_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1645605402 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1645605401} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1148222670} + m_Father: {fileID: 1417273492} + 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: 300} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1645605403 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1645605401} + 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.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374} + 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 &1645605404 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1645605401} --- !u!1 &1645781301 GameObject: m_ObjectHideFlags: 0 @@ -1196687,6 +1228878,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1646449193} +--- !u!1 &1646563339 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1646563340} + - component: {fileID: 1646563342} + - component: {fileID: 1646563341} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1646563340 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1646563339} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1504037478} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1646563341 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1646563339} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1646563342 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1646563339} --- !u!1 &1646798147 GameObject: m_ObjectHideFlags: 0 @@ -1198884,6 +1231143,74 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1653139862 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1653139863} + - component: {fileID: 1653139865} + - component: {fileID: 1653139864} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1653139863 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1653139862} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1170337933} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1653139864 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1653139862} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1653139865 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1653139862} --- !u!1 &1653308077 GameObject: m_ObjectHideFlags: 0 @@ -1201924,6 +1234251,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1661948313} +--- !u!1 &1662190219 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1662190220} + - component: {fileID: 1662190222} + - component: {fileID: 1662190221} + m_Layer: 0 + m_Name: axis_x_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1662190220 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1662190219} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 786151540} + m_Father: {fileID: 1417273492} + 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: 300} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1662190221 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1662190219} + 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.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374} + 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 &1662190222 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1662190219} --- !u!1 &1662305425 GameObject: m_ObjectHideFlags: 0 @@ -1202136,6 +1234532,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1662432906} +--- !u!1 &1662746720 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1662746721} + m_Layer: 0 + m_Name: label_2_3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1662746721 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1662746720} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 63034670} + - {fileID: 75703444} + m_Father: {fileID: 1574269530} + m_RootOrder: 31 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1662871604 GameObject: m_ObjectHideFlags: 0 @@ -1202878,7 +1235309,7 @@ RectTransform: m_GameObject: {fileID: 1664003615} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 961129094} - {fileID: 26036672} @@ -1203420,6 +1235851,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1665235388} +--- !u!1 &1665409576 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1665409577} + - component: {fileID: 1665409579} + - component: {fileID: 1665409578} + m_Layer: 0 + m_Name: axis_y24 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1665409577 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1665409576} + m_LocalRotation: {x: 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: 434931474} + 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: 562, y: 250} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1665409578 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1665409576} + 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: 0 + 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: +--- !u!222 &1665409579 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1665409576} --- !u!1 &1665470484 GameObject: m_ObjectHideFlags: 0 @@ -1203529,6 +1236034,79 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1665594591} +--- !u!1 &1665609508 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1665609509} + m_Layer: 0 + m_Name: tooltip + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1665609509 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1665609508} + m_LocalRotation: {x: -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: 167349221} + - {fileID: 91286058} + - {fileID: 413185097} + - {fileID: 1479209270} + - {fileID: 2042599803} + m_Father: {fileID: 2066464034} + 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: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} +--- !u!1 &1665899161 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1665899162} + m_Layer: 0 + m_Name: label_0_3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1665899162 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1665899161} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 579909489} + - {fileID: 1181353854} + m_Father: {fileID: 1969376537} + m_RootOrder: 17 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1665933333 GameObject: m_ObjectHideFlags: 0 @@ -1204276,7 +1236854,7 @@ RectTransform: m_GameObject: {fileID: 1667375434} 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: 1107368728} - {fileID: 463244099} @@ -1204501,6 +1237079,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1667744029} +--- !u!1 &1668466072 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1668466073} + - component: {fileID: 1668466075} + - component: {fileID: 1668466074} + m_Layer: 0 + m_Name: axis_y1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1668466073 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1668466072} + m_LocalRotation: {x: 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: 1730376708} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 85} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1668466074 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1668466072} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 25 +--- !u!222 &1668466075 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1668466072} --- !u!1 &1668522724 GameObject: m_ObjectHideFlags: 0 @@ -1205191,6 +1237843,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1669765648} +--- !u!1 &1670113950 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1670113951} + - component: {fileID: 1670113953} + - component: {fileID: 1670113952} + m_Layer: 0 + m_Name: axis_x20 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1670113951 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1670113950} + m_LocalRotation: {x: 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: 1212200373} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 150.8, y: -33} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1670113952 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1670113950} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1670113953 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1670113950} --- !u!1 &1670293374 GameObject: m_ObjectHideFlags: 0 @@ -1205978,6 +1238704,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1671814947} +--- !u!1 &1671873966 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1671873967} + - component: {fileID: 1671873969} + - component: {fileID: 1671873968} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1671873967 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1671873966} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 957407363} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1671873968 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1671873966} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1671873969 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1671873966} --- !u!1 &1671904916 GameObject: m_ObjectHideFlags: 0 @@ -1206332,6 +1239132,41 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1673074414 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1673074415} + m_Layer: 0 + m_Name: label_2_2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1673074415 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1673074414} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 956424671} + - {fileID: 975619205} + m_Father: {fileID: 960174449} + m_RootOrder: 30 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1673330290 GameObject: m_ObjectHideFlags: 0 @@ -1206911,6 +1239746,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1674745764} +--- !u!1 &1675162274 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1675162275} + m_Layer: 0 + m_Name: label_0_2_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1675162275 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1675162274} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 914807402} + - {fileID: 1796250083} + m_Father: {fileID: 1969376537} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1675222883 GameObject: m_ObjectHideFlags: 0 @@ -1207059,6 +1239929,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1675379334} +--- !u!1 &1675635360 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1675635361} + - component: {fileID: 1675635363} + - component: {fileID: 1675635362} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1675635361 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1675635360} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1562587876} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1675635362 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1675635360} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1675635363 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1675635360} --- !u!1 &1675652049 GameObject: m_ObjectHideFlags: 0 @@ -1207567,6 +1240511,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1677220532} +--- !u!1 &1677325095 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1677325096} + - component: {fileID: 1677325098} + - component: {fileID: 1677325097} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1677325096 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1677325095} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 179170839} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1677325097 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1677325095} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1677325098 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1677325095} --- !u!1 &1677503237 GameObject: m_ObjectHideFlags: 1 @@ -1208693,6 +1241711,80 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: 169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1680183603 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1680183604} + - component: {fileID: 1680183606} + - component: {fileID: 1680183605} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1680183604 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1680183603} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 683041500} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1680183605 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1680183603} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1680183606 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1680183603} --- !u!1 &1680452818 GameObject: m_ObjectHideFlags: 0 @@ -1211768,6 +1244860,80 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1687186303 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1687186304} + - component: {fileID: 1687186306} + - component: {fileID: 1687186305} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1687186304 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1687186303} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1377618222} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1687186305 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1687186303} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1687186306 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1687186303} --- !u!1 &1687676168 GameObject: m_ObjectHideFlags: 0 @@ -1211944,6 +1245110,41 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1688440196 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1688440197} + m_Layer: 0 + m_Name: title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1688440197 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1688440196} + m_LocalRotation: {x: -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: 502936423} + - {fileID: 1626989420} + m_Father: {fileID: 297285224} + 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: 0, y: -5} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0.5, y: 1} --- !u!1 &1688517869 GameObject: m_ObjectHideFlags: 0 @@ -1214435,10 +1247636,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1214725,6 +1247922,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1214778,6 +1247976,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1214875,6 +1248074,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1214929,6 +1248129,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1215014,6 +1248215,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1215068,6 +1248270,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1215153,6 +1248356,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1215207,6 +1248411,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1215292,6 +1248497,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1215346,6 +1248552,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1215431,6 +1248638,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1215485,6 +1248693,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1215933,6 +1249142,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -1215953,6 +1249163,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -1217289,10 +1250500,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1217579,6 +1250786,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1217632,6 +1250840,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1217729,6 +1250938,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1217783,6 +1250993,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1217868,6 +1251079,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1217922,6 +1251134,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1218007,6 +1251220,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1218061,6 +1251275,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1218146,6 +1251361,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1218200,6 +1251416,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1218285,6 +1251502,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1218339,6 +1251557,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1218787,6 +1252006,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -1218807,6 +1252027,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -1219499,6 +1252720,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1697797364} +--- !u!1 &1697873053 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1697873054} + - component: {fileID: 1697873056} + - component: {fileID: 1697873055} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1697873054 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1697873053} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 683041500} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1697873055 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1697873053} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1697873056 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1697873053} --- !u!1 &1697988096 GameObject: m_ObjectHideFlags: 0 @@ -1220994,6 +1254283,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1701116712 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1701116713} + - component: {fileID: 1701116715} + - component: {fileID: 1701116714} + m_Layer: 0 + m_Name: axis_y4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1701116713 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1701116712} + m_LocalRotation: {x: 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: 1730376708} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 250} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1701116714 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1701116712} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 100 +--- !u!222 &1701116715 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1701116712} --- !u!1 &1701390666 GameObject: m_ObjectHideFlags: 0 @@ -1221865,6 +1255228,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1702722928} +--- !u!1 &1702826698 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1702826699} + m_Layer: 0 + m_Name: label_0_3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1702826699 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1702826698} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 597398845} + - {fileID: 757869650} + m_Father: {fileID: 1574269530} + m_RootOrder: 17 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1703278781 GameObject: m_ObjectHideFlags: 0 @@ -1222282,6 +1255680,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1704181248} +--- !u!1 &1704300738 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1704300739} + - component: {fileID: 1704300741} + - component: {fileID: 1704300740} + m_Layer: 0 + m_Name: title_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1704300739 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1704300738} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 2129889692} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 12} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1704300740 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1704300738} + 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.7607843, g: 0.20784314, b: 0.19215687, a: 1} + m_RaycastTarget: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1704300741 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1704300738} --- !u!1 &1704669213 GameObject: m_ObjectHideFlags: 0 @@ -1226522,7 +1259994,7 @@ RectTransform: m_GameObject: {fileID: 1715806372} 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: 1842544717} - {fileID: 618274481} @@ -1228952,6 +1262424,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1722546987} +--- !u!1 &1722714138 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1722714139} + - component: {fileID: 1722714141} + - component: {fileID: 1722714140} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1722714139 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1722714138} + m_LocalRotation: {x: 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: 1479209270} + 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: 1, y: 1} +--- !u!114 &1722714140 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1722714138} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1722714141 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1722714138} --- !u!1 &1723023629 GameObject: m_ObjectHideFlags: 0 @@ -1229904,6 +1263450,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1726140548} +--- !u!1 &1726239753 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1726239754} + - component: {fileID: 1726239756} + - component: {fileID: 1726239755} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1726239754 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1726239753} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1034007321} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1726239755 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1726239753} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1726239756 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1726239753} --- !u!1 &1726484574 GameObject: m_ObjectHideFlags: 0 @@ -1230887,6 +1264507,41 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1729109234 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1729109235} + m_Layer: 0 + m_Name: label_0_1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1729109235 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1729109234} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 331280720} + - {fileID: 1015856840} + m_Father: {fileID: 1574269530} + m_RootOrder: 15 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1729269435 GameObject: m_ObjectHideFlags: 0 @@ -1231139,6 +1264794,44 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1730376707 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1730376708} + m_Layer: 0 + m_Name: axis_y + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1730376708 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1730376707} + m_LocalRotation: {x: -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: 554553190} + - {fileID: 1668466073} + - {fileID: 517676382} + - {fileID: 1616168833} + - {fileID: 1701116713} + m_Father: {fileID: 297285224} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} --- !u!1 &1730492919 GameObject: m_ObjectHideFlags: 0 @@ -1233488,10 +1267181,10 @@ RectTransform: m_Father: {fileID: 191364310} m_RootOrder: 11 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 592, y: -1524} - m_SizeDelta: {x: 584, y: 300} + 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, y: 1} --- !u!114 &1737585332 MonoBehaviour: @@ -1233506,7 +1267199,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 + m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] @@ -1233695,10 +1267388,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1233986,6 +1267675,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1234039,6 +1267729,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1234136,6 +1267827,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1234190,6 +1267882,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1234275,6 +1267968,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1234329,6 +1268023,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1234414,6 +1268109,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1234468,6 +1268164,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1234553,6 +1268250,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1234607,6 +1268305,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1234692,6 +1268391,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1234746,6 +1268446,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1234831,6 +1268532,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1234885,6 +1268587,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1234970,6 +1268673,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1235024,6 +1268728,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1235268,6 +1268973,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1235321,6 +1269027,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1235418,6 +1269125,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1235472,6 +1269180,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1235557,6 +1269266,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1235611,6 +1269321,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1235696,6 +1269407,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1235750,6 +1269462,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1235835,6 +1269548,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1235889,6 +1269603,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1235974,6 +1269689,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1236028,6 +1269744,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1236113,6 +1269830,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1236167,6 +1269885,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1236252,6 +1269971,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1236306,6 +1270026,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1236761,6 +1270482,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -1236781,6 +1270503,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -1236951,6 +1270674,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1738105804} +--- !u!1 &1738125718 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1738125719} + - component: {fileID: 1738125721} + - component: {fileID: 1738125720} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1738125719 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1738125718} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1164514050} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1738125720 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1738125718} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1738125721 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1738125718} --- !u!1 &1738216359 GameObject: m_ObjectHideFlags: 0 @@ -1237266,6 +1271057,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 &1739110649 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1739110650} + - component: {fileID: 1739110652} + - component: {fileID: 1739110651} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1739110650 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1739110649} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 2136282817} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1739110651 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1739110649} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1739110652 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1739110649} --- !u!1 &1739142796 GameObject: m_ObjectHideFlags: 0 @@ -1237517,6 +1271376,80 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 33.333336, y: 32.666664} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1740215538 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1740215539} + - component: {fileID: 1740215541} + - component: {fileID: 1740215540} + m_Layer: 0 + m_Name: axis_x21 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1740215539 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1740215538} + m_LocalRotation: {x: 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: 1212200373} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 251.6, y: -33} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1740215540 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1740215538} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1740215541 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1740215538} --- !u!1 &1740340318 GameObject: m_ObjectHideFlags: 0 @@ -1239716,6 +1273649,107 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1747023420} +--- !u!1 &1747063439 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1747063440} + - component: {fileID: 1747063442} + - component: {fileID: 1747063441} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1747063440 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1747063439} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 870488541} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1747063441 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1747063439} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1747063442 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1747063439} +--- !u!1 &1747167662 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1747167663} + m_Layer: 0 + m_Name: legend + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1747167663 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1747167662} + m_LocalRotation: {x: -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: 297285224} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} --- !u!1 &1747201463 GameObject: m_ObjectHideFlags: 0 @@ -1241931,7 +1275965,7 @@ MonoBehaviour: m_Panel: {fileID: 945062865} - m_Name: "\u6298\u7EBF\u56FE" m_Title: "\u6298\u7EBF\u56FE LineChart" - m_Selected: 0 + m_Selected: 1 m_Panel: {fileID: 191364309} - m_Name: "\u67F1\u72B6\u56FE" m_Title: "\u67F1\u72B6\u56FE BarChart" @@ -1241967,7 +1276001,7 @@ MonoBehaviour: m_Panel: {fileID: 1598106458} - m_Name: "\u6C34\u4F4D\u56FE" m_Title: "\u6C34\u4F4D\u56FE LiquidChart" - m_Selected: 1 + m_Selected: 0 m_Panel: {fileID: 935316429} - m_Name: "\u5176\u4ED6" m_Title: "\u5176\u4ED6" @@ -1243510,7 +1277544,7 @@ RectTransform: m_GameObject: {fileID: 1755615344} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 1454820128} - {fileID: 505603622} @@ -1243654,7 +1277688,7 @@ RectTransform: m_GameObject: {fileID: 1755958964} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 1364794514} m_RootOrder: 1 @@ -1244180,7 +1278214,7 @@ RectTransform: m_GameObject: {fileID: 1758533423} 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: 514386664} - {fileID: 831013493} @@ -1244635,7 +1278669,7 @@ RectTransform: m_GameObject: {fileID: 1759248993} 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: 1584870177} - {fileID: 1979009500} @@ -1246751,6 +1280785,41 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1765407045 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1765407046} + m_Layer: 0 + m_Name: label_0_5_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1765407046 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1765407045} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 244691068} + - {fileID: 1369369733} + m_Father: {fileID: 1969376537} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1765513013 GameObject: m_ObjectHideFlags: 0 @@ -1248501,6 +1282570,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1768881581} +--- !u!1 &1769092905 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1769092906} + - component: {fileID: 1769092908} + - component: {fileID: 1769092907} + m_Layer: 0 + m_Name: axis_x2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1769092906 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1769092905} + m_LocalRotation: {x: 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: 811752472} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 352.40002, y: -287} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1769092907 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1769092905} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x3 +--- !u!222 &1769092908 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1769092905} --- !u!1 &1769186368 GameObject: m_ObjectHideFlags: 0 @@ -1249394,6 +1283537,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1770377164} +--- !u!1 &1770661787 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1770661788} + - component: {fileID: 1770661790} + - component: {fileID: 1770661789} + m_Layer: 0 + m_Name: axis_x2_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1770661788 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1770661787} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 242107320} + m_Father: {fileID: 1417273492} + 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: 300} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1770661789 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1770661787} + 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.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374} + 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 &1770661790 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1770661787} --- !u!1 &1770708484 GameObject: m_ObjectHideFlags: 0 @@ -1250170,6 +1284382,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1772762425 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1772762426} + - component: {fileID: 1772762428} + - component: {fileID: 1772762427} + m_Layer: 0 + m_Name: axis_x21 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1772762426 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1772762425} + m_LocalRotation: {x: 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: 623994319} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 251.6, y: -33} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1772762427 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1772762425} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1772762428 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1772762425} --- !u!1 &1772970279 GameObject: m_ObjectHideFlags: 0 @@ -1250601,6 +1284887,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1773793721} +--- !u!1 &1774145739 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1774145740} + - component: {fileID: 1774145742} + - component: {fileID: 1774145741} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1774145740 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1774145739} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 387325686} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1774145741 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1774145739} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1774145742 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1774145739} --- !u!1 &1774391564 GameObject: m_ObjectHideFlags: 0 @@ -1251284,6 +1285638,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1775716771} +--- !u!1 &1776131345 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1776131346} + - component: {fileID: 1776131348} + - component: {fileID: 1776131347} + m_Layer: 0 + m_Name: axis_y21 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1776131346 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1776131345} + m_LocalRotation: {x: 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: 434931474} + 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: 562, y: 85} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1776131347 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1776131345} + 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: 0 + 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: +--- !u!222 &1776131348 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1776131345} --- !u!1 &1776252734 GameObject: m_ObjectHideFlags: 0 @@ -1251689,7 +1286117,7 @@ RectTransform: m_GameObject: {fileID: 1777093123} 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: 1737433942} - {fileID: 261104071} @@ -1252470,7 +1286898,7 @@ RectTransform: m_GameObject: {fileID: 1778185906} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 198615051} m_Father: {fileID: 1395806835} @@ -1253263,6 +1287691,80 @@ RectTransform: m_AnchoredPosition: {x: -194.5, y: 150} m_SizeDelta: {x: 40, y: 24} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1779966640 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1779966641} + - component: {fileID: 1779966643} + - component: {fileID: 1779966642} + m_Layer: 0 + m_Name: axis_y23 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1779966641 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1779966640} + m_LocalRotation: {x: 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: 1020874435} + 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: 562, y: 195} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1779966642 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1779966640} + 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: 0 + 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: +--- !u!222 &1779966643 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1779966640} --- !u!1 &1780089239 GameObject: m_ObjectHideFlags: 0 @@ -1257083,6 +1291585,44 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1790542135 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1790542136} + m_Layer: 0 + m_Name: axis_y + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1790542136 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1790542135} + m_LocalRotation: {x: -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: 770099476} + - {fileID: 1218821237} + - {fileID: 1056725560} + - {fileID: 1458711902} + - {fileID: 2033423018} + m_Father: {fileID: 92764070} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} --- !u!1 &1790565625 GameObject: m_ObjectHideFlags: 0 @@ -1258055,10 +1292595,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1258345,6 +1292881,7 @@ MonoBehaviour: m_Show: 1 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1258398,6 +1292935,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1258495,6 +1293033,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1258549,6 +1293088,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1258793,6 +1293333,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1258846,6 +1293387,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1258943,6 +1293485,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1258997,6 +1293540,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1259241,6 +1293785,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1259294,6 +1293839,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1259391,6 +1293937,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1259445,6 +1293992,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1259689,6 +1294237,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1259742,6 +1294291,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1259839,6 +1294389,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1259893,6 +1294444,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1260342,6 +1294894,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -1260362,6 +1294915,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -1261869,6 +1296423,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1796088405} +--- !u!1 &1796250082 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1796250083} + - component: {fileID: 1796250085} + - component: {fileID: 1796250084} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1796250083 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1796250082} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1675162275} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1796250084 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1796250082} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1796250085 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1796250082} --- !u!1 &1796283336 GameObject: m_ObjectHideFlags: 0 @@ -1262314,7 +1296936,7 @@ RectTransform: m_GameObject: {fileID: 1797981969} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 1172973087} m_RootOrder: 1 @@ -1264815,7 +1299437,7 @@ RectTransform: m_GameObject: {fileID: 1803079526} 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: 2072255941} - {fileID: 1393890053} @@ -1264923,7 +1299545,7 @@ RectTransform: m_GameObject: {fileID: 1803874201} 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: 320101541} - {fileID: 719893414} @@ -1266467,6 +1301089,39 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1808960735 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1808960736} + m_Layer: 0 + m_Name: legend + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1808960736 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1808960735} + m_LocalRotation: {x: -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: 92764070} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} --- !u!1 &1809003379 GameObject: m_ObjectHideFlags: 0 @@ -1267378,6 +1302033,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1811102984} +--- !u!1 &1811226809 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1811226810} + m_Layer: 0 + m_Name: label_1_6 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1811226810 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1811226809} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1342842465} + - {fileID: 2098095568} + m_Father: {fileID: 1969376537} + m_RootOrder: 27 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1811460610 GameObject: m_ObjectHideFlags: 0 @@ -1267991,6 +1302681,41 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1812311447 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1812311448} + m_Layer: 0 + m_Name: label_1_5_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1812311448 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1812311447} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1222715926} + - {fileID: 373920455} + m_Father: {fileID: 960174449} + m_RootOrder: 12 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1812498613 GameObject: m_ObjectHideFlags: 0 @@ -1269154,6 +1303879,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1815306779} +--- !u!1 &1815798206 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1815798207} + m_Layer: 0 + m_Name: label_2_5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1815798207 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1815798206} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 363423513} + - {fileID: 1046143567} + m_Father: {fileID: 1574269530} + m_RootOrder: 33 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1816137284 GameObject: m_ObjectHideFlags: 0 @@ -1270199,6 +1304959,44 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 1} +--- !u!1 &1819605192 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1819605193} + m_Layer: 0 + m_Name: tooltip + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1819605193 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1819605192} + m_LocalRotation: {x: -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: 497451449} + - {fileID: 1977688062} + - {fileID: 2098417499} + - {fileID: 1513382014} + - {fileID: 1918371884} + m_Father: {fileID: 92764070} + 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: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} --- !u!1 &1819648021 GameObject: m_ObjectHideFlags: 0 @@ -1271139,6 +1305937,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1821526602} +--- !u!1 &1821964794 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1821964795} + - component: {fileID: 1821964797} + - component: {fileID: 1821964796} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1821964795 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1821964794} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 109150041} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1821964796 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1821964794} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1821964797 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1821964794} --- !u!1 &1822185956 GameObject: m_ObjectHideFlags: 1 @@ -1275311,10 +1310183,10 @@ RectTransform: m_Father: {fileID: 191364310} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -308} - m_SizeDelta: {x: 584, y: 300} + 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, y: 1} --- !u!114 &1835109744 MonoBehaviour: @@ -1275329,7 +1310201,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 + m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] @@ -1275518,10 +1310390,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1275808,6 +1310676,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1275861,6 +1310730,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1275958,6 +1310828,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1276012,6 +1310883,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1276097,6 +1310969,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1276151,6 +1311024,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1276236,6 +1311110,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1276290,6 +1311165,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1276375,6 +1311251,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1276429,6 +1311306,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1276514,6 +1311392,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1276568,6 +1311447,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1276653,6 +1311533,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1276707,6 +1311588,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1276792,6 +1311674,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1276846,6 +1311729,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1277090,6 +1311974,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1277143,6 +1312028,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1277240,6 +1312126,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1277294,6 +1312181,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1277379,6 +1312267,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1277433,6 +1312322,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1277518,6 +1312408,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1277572,6 +1312463,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1277657,6 +1312549,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1277711,6 +1312604,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1277796,6 +1312690,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1277850,6 +1312745,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1277935,6 +1312831,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1277989,6 +1312886,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1278074,6 +1312972,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1278128,6 +1313027,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1278583,6 +1313483,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -1278603,6 +1313504,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -1281925,6 +1316827,80 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1845278164 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1845278165} + - component: {fileID: 1845278167} + - component: {fileID: 1845278166} + m_Layer: 0 + m_Name: datazoomend + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1845278165 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1845278164} + m_LocalRotation: {x: 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: 768249169} + 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: 300} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1845278166 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1845278164} + 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: 0 + 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: Text +--- !u!222 &1845278167 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1845278164} --- !u!1 &1845719916 GameObject: m_ObjectHideFlags: 0 @@ -1281993,6 +1316969,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1845719916} +--- !u!1 &1845826813 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1845826814} + m_Layer: 0 + m_Name: label_2_3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1845826814 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1845826813} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1153046782} + - {fileID: 180285397} + m_Father: {fileID: 1969376537} + m_RootOrder: 31 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1845841384 GameObject: m_ObjectHideFlags: 1 @@ -1283085,6 +1318096,41 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1849396350 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1849396351} + m_Layer: 0 + m_Name: label_1_2_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1849396351 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1849396350} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1274862287} + - {fileID: 340873958} + m_Father: {fileID: 1574269530} + m_RootOrder: 9 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1849398555 GameObject: m_ObjectHideFlags: 0 @@ -1283824,6 +1318870,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1851525255} +--- !u!1 &1851716328 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1851716329} + - component: {fileID: 1851716331} + - component: {fileID: 1851716330} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1851716329 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1851716328} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 969754090} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1851716330 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1851716328} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1851716331 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1851716328} --- !u!1 &1852259297 GameObject: m_ObjectHideFlags: 0 @@ -1285779,6 +1320893,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1858295575} +--- !u!1 &1858632238 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1858632239} + - component: {fileID: 1858632241} + - component: {fileID: 1858632240} + m_Layer: 0 + m_Name: axis_x21 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1858632239 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1858632238} + m_LocalRotation: {x: 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: 292644576} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 251.6, y: -33} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1858632240 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1858632238} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1858632241 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1858632238} --- !u!1 &1858672399 GameObject: m_ObjectHideFlags: 0 @@ -1285853,6 +1321041,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1858672399} +--- !u!1 &1858739375 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1858739376} + - component: {fileID: 1858739378} + - component: {fileID: 1858739377} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1858739376 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1858739375} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1311051468} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1858739377 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1858739375} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1858739378 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1858739375} --- !u!1 &1858938192 GameObject: m_ObjectHideFlags: 0 @@ -1286495,6 +1321751,80 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 155} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1861200272 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1861200273} + - component: {fileID: 1861200275} + - component: {fileID: 1861200274} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1861200273 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1861200272} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1167577191} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1861200274 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1861200272} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1861200275 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1861200272} --- !u!1 &1861275262 GameObject: m_ObjectHideFlags: 1 @@ -1286895,6 +1322225,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1861889049} +--- !u!1 &1862376152 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1862376153} + - component: {fileID: 1862376155} + - component: {fileID: 1862376154} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1862376153 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1862376152} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 589080007} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1862376154 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1862376152} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1862376155 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1862376152} --- !u!1 &1862511500 GameObject: m_ObjectHideFlags: 0 @@ -1287059,7 +1322463,7 @@ RectTransform: m_GameObject: {fileID: 1862716676} 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: 2087907962} - {fileID: 1789214600} @@ -1288035,10 +1323439,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1288329,6 +1323729,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1288382,6 +1323783,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1288479,6 +1323881,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1288533,6 +1323936,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1288618,6 +1324022,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1288672,6 +1324077,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1288757,6 +1324163,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1288811,6 +1324218,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1288896,6 +1324304,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1288950,6 +1324359,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1289035,6 +1324445,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1289089,6 +1324500,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1289174,6 +1324586,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1289228,6 +1324641,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1289313,6 +1324727,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1289367,6 +1324782,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1289452,6 +1324868,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1289506,6 +1324923,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1289591,6 +1325009,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1289645,6 +1325064,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1289730,6 +1325150,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1289784,6 +1325205,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1289869,6 +1325291,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1289923,6 +1325346,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1290170,6 +1325594,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1290223,6 +1325648,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1290320,6 +1325746,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1290374,6 +1325801,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1290460,6 +1325888,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1290514,6 +1325943,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1290600,6 +1326030,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1290654,6 +1326085,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1290740,6 +1326172,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1290794,6 +1326227,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1290880,6 +1326314,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1290934,6 +1326369,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1291020,6 +1326456,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1291074,6 +1326511,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1291160,6 +1326598,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1291214,6 +1326653,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1291300,6 +1326740,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1291354,6 +1326795,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1291440,6 +1326882,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1291494,6 +1326937,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1291580,6 +1327024,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1291634,6 +1327079,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1291720,6 +1327166,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1291774,6 +1327221,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1291860,6 +1327308,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1291914,6 +1327363,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1292000,6 +1327450,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1292054,6 +1327505,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1292498,6 +1327950,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -1292518,6 +1327971,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -1292570,6 +1328024,80 @@ RectTransform: m_AnchoredPosition: {x: -38.725388, y: 59.10285} m_SizeDelta: {x: 20, y: 19.333332} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1866275257 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1866275258} + - component: {fileID: 1866275260} + - component: {fileID: 1866275259} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1866275258 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1866275257} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1117190222} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1866275259 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1866275257} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1866275260 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1866275257} --- !u!1 &1866472704 GameObject: m_ObjectHideFlags: 0 @@ -1293258,10 +1328786,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1293548,6 +1329072,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1293601,6 +1329126,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1293698,6 +1329224,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1293752,6 +1329279,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1293837,6 +1329365,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1293891,6 +1329420,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1293976,6 +1329506,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1294030,6 +1329561,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1294115,6 +1329647,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1294169,6 +1329702,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1294254,6 +1329788,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1294308,6 +1329843,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1294552,6 +1330088,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1294605,6 +1330142,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1294702,6 +1330240,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1294756,6 +1330295,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1294841,6 +1330381,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1294895,6 +1330436,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1294980,6 +1330522,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1295034,6 +1330577,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1295119,6 +1330663,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1295173,6 +1330718,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1295258,6 +1330804,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1295312,6 +1330859,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1295760,6 +1331308,7 @@ MonoBehaviour: m_Enable: 1 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -1295780,6 +1331329,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 1 m_Location: m_JsonData: @@ -1296039,7 +1331589,7 @@ RectTransform: m_GameObject: {fileID: 1868786849} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 757753810} - {fileID: 548559358} @@ -1297307,6 +1332857,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1872190970} +--- !u!1 &1872254433 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1872254434} + - component: {fileID: 1872254436} + - component: {fileID: 1872254435} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1872254434 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1872254433} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 778595206} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1872254435 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1872254433} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1872254436 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1872254433} --- !u!1 &1872264016 GameObject: m_ObjectHideFlags: 0 @@ -1297661,6 +1333285,115 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1873034462} +--- !u!1 &1873266333 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1873266334} + m_Layer: 0 + m_Name: label_1_0_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1873266334 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1873266333} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 126087304} + - {fileID: 888523591} + m_Father: {fileID: 1574269530} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1873499413 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1873499414} + - component: {fileID: 1873499416} + - component: {fileID: 1873499415} + m_Layer: 0 + m_Name: axis_y23 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1873499414 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1873499413} + m_LocalRotation: {x: 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: 350111563} + 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: 562, y: 195} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1873499415 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1873499413} + 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: 0 + 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: +--- !u!222 &1873499416 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1873499413} --- !u!1 &1873523168 GameObject: m_ObjectHideFlags: 0 @@ -1298412,6 +1334145,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1874646100} +--- !u!1 &1874858698 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1874858699} + - component: {fileID: 1874858701} + - component: {fileID: 1874858700} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1874858699 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1874858698} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 510300489} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1874858700 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1874858698} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1874858701 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1874858698} --- !u!1 &1875033853 GameObject: m_ObjectHideFlags: 0 @@ -1299036,7 +1334837,7 @@ RectTransform: m_GameObject: {fileID: 1876165287} 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: 1373914692} - {fileID: 799270922} @@ -1301313,7 +1337114,7 @@ RectTransform: m_GameObject: {fileID: 1882617308} 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: 1923450786} m_RootOrder: 1 @@ -1302758,6 +1338559,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1887008517} +--- !u!1 &1887225876 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1887225877} + - component: {fileID: 1887225879} + - component: {fileID: 1887225878} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1887225877 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1887225876} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1434474681} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1887225878 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1887225876} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1887225879 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1887225876} --- !u!1 &1887229025 GameObject: m_ObjectHideFlags: 0 @@ -1303936,6 +1339805,18 @@ MonoBehaviour: m_Calls: [] m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - 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 &1888110917 MonoBehaviour: @@ -1304858,6 +1340739,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1891588726 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1891588727} + - component: {fileID: 1891588729} + - component: {fileID: 1891588728} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1891588727 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1891588726} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1272083834} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1891588728 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1891588726} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1891588729 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1891588726} --- !u!1 &1891611553 GameObject: m_ObjectHideFlags: 1 @@ -1305605,6 +1341560,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1893485839} +--- !u!1 &1893519935 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1893519936} + m_Layer: 0 + m_Name: label_1_1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1893519936 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1893519935} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1385289701} + - {fileID: 924011409} + m_Father: {fileID: 1574269530} + m_RootOrder: 22 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1893580698 GameObject: m_ObjectHideFlags: 0 @@ -1306529,6 +1342519,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1895416670} +--- !u!1 &1895483535 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1895483536} + - component: {fileID: 1895483538} + - component: {fileID: 1895483537} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1895483536 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1895483535} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 624054215} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1895483537 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1895483535} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1895483538 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1895483535} --- !u!1 &1895693799 GameObject: m_ObjectHideFlags: 0 @@ -1308066,6 +1344130,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1899294004} +--- !u!1 &1899320676 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1899320677} + - component: {fileID: 1899320679} + - component: {fileID: 1899320678} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1899320677 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1899320676} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 934700879} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1899320678 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1899320676} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1899320679 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1899320676} --- !u!1 &1899653624 GameObject: m_ObjectHideFlags: 0 @@ -1308420,7 +1344558,7 @@ RectTransform: m_GameObject: {fileID: 1900007368} 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: 665668938} - {fileID: 265107731} @@ -1310209,6 +1346347,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1903871703} +--- !u!1 &1903940827 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1903940828} + m_Layer: 0 + m_Name: label_1_3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1903940828 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1903940827} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 2009036186} + - {fileID: 537006886} + m_Father: {fileID: 960174449} + m_RootOrder: 24 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1904126778 GameObject: m_ObjectHideFlags: 0 @@ -1311812,6 +1347985,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1909061623} +--- !u!1 &1909335453 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1909335454} + - component: {fileID: 1909335456} + - component: {fileID: 1909335455} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1909335454 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1909335453} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1562587876} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1909335455 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1909335453} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1909335456 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1909335453} --- !u!1 &1909358341 GameObject: m_ObjectHideFlags: 0 @@ -1312020,6 +1348261,41 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1909749948 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1909749949} + m_Layer: 0 + m_Name: label_2_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1909749949 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1909749948} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 964712577} + - {fileID: 943893884} + m_Father: {fileID: 1969376537} + m_RootOrder: 28 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1910001660 GameObject: m_ObjectHideFlags: 0 @@ -1312529,10 +1348805,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1312822,6 +1349094,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1312875,6 +1349148,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1312972,6 +1349246,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1313026,6 +1349301,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1313116,6 +1349392,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1313170,6 +1349447,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1313252,6 +1349530,7 @@ MonoBehaviour: m_PositionType: 0 m_IndicatorGap: 10 m_CeilRate: 0 + m_IsAxisTooltip: 0 m_IndicatorList: - m_Name: "\u9500\u552E" m_Max: 6500 @@ -1313556,6 +1349835,74 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1911905754 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1911905755} + - component: {fileID: 1911905757} + - component: {fileID: 1911905756} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1911905755 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1911905754} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 2100206178} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1911905756 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1911905754} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1911905757 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1911905754} --- !u!1 &1911925175 GameObject: m_ObjectHideFlags: 0 @@ -1315893,6 +1352240,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1916743611} +--- !u!1 &1916793300 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1916793301} + - component: {fileID: 1916793303} + - component: {fileID: 1916793302} + m_Layer: 0 + m_Name: axis_x3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1916793301 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1916793300} + m_LocalRotation: {x: 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: 869298477} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 453.2, y: -287} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1916793302 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1916793300} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x4 +--- !u!222 &1916793303 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1916793300} --- !u!1 &1916795939 GameObject: m_ObjectHideFlags: 0 @@ -1316350,6 +1352771,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1918323672} +--- !u!1 &1918371883 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1918371884} + - component: {fileID: 1918371886} + - component: {fileID: 1918371885} + m_Layer: 0 + m_Name: axis_y2_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1918371884 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1918371883} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1047883137} + m_Father: {fileID: 1819605193} + 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: 300} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1918371885 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1918371883} + 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.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374} + 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 &1918371886 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1918371883} --- !u!1 &1918390267 GameObject: m_ObjectHideFlags: 0 @@ -1317509,6 +1353999,74 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1921414024 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1921414025} + - component: {fileID: 1921414027} + - component: {fileID: 1921414026} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1921414025 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1921414024} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1630297116} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1921414026 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1921414024} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1921414027 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1921414024} --- !u!1 &1921500053 GameObject: m_ObjectHideFlags: 0 @@ -1318053,10 +1354611,10 @@ RectTransform: m_Father: {fileID: 191364310} m_RootOrder: 14 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 1} - m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 4, y: -2132} - m_SizeDelta: {x: 584, y: 300} + 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, y: 1} --- !u!114 &1923450787 MonoBehaviour: @@ -1318071,7 +1354629,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 + m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] @@ -1318260,10 +1354818,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1318552,6 +1355106,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1318605,6 +1355160,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1318702,6 +1355258,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1318756,6 +1355313,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1318841,6 +1355399,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1318895,6 +1355454,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1318980,6 +1355540,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1319034,6 +1355595,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1319119,6 +1355681,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1319173,6 +1355736,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1319258,6 +1355822,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1319312,6 +1355877,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1319397,6 +1355963,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1319451,6 +1356018,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1319536,6 +1356104,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1319590,6 +1356159,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1319834,6 +1356404,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1319887,6 +1356458,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1319984,6 +1356556,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1320038,6 +1356611,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1320123,6 +1356697,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1320177,6 +1356752,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1320262,6 +1356838,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1320316,6 +1356893,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1320401,6 +1356979,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1320455,6 +1357034,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1320540,6 +1357120,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1320594,6 +1357175,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1320679,6 +1357261,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1320733,6 +1357316,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1320818,6 +1357402,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1320872,6 +1357457,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1321327,6 +1357913,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -1321347,6 +1357934,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -1322157,6 +1358745,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1925543915} +--- !u!1 &1925923709 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1925923710} + - component: {fileID: 1925923712} + - component: {fileID: 1925923711} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1925923710 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1925923709} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1536587590} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1925923711 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1925923709} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1925923712 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1925923709} --- !u!1 &1926157954 GameObject: m_ObjectHideFlags: 0 @@ -1322829,6 +1359485,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1927629460} +--- !u!1 &1927692690 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1927692691} + - component: {fileID: 1927692693} + - component: {fileID: 1927692692} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1927692691 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1927692690} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 282324227} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1927692692 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1927692690} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1927692693 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1927692690} --- !u!1 &1927813483 GameObject: m_ObjectHideFlags: 0 @@ -1324756,6 +1361486,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1932528805} +--- !u!1 &1932780867 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1932780868} + - component: {fileID: 1932780870} + - component: {fileID: 1932780869} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1932780868 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1932780867} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 673369356} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1932780869 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1932780867} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1932780870 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1932780867} --- !u!1 &1932978692 GameObject: m_ObjectHideFlags: 0 @@ -1325259,6 +1362057,81 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1934000865 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1934000866} + m_Layer: 0 + m_Name: label_1_4_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1934000866 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1934000865} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 767493187} + - {fileID: 1978289609} + m_Father: {fileID: 1969376537} + m_RootOrder: 11 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1934019930 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1934019931} + m_Layer: 0 + m_Name: axis_x + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1934019931 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1934019930} + m_LocalRotation: {x: -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: 932661115} + - {fileID: 958302364} + - {fileID: 355558053} + - {fileID: 975159628} + - {fileID: 2009020190} + - {fileID: 1264385011} + - {fileID: 1617554698} + m_Father: {fileID: 297285224} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} --- !u!1 &1934253739 GameObject: m_ObjectHideFlags: 0 @@ -1325353,7 +1362226,7 @@ MonoBehaviour: m_EditorClassIdentifier: m_Material: {fileID: 0} m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 + m_RaycastTarget: 1 m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] @@ -1325564,10 +1362437,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1325854,6 +1362723,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0.7201557, g: 0.8420833, b: 0.88235295, a: 0.335} m_ToColor: {r: 0.085153535, g: 0.6015167, b: 0.77205884, a: 1} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1325907,6 +1362777,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1326004,6 +1362875,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1326058,6 +1362930,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1331801,7 +1368674,7 @@ RectTransform: m_GameObject: {fileID: 1949288390} 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: 1517822304} - {fileID: 810598946} @@ -1334050,6 +1370923,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1955398484} +--- !u!1 &1955760423 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1955760424} + - component: {fileID: 1955760426} + - component: {fileID: 1955760425} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1955760424 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1955760423} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 185924443} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1955760425 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1955760423} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1955760426 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1955760423} --- !u!1 &1955767222 GameObject: m_ObjectHideFlags: 0 @@ -1338783,6 +1375730,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1968822256} +--- !u!1 &1969376536 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1969376537} + m_Layer: 0 + m_Name: label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1969376537 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1969376536} + m_LocalRotation: {x: -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: 2068651475} + - {fileID: 848795358} + - {fileID: 1675162275} + - {fileID: 957407363} + - {fileID: 1488018543} + - {fileID: 1765407046} + - {fileID: 1377618222} + - {fileID: 460529237} + - {fileID: 969754090} + - {fileID: 1504037478} + - {fileID: 624054215} + - {fileID: 1934000866} + - {fileID: 1323130069} + - {fileID: 1332649028} + - {fileID: 589080007} + - {fileID: 1167577191} + - {fileID: 1372552803} + - {fileID: 1665899162} + - {fileID: 1630297116} + - {fileID: 387325686} + - {fileID: 683041500} + - {fileID: 867650150} + - {fileID: 1434474681} + - {fileID: 1272083834} + - {fileID: 1558033565} + - {fileID: 185924443} + - {fileID: 916494243} + - {fileID: 1811226810} + - {fileID: 1909749949} + - {fileID: 1568290205} + - {fileID: 179170839} + - {fileID: 1845826814} + - {fileID: 1164514050} + - {fileID: 167300117} + - {fileID: 1089001423} + m_Father: {fileID: 2066464034} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} --- !u!1 &1969964137 GameObject: m_ObjectHideFlags: 1 @@ -1341048,7 +1378063,7 @@ RectTransform: m_GameObject: {fileID: 1976720044} 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: 1313176719} - {fileID: 1045067725} @@ -1341564,6 +1378579,110 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1977688061 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1977688062} + - component: {fileID: 1977688064} + - component: {fileID: 1977688063} + m_Layer: 0 + m_Name: axis_x_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1977688062 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1977688061} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 212840862} + m_Father: {fileID: 1819605193} + 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: 300} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1977688063 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1977688061} + 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.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374} + 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 &1977688064 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1977688061} +--- !u!1 &1977829223 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1977829224} + m_Layer: 0 + m_Name: label_0_5_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1977829224 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1977829223} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1013490585} + - {fileID: 1171642557} + m_Father: {fileID: 1574269530} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1977926976 GameObject: m_ObjectHideFlags: 0 @@ -1341786,6 +1378905,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1978196714} +--- !u!1 &1978289608 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1978289609} + - component: {fileID: 1978289611} + - component: {fileID: 1978289610} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1978289609 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1978289608} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1934000866} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1978289610 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1978289608} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1978289611 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1978289608} --- !u!1 &1978321513 GameObject: m_ObjectHideFlags: 0 @@ -1342488,7 +1379675,7 @@ RectTransform: m_GameObject: {fileID: 1979427521} 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: 1058883629} - {fileID: 979871343} @@ -1344209,6 +1381396,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 1984073381} +--- !u!1 &1984130285 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 1984130286} + - component: {fileID: 1984130288} + - component: {fileID: 1984130287} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1984130286 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1984130285} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1372552803} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1984130287 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1984130285} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &1984130288 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 1984130285} --- !u!1 &1984195182 GameObject: m_ObjectHideFlags: 0 @@ -1344547,10 +1381802,6 @@ MonoBehaviour: m_Show: 1 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1344837,6 +1382088,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1344890,6 +1382142,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1344987,6 +1382240,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1345041,6 +1382295,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1346302,10 +1383557,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1346592,6 +1383843,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1346645,6 +1383897,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1346742,6 +1383995,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1346796,6 +1384050,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1346881,6 +1384136,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1346935,6 +1384191,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1347020,6 +1384277,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1347074,6 +1384332,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1347159,6 +1384418,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1347213,6 +1384473,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1347298,6 +1384559,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1347352,6 +1384614,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1347800,6 +1385063,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -1347820,6 +1385084,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -1349030,7 +1386295,7 @@ RectTransform: m_GameObject: {fileID: 1990863362} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 1988957098} - {fileID: 1671808121} @@ -1354396,7 +1391661,7 @@ RectTransform: m_GameObject: {fileID: 2004055123} 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: 1708961089} - {fileID: 1227825901} @@ -1354479,6 +1391744,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2004373547} +--- !u!1 &2004444741 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2004444742} + - component: {fileID: 2004444744} + - component: {fileID: 2004444743} + m_Layer: 0 + m_Name: axis_x24 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &2004444742 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2004444741} + m_LocalRotation: {x: 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: 623994319} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 554, y: -33} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &2004444743 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2004444741} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &2004444744 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2004444741} --- !u!1 &2004797632 GameObject: m_ObjectHideFlags: 0 @@ -1354953,7 +1392292,7 @@ RectTransform: m_GameObject: {fileID: 2006351510} 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: 1212813932} - {fileID: 416400481} @@ -1355322,6 +1392661,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2006915252} +--- !u!1 &2007008242 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2007008243} + - component: {fileID: 2007008245} + - component: {fileID: 2007008244} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2007008243 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2007008242} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 870488541} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2007008244 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2007008242} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &2007008245 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2007008242} --- !u!1 &2007041434 GameObject: m_ObjectHideFlags: 0 @@ -1355493,7 +1392906,7 @@ RectTransform: m_GameObject: {fileID: 2007212223} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 55693841} - {fileID: 2101032586} @@ -1356604,6 +1394017,148 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2008981576} +--- !u!1 &2009020189 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2009020190} + - component: {fileID: 2009020192} + - component: {fileID: 2009020191} + m_Layer: 0 + m_Name: axis_x4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2009020190 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2009020189} + m_LocalRotation: {x: 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: 1934019931} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 554, y: -287} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &2009020191 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2009020189} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x5 +--- !u!222 &2009020192 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2009020189} +--- !u!1 &2009036185 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2009036186} + - component: {fileID: 2009036188} + - component: {fileID: 2009036187} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2009036186 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2009036185} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1903940828} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2009036187 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2009036185} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &2009036188 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2009036185} --- !u!1 &2009049188 GameObject: m_ObjectHideFlags: 0 @@ -1361056,6 +1398611,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2022635945} +--- !u!1 &2022685418 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2022685419} + - component: {fileID: 2022685421} + - component: {fileID: 2022685420} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2022685419 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2022685418} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 185924443} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2022685420 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2022685418} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &2022685421 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2022685418} --- !u!1 &2022750529 GameObject: m_ObjectHideFlags: 0 @@ -1364615,6 +1402238,80 @@ RectTransform: m_AnchoredPosition: {x: -251.08333, y: -74.14285} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &2033423017 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2033423018} + - component: {fileID: 2033423020} + - component: {fileID: 2033423019} + m_Layer: 0 + m_Name: axis_y4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2033423018 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2033423017} + m_LocalRotation: {x: 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: 1790542136} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 250} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &2033423019 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2033423017} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 90 +--- !u!222 &2033423020 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2033423017} --- !u!1 &2033451847 GameObject: m_ObjectHideFlags: 0 @@ -1366011,6 +1403708,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2035824908} +--- !u!1 &2035907001 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2035907002} + - component: {fileID: 2035907004} + - component: {fileID: 2035907003} + m_Layer: 0 + m_Name: axis_y23 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &2035907002 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2035907001} + m_LocalRotation: {x: 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: 434931474} + 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: 562, y: 195} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &2035907003 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2035907001} + 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: 0 + 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: +--- !u!222 &2035907004 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2035907001} --- !u!1 &2036072067 GameObject: m_ObjectHideFlags: 0 @@ -1369022,6 +1406793,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2042246700} +--- !u!1 &2042599802 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2042599803} + - component: {fileID: 2042599805} + - component: {fileID: 2042599804} + m_Layer: 0 + m_Name: axis_y2_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2042599803 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2042599802} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 470492848} + m_Father: {fileID: 1665609509} + 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: 300} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &2042599804 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2042599802} + 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.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374} + 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 &2042599805 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2042599802} --- !u!1 &2042658028 GameObject: m_ObjectHideFlags: 0 @@ -1370841,6 +1408681,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2046644312} +--- !u!1 &2046678786 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2046678787} + m_Layer: 0 + m_Name: label_0_6 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2046678787 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2046678786} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 652380820} + - {fileID: 1084427485} + m_Father: {fileID: 1574269530} + m_RootOrder: 20 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2047037642 GameObject: m_ObjectHideFlags: 0 @@ -1371452,6 +1409327,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2048271611} +--- !u!1 &2048545227 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2048545228} + - component: {fileID: 2048545230} + - component: {fileID: 2048545229} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2048545228 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2048545227} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1434474681} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2048545229 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2048545227} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &2048545230 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2048545227} --- !u!1 &2048683132 GameObject: m_ObjectHideFlags: 0 @@ -1372619,7 +1410568,7 @@ RectTransform: m_GameObject: {fileID: 2051846908} 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: 883296608} m_RootOrder: 1 @@ -1374492,10 +1412441,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1374787,6 +1412732,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1374840,6 +1412786,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1374937,6 +1412884,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1374991,6 +1412939,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1375239,6 +1413188,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1375292,6 +1413242,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1375389,6 +1413340,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1375443,6 +1413395,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1375533,6 +1413486,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1375587,6 +1413541,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1375837,6 +1413792,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1375890,6 +1413846,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1375987,6 +1413944,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1376041,6 +1413999,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1376136,6 +1414095,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1376190,6 +1414150,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1376279,6 +1414240,7 @@ MonoBehaviour: m_PositionType: 0 m_IndicatorGap: 10 m_CeilRate: 0 + m_IsAxisTooltip: 0 m_IndicatorList: - m_Name: "\u54C1\u724C" m_Max: 100 @@ -1376371,6 +1414333,7 @@ MonoBehaviour: m_PositionType: 0 m_IndicatorGap: 10 m_CeilRate: 0 + m_IsAxisTooltip: 0 m_IndicatorList: - m_Name: "\u5916\u89C2" m_Max: 100 @@ -1376478,6 +1414441,7 @@ MonoBehaviour: m_PositionType: 0 m_IndicatorGap: 10 m_CeilRate: 0 + m_IsAxisTooltip: 0 m_IndicatorList: - m_Name: "1\u6708" m_Max: 100 @@ -1376836,6 +1414800,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2057792363} +--- !u!1 &2057861160 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2057861161} + - component: {fileID: 2057861163} + - component: {fileID: 2057861162} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2057861161 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2057861160} + m_LocalRotation: {x: 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: 497451449} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 3, y: -3} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0, y: 1} +--- !u!114 &2057861162 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2057861160} + 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: 0 + 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: 0 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &2057861163 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2057861160} --- !u!1 &2058259768 GameObject: m_ObjectHideFlags: 0 @@ -1377436,10 +1415474,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1377738,6 +1415772,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1377791,6 +1415826,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1377888,6 +1415924,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1377942,6 +1415979,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1378027,6 +1416065,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1378081,6 +1416120,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1378166,6 +1416206,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1378220,6 +1416261,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1378469,6 +1416511,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1378522,6 +1416565,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1378619,6 +1416663,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1378673,6 +1416718,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1378758,6 +1416804,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1378812,6 +1416859,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1378897,6 +1416945,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1378951,6 +1417000,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1379036,6 +1417086,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1379090,6 +1417141,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1379175,6 +1417227,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1379229,6 +1417282,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1379314,6 +1417368,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1379368,6 +1417423,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1379453,6 +1417509,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1379507,6 +1417564,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1379592,6 +1417650,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1379646,6 +1417705,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1379964,7 +1418024,7 @@ RectTransform: m_GameObject: {fileID: 2059507565} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {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: 1812562598} m_Father: {fileID: 1364794514} @@ -1380146,6 +1418206,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2060140431} +--- !u!1 &2060236887 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2060236888} + m_Layer: 0 + m_Name: title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2060236888 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2060236887} + m_LocalRotation: {x: -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: 611857706} + - {fileID: 750167151} + m_Father: {fileID: 92764070} + 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: 0, y: -5} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0.5, y: 1} --- !u!1 &2060259141 GameObject: m_ObjectHideFlags: 0 @@ -1382193,6 +1420288,2838 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2066081812} +--- !u!1 &2066464031 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2066464034} + - component: {fileID: 2066464033} + - component: {fileID: 2066464032} + m_Layer: 5 + m_Name: linechart_gradient1 (2) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &2066464032 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2066464031} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: b4f38bd00b4648c448cabfc167538f7c, 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_DebugMode: 0 + m_ChartName: + m_ThemeInfo: + m_JsonData: + m_DataFromJson: 0 + m_Theme: 0 + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_BackgroundColor: + serializedVersion: 2 + rgba: 4294967295 + m_TitleTextColor: + serializedVersion: 2 + rgba: 4283256145 + m_TitleSubTextColor: + serializedVersion: 2 + rgba: 4283256145 + m_LegendTextColor: + serializedVersion: 2 + rgba: 4283256145 + m_LegendUnableColor: + serializedVersion: 2 + rgba: 4291611852 + m_AxisTextColor: + serializedVersion: 2 + rgba: 4283256145 + m_AxisLineColor: + serializedVersion: 2 + rgba: 4283256145 + m_AxisSplitLineColor: + serializedVersion: 2 + rgba: 542200145 + m_TooltipBackgroundColor: + serializedVersion: 2 + rgba: 3360772433 + m_TooltipFlagAreaColor: + serializedVersion: 2 + rgba: 542200145 + m_TooltipTextColor: + serializedVersion: 2 + rgba: 4294967295 + m_TooltipLabelColor: + serializedVersion: 2 + rgba: 4280887593 + m_TooltipLineColor: + serializedVersion: 2 + rgba: 1680419113 + m_DataZoomTextColor: + serializedVersion: 2 + rgba: 4283256145 + m_DataZoomLineColor: + serializedVersion: 2 + rgba: 542200145 + m_DataZoomSelectedColor: + serializedVersion: 2 + rgba: 542200145 + m_VisualMapBackgroundColor: + serializedVersion: 2 + rgba: 542200145 + m_VisualMapBorderColor: + serializedVersion: 2 + rgba: 4291611852 + m_ColorPalette: + - serializedVersion: 2 + rgba: 4281415106 + - serializedVersion: 2 + rgba: 4283712815 + - serializedVersion: 2 + rgba: 4289241185 + - serializedVersion: 2 + rgba: 4284842708 + - serializedVersion: 2 + rgba: 4289644433 + - serializedVersion: 2 + rgba: 4286816116 + - serializedVersion: 2 + rgba: 4280452810 + - serializedVersion: 2 + rgba: 4288324285 + - serializedVersion: 2 + rgba: 4285821038 + - serializedVersion: 2 + rgba: 4285556052 + - serializedVersion: 2 + rgba: 4292070596 + m_CustomFont: {fileID: 0} + m_CustomBackgroundColor: + serializedVersion: 2 + rgba: 0 + m_CustomTitleTextColor: + serializedVersion: 2 + rgba: 0 + m_CustomTitleSubTextColor: + serializedVersion: 2 + rgba: 0 + m_CustomLegendTextColor: + serializedVersion: 2 + rgba: 0 + m_CustomLegendUnableColor: + serializedVersion: 2 + rgba: 0 + m_CustomAxisTextColor: + serializedVersion: 2 + rgba: 0 + m_CustomAxisLineColor: + serializedVersion: 2 + rgba: 0 + m_CustomAxisSplitLineColor: + serializedVersion: 2 + rgba: 0 + m_CustomTooltipBackgroundColor: + serializedVersion: 2 + rgba: 0 + m_CustomTooltipFlagAreaColor: + serializedVersion: 2 + rgba: 0 + m_CustomTooltipTextColor: + serializedVersion: 2 + rgba: 0 + m_CustomTooltipLabelColor: + serializedVersion: 2 + rgba: 0 + m_CustomTooltipLineColor: + serializedVersion: 2 + rgba: 0 + m_CustomDataZoomTextColor: + serializedVersion: 2 + rgba: 0 + m_CustomDataZoomLineColor: + serializedVersion: 2 + rgba: 0 + m_CustomDataZoomSelectedColor: + serializedVersion: 2 + rgba: 0 + m_CustomVisualMapBackgroundColor: + serializedVersion: 2 + rgba: 0 + m_CustomVisualMapBorderColor: + serializedVersion: 2 + rgba: 0 + m_CustomColorPalette: + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + - serializedVersion: 2 + rgba: 0 + m_Title: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Text: "X\u8F74\u6E10\u53D8" + m_TextStyle: + m_JsonData: + m_DataFromJson: 0 + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_LineSpacing: 1 + m_SubText: "\u901A\u8FC7ItemStyle" + m_SubTextStyle: + m_JsonData: + m_DataFromJson: 0 + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_LineSpacing: 1 + m_ItemGap: 8 + m_Location: + m_JsonData: + m_DataFromJson: 0 + m_Align: 2 + m_Left: 0 + m_Right: 0 + m_Top: 5 + m_Bottom: 0 + m_Background: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Image: {fileID: 0} + m_ImageType: 1 + m_ImageColor: {r: 1, g: 1, b: 1, a: 1} + m_HideThemeBackgroundColor: 1 + m_Legend: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_SelectedMode: 0 + m_Orient: 0 + m_Location: + m_JsonData: + m_DataFromJson: 0 + m_Align: 2 + m_Left: 0 + m_Right: 0 + m_Top: 30 + m_Bottom: 0 + m_ItemWidth: 24 + m_ItemHeight: 12 + m_ItemGap: 10 + m_ItemAutoColor: 1 + m_Formatter: + m_TextStyle: + m_JsonData: + m_DataFromJson: 0 + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 2, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_LineSpacing: 1 + m_Data: [] + m_Icons: [] + m_Tooltip: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Formatter: + m_ItemFormatter: + m_TitleFormatter: + m_FixedWidth: 0 + m_FixedHeight: 0 + m_MinWidth: 0 + m_MinHeight: 0 + m_NumericFormatter: + m_PaddingLeftRight: 5 + m_PaddingTopBottom: 5 + m_IgnoreDataDefaultContent: '-' + m_AlwayShow: 0 + m_Offset: {x: 18, y: -25} + m_BackgroundImage: {fileID: 0} + m_TextStyle: + m_JsonData: + m_DataFromJson: 0 + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_LineSpacing: 1 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_Width: 0.7 + m_Opacity: 1 + m_Series: + m_JsonData: + m_DataFromJson: 0 + m_Series: + - m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Name: serie1 + m_Stack: + m_AxisIndex: 0 + m_RadarIndex: 0 + m_VesselIndex: 0 + m_MinShow: 0 + m_MaxShow: 0 + m_MaxCache: 0 + m_AreaStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Origin: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipHighlight: 0 + m_HighlightColor: {r: 0, g: 0, b: 0, a: 0} + m_HighlightToColor: {r: 0, g: 0, b: 0, a: 0} + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Type: 0 + m_SizeType: 0 + m_Size: 2.5 + m_SelectedSize: 5 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_SampleDist: 0 + m_SampleType: 1 + m_SampleAverage: 0 + m_LineType: 1 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_Width: 0.8 + m_Opacity: 1 + m_BarType: 0 + m_BarPercentStack: 0 + m_BarWidth: 0.6 + m_BarGap: 0.3 + m_BarCategoryGap: 0.2 + m_BarZebraWidth: 4 + m_BarZebraGap: 2 + m_Min: 0 + m_Max: 0 + m_StartAngle: 0 + m_EndAngle: 0 + m_Clockwise: 1 + m_RoundCap: 0 + m_RingGap: 10 + m_SplitNumber: 0 + m_GaugeType: 0 + m_GaugeAxis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_AxisLine: + m_Show: 1 + m_Width: 15 + m_Opacity: 1 + m_BarColor: {r: 0, g: 0, b: 0, a: 0} + m_BarBackgroundColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_StageColor: + - m_Percent: 0.2 + m_Color: {r: 0.5686275, g: 0.78039217, b: 0.68235296, a: 1} + - m_Percent: 0.8 + m_Color: {r: 0.3882353, g: 0.5254902, b: 0.61960787, a: 1} + - m_Percent: 1 + m_Color: {r: 0.7607843, g: 0.20784314, b: 0.19215687, a: 1} + m_SplitLine: + m_Show: 1 + m_Length: 15 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_Width: 1.5 + m_Opacity: 1 + m_AxisTick: + m_Show: 1 + m_Length: 5 + m_SplitNumber: 5 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_Width: 1 + m_Opacity: 1 + m_AxisLabel: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_AxisLabelText: [] + runtimeStageAngle: [] + runtimeLabelPosition: [] + m_GaugePointer: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Length: 0.8 + m_Width: 15 + m_ClickOffset: 1 + m_RoseType: 0 + m_Space: 0 + m_Center: + - 0.5 + - 0.5 + m_Radius: + - 0 + - 80 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_Animation: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 1 + m_Easting: 0 + m_Threshold: 2000 + m_FadeInDuration: 1000 + m_FadeInDelay: 0 + m_FadeOutDuration: 1000 + m_FadeOutDelay: 0 + m_DataChangeEnable: 1 + m_DataChangeDuration: 500 + m_ActualDuration: 0 + m_CurrDetailProgress: 100.4 + m_DestDetailProgress: 503.6 + m_LineArrow: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Width: 10 + m_Height: 15 + m_Offset: 0 + m_Dent: 3 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0.12795076, g: 0.06179715, b: 0.9338235, a: 1} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_TitleStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_TextStyle: + m_JsonData: + m_DataFromJson: 0 + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_LineSpacing: 1 + m_ShowDataDimension: 1 + m_ShowDataName: 0 + m_ShowDataIcon: 0 + m_Clip: 0 + m_Ignore: 0 + m_IgnoreValue: 0 + m_ShowAsPositiveNumber: 0 + m_Large: 1 + m_LargeThreshold: 200 + m_AvoidLabelOverlap: 0 + m_WaveHeight: 10 + m_WaveLength: 20 + m_WaveSpeed: 5 + m_WaveOffset: 0 + m_RadarType: 0 + m_Data: + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 6 + m_SelectedSize: 10 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 0 + - 66 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 6 + m_SelectedSize: 10 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 1 + - 77 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 6 + m_SelectedSize: 10 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 2 + - 66 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 6 + m_SelectedSize: 10 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 3 + - 77 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 6 + m_SelectedSize: 10 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 4 + - 66 + - m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Name: serie1 + m_Stack: + m_AxisIndex: 0 + m_RadarIndex: 0 + m_VesselIndex: 0 + m_MinShow: 0 + m_MaxShow: 0 + m_MaxCache: 0 + m_AreaStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Origin: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipHighlight: 0 + m_HighlightColor: {r: 0, g: 0, b: 0, a: 0} + m_HighlightToColor: {r: 0, g: 0, b: 0, a: 0} + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Type: 0 + m_SizeType: 0 + m_Size: 2.5 + m_SelectedSize: 5 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_SampleDist: 0 + m_SampleType: 1 + m_SampleAverage: 0 + m_LineType: 1 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_Width: 0.8 + m_Opacity: 1 + m_BarType: 0 + m_BarPercentStack: 0 + m_BarWidth: 0.6 + m_BarGap: 0.3 + m_BarCategoryGap: 0.2 + m_BarZebraWidth: 4 + m_BarZebraGap: 2 + m_Min: 0 + m_Max: 0 + m_StartAngle: 0 + m_EndAngle: 0 + m_Clockwise: 1 + m_RoundCap: 0 + m_RingGap: 10 + m_SplitNumber: 0 + m_GaugeType: 0 + m_GaugeAxis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_AxisLine: + m_Show: 1 + m_Width: 15 + m_Opacity: 1 + m_BarColor: {r: 0, g: 0, b: 0, a: 0} + m_BarBackgroundColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_StageColor: + - m_Percent: 0.2 + m_Color: {r: 0.5686275, g: 0.78039217, b: 0.68235296, a: 1} + - m_Percent: 0.8 + m_Color: {r: 0.3882353, g: 0.5254902, b: 0.61960787, a: 1} + - m_Percent: 1 + m_Color: {r: 0.7607843, g: 0.20784314, b: 0.19215687, a: 1} + m_SplitLine: + m_Show: 1 + m_Length: 15 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_Width: 1.5 + m_Opacity: 1 + m_AxisTick: + m_Show: 1 + m_Length: 5 + m_SplitNumber: 5 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_Width: 1 + m_Opacity: 1 + m_AxisLabel: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_AxisLabelText: [] + runtimeStageAngle: [] + runtimeLabelPosition: [] + m_GaugePointer: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Length: 0.8 + m_Width: 15 + m_ClickOffset: 1 + m_RoseType: 0 + m_Space: 0 + m_Center: + - 0.5 + - 0.5 + m_Radius: + - 0 + - 80 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_Animation: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 1 + m_Easting: 0 + m_Threshold: 2000 + m_FadeInDuration: 1000 + m_FadeInDelay: 0 + m_FadeOutDuration: 1000 + m_FadeOutDelay: 0 + m_DataChangeEnable: 1 + m_DataChangeDuration: 500 + m_ActualDuration: 0 + m_CurrDetailProgress: 100.4 + m_DestDetailProgress: 503.6 + m_LineArrow: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Width: 10 + m_Height: 15 + m_Offset: 0 + m_Dent: 3 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0.13170417, g: 0.85294116, b: 0.70371974, a: 1} + m_ToColor: {r: 0.94482756, g: 1, b: 0, a: 1} + m_ToColor2: {r: 0.07586192, g: 0, b: 1, a: 1} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_TitleStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_TextStyle: + m_JsonData: + m_DataFromJson: 0 + m_Font: {fileID: 0} + m_Rotate: 0 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_LineSpacing: 1 + m_ShowDataDimension: 1 + m_ShowDataName: 0 + m_ShowDataIcon: 0 + m_Clip: 0 + m_Ignore: 0 + m_IgnoreValue: 0 + m_ShowAsPositiveNumber: 0 + m_Large: 1 + m_LargeThreshold: 200 + m_AvoidLabelOverlap: 0 + m_WaveHeight: 10 + m_WaveLength: 20 + m_WaveSpeed: 5 + m_WaveOffset: 0 + m_RadarType: 0 + m_Data: + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 6 + m_SelectedSize: 10 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 0 + - 77 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 6 + m_SelectedSize: 10 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 1 + - 66 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 6 + m_SelectedSize: 10 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 2 + - 77 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 6 + m_SelectedSize: 10 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 3 + - 66 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_IconStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Layer: 0 + m_Sprite: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_Width: 40 + m_Height: 40 + m_Offset: {x: 0, y: 0, z: 0} + m_EnableLabel: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_EnableItemStyle: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableEmphasis: 0 + m_Emphasis: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Label: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Position: 0 + m_Offset: {x: 0, y: 0, z: 0} + m_Margin: 0 + m_Formatter: + m_Rotate: 0 + m_PaddingLeftRight: 2 + m_PaddingTopBottom: 2 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_BackgroundHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_Line: 1 + m_LineType: 0 + m_LineColor: {r: 0, g: 0, b: 0, a: 0} + m_LineWidth: 1 + m_LineLength1: 25 + m_LineLength2: 15 + m_Border: 0 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_NumericFormatter: + m_AutoOffset: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_BackgroundWidth: 0 + m_CenterColor: {r: 0, g: 0, b: 0, a: 0} + m_CenterGap: 0 + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_TooltipFormatter: + m_NumericFormatter: + m_CornerRadius: + - 0 + - 0 + - 0 + - 0 + m_EnableSymbol: 0 + m_Symbol: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_SizeType: 0 + m_Size: 6 + m_SelectedSize: 10 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_Gap: 0 + m_Data: + - 4 + - 77 + m_Settings: + m_JsonData: + m_DataFromJson: 0 + m_LineSmoothStyle: 3 + m_LineSmoothness: 2 + m_LineSegmentDistance: 3 + m_CicleSmoothness: 2 + m_VisualMapTriangeLen: 20 + m_PieTooltipExtraRadius: 8 + m_PieSelectedOffset: 8 + m_Grid: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Left: 50 + m_Right: 30 + m_Top: 50 + m_Bottom: 30 + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_XAxises: + - m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 1 + m_MinMaxType: 0 + m_Min: 0 + m_Max: 0 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 1 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: + - x1 + - x2 + - x3 + - x4 + - x5 + m_AxisLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_OnZero: 1 + m_Width: 0.7 + m_Symbol: 0 + m_SymbolWidth: 10 + m_SymbolHeight: 15 + m_SymbolOffset: -5 + m_SymbolDent: 3 + m_AxisName: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_Offset: {x: 0, y: 0} + m_Rotate: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_AxisTick: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_Length: 5 + m_Width: 0 + m_AxisLabel: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Rotate: 0 + m_Margin: 8 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 1 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: '...' + m_SplitLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Interval: 0 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 1 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_Width: 0.7 + m_Opacity: 1 + m_SplitArea: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: + - {r: 0.98039216, g: 0.98039216, b: 0.98039216, a: 0.3019608} + - {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.3019608} + - m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Type: 1 + m_MinMaxType: 0 + m_Min: 0 + m_Max: 0 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 1 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: [] + m_AxisLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_OnZero: 1 + m_Width: 0.7 + m_Symbol: 0 + m_SymbolWidth: 10 + m_SymbolHeight: 15 + m_SymbolOffset: -5 + m_SymbolDent: 3 + m_AxisName: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_Offset: {x: 0, y: 0} + m_Rotate: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_AxisTick: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_Length: 5 + m_Width: 0 + m_AxisLabel: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Rotate: 0 + m_Margin: 8 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 1 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: '...' + m_SplitLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Interval: 0 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 1 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_Width: 0.7 + m_Opacity: 1 + m_SplitArea: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: + - {r: 0.98039216, g: 0.98039216, b: 0.98039216, a: 0.3019608} + - {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.3019608} + m_YAxises: + - m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_MinMaxType: 2 + m_Min: 0 + m_Max: 100 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 0 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: [] + m_AxisLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_OnZero: 1 + m_Width: 0.7 + m_Symbol: 0 + m_SymbolWidth: 10 + m_SymbolHeight: 15 + m_SymbolOffset: -5 + m_SymbolDent: 3 + m_AxisName: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_Offset: {x: 0, y: 0} + m_Rotate: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_AxisTick: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_Length: 5 + m_Width: 0 + m_AxisLabel: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Rotate: 0 + m_Margin: 8 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 0 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: '...' + m_SplitLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Interval: 0 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 1 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_Width: 0.7 + m_Opacity: 1 + m_SplitArea: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: + - {r: 0.98039216, g: 0.98039216, b: 0.98039216, a: 0.3019608} + - {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.3019608} + - m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Type: 0 + m_MinMaxType: 0 + m_Min: 0 + m_Max: 0 + m_SplitNumber: 5 + m_Interval: 0 + m_BoundaryGap: 0 + m_MaxCache: 0 + m_LogBase: 10 + m_LogBaseE: 0 + m_CeilRate: 0 + m_Inverse: 0 + m_Clockwise: 1 + m_Data: [] + m_AxisLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_OnZero: 1 + m_Width: 0.7 + m_Symbol: 0 + m_SymbolWidth: 10 + m_SymbolHeight: 15 + m_SymbolOffset: -5 + m_SymbolDent: 3 + m_AxisName: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Name: axisName + m_Location: 2 + m_Offset: {x: 0, y: 0} + m_Rotate: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_AxisTick: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_AlignWithLabel: 0 + m_Inside: 0 + m_Length: 5 + m_Width: 0 + m_AxisLabel: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Formatter: + m_Interval: 0 + m_Inside: 0 + m_Rotate: 0 + m_Margin: 8 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_NumericFormatter: + m_ShowAsPositiveNumber: 0 + m_OnZero: 0 + m_TextLimit: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 0 + m_MaxWidth: 0 + m_Gap: 1 + m_Suffix: '...' + m_SplitLine: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Interval: 0 + m_LineStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 1 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_Width: 0.7 + m_Opacity: 1 + m_SplitArea: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: + - {r: 0.98039216, g: 0.98039216, b: 0.98039216, a: 0.3019608} + - {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.3019608} + m_DataZoom: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 0 + m_FilterMode: 3 + m_XAxisIndex: 0 + m_YAxisIndex: 0 + m_SupportInside: 0 + m_SupportSlider: 0 + m_SupportSelect: 0 + m_ShowDataShadow: 1 + m_ShowDetail: 0 + m_ZoomLock: 0 + m_Realtime: 0 + m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} + m_Height: 0 + m_Bottom: 10 + m_RangeMode: 0 + m_Start: 30 + m_End: 70 + m_StartValue: 0 + m_EndValue: 0 + m_MinShowNum: 1 + m_ScrollSensitivity: 10 + m_FontSize: 18 + m_FontStyle: 0 + m_VisualMap: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 0 + m_Show: 0 + m_Type: 0 + m_Direction: 1 + m_SelectedMode: 0 + m_Min: 0 + m_Max: 5 + m_Range: + - 0 + - 100 + m_Text: + - + - + m_TextGap: + - 10 + - 10 + m_SplitNumber: 5 + m_Calculable: 0 + m_Realtime: 1 + m_ItemWidth: 20 + m_ItemHeight: 140 + m_BorderWidth: 0 + m_Dimension: -1 + m_HoverLink: 1 + m_AutoMinMax: 1 + m_Orient: 0 + m_Location: + m_JsonData: + m_DataFromJson: 0 + m_Align: 7 + m_Left: 5 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_InRange: + - {r: 0, g: 0, b: 1, a: 1} + - {r: 1, g: 0, b: 0, a: 1} + m_OutOfRange: [] +--- !u!222 &2066464033 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2066464031} +--- !u!224 &2066464034 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2066464031} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0.99996465, y: 0.99996465, z: 0.99996465} + m_Children: + - {fileID: 689814814} + - {fileID: 1294467025} + - {fileID: 2102306885} + - {fileID: 869298477} + - {fileID: 623994319} + - {fileID: 1216071423} + - {fileID: 350111563} + - {fileID: 1969376537} + - {fileID: 1507643177} + - {fileID: 1665609509} + m_Father: {fileID: 191364310} + m_RootOrder: 17 + 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, y: 1} --- !u!1 &2066493051 GameObject: m_ObjectHideFlags: 0 @@ -1382410,6 +1423337,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2067005585} +--- !u!1 &2067085226 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2067085227} + - component: {fileID: 2067085229} + - component: {fileID: 2067085228} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2067085227 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2067085226} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 944017770} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2067085228 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2067085226} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &2067085229 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2067085226} --- !u!1 &2067110905 GameObject: m_ObjectHideFlags: 0 @@ -1383271,6 +1424266,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2068448181} +--- !u!1 &2068651474 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2068651475} + m_Layer: 0 + m_Name: label_0_0_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2068651475 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2068651474} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1536477418} + - {fileID: 377368528} + m_Father: {fileID: 1969376537} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: -150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2068678333 GameObject: m_ObjectHideFlags: 0 @@ -1384352,10 +1425382,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1384636,6 +1425662,7 @@ MonoBehaviour: m_Show: 1 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1384689,6 +1425716,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1384786,6 +1425814,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1384840,6 +1425869,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1385642,6 +1426672,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2072255940} +--- !u!1 &2072263949 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2072263950} + - component: {fileID: 2072263952} + - component: {fileID: 2072263951} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2072263950 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2072263949} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1488018543} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2072263951 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2072263949} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &2072263952 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2072263949} --- !u!1 &2072294156 GameObject: m_ObjectHideFlags: 0 @@ -1386386,6 +1427490,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2073470124} +--- !u!1 &2073593008 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2073593009} + - component: {fileID: 2073593011} + - component: {fileID: 2073593010} + m_Layer: 0 + m_Name: axis_y2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2073593009 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2073593008} + m_LocalRotation: {x: 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: 1216071423} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 42, y: 140} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &2073593010 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2073593008} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 50 +--- !u!222 &2073593011 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2073593008} --- !u!1 &2073660762 GameObject: m_ObjectHideFlags: 0 @@ -1389043,6 +1430221,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2082052932} +--- !u!1 &2082174655 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2082174656} + - component: {fileID: 2082174658} + - component: {fileID: 2082174657} + m_Layer: 0 + m_Name: axis_y22 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &2082174656 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2082174655} + m_LocalRotation: {x: 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: 350111563} + 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: 562, y: 140} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &2082174657 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2082174655} + 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: 0 + 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: +--- !u!222 &2082174658 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2082174655} --- !u!1 &2082388268 GameObject: m_ObjectHideFlags: 0 @@ -1390384,6 +1431636,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &2085282375 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2085282376} + - component: {fileID: 2085282378} + - component: {fileID: 2085282377} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2085282376 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2085282375} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1552353045} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2085282377 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2085282375} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &2085282378 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2085282375} --- !u!1 &2085347797 GameObject: m_ObjectHideFlags: 0 @@ -1390989,7 +1432315,7 @@ RectTransform: m_GameObject: {fileID: 2086095657} 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: 374234539} - {fileID: 219953558} @@ -1391351,10 +1432677,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1391649,6 +1432971,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1391702,6 +1433025,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1391799,6 +1433123,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1391853,6 +1433178,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1391938,6 +1433264,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1391992,6 +1433319,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1392077,6 +1433405,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1392131,6 +1433460,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1392216,6 +1433546,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1392270,6 +1433601,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1392355,6 +1433687,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1392409,6 +1433742,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1394742,6 +1436076,74 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &2091982209 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2091982210} + - component: {fileID: 2091982212} + - component: {fileID: 2091982211} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2091982210 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2091982209} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 589080007} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2091982211 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2091982209} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &2091982212 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2091982209} --- !u!1 &2092252176 GameObject: m_ObjectHideFlags: 0 @@ -1395984,7 +1437386,7 @@ RectTransform: m_GameObject: {fileID: 2097019615} 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: 729072095} - {fileID: 1913183259} @@ -1396384,6 +1437786,149 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &2098095567 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2098095568} + - component: {fileID: 2098095570} + - component: {fileID: 2098095569} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2098095568 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2098095567} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1811226810} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2098095569 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2098095567} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &2098095570 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2098095567} +--- !u!1 &2098417498 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2098417499} + - component: {fileID: 2098417501} + - component: {fileID: 2098417500} + m_Layer: 0 + m_Name: axis_x2_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2098417499 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2098417498} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1337462743} + m_Father: {fileID: 1819605193} + 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: 300} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &2098417500 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2098417498} + 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.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374} + 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 &2098417501 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2098417498} --- !u!1 &2098515663 GameObject: m_ObjectHideFlags: 0 @@ -1396968,6 +1438513,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2100054911} +--- !u!1 &2100206177 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2100206178} + m_Layer: 0 + m_Name: label_0_5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2100206178 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2100206177} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1911905755} + - {fileID: 1372179100} + m_Father: {fileID: 960174449} + m_RootOrder: 19 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2100478825 GameObject: m_ObjectHideFlags: 0 @@ -1397648,6 +1439228,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2102222823} +--- !u!1 &2102306884 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2102306885} + m_Layer: 0 + m_Name: datazoom + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2102306885 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2102306884} + m_LocalRotation: {x: -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: 659281392} + - {fileID: 1518987260} + m_Father: {fileID: 2066464034} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} --- !u!1 &2102344700 GameObject: m_ObjectHideFlags: 0 @@ -1398969,6 +1440584,74 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2104307798} +--- !u!1 &2104660040 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2104660041} + - component: {fileID: 2104660043} + - component: {fileID: 2104660042} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2104660041 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2104660040} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1464084637} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2104660042 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2104660040} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &2104660043 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2104660040} --- !u!1 &2104732749 GameObject: m_ObjectHideFlags: 0 @@ -1401262,6 +1442945,75 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2113064568} +--- !u!1 &2113097239 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2113097240} + - component: {fileID: 2113097242} + - component: {fileID: 2113097241} + m_Layer: 0 + m_Name: axis_y2_label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2113097240 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2113097239} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1145375319} + m_Father: {fileID: 1417273492} + 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: 300} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &2113097241 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2113097239} + 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.31764707, g: 0.31764707, b: 0.31764707, a: 0.78431374} + 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 &2113097242 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2113097239} --- !u!1 &2113156663 GameObject: m_ObjectHideFlags: 0 @@ -1402541,6 +1444293,154 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2115295719} +--- !u!1 &2115372854 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2115372855} + - component: {fileID: 2115372857} + - component: {fileID: 2115372856} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2115372855 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2115372854} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1057578491} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2115372856 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2115372854} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &2115372857 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2115372854} +--- !u!1 &2115649164 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2115649165} + - component: {fileID: 2115649167} + - component: {fileID: 2115649166} + m_Layer: 0 + m_Name: axis_y21 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &2115649165 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2115649164} + m_LocalRotation: {x: 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: 1020874435} + 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: 562, y: 85} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &2115649166 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2115649164} + 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: 0 + 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: +--- !u!222 &2115649167 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2115649164} --- !u!1 &2115821940 GameObject: m_ObjectHideFlags: 0 @@ -1404930,6 +1446830,74 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} m_Pivot: {x: 0, y: 1} +--- !u!1 &2120508908 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2120508909} + - component: {fileID: 2120508911} + - component: {fileID: 2120508910} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2120508909 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2120508908} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 957407363} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2120508910 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2120508908} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &2120508911 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2120508908} --- !u!1 &2120987316 GameObject: m_ObjectHideFlags: 0 @@ -1405164,7 +1447132,7 @@ RectTransform: m_GameObject: {fileID: 2121475230} 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: 1327682483} - {fileID: 2116142972} @@ -1408547,6 +1450515,18 @@ MonoBehaviour: m_Calls: [] m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - 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 &2129811974 MonoBehaviour: @@ -1408622,6 +1450602,184 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2129811971} +--- !u!1 &2129889691 +GameObject: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2129889692} + m_Layer: 0 + m_Name: serie + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2129889692 +RectTransform: + m_ObjectHideFlags: 1 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2129889691} + m_LocalRotation: {x: -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: 1704300739} + - {fileID: 1415030071} + - {fileID: 797288398} + m_Father: {fileID: 297285224} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 584, y: 300} + m_Pivot: {x: 0, y: 1} +--- !u!1 &2129928393 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2129928394} + - component: {fileID: 2129928396} + - component: {fileID: 2129928395} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2129928394 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2129928393} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 132880768} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 40, y: 40} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2129928395 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2129928393} + 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: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 +--- !u!222 &2129928396 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2129928393} +--- !u!1 &2129952571 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2129952572} + - component: {fileID: 2129952574} + - component: {fileID: 2129952573} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2129952572 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2129952571} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 517451581} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2129952573 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2129952571} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &2129952574 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2129952571} --- !u!1 &2129986683 GameObject: m_ObjectHideFlags: 0 @@ -1409402,10 +1451560,6 @@ MonoBehaviour: m_Show: 0 m_Image: {fileID: 0} m_ImageType: 1 - m_Left: 0 - m_Right: 0 - m_Top: 0 - m_Bottom: 0 m_ImageColor: {r: 1, g: 1, b: 1, a: 1} m_HideThemeBackgroundColor: 1 m_Legend: @@ -1409694,6 +1451848,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 1, g: 1, b: 1, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1409747,6 +1451902,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1409844,6 +1452000,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1409898,6 +1452055,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1409983,6 +1452141,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1410037,6 +1452196,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1410122,6 +1452282,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1410176,6 +1452337,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1410261,6 +1452423,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1410315,6 +1452478,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1410400,6 +1452564,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1410454,6 +1452619,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1410539,6 +1452705,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1410593,6 +1452760,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1410837,6 +1453005,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1410890,6 +1453059,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1410987,6 +1453157,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1411041,6 +1453212,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1411126,6 +1453298,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1411180,6 +1453353,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1411265,6 +1453439,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1411319,6 +1453494,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1411404,6 +1453580,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1411458,6 +1453635,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1411543,6 +1453721,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1411597,6 +1453776,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1411682,6 +1453862,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1411736,6 +1453917,7 @@ MonoBehaviour: m_Show: 0 m_Color: {r: 0, g: 0, b: 0, a: 0} m_ToColor: {r: 0, g: 0, b: 0, a: 0} + m_ToColor2: {r: 0, g: 0, b: 0, a: 0} m_BackgroundColor: {r: 0, g: 0, b: 0, a: 0} m_BackgroundWidth: 0 m_CenterColor: {r: 0, g: 0, b: 0, a: 0} @@ -1412190,6 +1454372,7 @@ MonoBehaviour: m_Enable: 0 m_Show: 1 m_Type: 0 + m_Direction: 0 m_SelectedMode: 0 m_Min: 0 m_Max: 100 @@ -1412210,6 +1454393,7 @@ MonoBehaviour: m_BorderWidth: 0 m_Dimension: 0 m_HoverLink: 1 + m_AutoMinMax: 1 m_Orient: 0 m_Location: m_JsonData: @@ -1413252,7 +1455436,7 @@ RectTransform: m_GameObject: {fileID: 2134059883} 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: 202387707} - {fileID: 1792033401} @@ -1413866,6 +1456050,41 @@ RectTransform: m_AnchoredPosition: {x: -292, y: 150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &2136282816 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2136282817} + m_Layer: 0 + m_Name: label_1_2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2136282817 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2136282816} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 1739110650} + - {fileID: 541636092} + m_Father: {fileID: 1574269530} + m_RootOrder: 23 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2136326899 GameObject: m_ObjectHideFlags: 0 @@ -1414175,7 +1456394,7 @@ RectTransform: m_GameObject: {fileID: 2137148198} 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: 1998723374} - {fileID: 1958101921} @@ -1414762,6 +1456981,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &2138240372 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2138240373} + - component: {fileID: 2138240375} + - component: {fileID: 2138240374} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2138240373 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2138240372} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 167300117} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2138240374 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2138240372} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &2138240375 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2138240372} --- !u!1 &2138250203 GameObject: m_ObjectHideFlags: 0 @@ -1416300,6 +1458593,41 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2141954797} +--- !u!1 &2141965503 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2141965504} + m_Layer: 0 + m_Name: label_1_5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2141965504 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2141965503} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: + - {fileID: 93910006} + - {fileID: 49903208} + m_Father: {fileID: 960174449} + m_RootOrder: 26 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -292, y: 150} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2142021969 GameObject: m_ObjectHideFlags: 0 @@ -1416860,6 +1459188,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2142938022} +--- !u!1 &2143148973 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2143148974} + - component: {fileID: 2143148976} + - component: {fileID: 2143148975} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2143148974 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2143148973} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 0, y: 0, z: 0} + m_Children: [] + m_Father: {fileID: 1504037478} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 4, y: 19.340363} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2143148975 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2143148973} + 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.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_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 14 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &2143148976 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2143148973} --- !u!1 &2143150003 GameObject: m_ObjectHideFlags: 0 @@ -1418297,6 +1460699,80 @@ CanvasRenderer: m_PrefabParentObject: {fileID: 0} m_PrefabInternal: {fileID: 0} m_GameObject: {fileID: 2146328977} +--- !u!1 &2146451471 +GameObject: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + serializedVersion: 5 + m_Component: + - component: {fileID: 2146451472} + - component: {fileID: 2146451474} + - component: {fileID: 2146451473} + m_Layer: 0 + m_Name: axis_x22 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &2146451472 +RectTransform: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2146451471} + m_LocalRotation: {x: 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: 623994319} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 352.40002, y: -33} + m_SizeDelta: {x: 100.8, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &2146451473 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2146451471} + 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: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &2146451474 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_PrefabParentObject: {fileID: 0} + m_PrefabInternal: {fileID: 0} + m_GameObject: {fileID: 2146451471} --- !u!1 &2146476317 GameObject: m_ObjectHideFlags: 0 @@ -1418573,7 +1461049,7 @@ RectTransform: m_GameObject: {fileID: 2147001444} 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: 854745207} - {fileID: 1418839648}