From e58fb2b31f55152f66b3e53245709ac13de9599d Mon Sep 17 00:00:00 2001 From: Jacob Rapoport Date: Sat, 26 Oct 2019 17:36:12 -0700 Subject: [PATCH 01/27] add UpdateThemeInfo API --- Assets/XCharts/Runtime/API/BaseChart_API.cs | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Assets/XCharts/Runtime/API/BaseChart_API.cs b/Assets/XCharts/Runtime/API/BaseChart_API.cs index 6ece0e4f..d9f2af90 100644 --- a/Assets/XCharts/Runtime/API/BaseChart_API.cs +++ b/Assets/XCharts/Runtime/API/BaseChart_API.cs @@ -416,6 +416,17 @@ namespace XCharts RefreshChart(); } + /// + /// Update chart theme info. + /// + /// info + public void UpdateThemeInfo(ThemeInfo info) + { + m_ThemeInfo = info; + UpdateTheme(m_ThemeInfo.theme); + } + + /// /// Whether series animation enabel. /// 启用或关闭起始动画。 From e01c55c3ca0b11db5308ae0b506e4c46ffd5a86a Mon Sep 17 00:00:00 2001 From: Jacob Rapoport Date: Sat, 26 Oct 2019 17:46:47 -0700 Subject: [PATCH 02/27] add themeInfo property --- Assets/XCharts/Runtime/API/BaseChart_API.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Assets/XCharts/Runtime/API/BaseChart_API.cs b/Assets/XCharts/Runtime/API/BaseChart_API.cs index d9f2af90..4c54f6f8 100644 --- a/Assets/XCharts/Runtime/API/BaseChart_API.cs +++ b/Assets/XCharts/Runtime/API/BaseChart_API.cs @@ -18,6 +18,10 @@ namespace XCharts /// public partial class BaseChart { + /// + /// The theme info. + /// + public ThemeInfo themeInfo { get { return m_ThemeInfo; } } /// /// The title setting of chart. /// 标题组件 From 773cfe6c7d9c7129efbd7bf6c85dd4644b33e62d Mon Sep 17 00:00:00 2001 From: Jacob Rapoport Date: Sun, 27 Oct 2019 09:05:50 -0700 Subject: [PATCH 03/27] fix destroying a gameobject inside a prefab --- Assets/XCharts/Demo/Runtime/Demo.cs | 2 +- Assets/XCharts/Runtime/Internal/BaseChart.cs | 4 ++-- Assets/XCharts/Runtime/Utility/ChartHelper.cs | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Assets/XCharts/Demo/Runtime/Demo.cs b/Assets/XCharts/Demo/Runtime/Demo.cs index 270650d9..57ffdc46 100644 --- a/Assets/XCharts/Demo/Runtime/Demo.cs +++ b/Assets/XCharts/Demo/Runtime/Demo.cs @@ -96,7 +96,7 @@ namespace XCharts var btnPanel = transform.Find("chart_list"); m_BtnClone = transform.Find("btn_clone").gameObject; m_BtnClone.SetActive(false); - ChartHelper.DestoryAllChilds(btnPanel); + //ChartHelper.DestroyAllChildren(btnPanel); foreach (var module in m_ChartModule) { var btnName = "btn_" + module.name; diff --git a/Assets/XCharts/Runtime/Internal/BaseChart.cs b/Assets/XCharts/Runtime/Internal/BaseChart.cs index 104811b4..1f5ab2c5 100644 --- a/Assets/XCharts/Runtime/Internal/BaseChart.cs +++ b/Assets/XCharts/Runtime/Internal/BaseChart.cs @@ -213,7 +213,7 @@ namespace XCharts totalLegend++; } m_Legend.RemoveButton(); - ChartHelper.DestoryAllChilds(legendObject.transform); + ChartHelper.DestroyAllChildren(legendObject.transform); if (!m_Legend.show) return; for (int i = 0; i < datas.Count; i++) { @@ -289,7 +289,7 @@ namespace XCharts { var labelObject = ChartHelper.AddObject(s_SerieLabelObjectName, transform, chartAnchorMin, chartAnchorMax, chartPivot, new Vector2(chartWidth, chartHeight)); - ChartHelper.DestoryAllChilds(labelObject.transform); + // ChartHelper.DestroyAllChildren(labelObject.transform); int count = 0; for (int i = 0; i < m_Series.Count; i++) { diff --git a/Assets/XCharts/Runtime/Utility/ChartHelper.cs b/Assets/XCharts/Runtime/Utility/ChartHelper.cs index b23f1595..f7a30862 100644 --- a/Assets/XCharts/Runtime/Utility/ChartHelper.cs +++ b/Assets/XCharts/Runtime/Utility/ChartHelper.cs @@ -72,12 +72,12 @@ namespace XCharts } } - public static void DestoryAllChilds(Transform parent) + public static void DestroyAllChildren(Transform parent) { while (parent.childCount > 0) { var go = parent.GetChild(0); - if (go.childCount > 0) DestoryAllChilds(go); + if (go.childCount > 0) DestroyAllChildren(go); else GameObject.DestroyImmediate(go.gameObject); } } From 8ba251d5bea490f14f3a08736982b85aa74a0b3a Mon Sep 17 00:00:00 2001 From: monitor1394 Date: Thu, 31 Oct 2019 09:40:12 +0800 Subject: [PATCH 04/27] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=8B=96=E5=87=BA?= =?UTF-8?q?=E5=88=B6=E4=BD=9C=E9=A2=84=E8=AE=BE=E6=97=B6=E5=BC=82=E5=B8=B8?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/XCharts/Demo/Runtime/Demo.cs | 2 +- Assets/XCharts/Runtime/Internal/BaseChart.cs | 2 +- Assets/XCharts/Runtime/Utility/ChartHelper.cs | 10 ++++++++++ 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/Assets/XCharts/Demo/Runtime/Demo.cs b/Assets/XCharts/Demo/Runtime/Demo.cs index 57ffdc46..d2777332 100644 --- a/Assets/XCharts/Demo/Runtime/Demo.cs +++ b/Assets/XCharts/Demo/Runtime/Demo.cs @@ -96,7 +96,7 @@ namespace XCharts var btnPanel = transform.Find("chart_list"); m_BtnClone = transform.Find("btn_clone").gameObject; m_BtnClone.SetActive(false); - //ChartHelper.DestroyAllChildren(btnPanel); + ChartHelper.DestroyAllChildren(btnPanel); foreach (var module in m_ChartModule) { var btnName = "btn_" + module.name; diff --git a/Assets/XCharts/Runtime/Internal/BaseChart.cs b/Assets/XCharts/Runtime/Internal/BaseChart.cs index 1f5ab2c5..08066464 100644 --- a/Assets/XCharts/Runtime/Internal/BaseChart.cs +++ b/Assets/XCharts/Runtime/Internal/BaseChart.cs @@ -289,7 +289,7 @@ namespace XCharts { var labelObject = ChartHelper.AddObject(s_SerieLabelObjectName, transform, chartAnchorMin, chartAnchorMax, chartPivot, new Vector2(chartWidth, chartHeight)); - // ChartHelper.DestroyAllChildren(labelObject.transform); + ChartHelper.DestroyAllChildren(labelObject.transform); int count = 0; for (int i = 0; i < m_Series.Count; i++) { diff --git a/Assets/XCharts/Runtime/Utility/ChartHelper.cs b/Assets/XCharts/Runtime/Utility/ChartHelper.cs index f7a30862..8d287ca2 100644 --- a/Assets/XCharts/Runtime/Utility/ChartHelper.cs +++ b/Assets/XCharts/Runtime/Utility/ChartHelper.cs @@ -12,6 +12,9 @@ using System.Text.RegularExpressions; using UnityEngine; using UnityEngine.EventSystems; using UnityEngine.UI; +#if UNITY_EDITOR +using UnityEditor; +#endif namespace XCharts { @@ -74,6 +77,13 @@ namespace XCharts public static void DestroyAllChildren(Transform parent) { + if(parent == null) return; +#if UNITY_EDITOR + if (PrefabUtility.IsPartOfAnyPrefab(parent.gameObject)) + { + return; + } +#endif while (parent.childCount > 0) { var go = parent.GetChild(0); From 00996b92d0eff89a31c216f12eaa0f8c77b2b6dd Mon Sep 17 00:00:00 2001 From: monitor1394 Date: Thu, 31 Oct 2019 09:46:18 +0800 Subject: [PATCH 05/27] =?UTF-8?q?=E4=BC=98=E5=8C=96DestroyAllChildren?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/XCharts/Runtime/Utility/ChartHelper.cs | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Assets/XCharts/Runtime/Utility/ChartHelper.cs b/Assets/XCharts/Runtime/Utility/ChartHelper.cs index 8d287ca2..4fb650a5 100644 --- a/Assets/XCharts/Runtime/Utility/ChartHelper.cs +++ b/Assets/XCharts/Runtime/Utility/ChartHelper.cs @@ -77,7 +77,7 @@ namespace XCharts public static void DestroyAllChildren(Transform parent) { - if(parent == null) return; + if (parent == null) return; #if UNITY_EDITOR if (PrefabUtility.IsPartOfAnyPrefab(parent.gameObject)) { @@ -87,8 +87,10 @@ namespace XCharts while (parent.childCount > 0) { var go = parent.GetChild(0); - if (go.childCount > 0) DestroyAllChildren(go); - else GameObject.DestroyImmediate(go.gameObject); + if (go != null) + { + GameObject.DestroyImmediate(go.gameObject); + } } } From a4d91b3c4eb68d0c34744532fddd038838fcdc5f Mon Sep 17 00:00:00 2001 From: monitor1394 Date: Thu, 31 Oct 2019 09:49:08 +0800 Subject: [PATCH 06/27] =?UTF-8?q?=E5=8F=91=E5=B8=831.0.2=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/XCharts/CHANGELOG.md | 2 + Assets/XCharts/Demo/demo_xchart.unity | 7210 +++++++++--------- Assets/XCharts/Documentation/XChartsAPI.md | 1 + Assets/XCharts/Runtime/Utility/XChartsMgr.cs | 4 +- README.md | 215 +- 5 files changed, 3903 insertions(+), 3529 deletions(-) diff --git a/Assets/XCharts/CHANGELOG.md b/Assets/XCharts/CHANGELOG.md index 034ea517..b13343a3 100644 --- a/Assets/XCharts/CHANGELOG.md +++ b/Assets/XCharts/CHANGELOG.md @@ -1,6 +1,8 @@ # 更新日志 +* (2019.10.31) 修复`prefab`预设制作报错的问题 +* (2019.10.31) 增加访问主题组件API:`BaseChart.themeInfo` * (2019.10.26) 发布`v1.0.1`版本 * (2019.10.26) 修复版本检查功能在非运行时异常的问题 * (2019.10.26) 增加科学计数法显示数值的支持(查阅`forceENotation`参数) diff --git a/Assets/XCharts/Demo/demo_xchart.unity b/Assets/XCharts/Demo/demo_xchart.unity index 61c4763c..4df1e5a7 100644 --- a/Assets/XCharts/Demo/demo_xchart.unity +++ b/Assets/XCharts/Demo/demo_xchart.unity @@ -6530,6 +6530,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -6624,6 +6625,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -6682,6 +6684,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -6890,6 +6893,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -6948,6 +6952,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -7156,6 +7161,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -7214,6 +7220,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -7422,6 +7429,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -7480,6 +7488,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -7681,6 +7690,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -7748,6 +7758,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -7811,6 +7822,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -7873,6 +7885,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -12025,7 +12038,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 4, y: 24.10772} + m_SizeDelta: {x: 4, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &51059474 MonoBehaviour: @@ -12420,7 +12433,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 4, y: 24.10772} + m_SizeDelta: {x: 4, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &51563438 MonoBehaviour: @@ -20094,6 +20107,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -20188,6 +20202,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -20246,6 +20261,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -20447,6 +20463,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -20514,6 +20531,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -20577,6 +20595,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -20639,6 +20658,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -27283,6 +27303,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -27392,6 +27413,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -27450,6 +27472,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -28199,6 +28222,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -28257,6 +28281,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -29022,6 +29047,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -29080,6 +29106,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -30407,6 +30434,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 16 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -30469,6 +30497,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -30532,6 +30561,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 16 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -30594,6 +30624,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -33397,6 +33428,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -33491,6 +33523,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -33549,6 +33582,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -33757,6 +33791,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -33815,6 +33850,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -34023,6 +34059,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -34081,6 +34118,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -34289,6 +34327,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -34347,6 +34386,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -34555,6 +34595,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -34613,6 +34654,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -34814,6 +34856,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -34881,6 +34924,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -34944,6 +34988,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -35006,6 +35051,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -35612,9 +35658,9 @@ RectTransform: m_Father: {fileID: 472702066} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -338} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} --- !u!1 &127589501 @@ -37962,6 +38008,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -38056,6 +38103,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -38114,6 +38162,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -38307,6 +38356,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -38365,6 +38415,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -38544,6 +38595,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -38611,6 +38663,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -38680,6 +38733,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -38742,6 +38796,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -39248,6 +39303,157 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 138914064} m_CullTransparentMesh: 0 +--- !u!1 &139057104 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 139057105} + - component: {fileID: 139057109} + - component: {fileID: 139057108} + - component: {fileID: 139057107} + - component: {fileID: 139057106} + m_Layer: 0 + m_Name: "legend_2_\u8054\u76DF\u5E7F\u544A" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &139057105 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 139057104} + m_LocalRotation: {x: -0, 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: 1828037684} + m_Father: {fileID: 637823618} + 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: -50} + m_SizeDelta: {x: 70, y: 20} + m_Pivot: {x: 0, y: 1} +--- !u!114 &139057106 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 139057104} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 0 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 1 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + delegates: [] +--- !u!114 &139057107 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 139057104} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 139057108} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &139057108 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 139057104} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.38039216, g: 0.627451, b: 0.65882355, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 +--- !u!222 &139057109 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 139057104} + m_CullTransparentMesh: 0 --- !u!1 &139278994 GameObject: m_ObjectHideFlags: 0 @@ -39867,85 +40073,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 141287047} m_CullTransparentMesh: 0 ---- !u!1 &141421218 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 141421219} - - component: {fileID: 141421221} - - component: {fileID: 141421220} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &141421219 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 141421218} - m_LocalRotation: {x: 0, 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: 432456061} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &141421220 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 141421218} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 22 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 2 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: "\u67F1\u72B6\u56FE" ---- !u!222 &141421221 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 141421218} - m_CullTransparentMesh: 0 --- !u!1 &141542570 GameObject: m_ObjectHideFlags: 0 @@ -41215,6 +41342,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -41309,6 +41437,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -41367,6 +41496,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -41568,6 +41698,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -41635,6 +41766,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -41698,6 +41830,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -41760,6 +41893,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -43348,6 +43482,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 155978594} m_CullTransparentMesh: 0 +--- !u!1 &156225521 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 156225522} + - component: {fileID: 156225524} + - component: {fileID: 156225523} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &156225522 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 156225521} + m_LocalRotation: {x: -0, 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: 1108362480} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &156225523 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 156225521} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: "\u76F4\u63A5\u8BBF\u95EE" +--- !u!222 &156225524 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 156225521} + m_CullTransparentMesh: 0 --- !u!1 &156643303 GameObject: m_ObjectHideFlags: 0 @@ -48781,7 +48994,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 109.35089, y: 90.04639} + m_AnchoredPosition: {x: 108.911194, y: 90.04639} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &180737281 @@ -52868,6 +53081,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 199251371} m_CullTransparentMesh: 0 +--- !u!1 &199735715 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 199735716} + - component: {fileID: 199735718} + - component: {fileID: 199735717} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &199735716 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 199735715} + m_LocalRotation: {x: -0, 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: 1732158165} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &199735717 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 199735715} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: "\u90AE\u4EF6\u8425\u9500" +--- !u!222 &199735718 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 199735715} + m_CullTransparentMesh: 0 --- !u!1 &199738697 GameObject: m_ObjectHideFlags: 0 @@ -54237,85 +54529,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 208165367} m_CullTransparentMesh: 0 ---- !u!1 &208256328 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 208256329} - - component: {fileID: 208256331} - - component: {fileID: 208256330} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &208256329 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 208256328} - m_LocalRotation: {x: 0, 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: 1662089696} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &208256330 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 208256328} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 22 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 2 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: "\u5176\u4ED6" ---- !u!222 &208256331 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 208256328} - m_CullTransparentMesh: 0 --- !u!1 &208406676 GameObject: m_ObjectHideFlags: 0 @@ -56770,145 +56983,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 218926990} m_CullTransparentMesh: 0 ---- !u!1 &219226355 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 219226356} - - component: {fileID: 219226360} - - component: {fileID: 219226359} - - component: {fileID: 219226358} - - component: {fileID: 219226357} - m_Layer: 5 - m_Name: "btn_\u96F7\u8FBE\u56FE" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &219226356 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 219226355} - m_LocalRotation: {x: -0, 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: 1815721692} - m_Father: {fileID: 1984073382} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &219226357 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 219226355} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Delegates: - - eventID: 2 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - delegates: [] ---- !u!114 &219226358 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 219226355} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 0.16078432, g: 0.23529412, b: 0.33333334, a: 1} - m_HighlightedColor: {r: 0.05490196, g: 0.08235294, b: 0.12156863, a: 1} - m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 219226359} - m_OnClick: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null ---- !u!114 &219226359 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 219226355} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_Sprite: {fileID: 0} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 ---- !u!222 &219226360 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 219226355} - m_CullTransparentMesh: 0 --- !u!1 &219663640 GameObject: m_ObjectHideFlags: 0 @@ -66605,7 +66679,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 4, y: 24.10772} + m_SizeDelta: {x: 4, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &257665950 MonoBehaviour: @@ -67942,6 +68016,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -68036,6 +68111,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -68094,6 +68170,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -68287,6 +68364,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -68345,6 +68423,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -68524,6 +68603,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -68591,6 +68671,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -68660,6 +68741,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -68722,6 +68804,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -69727,157 +69810,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 264382296} m_CullTransparentMesh: 0 ---- !u!1 &264803039 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 264803040} - - component: {fileID: 264803044} - - component: {fileID: 264803043} - - component: {fileID: 264803042} - - component: {fileID: 264803041} - m_Layer: 0 - m_Name: legend_0_Line - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &264803040 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 264803039} - m_LocalRotation: {x: -0, 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: 587606999} - m_Father: {fileID: 1666099892} - 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: -32.5, y: 0} - m_SizeDelta: {x: 60, y: 20} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &264803041 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 264803039} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Delegates: - - eventID: 2 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - eventID: 0 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - eventID: 1 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - delegates: [] ---- !u!114 &264803042 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 264803039} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 264803043} - m_OnClick: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null ---- !u!114 &264803043 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 264803039} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.7607843, g: 0.20784314, b: 0.19215687, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_Sprite: {fileID: 0} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 ---- !u!222 &264803044 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 264803039} - m_CullTransparentMesh: 0 --- !u!1 &265167984 GameObject: m_ObjectHideFlags: 0 @@ -74091,6 +74023,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 280364425} m_CullTransparentMesh: 0 +--- !u!1 &280618998 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 280618999} + - component: {fileID: 280619001} + - component: {fileID: 280619000} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &280618999 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 280618998} + m_LocalRotation: {x: -0, 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: 1405543405} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &280619000 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 280618998} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Bar +--- !u!222 &280619001 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 280618998} + m_CullTransparentMesh: 0 --- !u!1 &280813312 GameObject: m_ObjectHideFlags: 0 @@ -75721,6 +75732,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 286729373} m_CullTransparentMesh: 0 +--- !u!1 &286800803 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 286800804} + - component: {fileID: 286800806} + - component: {fileID: 286800805} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &286800804 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 286800803} + m_LocalRotation: {x: 0, 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: 1175709254} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &286800805 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 286800803} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 22 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u70ED\u529B\u56FE" +--- !u!222 &286800806 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 286800803} + m_CullTransparentMesh: 0 --- !u!1 &287493268 GameObject: m_ObjectHideFlags: 0 @@ -79046,6 +79136,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 301130075} m_CullTransparentMesh: 0 +--- !u!1 &301735824 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 301735825} + - component: {fileID: 301735827} + - component: {fileID: 301735826} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &301735825 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 301735824} + m_LocalRotation: {x: 0, 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: 1206228871} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &301735826 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 301735824} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 22 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u997C\u56FE" +--- !u!222 &301735827 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 301735824} + m_CullTransparentMesh: 0 --- !u!1 &302133686 GameObject: m_ObjectHideFlags: 0 @@ -88734,6 +88903,145 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 343204856} m_CullTransparentMesh: 0 +--- !u!1 &343607736 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 343607737} + - component: {fileID: 343607741} + - component: {fileID: 343607740} + - component: {fileID: 343607739} + - component: {fileID: 343607738} + m_Layer: 5 + m_Name: "btn_\u9996\u9875" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &343607737 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 343607736} + m_LocalRotation: {x: -0, 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: 2143036899} + m_Father: {fileID: 1984073382} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &343607738 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 343607736} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + delegates: [] +--- !u!114 &343607739 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 343607736} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} + m_HighlightedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} + m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 343607740} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &343607740 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 343607736} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 +--- !u!222 &343607741 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 343607736} + m_CullTransparentMesh: 0 --- !u!1 &343735697 GameObject: m_ObjectHideFlags: 0 @@ -94160,7 +94468,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 4, y: 24.10772} + m_SizeDelta: {x: 4, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &366200782 MonoBehaviour: @@ -95882,157 +96190,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 375105937} m_CullTransparentMesh: 0 ---- !u!1 &375558584 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 375558585} - - component: {fileID: 375558589} - - component: {fileID: 375558588} - - component: {fileID: 375558587} - - component: {fileID: 375558586} - m_Layer: 0 - m_Name: legend_1_Bar - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &375558585 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 375558584} - m_LocalRotation: {x: -0, 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: 583763292} - m_Father: {fileID: 1666099892} - 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: 32.5, y: 0} - m_SizeDelta: {x: 60, y: 20} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &375558586 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 375558584} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Delegates: - - eventID: 2 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - eventID: 0 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - eventID: 1 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - delegates: [] ---- !u!114 &375558587 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 375558584} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 375558588} - m_OnClick: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null ---- !u!114 &375558588 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 375558584} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.18431373, g: 0.27058825, b: 0.32941177, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_Sprite: {fileID: 0} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 ---- !u!222 &375558589 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 375558584} - m_CullTransparentMesh: 0 --- !u!1 &376101268 GameObject: m_ObjectHideFlags: 0 @@ -98240,7 +98397,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 75.23878, y: 24.10772} + m_SizeDelta: {x: 74.359406, y: 24.295984} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &387648236 MonoBehaviour: @@ -98513,7 +98670,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 75.23878, y: 24.10772} + m_SizeDelta: {x: 74.359406, y: 24.295984} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &389790896 MonoBehaviour: @@ -100978,85 +101135,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 400379218} m_CullTransparentMesh: 0 ---- !u!1 &400718333 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 400718334} - - component: {fileID: 400718336} - - component: {fileID: 400718335} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &400718334 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 400718333} - m_LocalRotation: {x: 0, 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: 1171847488} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &400718335 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 400718333} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 22 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 2 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: "\u6563\u70B9\u56FE" ---- !u!222 &400718336 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 400718333} - m_CullTransparentMesh: 0 --- !u!1 &401163385 GameObject: m_ObjectHideFlags: 0 @@ -101403,6 +101481,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 402350981} m_CullTransparentMesh: 0 +--- !u!1 &402736171 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 402736172} + - component: {fileID: 402736174} + - component: {fileID: 402736173} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &402736172 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 402736171} + m_LocalRotation: {x: -0, 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: 1100780056} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &402736173 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 402736171} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: "\u89C6\u9891\u5E7F\u544A" +--- !u!222 &402736174 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 402736171} + m_CullTransparentMesh: 0 --- !u!1 &403450669 GameObject: m_ObjectHideFlags: 0 @@ -102936,6 +103093,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -103030,6 +103188,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -103088,6 +103247,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -103296,6 +103456,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -103354,6 +103515,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -103555,6 +103717,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -103622,6 +103785,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -103685,6 +103849,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -103747,6 +103912,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -105829,7 +105995,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 181.32175, y: 15.433273} + m_AnchoredPosition: {x: 180.88208, y: 15.433273} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &416325874 @@ -107274,9 +107440,9 @@ RectTransform: m_Father: {fileID: 1867673941} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -338} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} --- !u!1 &421973956 @@ -108891,6 +109057,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -108988,6 +109155,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -109046,6 +109214,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -110154,145 +110323,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 432187783} m_CullTransparentMesh: 0 ---- !u!1 &432456060 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 432456061} - - component: {fileID: 432456065} - - component: {fileID: 432456064} - - component: {fileID: 432456063} - - component: {fileID: 432456062} - m_Layer: 5 - m_Name: "btn_\u67F1\u72B6\u56FE" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &432456061 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 432456060} - m_LocalRotation: {x: -0, 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: 141421219} - m_Father: {fileID: 1984073382} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &432456062 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 432456060} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Delegates: - - eventID: 2 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - delegates: [] ---- !u!114 &432456063 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 432456060} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 0.16078432, g: 0.23529412, b: 0.33333334, a: 1} - m_HighlightedColor: {r: 0.05490196, g: 0.08235294, b: 0.12156863, a: 1} - m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 432456064} - m_OnClick: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null ---- !u!114 &432456064 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 432456060} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_Sprite: {fileID: 0} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 ---- !u!222 &432456065 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 432456060} - m_CullTransparentMesh: 0 --- !u!1 &433337035 GameObject: m_ObjectHideFlags: 0 @@ -114009,6 +114039,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -114113,6 +114144,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -114171,6 +114203,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -114915,6 +114948,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -114973,6 +115007,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -115717,6 +115752,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -115775,6 +115811,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -121573,9 +121610,9 @@ RectTransform: m_Father: {fileID: 472702066} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -338} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} --- !u!1 &471060060 @@ -122238,6 +122275,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -122332,6 +122370,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -122390,6 +122429,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -122559,6 +122599,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -122621,6 +122662,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -122684,6 +122726,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -122746,6 +122789,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -128120,157 +128164,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 499596561} m_CullTransparentMesh: 0 ---- !u!1 &499642848 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 499642849} - - component: {fileID: 499642853} - - component: {fileID: 499642852} - - component: {fileID: 499642851} - - component: {fileID: 499642850} - m_Layer: 0 - m_Name: "legend_1_\u90AE\u4EF6\u8425\u9500" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &499642849 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 499642848} - m_LocalRotation: {x: -0, 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: 1547009430} - m_Father: {fileID: 637823618} - 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: -25} - m_SizeDelta: {x: 70, y: 20} - m_Pivot: {x: 0, y: 1} ---- !u!114 &499642850 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 499642848} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Delegates: - - eventID: 2 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - eventID: 0 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - eventID: 1 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - delegates: [] ---- !u!114 &499642851 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 499642848} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 499642852} - m_OnClick: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null ---- !u!114 &499642852 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 499642848} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.18431373, g: 0.27058825, b: 0.32941177, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_Sprite: {fileID: 0} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 ---- !u!222 &499642853 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 499642848} - m_CullTransparentMesh: 0 --- !u!1 &500428355 GameObject: m_ObjectHideFlags: 0 @@ -131342,6 +131235,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -131436,6 +131330,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -131494,6 +131389,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -131695,6 +131591,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -131762,6 +131659,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -131825,6 +131723,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -131887,6 +131786,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -132751,6 +132651,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 521588883} m_CullTransparentMesh: 0 +--- !u!1 &521625447 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 521625448} + - component: {fileID: 521625450} + - component: {fileID: 521625449} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &521625448 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 521625447} + m_LocalRotation: {x: -0, 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: 1742034797} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &521625449 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 521625447} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Line +--- !u!222 &521625450 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 521625447} + m_CullTransparentMesh: 0 --- !u!1 &521904017 GameObject: m_ObjectHideFlags: 0 @@ -136864,6 +136843,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 538753261} m_CullTransparentMesh: 0 +--- !u!1 &539229256 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 539229257} + - component: {fileID: 539229259} + - component: {fileID: 539229258} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &539229257 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 539229256} + m_LocalRotation: {x: 0, 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: 1007470818} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &539229258 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 539229256} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 22 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u6563\u70B9\u56FE" +--- !u!222 &539229259 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 539229256} + m_CullTransparentMesh: 0 --- !u!1 &539298998 GameObject: m_ObjectHideFlags: 0 @@ -140328,7 +140386,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 4, y: 24.10772} + m_SizeDelta: {x: 4, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &555929839 MonoBehaviour: @@ -145562,6 +145620,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -145656,6 +145715,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -145714,6 +145774,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -145915,6 +145976,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -145982,6 +146044,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -146052,6 +146115,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -146114,6 +146178,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -146525,6 +146590,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -146619,6 +146685,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -146677,6 +146744,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -146864,6 +146932,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -146922,6 +146991,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -150977,6 +151047,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -151039,6 +151110,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -151102,6 +151174,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -151164,6 +151237,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -152421,7 +152495,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 4, y: 24.10772} + m_SizeDelta: {x: 4, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &581915372 MonoBehaviour: @@ -152891,85 +152965,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 583432767} m_CullTransparentMesh: 0 ---- !u!1 &583763291 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 583763292} - - component: {fileID: 583763294} - - component: {fileID: 583763293} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &583763292 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 583763291} - m_LocalRotation: {x: -0, 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: 375558585} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &583763293 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 583763291} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 16 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: Bar ---- !u!222 &583763294 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 583763291} - m_CullTransparentMesh: 0 --- !u!1 &583892133 GameObject: m_ObjectHideFlags: 0 @@ -153894,6 +153889,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -153988,6 +153984,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -154046,6 +154043,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -169175,6 +169173,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -169237,6 +169236,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -169300,6 +169300,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -169362,6 +169363,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -169734,85 +169736,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 586834137} m_CullTransparentMesh: 0 ---- !u!1 &587606998 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 587606999} - - component: {fileID: 587607001} - - component: {fileID: 587607000} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &587606999 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 587606998} - m_LocalRotation: {x: -0, 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: 264803040} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &587607000 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 587606998} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 16 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: Line ---- !u!222 &587607001 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 587606998} - m_CullTransparentMesh: 0 --- !u!1 &588011345 GameObject: m_ObjectHideFlags: 0 @@ -171051,6 +170974,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 597084794} m_CullTransparentMesh: 0 +--- !u!1 &597151532 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 597151533} + - component: {fileID: 597151535} + - component: {fileID: 597151534} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &597151533 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 597151532} + m_LocalRotation: {x: 0, 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: 1604159955} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &597151534 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 597151532} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 22 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u6298\u7EBF\u56FE" +--- !u!222 &597151535 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 597151532} + m_CullTransparentMesh: 0 --- !u!1 &597291533 GameObject: m_ObjectHideFlags: 0 @@ -179687,6 +179689,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -179781,6 +179784,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -179839,6 +179843,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -180047,6 +180052,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -180105,6 +180111,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -180306,6 +180313,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -180373,6 +180381,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -180443,6 +180452,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -180505,6 +180515,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -182255,7 +182266,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 4, y: 24.10772} + m_SizeDelta: {x: 4, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &634539313 MonoBehaviour: @@ -183027,6 +183038,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -183125,6 +183137,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -183183,6 +183196,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -183410,6 +183424,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -183468,6 +183483,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -183722,11 +183738,11 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1003955010} - - {fileID: 499642849} - - {fileID: 1804959458} - - {fileID: 1943725654} - - {fileID: 1460117204} + - {fileID: 1108362480} + - {fileID: 1732158165} + - {fileID: 139057105} + - {fileID: 1100780056} + - {fileID: 948740804} m_Father: {fileID: 1000969945} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -187797,6 +187813,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -187891,6 +187908,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -187949,6 +187967,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -188157,6 +188176,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -188215,6 +188235,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -188416,6 +188437,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -188483,6 +188505,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -188546,6 +188569,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -188608,6 +188632,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -189226,85 +189251,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 655852763} m_CullTransparentMesh: 0 ---- !u!1 &656129895 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 656129896} - - component: {fileID: 656129898} - - component: {fileID: 656129897} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &656129896 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 656129895} - m_LocalRotation: {x: 0, 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: 1164033923} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &656129897 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 656129895} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 22 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 2 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: "\u70ED\u529B\u56FE" ---- !u!222 &656129898 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 656129895} - m_CullTransparentMesh: 0 --- !u!1 &656198550 GameObject: m_ObjectHideFlags: 0 @@ -198021,6 +197967,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -198118,6 +198065,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -198176,6 +198124,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -201345,7 +201294,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 4, y: 24.10772} + m_SizeDelta: {x: 4, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &701628086 MonoBehaviour: @@ -207480,6 +207429,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -207574,6 +207524,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -207632,6 +207583,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -207871,6 +207823,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -207933,6 +207886,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -207996,6 +207950,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -208058,6 +208013,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -212410,7 +212366,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 4, y: 24.10772} + m_SizeDelta: {x: 4, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &747928664 MonoBehaviour: @@ -216089,7 +216045,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -183.73395, y: -76.363594} + m_AnchoredPosition: {x: -183.29427, y: -76.363594} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &764182832 @@ -220169,6 +220125,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -220263,6 +220220,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -220321,6 +220279,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -220522,6 +220481,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -220589,6 +220549,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -220652,6 +220613,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -220714,6 +220676,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -234334,9 +234297,9 @@ RectTransform: m_Father: {fileID: 1867673941} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -338} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} --- !u!1 &840327357 @@ -239203,7 +239166,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 4, y: 24.10772} + m_SizeDelta: {x: 4, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &860624748 MonoBehaviour: @@ -245687,6 +245650,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -245781,6 +245745,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -245839,6 +245804,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -245980,6 +245946,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -246047,6 +246014,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -246110,6 +246078,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -246172,6 +246141,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -259233,6 +259203,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -259327,6 +259298,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -259385,6 +259357,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -259593,6 +259566,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -259651,6 +259625,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -259859,6 +259834,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -259917,6 +259893,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -260118,6 +260095,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -260185,6 +260163,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -260248,6 +260227,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -260310,6 +260290,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -261859,6 +261840,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -261953,6 +261935,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -262011,6 +261994,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -262219,6 +262203,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -262277,6 +262262,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -262478,6 +262464,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -262545,6 +262532,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -262608,6 +262596,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -262670,6 +262659,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -264967,6 +264957,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -265061,6 +265052,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -265119,6 +265111,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -265327,6 +265320,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -265385,6 +265379,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -265586,6 +265581,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -265653,6 +265649,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -265716,6 +265713,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -265778,6 +265776,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -266240,6 +266239,157 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 948717989} m_CullTransparentMesh: 0 +--- !u!1 &948740803 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 948740804} + - component: {fileID: 948740808} + - component: {fileID: 948740807} + - component: {fileID: 948740806} + - component: {fileID: 948740805} + m_Layer: 0 + m_Name: "legend_4_\u641C\u7D22\u5F15\u64CE" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &948740804 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 948740803} + m_LocalRotation: {x: -0, 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: 1093673909} + m_Father: {fileID: 637823618} + 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: -100} + m_SizeDelta: {x: 70, y: 20} + m_Pivot: {x: 0, y: 1} +--- !u!114 &948740805 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 948740803} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 0 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 1 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + delegates: [] +--- !u!114 &948740806 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 948740803} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 948740807} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &948740807 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 948740803} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.5686275, g: 0.78039217, b: 0.68235296, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 +--- !u!222 &948740808 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 948740803} + m_CullTransparentMesh: 0 --- !u!1 &949169157 GameObject: m_ObjectHideFlags: 0 @@ -267084,7 +267234,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 4cbfef5a9a03149f6a1ddf4ebe502bf6, type: 3} m_Name: m_EditorClassIdentifier: - m_NowVersion: 1.0.0 (20191023) + m_NowVersion: 1.0.1 (20191026) m_NewVersion: 1.0.0 (20191022) --- !u!4 &953846993 Transform: @@ -274801,6 +274951,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -274895,6 +275046,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -274953,6 +275105,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -289868,6 +290021,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -289930,6 +290084,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -290015,6 +290170,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -290077,6 +290233,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -293703,6 +293860,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -293797,6 +293955,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -293855,6 +294014,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -294321,157 +294481,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1003749054} m_CullTransparentMesh: 0 ---- !u!1 &1003955009 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1003955010} - - component: {fileID: 1003955014} - - component: {fileID: 1003955013} - - component: {fileID: 1003955012} - - component: {fileID: 1003955011} - m_Layer: 0 - m_Name: "legend_0_\u76F4\u63A5\u8BBF\u95EE" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1003955010 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1003955009} - m_LocalRotation: {x: -0, 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: 1801236850} - m_Father: {fileID: 637823618} - 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: 70, y: 20} - m_Pivot: {x: 0, y: 1} ---- !u!114 &1003955011 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1003955009} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Delegates: - - eventID: 2 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - eventID: 0 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - eventID: 1 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - delegates: [] ---- !u!114 &1003955012 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1003955009} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1003955013} - m_OnClick: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null ---- !u!114 &1003955013 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1003955009} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.7607843, g: 0.20784314, b: 0.19215687, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_Sprite: {fileID: 0} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 ---- !u!222 &1003955014 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1003955009} - m_CullTransparentMesh: 0 --- !u!1 &1004058828 GameObject: m_ObjectHideFlags: 0 @@ -295304,6 +295313,145 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1007470817 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1007470818} + - component: {fileID: 1007470822} + - component: {fileID: 1007470821} + - component: {fileID: 1007470820} + - component: {fileID: 1007470819} + m_Layer: 5 + m_Name: "btn_\u6563\u70B9\u56FE" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1007470818 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1007470817} + m_LocalRotation: {x: -0, 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: 539229257} + m_Father: {fileID: 1984073382} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1007470819 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1007470817} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + delegates: [] +--- !u!114 &1007470820 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1007470817} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 0.16078432, g: 0.23529412, b: 0.33333334, a: 1} + m_HighlightedColor: {r: 0.05490196, g: 0.08235294, b: 0.12156863, a: 1} + m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1007470821} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1007470821 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1007470817} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 +--- !u!222 &1007470822 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1007470817} + m_CullTransparentMesh: 0 --- !u!1 &1007606702 GameObject: m_ObjectHideFlags: 0 @@ -309453,7 +309601,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 4, y: 24.10772} + m_SizeDelta: {x: 4, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1068502605 MonoBehaviour: @@ -316168,6 +316316,85 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1093673908 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1093673909} + - component: {fileID: 1093673911} + - component: {fileID: 1093673910} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1093673909 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1093673908} + m_LocalRotation: {x: -0, 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: 948740804} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1093673910 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1093673908} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: "\u641C\u7D22\u5F15\u64CE" +--- !u!222 &1093673911 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1093673908} + m_CullTransparentMesh: 0 --- !u!1 &1093674502 GameObject: m_ObjectHideFlags: 0 @@ -317856,6 +318083,157 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1100730173} m_CullTransparentMesh: 0 +--- !u!1 &1100780055 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1100780056} + - component: {fileID: 1100780060} + - component: {fileID: 1100780059} + - component: {fileID: 1100780058} + - component: {fileID: 1100780057} + m_Layer: 0 + m_Name: "legend_3_\u89C6\u9891\u5E7F\u544A" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1100780056 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1100780055} + m_LocalRotation: {x: -0, 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: 402736172} + m_Father: {fileID: 637823618} + 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: -75} + m_SizeDelta: {x: 70, y: 20} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1100780057 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1100780055} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 0 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 1 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + delegates: [] +--- !u!114 &1100780058 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1100780055} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1100780059} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1100780059 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1100780055} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.83137256, g: 0.50980395, b: 0.39607844, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 +--- !u!222 &1100780060 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1100780055} + m_CullTransparentMesh: 0 --- !u!1 &1100816332 GameObject: m_ObjectHideFlags: 0 @@ -319744,6 +320122,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -319838,6 +320217,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -319896,6 +320276,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -320037,6 +320418,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -320095,6 +320477,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -320587,6 +320970,157 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1108325640} m_CullTransparentMesh: 0 +--- !u!1 &1108362479 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1108362480} + - component: {fileID: 1108362484} + - component: {fileID: 1108362483} + - component: {fileID: 1108362482} + - component: {fileID: 1108362481} + m_Layer: 0 + m_Name: "legend_0_\u76F4\u63A5\u8BBF\u95EE" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1108362480 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1108362479} + m_LocalRotation: {x: -0, 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: 156225522} + m_Father: {fileID: 637823618} + 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: 70, y: 20} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1108362481 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1108362479} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 0 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 1 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + delegates: [] +--- !u!114 &1108362482 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1108362479} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1108362483} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1108362483 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1108362479} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.7607843, g: 0.20784314, b: 0.19215687, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 +--- !u!222 &1108362484 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1108362479} + m_CullTransparentMesh: 0 --- !u!1 &1108406657 GameObject: m_ObjectHideFlags: 0 @@ -324595,6 +325129,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1126179685} m_CullTransparentMesh: 0 +--- !u!1 &1126324661 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1126324662} + - component: {fileID: 1126324664} + - component: {fileID: 1126324663} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1126324662 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1126324661} + m_LocalRotation: {x: 0, 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: 1574824903} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1126324663 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1126324661} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 22 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u96F7\u8FBE\u56FE" +--- !u!222 &1126324664 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1126324661} + m_CullTransparentMesh: 0 --- !u!1 &1126351279 GameObject: m_ObjectHideFlags: 0 @@ -324941,6 +325554,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -325035,6 +325649,7 @@ MonoBehaviour: m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -325093,6 +325708,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -325262,6 +325878,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -325324,6 +325941,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -325387,6 +326005,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -325449,6 +326068,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -330868,6 +331488,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -330962,6 +331583,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -331020,6 +331642,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -332725,6 +333348,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -332787,6 +333411,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -332850,6 +333475,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -332912,6 +333538,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -334185,85 +334812,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1157043020} m_CullTransparentMesh: 0 ---- !u!1 &1157258948 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1157258949} - - component: {fileID: 1157258951} - - component: {fileID: 1157258950} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1157258949 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1157258948} - m_LocalRotation: {x: 0, 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: 1593647530} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1157258950 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1157258948} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 22 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 2 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: "\u997C\u56FE" ---- !u!222 &1157258951 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1157258948} - m_CullTransparentMesh: 0 --- !u!1 &1157327786 GameObject: m_ObjectHideFlags: 0 @@ -335268,6 +335816,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -335362,6 +335911,7 @@ MonoBehaviour: m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -335420,6 +335970,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -335598,6 +336149,7 @@ MonoBehaviour: m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -335656,6 +336208,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -335834,6 +336387,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -335892,6 +336446,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -336061,6 +336616,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -336123,6 +336679,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -336186,6 +336743,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -336248,6 +336806,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -337206,145 +337765,6 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1164033922 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1164033923} - - component: {fileID: 1164033927} - - component: {fileID: 1164033926} - - component: {fileID: 1164033925} - - component: {fileID: 1164033924} - m_Layer: 5 - m_Name: "btn_\u70ED\u529B\u56FE" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1164033923 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1164033922} - m_LocalRotation: {x: -0, 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: 656129896} - m_Father: {fileID: 1984073382} - m_RootOrder: 6 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1164033924 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1164033922} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Delegates: - - eventID: 2 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - delegates: [] ---- !u!114 &1164033925 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1164033922} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 0.16078432, g: 0.23529412, b: 0.33333334, a: 1} - m_HighlightedColor: {r: 0.05490196, g: 0.08235294, b: 0.12156863, a: 1} - m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1164033926} - m_OnClick: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null ---- !u!114 &1164033926 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1164033922} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_Sprite: {fileID: 0} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 ---- !u!222 &1164033927 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1164033922} - m_CullTransparentMesh: 0 --- !u!1 &1164485635 GameObject: m_ObjectHideFlags: 0 @@ -338509,145 +338929,6 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1171847487 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1171847488} - - component: {fileID: 1171847492} - - component: {fileID: 1171847491} - - component: {fileID: 1171847490} - - component: {fileID: 1171847489} - m_Layer: 5 - m_Name: "btn_\u6563\u70B9\u56FE" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1171847488 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1171847487} - m_LocalRotation: {x: -0, 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: 400718334} - m_Father: {fileID: 1984073382} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1171847489 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1171847487} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Delegates: - - eventID: 2 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - delegates: [] ---- !u!114 &1171847490 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1171847487} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 0.16078432, g: 0.23529412, b: 0.33333334, a: 1} - m_HighlightedColor: {r: 0.05490196, g: 0.08235294, b: 0.12156863, a: 1} - m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1171847491} - m_OnClick: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null ---- !u!114 &1171847491 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1171847487} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_Sprite: {fileID: 0} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 ---- !u!222 &1171847492 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1171847487} - m_CullTransparentMesh: 0 --- !u!1 &1172555286 GameObject: m_ObjectHideFlags: 0 @@ -339351,6 +339632,145 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1175404523} m_CullTransparentMesh: 0 +--- !u!1 &1175709253 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1175709254} + - component: {fileID: 1175709258} + - component: {fileID: 1175709257} + - component: {fileID: 1175709256} + - component: {fileID: 1175709255} + m_Layer: 5 + m_Name: "btn_\u70ED\u529B\u56FE" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1175709254 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1175709253} + m_LocalRotation: {x: -0, 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: 286800804} + m_Father: {fileID: 1984073382} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1175709255 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1175709253} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + delegates: [] +--- !u!114 &1175709256 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1175709253} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 0.16078432, g: 0.23529412, b: 0.33333334, a: 1} + m_HighlightedColor: {r: 0.05490196, g: 0.08235294, b: 0.12156863, a: 1} + m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1175709257} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1175709257 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1175709253} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 +--- !u!222 &1175709258 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1175709253} + m_CullTransparentMesh: 0 --- !u!1 &1175724539 GameObject: m_ObjectHideFlags: 0 @@ -345522,6 +345942,145 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1206228870 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1206228871} + - component: {fileID: 1206228875} + - component: {fileID: 1206228874} + - component: {fileID: 1206228873} + - component: {fileID: 1206228872} + m_Layer: 5 + m_Name: "btn_\u997C\u56FE" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1206228871 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1206228870} + m_LocalRotation: {x: -0, 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: 301735825} + m_Father: {fileID: 1984073382} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1206228872 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1206228870} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + delegates: [] +--- !u!114 &1206228873 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1206228870} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 0.16078432, g: 0.23529412, b: 0.33333334, a: 1} + m_HighlightedColor: {r: 0.05490196, g: 0.08235294, b: 0.12156863, a: 1} + m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1206228874} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1206228874 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1206228870} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 +--- !u!222 &1206228875 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1206228870} + m_CullTransparentMesh: 0 --- !u!1 &1206454323 GameObject: m_ObjectHideFlags: 0 @@ -351269,85 +351828,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1230264359} m_CullTransparentMesh: 0 ---- !u!1 &1230316017 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1230316018} - - component: {fileID: 1230316020} - - component: {fileID: 1230316019} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1230316018 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1230316017} - m_LocalRotation: {x: -0, 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: 1943725654} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1230316019 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1230316017} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 16 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: "\u89C6\u9891\u5E7F\u544A" ---- !u!222 &1230316020 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1230316017} - m_CullTransparentMesh: 0 --- !u!1 &1230992847 GameObject: m_ObjectHideFlags: 0 @@ -360836,7 +361316,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 4, y: 24.10772} + m_SizeDelta: {x: 4, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1271673423 MonoBehaviour: @@ -364138,7 +364618,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 4, y: 24.10772} + m_SizeDelta: {x: 4, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1288256099 MonoBehaviour: @@ -366559,6 +367039,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -366656,6 +367137,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -366714,6 +367196,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -370668,7 +371151,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 4, y: 24.10772} + m_SizeDelta: {x: 4, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1310495745 MonoBehaviour: @@ -371295,85 +371778,6 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1313938258 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1313938259} - - component: {fileID: 1313938261} - - component: {fileID: 1313938260} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1313938259 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1313938258} - m_LocalRotation: {x: 0, 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: 1980867351} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1313938260 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1313938258} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 22 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 2 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: "\u9996\u9875" ---- !u!222 &1313938261 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1313938258} - m_CullTransparentMesh: 0 --- !u!1 &1314042434 GameObject: m_ObjectHideFlags: 0 @@ -376618,7 +377022,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 75.23878, y: 24.10772} + m_SizeDelta: {x: 74.359406, y: 24.295984} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1335668151 MonoBehaviour: @@ -387091,6 +387495,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -387185,6 +387590,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -387243,6 +387649,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -406517,6 +406924,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -406579,6 +406987,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -406642,6 +407051,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -406704,6 +407114,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -412310,7 +412721,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 4, y: 24.10772} + m_SizeDelta: {x: 4, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1392916893 MonoBehaviour: @@ -415203,6 +415614,157 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1405543404 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1405543405} + - component: {fileID: 1405543409} + - component: {fileID: 1405543408} + - component: {fileID: 1405543407} + - component: {fileID: 1405543406} + m_Layer: 0 + m_Name: legend_1_Bar + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1405543405 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1405543404} + m_LocalRotation: {x: -0, 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: 280618999} + m_Father: {fileID: 1666099892} + 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: 32.5, y: 0} + m_SizeDelta: {x: 60, y: 20} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1405543406 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1405543404} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 0 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 1 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + delegates: [] +--- !u!114 &1405543407 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1405543404} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1405543408} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1405543408 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1405543404} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.18431373, g: 0.27058825, b: 0.32941177, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 +--- !u!222 &1405543409 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1405543404} + m_CullTransparentMesh: 0 --- !u!1 &1405718894 GameObject: m_ObjectHideFlags: 0 @@ -427411,9 +427973,9 @@ RectTransform: m_Father: {fileID: 1693045525} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -338} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} --- !u!1 &1453066210 @@ -428725,157 +429287,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1458795366} m_CullTransparentMesh: 0 ---- !u!1 &1460117203 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1460117204} - - component: {fileID: 1460117208} - - component: {fileID: 1460117207} - - component: {fileID: 1460117206} - - component: {fileID: 1460117205} - m_Layer: 0 - m_Name: "legend_4_\u641C\u7D22\u5F15\u64CE" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1460117204 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1460117203} - m_LocalRotation: {x: -0, 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: 1584480613} - m_Father: {fileID: 637823618} - 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: -100} - m_SizeDelta: {x: 70, y: 20} - m_Pivot: {x: 0, y: 1} ---- !u!114 &1460117205 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1460117203} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Delegates: - - eventID: 2 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - eventID: 0 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - eventID: 1 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - delegates: [] ---- !u!114 &1460117206 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1460117203} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1460117207} - m_OnClick: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null ---- !u!114 &1460117207 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1460117203} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.5686275, g: 0.78039217, b: 0.68235296, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_Sprite: {fileID: 0} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 ---- !u!222 &1460117208 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1460117203} - m_CullTransparentMesh: 0 --- !u!1 &1460553709 GameObject: m_ObjectHideFlags: 0 @@ -428992,85 +429403,6 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1461017913 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1461017914} - - component: {fileID: 1461017916} - - component: {fileID: 1461017915} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1461017914 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1461017913} - m_LocalRotation: {x: -0, 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: 1804959458} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1461017915 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1461017913} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 16 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: "\u8054\u76DF\u5E7F\u544A" ---- !u!222 &1461017916 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1461017913} - m_CullTransparentMesh: 0 --- !u!1 &1461185552 GameObject: m_ObjectHideFlags: 0 @@ -429540,145 +429872,6 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1463724685 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1463724686} - - component: {fileID: 1463724690} - - component: {fileID: 1463724689} - - component: {fileID: 1463724688} - - component: {fileID: 1463724687} - m_Layer: 5 - m_Name: "btn_\u6298\u7EBF\u56FE" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1463724686 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1463724685} - m_LocalRotation: {x: -0, 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: 1544688905} - m_Father: {fileID: 1984073382} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1463724687 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1463724685} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Delegates: - - eventID: 2 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - delegates: [] ---- !u!114 &1463724688 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1463724685} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 0.16078432, g: 0.23529412, b: 0.33333334, a: 1} - m_HighlightedColor: {r: 0.05490196, g: 0.08235294, b: 0.12156863, a: 1} - m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1463724689} - m_OnClick: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null ---- !u!114 &1463724689 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1463724685} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_Sprite: {fileID: 0} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 ---- !u!222 &1463724690 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1463724685} - m_CullTransparentMesh: 0 --- !u!1 &1464515936 GameObject: m_ObjectHideFlags: 0 @@ -430334,6 +430527,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -430428,6 +430622,7 @@ MonoBehaviour: m_Border: 0 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -430486,6 +430681,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -433298,6 +433494,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -433360,6 +433557,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -433430,6 +433628,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -433492,6 +433691,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -439548,7 +439748,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 4, y: 24.10772} + m_SizeDelta: {x: 4, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1491944447 MonoBehaviour: @@ -442156,6 +442356,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -442250,6 +442451,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -442308,6 +442510,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -442509,6 +442712,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -442576,6 +442780,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -442639,6 +442844,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -442701,6 +442907,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -443626,6 +443833,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -443723,6 +443931,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -443781,6 +443990,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -444229,6 +444439,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -444287,6 +444498,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -444718,6 +444930,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -444780,6 +444993,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -444843,6 +445057,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -444905,6 +445120,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -449308,6 +449524,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -449402,6 +449619,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -449460,6 +449678,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -449668,6 +449887,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -449726,6 +449946,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -449934,6 +450155,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -449992,6 +450214,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -450200,6 +450423,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -450258,6 +450482,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -450466,6 +450691,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -450524,6 +450750,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -450725,6 +450952,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -450792,6 +451020,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -450855,6 +451084,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -450917,6 +451147,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -456448,85 +456679,6 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1544688904 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1544688905} - - component: {fileID: 1544688907} - - component: {fileID: 1544688906} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1544688905 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1544688904} - m_LocalRotation: {x: 0, 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: 1463724686} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1544688906 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1544688904} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 22 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 2 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: "\u6298\u7EBF\u56FE" ---- !u!222 &1544688907 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1544688904} - m_CullTransparentMesh: 0 --- !u!1 &1545108959 GameObject: m_ObjectHideFlags: 0 @@ -457193,85 +457345,6 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1547009429 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1547009430} - - component: {fileID: 1547009432} - - component: {fileID: 1547009431} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1547009430 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1547009429} - m_LocalRotation: {x: -0, 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: 499642849} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1547009431 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1547009429} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 16 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: "\u90AE\u4EF6\u8425\u9500" ---- !u!222 &1547009432 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1547009429} - m_CullTransparentMesh: 0 --- !u!1 &1547544389 GameObject: m_ObjectHideFlags: 0 @@ -464003,6 +464076,145 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1574371187} m_CullTransparentMesh: 0 +--- !u!1 &1574824902 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1574824903} + - component: {fileID: 1574824907} + - component: {fileID: 1574824906} + - component: {fileID: 1574824905} + - component: {fileID: 1574824904} + m_Layer: 5 + m_Name: "btn_\u96F7\u8FBE\u56FE" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1574824903 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574824902} + m_LocalRotation: {x: -0, 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: 1126324662} + m_Father: {fileID: 1984073382} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1574824904 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574824902} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + delegates: [] +--- !u!114 &1574824905 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574824902} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 0.16078432, g: 0.23529412, b: 0.33333334, a: 1} + m_HighlightedColor: {r: 0.05490196, g: 0.08235294, b: 0.12156863, a: 1} + m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1574824906} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1574824906 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574824902} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 +--- !u!222 &1574824907 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574824902} + m_CullTransparentMesh: 0 --- !u!1 &1574893982 GameObject: m_ObjectHideFlags: 0 @@ -466019,9 +466231,9 @@ RectTransform: m_Father: {fileID: 1693045525} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -338} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} --- !u!1 &1584084132 @@ -466256,85 +466468,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1584458700} m_CullTransparentMesh: 0 ---- !u!1 &1584480612 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1584480613} - - component: {fileID: 1584480615} - - component: {fileID: 1584480614} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1584480613 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1584480612} - m_LocalRotation: {x: -0, 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: 1460117204} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1584480614 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1584480612} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 16 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: "\u641C\u7D22\u5F15\u64CE" ---- !u!222 &1584480615 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1584480612} - m_CullTransparentMesh: 0 --- !u!1 &1584530144 GameObject: m_ObjectHideFlags: 0 @@ -466497,6 +466630,145 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1584684735} m_CullTransparentMesh: 0 +--- !u!1 &1584699279 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1584699280} + - component: {fileID: 1584699284} + - component: {fileID: 1584699283} + - component: {fileID: 1584699282} + - component: {fileID: 1584699281} + m_Layer: 5 + m_Name: "btn_\u67F1\u72B6\u56FE" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1584699280 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1584699279} + m_LocalRotation: {x: -0, 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: 1724409768} + m_Father: {fileID: 1984073382} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1584699281 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1584699279} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + delegates: [] +--- !u!114 &1584699282 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1584699279} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 0.16078432, g: 0.23529412, b: 0.33333334, a: 1} + m_HighlightedColor: {r: 0.05490196, g: 0.08235294, b: 0.12156863, a: 1} + m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1584699283} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1584699283 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1584699279} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 +--- !u!222 &1584699284 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1584699279} + m_CullTransparentMesh: 0 --- !u!1 &1584742782 GameObject: m_ObjectHideFlags: 0 @@ -467949,7 +468221,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 4, y: 24.10772} + m_SizeDelta: {x: 4, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1590248995 MonoBehaviour: @@ -468807,145 +469079,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1593581795} m_CullTransparentMesh: 0 ---- !u!1 &1593647529 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1593647530} - - component: {fileID: 1593647534} - - component: {fileID: 1593647533} - - component: {fileID: 1593647532} - - component: {fileID: 1593647531} - m_Layer: 5 - m_Name: "btn_\u997C\u56FE" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1593647530 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1593647529} - m_LocalRotation: {x: -0, 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: 1157258949} - m_Father: {fileID: 1984073382} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1593647531 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1593647529} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Delegates: - - eventID: 2 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - delegates: [] ---- !u!114 &1593647532 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1593647529} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 0.16078432, g: 0.23529412, b: 0.33333334, a: 1} - m_HighlightedColor: {r: 0.05490196, g: 0.08235294, b: 0.12156863, a: 1} - m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1593647533} - m_OnClick: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null ---- !u!114 &1593647533 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1593647529} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_Sprite: {fileID: 0} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 ---- !u!222 &1593647534 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1593647529} - m_CullTransparentMesh: 0 --- !u!1 &1593672703 GameObject: m_ObjectHideFlags: 0 @@ -471080,6 +471213,145 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1603484911} m_CullTransparentMesh: 0 +--- !u!1 &1604159954 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1604159955} + - component: {fileID: 1604159959} + - component: {fileID: 1604159958} + - component: {fileID: 1604159957} + - component: {fileID: 1604159956} + m_Layer: 5 + m_Name: "btn_\u6298\u7EBF\u56FE" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1604159955 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1604159954} + m_LocalRotation: {x: -0, 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: 597151533} + m_Father: {fileID: 1984073382} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1604159956 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1604159954} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + delegates: [] +--- !u!114 &1604159957 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1604159954} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 0.16078432, g: 0.23529412, b: 0.33333334, a: 1} + m_HighlightedColor: {r: 0.05490196, g: 0.08235294, b: 0.12156863, a: 1} + m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1604159958} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1604159958 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1604159954} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 +--- !u!222 &1604159959 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1604159954} + m_CullTransparentMesh: 0 --- !u!1 &1604214959 GameObject: m_ObjectHideFlags: 0 @@ -478601,6 +478873,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -478695,6 +478968,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -478753,6 +479027,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -479142,7 +479417,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 4, y: 24.10772} + m_SizeDelta: {x: 4, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1642069712 MonoBehaviour: @@ -484312,145 +484587,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1661948313} m_CullTransparentMesh: 0 ---- !u!1 &1662089695 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1662089696} - - component: {fileID: 1662089700} - - component: {fileID: 1662089699} - - component: {fileID: 1662089698} - - component: {fileID: 1662089697} - m_Layer: 5 - m_Name: "btn_\u5176\u4ED6" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1662089696 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1662089695} - m_LocalRotation: {x: -0, 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: 208256329} - m_Father: {fileID: 1984073382} - m_RootOrder: 7 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1662089697 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1662089695} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Delegates: - - eventID: 2 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - delegates: [] ---- !u!114 &1662089698 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1662089695} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 0.16078432, g: 0.23529412, b: 0.33333334, a: 1} - m_HighlightedColor: {r: 0.05490196, g: 0.08235294, b: 0.12156863, a: 1} - m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1662089699} - m_OnClick: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null ---- !u!114 &1662089699 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1662089695} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_Sprite: {fileID: 0} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 ---- !u!222 &1662089700 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1662089695} - m_CullTransparentMesh: 0 --- !u!1 &1662305425 GameObject: m_ObjectHideFlags: 0 @@ -485564,8 +485700,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 264803040} - - {fileID: 375558585} + - {fileID: 1742034797} + - {fileID: 1405543405} m_Father: {fileID: 1867673941} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -487491,7 +487627,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 75.23878, y: 24.10772} + m_SizeDelta: {x: 74.359406, y: 24.295984} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1678889806 MonoBehaviour: @@ -491107,6 +491243,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -491201,6 +491338,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -491259,6 +491397,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -491428,6 +491567,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -491490,6 +491630,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -491553,6 +491694,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -491615,6 +491757,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -498281,6 +498424,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1723891456} m_CullTransparentMesh: 0 +--- !u!1 &1724409767 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1724409768} + - component: {fileID: 1724409770} + - component: {fileID: 1724409769} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1724409768 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1724409767} + m_LocalRotation: {x: 0, 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: 1584699280} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1724409769 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1724409767} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 22 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u67F1\u72B6\u56FE" +--- !u!222 &1724409770 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1724409767} + m_CullTransparentMesh: 0 --- !u!1 &1724482506 GameObject: m_ObjectHideFlags: 0 @@ -500110,6 +500332,157 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1731919576} m_CullTransparentMesh: 0 +--- !u!1 &1732158164 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1732158165} + - component: {fileID: 1732158169} + - component: {fileID: 1732158168} + - component: {fileID: 1732158167} + - component: {fileID: 1732158166} + m_Layer: 0 + m_Name: "legend_1_\u90AE\u4EF6\u8425\u9500" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1732158165 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1732158164} + m_LocalRotation: {x: -0, 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: 199735716} + m_Father: {fileID: 637823618} + 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: -25} + m_SizeDelta: {x: 70, y: 20} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1732158166 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1732158164} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 0 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 1 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + delegates: [] +--- !u!114 &1732158167 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1732158164} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1732158168} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1732158168 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1732158164} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.18431373, g: 0.27058825, b: 0.32941177, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 +--- !u!222 &1732158169 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1732158164} + m_CullTransparentMesh: 0 --- !u!1 &1732471306 GameObject: m_ObjectHideFlags: 0 @@ -501454,6 +501827,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -501548,6 +501922,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -501606,6 +501981,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -501814,6 +502190,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -501872,6 +502249,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -502073,6 +502451,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -502140,6 +502519,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -502203,6 +502583,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -502265,6 +502646,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -503158,6 +503540,157 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1742034796 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1742034797} + - component: {fileID: 1742034801} + - component: {fileID: 1742034800} + - component: {fileID: 1742034799} + - component: {fileID: 1742034798} + m_Layer: 0 + m_Name: legend_0_Line + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1742034797 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1742034796} + m_LocalRotation: {x: -0, 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: 521625448} + m_Father: {fileID: 1666099892} + 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: -32.5, y: 0} + m_SizeDelta: {x: 60, y: 20} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1742034798 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1742034796} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 0 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 1 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + delegates: [] +--- !u!114 &1742034799 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1742034796} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1742034800} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &1742034800 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1742034796} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.7607843, g: 0.20784314, b: 0.19215687, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 +--- !u!222 &1742034801 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1742034796} + m_CullTransparentMesh: 0 --- !u!1 &1742184067 GameObject: m_ObjectHideFlags: 0 @@ -515040,6 +515573,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -515134,6 +515668,7 @@ MonoBehaviour: m_Border: 0 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -515192,6 +515727,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -515310,6 +515846,7 @@ MonoBehaviour: m_Border: 0 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -515368,6 +515905,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -515486,6 +516024,7 @@ MonoBehaviour: m_Border: 0 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -515544,6 +516083,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -515662,6 +516202,7 @@ MonoBehaviour: m_Border: 0 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -515720,6 +516261,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -515824,6 +516366,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -515891,6 +516434,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -515955,6 +516499,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -516017,6 +516562,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -518523,85 +519069,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1800939440} m_CullTransparentMesh: 0 ---- !u!1 &1801236849 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1801236850} - - component: {fileID: 1801236852} - - component: {fileID: 1801236851} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1801236850 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1801236849} - m_LocalRotation: {x: -0, 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: 1003955010} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1801236851 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1801236849} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 16 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: "\u76F4\u63A5\u8BBF\u95EE" ---- !u!222 &1801236852 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1801236849} - m_CullTransparentMesh: 0 --- !u!1 &1801796873 GameObject: m_ObjectHideFlags: 0 @@ -519353,157 +519820,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1804664959} m_CullTransparentMesh: 0 ---- !u!1 &1804959457 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1804959458} - - component: {fileID: 1804959462} - - component: {fileID: 1804959461} - - component: {fileID: 1804959460} - - component: {fileID: 1804959459} - m_Layer: 0 - m_Name: "legend_2_\u8054\u76DF\u5E7F\u544A" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1804959458 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1804959457} - m_LocalRotation: {x: -0, 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: 1461017914} - m_Father: {fileID: 637823618} - 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: -50} - m_SizeDelta: {x: 70, y: 20} - m_Pivot: {x: 0, y: 1} ---- !u!114 &1804959459 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1804959457} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Delegates: - - eventID: 2 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - eventID: 0 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - eventID: 1 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - delegates: [] ---- !u!114 &1804959460 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1804959457} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1804959461} - m_OnClick: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null ---- !u!114 &1804959461 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1804959457} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.38039216, g: 0.627451, b: 0.65882355, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_Sprite: {fileID: 0} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 ---- !u!222 &1804959462 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1804959457} - m_CullTransparentMesh: 0 --- !u!1 &1804980992 GameObject: m_ObjectHideFlags: 0 @@ -521950,85 +522266,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1814396399} m_CullTransparentMesh: 0 ---- !u!1 &1815721691 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1815721692} - - component: {fileID: 1815721694} - - component: {fileID: 1815721693} - m_Layer: 5 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1815721692 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1815721691} - m_LocalRotation: {x: 0, 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: 219226356} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 1, y: 1} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1815721693 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1815721691} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 22 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 2 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 0 - m_VerticalOverflow: 0 - m_LineSpacing: 1 - m_Text: "\u96F7\u8FBE\u56FE" ---- !u!222 &1815721694 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1815721691} - m_CullTransparentMesh: 0 --- !u!1 &1816137284 GameObject: m_ObjectHideFlags: 0 @@ -524070,6 +524307,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1827721774} m_CullTransparentMesh: 0 +--- !u!1 &1828037683 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1828037684} + - component: {fileID: 1828037686} + - component: {fileID: 1828037685} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1828037684 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1828037683} + m_LocalRotation: {x: -0, 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: 139057105} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1828037685 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1828037683} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.93333334, g: 0.93333334, b: 0.93333334, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: "\u8054\u76DF\u5E7F\u544A" +--- !u!222 &1828037686 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1828037683} + m_CullTransparentMesh: 0 --- !u!1 &1828958356 GameObject: m_ObjectHideFlags: 0 @@ -525602,6 +525918,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -525696,6 +526013,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -525754,6 +526072,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -525962,6 +526281,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -526020,6 +526340,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -526221,6 +526542,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -526288,6 +526610,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -526351,6 +526674,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -526413,6 +526737,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -530480,7 +530805,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 4, y: 24.10772} + m_SizeDelta: {x: 4, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1855059493 MonoBehaviour: @@ -532492,6 +532817,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -532589,6 +532915,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -532647,6 +532974,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -532918,6 +533246,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -532976,6 +533305,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -533273,6 +533603,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -533335,6 +533666,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -533398,6 +533730,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -533460,6 +533793,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -534102,6 +534436,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -534196,6 +534531,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -534254,6 +534590,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -534432,6 +534769,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -534490,6 +534828,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -534659,6 +534998,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -534721,6 +535061,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -534784,6 +535125,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -534846,6 +535188,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -551215,157 +551558,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1943675154} m_CullTransparentMesh: 0 ---- !u!1 &1943725653 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1943725654} - - component: {fileID: 1943725658} - - component: {fileID: 1943725657} - - component: {fileID: 1943725656} - - component: {fileID: 1943725655} - m_Layer: 0 - m_Name: "legend_3_\u89C6\u9891\u5E7F\u544A" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1943725654 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1943725653} - m_LocalRotation: {x: -0, 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: 1230316018} - m_Father: {fileID: 637823618} - 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: -75} - m_SizeDelta: {x: 70, y: 20} - m_Pivot: {x: 0, y: 1} ---- !u!114 &1943725655 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1943725653} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Delegates: - - eventID: 2 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - eventID: 0 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - - eventID: 1 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - delegates: [] ---- !u!114 &1943725656 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1943725653} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 1, g: 1, b: 1, a: 1} - m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} - m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1943725657} - m_OnClick: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null ---- !u!114 &1943725657 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1943725653} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.83137256, g: 0.50980395, b: 0.39607844, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_Sprite: {fileID: 0} - m_Type: 0 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 ---- !u!222 &1943725658 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1943725653} - m_CullTransparentMesh: 0 --- !u!1 &1944810819 GameObject: m_ObjectHideFlags: 0 @@ -551983,7 +552175,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 153.06958, y: -127.226234} + m_AnchoredPosition: {x: 152.62988, y: -127.226234} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1947856963 @@ -558348,145 +558540,6 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1980669292} m_CullTransparentMesh: 0 ---- !u!1 &1980867350 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1980867351} - - component: {fileID: 1980867355} - - component: {fileID: 1980867354} - - component: {fileID: 1980867353} - - component: {fileID: 1980867352} - m_Layer: 5 - m_Name: "btn_\u9996\u9875" - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1980867351 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1980867350} - m_LocalRotation: {x: -0, 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: 1313938259} - m_Father: {fileID: 1984073382} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1980867352 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1980867350} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Delegates: - - eventID: 2 - callback: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - delegates: [] ---- !u!114 &1980867353 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1980867350} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Navigation: - m_Mode: 3 - m_SelectOnUp: {fileID: 0} - m_SelectOnDown: {fileID: 0} - m_SelectOnLeft: {fileID: 0} - m_SelectOnRight: {fileID: 0} - m_Transition: 1 - m_Colors: - m_NormalColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} - m_HighlightedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} - m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} - m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} - m_ColorMultiplier: 1 - m_FadeDuration: 0.1 - m_SpriteState: - m_HighlightedSprite: {fileID: 0} - m_PressedSprite: {fileID: 0} - m_DisabledSprite: {fileID: 0} - m_AnimationTriggers: - m_NormalTrigger: Normal - m_HighlightedTrigger: Highlighted - m_PressedTrigger: Pressed - m_DisabledTrigger: Disabled - m_Interactable: 1 - m_TargetGraphic: {fileID: 1980867354} - m_OnClick: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, - Culture=neutral, PublicKeyToken=null ---- !u!114 &1980867354 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1980867350} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_Sprite: {fileID: 0} - m_Type: 1 - m_PreserveAspect: 0 - m_FillCenter: 1 - m_FillMethod: 4 - m_FillAmount: 1 - m_FillClockwise: 1 - m_FillOrigin: 0 - m_UseSpriteMesh: 0 ---- !u!222 &1980867355 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1980867350} - m_CullTransparentMesh: 0 --- !u!1 &1981199214 GameObject: m_ObjectHideFlags: 0 @@ -559102,14 +559155,14 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1980867351} - - {fileID: 1463724686} - - {fileID: 432456061} - - {fileID: 1593647530} - - {fileID: 219226356} - - {fileID: 1171847488} - - {fileID: 1164033923} - - {fileID: 1662089696} + - {fileID: 343607737} + - {fileID: 1604159955} + - {fileID: 1584699280} + - {fileID: 1206228871} + - {fileID: 1574824903} + - {fileID: 1007470818} + - {fileID: 1175709254} + - {fileID: 2016670565} m_Father: {fileID: 834546373} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -560966,6 +561019,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1993299119} m_CullTransparentMesh: 0 +--- !u!1 &1993399364 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1993399365} + - component: {fileID: 1993399367} + - component: {fileID: 1993399366} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1993399365 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1993399364} + m_LocalRotation: {x: 0, 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: 2016670565} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1993399366 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1993399364} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 22 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u5176\u4ED6" +--- !u!222 &1993399367 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1993399364} + m_CullTransparentMesh: 0 --- !u!1 &1993541217 GameObject: m_ObjectHideFlags: 0 @@ -566496,6 +566628,145 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2016497883} m_CullTransparentMesh: 0 +--- !u!1 &2016670564 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2016670565} + - component: {fileID: 2016670569} + - component: {fileID: 2016670568} + - component: {fileID: 2016670567} + - component: {fileID: 2016670566} + m_Layer: 5 + m_Name: "btn_\u5176\u4ED6" + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2016670565 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2016670564} + m_LocalRotation: {x: -0, 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: 1993399365} + m_Father: {fileID: 1984073382} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2016670566 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2016670564} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -1862395651, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + delegates: [] +--- !u!114 &2016670567 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2016670564} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 0.16078432, g: 0.23529412, b: 0.33333334, a: 1} + m_HighlightedColor: {r: 0.05490196, g: 0.08235294, b: 0.12156863, a: 1} + m_PressedColor: {r: 0.89411765, g: 0.23529412, b: 0.34901962, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 2016670568} + m_OnClick: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.Button+ButtonClickedEvent, UnityEngine.UI, Version=1.0.0.0, + Culture=neutral, PublicKeyToken=null +--- !u!114 &2016670568 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2016670564} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_Sprite: {fileID: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 +--- !u!222 &2016670569 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2016670564} + m_CullTransparentMesh: 0 --- !u!1 &2016887632 GameObject: m_ObjectHideFlags: 0 @@ -575707,7 +575978,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 4, y: 24.10772} + m_SizeDelta: {x: 4, y: 24} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2052814261 MonoBehaviour: @@ -576949,6 +577220,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -577043,6 +577315,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -577101,6 +577374,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -577223,6 +577497,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -577281,6 +577556,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -577425,6 +577701,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -577483,6 +577760,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -578270,6 +578548,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -578366,6 +578645,7 @@ MonoBehaviour: m_Border: 0 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -578424,6 +578704,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -578577,6 +578858,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -578635,6 +578917,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -585411,6 +585694,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -585508,6 +585792,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -585566,6 +585851,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -590891,7 +591177,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 184.49255, y: -74.00832} + m_AnchoredPosition: {x: 184.05286, y: -74.00832} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2110811844 @@ -595921,6 +596207,7 @@ MonoBehaviour: m_MinHeight: 0 m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_Series: m_JsonData: m_DataFromJson: 0 @@ -596015,6 +596302,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -596073,6 +596361,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -596266,6 +596555,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 1 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_Animation: m_JsonData: m_DataFromJson: 0 @@ -596324,6 +596614,7 @@ MonoBehaviour: m_Border: 1 m_BorderWidth: 0.5 m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 m_ItemStyle: m_JsonData: m_DataFromJson: 0 @@ -596509,6 +596800,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -596576,6 +596868,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -596639,6 +596932,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -596701,6 +596995,7 @@ MonoBehaviour: m_Color: {r: 0, g: 0, b: 0, a: 0} m_FontSize: 18 m_FontStyle: 0 + m_ForceENotation: 0 m_SplitArea: m_JsonData: m_DataFromJson: 0 @@ -598758,7 +599053,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 75.23878, y: 24.10772} + m_SizeDelta: {x: 74.359406, y: 24.295984} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2142529046 MonoBehaviour: @@ -598913,6 +599208,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2142938022} m_CullTransparentMesh: 0 +--- !u!1 &2143036898 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2143036899} + - component: {fileID: 2143036901} + - component: {fileID: 2143036900} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2143036899 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2143036898} + m_LocalRotation: {x: 0, 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: 343607737} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2143036900 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2143036898} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 22 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 2 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 0 + m_VerticalOverflow: 0 + m_LineSpacing: 1 + m_Text: "\u9996\u9875" +--- !u!222 &2143036901 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2143036898} + m_CullTransparentMesh: 0 --- !u!1 &2143188636 GameObject: m_ObjectHideFlags: 0 diff --git a/Assets/XCharts/Documentation/XChartsAPI.md b/Assets/XCharts/Documentation/XChartsAPI.md index 2ecac2ed..6e4627d8 100644 --- a/Assets/XCharts/Documentation/XChartsAPI.md +++ b/Assets/XCharts/Documentation/XChartsAPI.md @@ -8,6 +8,7 @@ --- +* `BaseChart.themeInfo`:主题组件`ThemeInfo`。 * `BaseChart.title`:标题组件`Title`。 * `BaseChart.legend`:图例组件`Legend`。 * `BaseChart.tooltip`:提示框组件`Tooltip`。 diff --git a/Assets/XCharts/Runtime/Utility/XChartsMgr.cs b/Assets/XCharts/Runtime/Utility/XChartsMgr.cs index 2e66deb8..2d0eb7f9 100644 --- a/Assets/XCharts/Runtime/Utility/XChartsMgr.cs +++ b/Assets/XCharts/Runtime/Utility/XChartsMgr.cs @@ -24,8 +24,8 @@ namespace XCharts public class XChartsMgr : MonoBehaviour { - public const string version = "1.0.1"; - public const int date = 20191026; + public const string version = "1.0.2"; + public const int date = 20191031; [SerializeField] private string m_NowVersion; [SerializeField] private string m_NewVersion; diff --git a/README.md b/README.md index 53071198..e4862c82 100644 --- a/README.md +++ b/README.md @@ -131,8 +131,8 @@ XCharts的图表由组件和数据组成。不同的组件和数据可以组合 ## 结构 ``` js -. -├── Demo // Demo + +├── Demo // Demo │ ├── Editor │ │ ├── ChartModuleDrawer.cs │ │ └── DemoEditor.cs @@ -152,114 +152,111 @@ XCharts的图表由组件和数据组成。不同的组件和数据可以组合 │ │ ├── Demo50_Scatter.cs │ │ ├── Demo60_Heatmap.cs │ └── demo-xchart.unity -├── Scripts // 源码 -. ├── Editor // Editor相关代码 - │ ├── PropertyDrawers // 组件Drawer - │ │ ├── AnimationDrawer.cs - │ │ ├── AreaStyleDrawer.cs - │ │ ├── AxisDrawer.cs - │ │ ├── AxisLabelDrawer.cs - │ │ ├── AxisLineDrawer.cs - │ │ ├── AxisNameDrawer.cs - │ │ ├── AxisSplitAreaDrawer.cs - │ │ ├── AxisTickDrawer.cs - │ │ ├── DataZoomDrawer.cs - │ │ ├── EmphasisDrawer.cs - │ │ ├── GridDrawer.cs - │ │ ├── ItemStyleDrawer.cs - │ │ ├── LegendDrawer.cs - │ │ ├── LineArrowDrawer.cs - │ │ ├── LineStyleDrawer.cs - │ │ ├── LocationDrawer.cs - │ │ ├── RadarDrawer.cs - │ │ ├── RadarIndicatorDrawer.cs - │ │ ├── SerieDrawer.cs - │ │ ├── SerieLabelDrawer.cs - │ │ ├── SeriesDrawer.cs - │ │ ├── SerieSymbolDrawer.cs - │ │ ├── SettingsDrawer.cs - │ │ ├── ThemeInfoDrawer.cs - │ │ ├── TitleDrawer.cs - │ │ ├── TooltipDrawer.cs - │ │ ├── VisualMapDrawer.cs - │ │ ├── XAxisDrawer.cs - │ │ └── YAxisDrawer.cs - │ ├── Ultility // Editor相关工具类 - │ │ └── ChartEditorHelper.cs - │ ├── BarChartEditor.cs - │ ├── BaseChartEditor.cs - │ ├── CoordinateChartEditor.cs - │ ├── HeatmapChartEditor.cs - │ ├── LineChartEditor.cs - │ ├── PieChartEditor.cs - │ ├── RadarChartEditor.cs - │ └── ScatterChartEditor.cs - └── Runtime // 核心代码 - ├── API // Chart API - │ ├── BaseChart_API.cs - │ └── CoordinateChart_API.cs - ├── Component // Chart的主组件和子组件 - │ ├── Main - │ │ ├── Axis.cs - │ │ ├── DataZoom.cs - │ │ ├── Grid.cs - │ │ ├── Legend.cs - │ │ ├── Radar.cs - │ │ ├── Serie.cs - │ │ ├── Series.cs - │ │ ├── Settings.cs - │ │ ├── Theme.cs - │ │ ├── Title.cs - │ │ ├── Tooltip.cs - │ │ └── VisualMap.cs - │ ├── Sub - │ │ ├── Animation.cs - │ │ ├── AreaStyle.cs - │ │ ├── AxisLabel.cs - │ │ ├── AxisLine.cs - │ │ ├── AxisName.cs - │ │ ├── AxisSplitName.cs - │ │ ├── AxisTick.cs - │ │ ├── Emphasis.cs - │ │ ├── ItemStyle.cs - │ │ ├── LineArrow.cs - │ │ ├── LineStyle.cs - │ │ ├── Location.cs - │ │ ├── SerieData.cs - │ │ ├── SerieLabel.cs - │ │ └── SerieSymbol.cs - │ ├── ChartComponent.cs - │ ├── MainComponent.cs - │ └── SubComponent.cs - ├── Helper - ├── Interface - │ ├── IJsonData.cs - │ └── IPropertyChanged.cs - ├── Internal - │ ├── AxisPool.cs - │ ├── BaseChart.cs - │ ├── CoordinateChart_DrawBar.cs - │ ├── CoordinateChart_DrawHeatmap.cs - │ ├── CoordinateChart_DrawLine.cs - │ ├── CoordinateChart_DrawScatter.cs - │ ├── CoordinateChart.cs - │ ├── JsonDataSupport.cs - │ ├── ListPool.cs - │ └── ObjectPool.cs - ├── Template - ├── Utility - │ ├── ChartCached.cs - │ ├── ChartDrawer.cs - │ └── ChartHelper.cs - ├── BarChart.cs - ├── HeatmapChart.cs - ├── LineChart.cs - ├── PieChart.cs - ├── RadarChart.cs - └── ScatterChart.cs +├── Editor // Editor相关代码 +│ ├── PropertyDrawers // 组件Drawer +│ │ ├── AnimationDrawer.cs +│ │ ├── AreaStyleDrawer.cs +│ │ ├── AxisDrawer.cs +│ │ ├── AxisLabelDrawer.cs +│ │ ├── AxisLineDrawer.cs +│ │ ├── AxisNameDrawer.cs +│ │ ├── AxisSplitAreaDrawer.cs +│ │ ├── AxisTickDrawer.cs +│ │ ├── DataZoomDrawer.cs +│ │ ├── EmphasisDrawer.cs +│ │ ├── GridDrawer.cs +│ │ ├── ItemStyleDrawer.cs +│ │ ├── LegendDrawer.cs +│ │ ├── LineArrowDrawer.cs +│ │ ├── LineStyleDrawer.cs +│ │ ├── LocationDrawer.cs +│ │ ├── RadarDrawer.cs +│ │ ├── RadarIndicatorDrawer.cs +│ │ ├── SerieDrawer.cs +│ │ ├── SerieLabelDrawer.cs +│ │ ├── SeriesDrawer.cs +│ │ ├── SerieSymbolDrawer.cs +│ │ ├── SettingsDrawer.cs +│ │ ├── ThemeInfoDrawer.cs +│ │ ├── TitleDrawer.cs +│ │ ├── TooltipDrawer.cs +│ │ ├── VisualMapDrawer.cs +│ │ ├── XAxisDrawer.cs +│ │ └── YAxisDrawer.cs +│ ├── Ultility // Editor相关工具类 +│ │ └── ChartEditorHelper.cs +│ ├── BarChartEditor.cs +│ ├── BaseChartEditor.cs +│ ├── CoordinateChartEditor.cs +│ ├── HeatmapChartEditor.cs +│ ├── LineChartEditor.cs +│ ├── PieChartEditor.cs +│ ├── RadarChartEditor.cs +│ └── ScatterChartEditor.cs +└── Runtime // 核心代码 + ├── API // Chart API + │ ├── BaseChart_API.cs + │ └── CoordinateChart_API.cs + ├── Component // Chart的主组件和子组件 + │ ├── Main + │ │ ├── Axis.cs + │ │ ├── DataZoom.cs + │ │ ├── Grid.cs + │ │ ├── Legend.cs + │ │ ├── Radar.cs + │ │ ├── Serie.cs + │ │ ├── Series.cs + │ │ ├── Settings.cs + │ │ ├── Theme.cs + │ │ ├── Title.cs + │ │ ├── Tooltip.cs + │ │ └── VisualMap.cs + │ ├── Sub + │ │ ├── Animation.cs + │ │ ├── AreaStyle.cs + │ │ ├── AxisLabel.cs + │ │ ├── AxisLine.cs + │ │ ├── AxisName.cs + │ │ ├── AxisSplitName.cs + │ │ ├── AxisTick.cs + │ │ ├── Emphasis.cs + │ │ ├── ItemStyle.cs + │ │ ├── LineArrow.cs + │ │ ├── LineStyle.cs + │ │ ├── Location.cs + │ │ ├── SerieData.cs + │ │ ├── SerieLabel.cs + │ │ └── SerieSymbol.cs + │ ├── ChartComponent.cs + │ ├── MainComponent.cs + │ └── SubComponent.cs + ├── Helper + ├── Interface + │ ├── IJsonData.cs + │ └── IPropertyChanged.cs + ├── Internal + │ ├── AxisPool.cs + │ ├── BaseChart.cs + │ ├── CoordinateChart_DrawBar.cs + │ ├── CoordinateChart_DrawHeatmap.cs + │ ├── CoordinateChart_DrawLine.cs + │ ├── CoordinateChart_DrawScatter.cs + │ ├── CoordinateChart.cs + │ ├── JsonDataSupport.cs + │ ├── ListPool.cs + │ └── ObjectPool.cs + ├── Template + ├── Utility + │ ├── ChartCached.cs + │ ├── ChartDrawer.cs + │ └── ChartHelper.cs + ├── BarChart.cs + ├── HeatmapChart.cs + ├── LineChart.cs + ├── PieChart.cs + ├── RadarChart.cs + └── ScatterChart.cs - -? directories, ? files ``` ## 更新日志 From ec9277c0d8a7acab7be5e2313e876bc97b1d1d34 Mon Sep 17 00:00:00 2001 From: monitor1394 Date: Fri, 1 Nov 2019 04:14:16 +0800 Subject: [PATCH 07/27] =?UTF-8?q?=E5=8F=91=E5=B8=831.0.2=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/XCharts/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/XCharts/package.json b/Assets/XCharts/package.json index 5b9f2faa..1323fab1 100644 --- a/Assets/XCharts/package.json +++ b/Assets/XCharts/package.json @@ -1,7 +1,7 @@ { "name": "com.monitor1394.xcharts", "displayName": "XCharts", - "version": "1.0.1", + "version": "1.0.2", "unity": "2018.3", "description": "A charting and data visualization library for Unity.", "keywords": [ From 759b3f22f943c64282d989c64e5cd5bd8da418cf Mon Sep 17 00:00:00 2001 From: monitor1394 Date: Fri, 1 Nov 2019 04:23:10 +0800 Subject: [PATCH 08/27] =?UTF-8?q?=E5=8F=91=E5=B8=831.0.2=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/XCharts/version.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Assets/XCharts/version.json b/Assets/XCharts/version.json index 19da9284..b02aa1ef 100644 --- a/Assets/XCharts/version.json +++ b/Assets/XCharts/version.json @@ -1,7 +1,7 @@ { - "version": "1.0.1", - "date": "20191026", - "checkdate": "20191026", + "version": "1.0.2", + "date": "20191031", + "checkdate": "20191031", "desc": "欢迎 Github 上点 Star 支持,非常感谢!", "homepage": "https://github.com/monitor1394/unity-ugui-XCharts" } \ No newline at end of file From 6b1fb386f19595739c188334918c351233933d63 Mon Sep 17 00:00:00 2001 From: monitor1394 Date: Sat, 2 Nov 2019 08:24:37 +0800 Subject: [PATCH 09/27] =?UTF-8?q?=E4=BC=98=E5=8C=96=E7=BB=84=E4=BB=B6?= =?UTF-8?q?=E9=9D=9E=E9=85=8D=E7=BD=AE=E5=8F=82=E6=95=B0=E5=8F=98=E9=87=8F?= =?UTF-8?q?=E7=9A=84=E5=91=BD=E5=90=8D=E5=92=8C=E8=AE=BF=E9=97=AE=E6=9D=83?= =?UTF-8?q?=E9=99=90?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Runtime/Component/ChartComponent.cs | 4 +- Assets/XCharts/Runtime/Component/Main/Axis.cs | 48 ++--- .../Runtime/Component/Main/DataZoom.cs | 44 +++-- .../XCharts/Runtime/Component/Main/Radar.cs | 23 +-- .../XCharts/Runtime/Component/Main/Serie.cs | 36 ++-- .../XCharts/Runtime/Component/Main/Series.cs | 30 +-- .../XCharts/Runtime/Component/Main/Tooltip.cs | 51 +++--- .../Runtime/Component/Main/VisualMap.cs | 48 ++--- .../XCharts/Runtime/Component/Sub/Location.cs | 8 +- .../Runtime/Component/Sub/SerieAnimation.cs | 9 +- .../Runtime/Component/Sub/SerieData.cs | 18 +- Assets/XCharts/Runtime/HeatmapChart.cs | 12 +- Assets/XCharts/Runtime/Internal/AxisPool.cs | 4 +- Assets/XCharts/Runtime/Internal/BaseChart.cs | 26 +-- .../Runtime/Internal/CoordinateChart.cs | 172 +++++++++--------- .../Internal/CoordinateChart_DrawBar.cs | 12 +- .../Internal/CoordinateChart_DrawHeatmap.cs | 52 +++--- .../Internal/CoordinateChart_DrawLine.cs | 24 +-- .../Internal/CoordinateChart_DrawScatter.cs | 4 +- .../Runtime/Internal/JsonDataSupport.cs | 45 ----- .../Runtime/Internal/JsonDataSupport.cs.meta | 13 -- Assets/XCharts/Runtime/Internal/ObjectPool.cs | 2 +- Assets/XCharts/Runtime/PieChart.cs | 136 +++++++------- Assets/XCharts/Runtime/RadarChart.cs | 52 +++--- Assets/XCharts/Runtime/Utility/ChartHelper.cs | 6 +- 25 files changed, 417 insertions(+), 462 deletions(-) delete mode 100644 Assets/XCharts/Runtime/Internal/JsonDataSupport.cs delete mode 100644 Assets/XCharts/Runtime/Internal/JsonDataSupport.cs.meta diff --git a/Assets/XCharts/Runtime/Component/ChartComponent.cs b/Assets/XCharts/Runtime/Component/ChartComponent.cs index 823bd8c8..2f366b6c 100644 --- a/Assets/XCharts/Runtime/Component/ChartComponent.cs +++ b/Assets/XCharts/Runtime/Component/ChartComponent.cs @@ -21,7 +21,7 @@ namespace XCharts /// public string jsonData { get { return m_JsonData; } set { m_JsonData = value; ParseJsonData(value); } } - public void OnAfterDeserialize() + internal void OnAfterDeserialize() { if (m_DataFromJson) { @@ -30,7 +30,7 @@ namespace XCharts } } - public void OnBeforeSerialize() + internal void OnBeforeSerialize() { } diff --git a/Assets/XCharts/Runtime/Component/Main/Axis.cs b/Assets/XCharts/Runtime/Component/Main/Axis.cs index 0d9c501c..474c98d6 100644 --- a/Assets/XCharts/Runtime/Component/Main/Axis.cs +++ b/Assets/XCharts/Runtime/Component/Main/Axis.cs @@ -208,22 +208,22 @@ namespace XCharts /// the current minimun value. /// 当前最小值。 /// - public float minValue { get; set; } + public float runtimeMinValue { get; internal set; } /// /// the current maximum value. /// 当前最大值。 /// - public float maxValue { get; set; } + public float runtimeMaxValue { get; internal set; } /// /// the x offset of zero position. /// 坐标轴原点在X轴的偏移。 /// - public float zeroXOffset { get; set; } + public float runtimeZeroXOffset { get; internal set; } /// /// the y offset of zero position. /// 坐标轴原点在Y轴的偏移。 /// - public float zeroYOffset { get; set; } + public float runtimeZeroYOffset { get; internal set; } private int filterStart; private int filterEnd; @@ -301,7 +301,7 @@ namespace XCharts /// 类目数据索引 /// 区域缩放 /// - public string GetData(int index, DataZoom dataZoom) + internal string GetData(int index, DataZoom dataZoom) { var showData = GetDataList(dataZoom); if (index >= 0 && index < showData.Count) @@ -315,7 +315,7 @@ namespace XCharts /// /// 区域缩放 /// - public List GetDataList(DataZoom dataZoom) + internal List GetDataList(DataZoom dataZoom) { if (dataZoom != null && dataZoom.enable) { @@ -333,7 +333,7 @@ namespace XCharts /// 更新dataZoom对应的类目数据列表 /// /// - public void UpdateFilterData(DataZoom dataZoom) + internal void UpdateFilterData(DataZoom dataZoom) { if (dataZoom != null && dataZoom.enable) { @@ -366,7 +366,7 @@ namespace XCharts /// /// /// - public int GetSplitNumber(float coordinateWid, DataZoom dataZoom) + internal int GetSplitNumber(float coordinateWid, DataZoom dataZoom) { if (type == AxisType.Value) { @@ -398,7 +398,7 @@ namespace XCharts /// /// /// - public float GetSplitWidth(float coordinateWidth, DataZoom dataZoom) + internal float GetSplitWidth(float coordinateWidth, DataZoom dataZoom) { int split = GetSplitNumber(coordinateWidth, dataZoom); int segment = (m_BoundaryGap ? split : split - 1); @@ -411,7 +411,7 @@ namespace XCharts /// /// /// - public int GetDataNumber(DataZoom dataZoom) + internal int GetDataNumber(DataZoom dataZoom) { return GetDataList(dataZoom).Count; } @@ -422,7 +422,7 @@ namespace XCharts /// /// /// - public float GetDataWidth(float coordinateWidth, int dataCount, DataZoom dataZoom) + internal float GetDataWidth(float coordinateWidth, int dataCount, DataZoom dataZoom) { if (dataCount < 1) dataCount = 1; var categoryCount = GetDataNumber(dataZoom); @@ -439,7 +439,7 @@ namespace XCharts /// /// /// - public string GetLabelName(float coordinateWidth, int index, float minValue, float maxValue, + internal string GetLabelName(float coordinateWidth, int index, float minValue, float maxValue, DataZoom dataZoom, bool forcePercent) { int split = GetSplitNumber(coordinateWidth, dataZoom); @@ -483,7 +483,7 @@ namespace XCharts /// /// /// - public int GetScaleNumber(float coordinateWidth, DataZoom dataZoom) + internal int GetScaleNumber(float coordinateWidth, DataZoom dataZoom) { if (type == AxisType.Value) { @@ -508,7 +508,7 @@ namespace XCharts /// /// /// - public float GetScaleWidth(float coordinateWidth, int index, DataZoom dataZoom) + internal float GetScaleWidth(float coordinateWidth, int index, DataZoom dataZoom) { int num = GetScaleNumber(coordinateWidth, dataZoom) - 1; if (num <= 0) num = 1; @@ -528,18 +528,18 @@ namespace XCharts /// 更新刻度标签文字 /// /// - public void UpdateLabelText(float coordinateWidth, DataZoom dataZoom, bool forcePercent) + internal void UpdateLabelText(float coordinateWidth, DataZoom dataZoom, bool forcePercent) { for (int i = 0; i < axisLabelTextList.Count; i++) { if (axisLabelTextList[i] != null) { - axisLabelTextList[i].text = GetLabelName(coordinateWidth, i, minValue, maxValue, dataZoom, forcePercent); + axisLabelTextList[i].text = GetLabelName(coordinateWidth, i, runtimeMinValue, runtimeMaxValue, dataZoom, forcePercent); } } } - public void SetTooltipLabel(GameObject label) + internal void SetTooltipLabel(GameObject label) { m_TooltipLabel = label; m_TooltipLabelRect = label.GetComponent(); @@ -547,13 +547,13 @@ namespace XCharts m_TooltipLabel.SetActive(true); } - public void SetTooltipLabelColor(Color bgColor, Color textColor) + internal void SetTooltipLabelColor(Color bgColor, Color textColor) { m_TooltipLabel.GetComponent().color = bgColor; m_TooltipLabelText.color = textColor; } - public void SetTooltipLabelActive(bool flag) + internal void SetTooltipLabelActive(bool flag) { if (m_TooltipLabel && m_TooltipLabel.activeInHierarchy != flag) { @@ -561,7 +561,7 @@ namespace XCharts } } - public void UpdateTooptipLabelText(string text) + internal void UpdateTooptipLabelText(string text) { if (m_TooltipLabelText) { @@ -571,7 +571,7 @@ namespace XCharts } } - public void UpdateTooltipLabelPos(Vector2 pos) + internal void UpdateTooltipLabelPos(Vector2 pos) { if (m_TooltipLabel) { @@ -591,7 +591,7 @@ namespace XCharts /// /// /// - public void AdjustMinMaxValue(ref float minValue, ref float maxValue) + internal void AdjustMinMaxValue(ref float minValue, ref float maxValue) { if (minMaxType == Axis.AxisMinMaxType.Custom) { @@ -663,8 +663,8 @@ namespace XCharts m_AxisLabel.Equals(other.axisLabel) && splitLineType == other.splitLineType && boundaryGap == other.boundaryGap && - minValue == other.minValue && - maxValue == other.maxValue && + runtimeMinValue == other.runtimeMinValue && + runtimeMaxValue == other.runtimeMaxValue && axisName.Equals(other.axisName) && ChartHelper.IsValueEqualsList(m_Data, other.data); } diff --git a/Assets/XCharts/Runtime/Component/Main/DataZoom.cs b/Assets/XCharts/Runtime/Component/Main/DataZoom.cs index e5bb8dee..dfa5f33a 100644 --- a/Assets/XCharts/Runtime/Component/Main/DataZoom.cs +++ b/Assets/XCharts/Runtime/Component/Main/DataZoom.cs @@ -208,12 +208,12 @@ namespace XCharts /// The start label. /// 组件的开始信息文本。 /// - public Text startLabel { get; set; } + private Text m_StartLabel { get; set; } /// /// The end label. /// 组件的结束信息文本。 /// - public Text endLabel { get; set; } + private Text m_EndLabel { get; set; } public static DataZoom defaultDataZoom { @@ -297,15 +297,15 @@ namespace XCharts /// 是否显示文本 /// /// - public void SetLabelActive(bool flag) + internal void SetLabelActive(bool flag) { - if (startLabel && startLabel.gameObject.activeInHierarchy != flag) + if (m_StartLabel && m_StartLabel.gameObject.activeInHierarchy != flag) { - startLabel.gameObject.SetActive(flag); + m_StartLabel.gameObject.SetActive(flag); } - if (endLabel && endLabel.gameObject.activeInHierarchy != flag) + if (m_EndLabel && m_EndLabel.gameObject.activeInHierarchy != flag) { - endLabel.gameObject.SetActive(flag); + m_EndLabel.gameObject.SetActive(flag); } } @@ -313,18 +313,18 @@ namespace XCharts /// 设置开始文本内容 /// /// - public void SetStartLabelText(string text) + internal void SetStartLabelText(string text) { - if (startLabel) startLabel.text = text; + if (m_StartLabel) m_StartLabel.text = text; } /// /// 设置结束文本内容 /// /// - public void SetEndLabelText(string text) + internal void SetEndLabelText(string text) { - if (endLabel) endLabel.text = text; + if (m_EndLabel) m_EndLabel.text = text; } /// @@ -332,7 +332,7 @@ namespace XCharts /// /// /// - public float GetHeight(float gridBottom) + internal float GetHeight(float gridBottom) { if (height <= 0) { @@ -342,5 +342,25 @@ namespace XCharts } else return height; } + + internal void SetStartLabel(Text startLabel) + { + m_StartLabel = startLabel; + } + + internal void SetEndLabel(Text endLabel) + { + m_EndLabel = endLabel; + } + + internal void UpdateStartLabelPosition(Vector3 pos) + { + m_StartLabel.transform.localPosition = pos; + } + + internal void UpdateEndLabelPosition(Vector3 pos) + { + m_EndLabel.transform.localPosition = pos; + } } } \ No newline at end of file diff --git a/Assets/XCharts/Runtime/Component/Main/Radar.cs b/Assets/XCharts/Runtime/Component/Main/Radar.cs index 953f64e2..963f5831 100644 --- a/Assets/XCharts/Runtime/Component/Main/Radar.cs +++ b/Assets/XCharts/Runtime/Component/Main/Radar.cs @@ -162,20 +162,17 @@ namespace XCharts /// the center position of radar in container. /// 雷达图在容器中的具体中心点。 /// - /// - public Vector2 centerPos { get; set; } + public Vector2 runtimeCenterPos { get; internal set; } /// /// the true radius of radar. /// 雷达图的运行时实际半径。 /// - /// - public float actualRadius { get; set; } + public float runtimeRadius { get; internal set; } /// /// the data position list of radar. /// 雷达图的所有数据坐标点列表。 /// - /// - public Dictionary> dataPosList = new Dictionary>(); + public Dictionary> runtimeDataPosList = new Dictionary>(); public static Radar defaultRadar { @@ -344,23 +341,23 @@ namespace XCharts return 0; } - public void UpdateRadarCenter(float chartWidth, float chartHeight) + internal void UpdateRadarCenter(float chartWidth, float chartHeight) { if (center.Length < 2) return; var centerX = center[0] <= 1 ? chartWidth * center[0] : center[0]; var centerY = center[1] <= 1 ? chartHeight * center[1] : center[1]; - centerPos = new Vector2(centerX, centerY); + runtimeCenterPos = new Vector2(centerX, centerY); if (radius <= 0) { - actualRadius = 0; + runtimeRadius = 0; } else if (radius <= 1) { - actualRadius = Mathf.Min(chartWidth, chartHeight) * radius; + runtimeRadius = Mathf.Min(chartWidth, chartHeight) * radius; } else { - actualRadius = radius; + runtimeRadius = radius; } } @@ -368,8 +365,8 @@ namespace XCharts { int indicatorNum = indicatorList.Count; var angle = 2 * Mathf.PI / indicatorNum * index; - var x = centerPos.x + actualRadius * Mathf.Sin(angle); - var y = centerPos.y + actualRadius * Mathf.Cos(angle); + var x = runtimeCenterPos.x + runtimeRadius * Mathf.Sin(angle); + var y = runtimeCenterPos.y + runtimeRadius * Mathf.Cos(angle); return new Vector3(x, y); } } diff --git a/Assets/XCharts/Runtime/Component/Main/Serie.cs b/Assets/XCharts/Runtime/Component/Main/Serie.cs index 869f1f1e..fa9f9cd5 100644 --- a/Assets/XCharts/Runtime/Component/Main/Serie.cs +++ b/Assets/XCharts/Runtime/Component/Main/Serie.cs @@ -426,12 +426,12 @@ namespace XCharts /// The index of serie,start at 0. /// 系列的索引,从0开始。 /// - public int index { get; set; } + public int index { get; internal set; } /// /// Whether the serie is highlighted. /// 该系列是否高亮,一般由图例悬停触发。 /// - public bool highlighted { get; set; } + public bool highlighted { get; internal set; } /// /// the count of data list. /// 数据项个数。 @@ -444,25 +444,25 @@ namespace XCharts /// /// 饼图的中心点位置。 /// - public Vector3 pieCenterPos { get; set; } + public Vector3 runtimePieCenterPos { get; internal set; } /// /// 饼图的内径 /// - public float pieInsideRadius { get; set; } + public float runtimePieInsideRadius { get; internal set; } /// /// 饼图的外径 /// - public float pieOutsideRadius { get; set; } + public float runtimePieOutsideRadius { get; internal set; } /// /// 饼图的数据项最大值 /// - public float pieDataMax { get; set; } + public float runtimePieDataMax { get; internal set; } /// /// 饼图的数据项之和 /// - public float pieDataTotal { get; set; } + public float runtimePieDataTotal { get; internal set; } - public List GetUpSmoothList(int dataIndex, int size = 100) + internal List GetUpSmoothList(int dataIndex, int size = 100) { if (m_UpSmoothPoints.ContainsKey(dataIndex)) { @@ -476,7 +476,7 @@ namespace XCharts } } - public List GetDownSmoothList(int dataIndex, int size = 100) + internal List GetDownSmoothList(int dataIndex, int size = 100) { if (m_DownSmoothPoints.ContainsKey(dataIndex)) { @@ -490,7 +490,7 @@ namespace XCharts } } - public void ClearSmoothList(int dataIndex) + internal void ClearSmoothList(int dataIndex) { if (m_UpSmoothPoints.ContainsKey(dataIndex)) { @@ -836,7 +836,7 @@ namespace XCharts /// 根据dataZoom更新数据列表缓存 /// /// - public void UpdateFilterData(DataZoom dataZoom) + internal void UpdateFilterData(DataZoom dataZoom) { if (dataZoom != null && dataZoom.enable) { @@ -939,7 +939,7 @@ namespace XCharts } } - public Color GetAreaColor(ThemeInfo theme, int index, bool highlight) + internal Color GetAreaColor(ThemeInfo theme, int index, bool highlight) { var color = areaStyle.color != Color.clear ? areaStyle.color : (Color)theme.GetColor(index); if (highlight) @@ -951,7 +951,7 @@ namespace XCharts return color; } - public Color GetAreaToColor(ThemeInfo theme, int index, bool highlight) + internal Color GetAreaToColor(ThemeInfo theme, int index, bool highlight) { if (areaStyle.toColor != Color.clear) { @@ -970,7 +970,7 @@ namespace XCharts } } - public Color GetLineColor(ThemeInfo theme, int index, bool highlight) + internal Color GetLineColor(ThemeInfo theme, int index, bool highlight) { if (lineStyle.color != Color.clear) { @@ -988,7 +988,7 @@ namespace XCharts } } - public Color GetSymbolColor(ThemeInfo theme, int index, bool highlight) + internal Color GetSymbolColor(ThemeInfo theme, int index, bool highlight) { if (symbol.color != Color.clear) { @@ -1006,13 +1006,13 @@ namespace XCharts } } - public float GetBarWidth(float categoryWidth) + internal float GetBarWidth(float categoryWidth) { if (m_BarWidth > 1) return m_BarWidth; else return m_BarWidth * categoryWidth; } - public float GetBarGap(float categoryWidth) + internal float GetBarGap(float categoryWidth) { if (m_BarGap == -1) return 0; else if (m_BarGap <= 1) return GetBarWidth(categoryWidth) * m_BarGap; @@ -1073,7 +1073,7 @@ namespace XCharts } } - public bool IsNeedShowDataIcon() + internal bool IsNeedShowDataIcon() { foreach (var data in m_Data) { diff --git a/Assets/XCharts/Runtime/Component/Main/Series.cs b/Assets/XCharts/Runtime/Component/Main/Series.cs index 72c6cf26..ca3d3a65 100644 --- a/Assets/XCharts/Runtime/Component/Main/Series.cs +++ b/Assets/XCharts/Runtime/Component/Main/Series.cs @@ -143,7 +143,7 @@ namespace XCharts /// /// /// - public Serie GetLastStackSerie(int index) + internal Serie GetLastStackSerie(int index) { var serie = GetSerie(index); return GetLastStackSerie(serie); @@ -154,7 +154,7 @@ namespace XCharts /// /// /// - public bool IsAnyGradientSerie(string stack) + internal bool IsAnyGradientSerie(string stack) { if (string.IsNullOrEmpty(stack)) return false; foreach (var serie in m_Series) @@ -172,7 +172,7 @@ namespace XCharts /// /// /// - public Serie GetLastStackSerie(Serie serie) + internal Serie GetLastStackSerie(Serie serie) { if (serie == null || string.IsNullOrEmpty(serie.stack)) return null; for (int i = serie.index - 1; i >= 0; i--) @@ -461,7 +461,7 @@ namespace XCharts /// dataZoom由变化是更新系列的缓存数据 /// /// - public void UpdateFilterData(DataZoom dataZoom) + internal void UpdateFilterData(DataZoom dataZoom) { if (dataZoom != null && dataZoom.enable) { @@ -527,7 +527,7 @@ namespace XCharts /// /// /// - public bool IsUsedAxisIndex(int axisIndex) + internal bool IsUsedAxisIndex(int axisIndex) { foreach (var serie in list) { @@ -555,7 +555,7 @@ namespace XCharts /// /// /// - public void GetXMinMaxValue(DataZoom dataZoom, int axisIndex, bool isValueAxis, + internal void GetXMinMaxValue(DataZoom dataZoom, int axisIndex, bool isValueAxis, out float minVaule, out float maxValue) { GetMinMaxValue(dataZoom, axisIndex, isValueAxis, false, out minVaule, out maxValue); @@ -568,7 +568,7 @@ namespace XCharts /// /// /// - public void GetYMinMaxValue(DataZoom dataZoom, int axisIndex, bool isValueAxis, + internal void GetYMinMaxValue(DataZoom dataZoom, int axisIndex, bool isValueAxis, out float minVaule, out float maxValue) { GetMinMaxValue(dataZoom, axisIndex, isValueAxis, true, out minVaule, out maxValue); @@ -576,7 +576,7 @@ namespace XCharts private Dictionary> _stackSeriesForMinMax = new Dictionary>(); private Dictionary _serieTotalValueForMinMax = new Dictionary(); - public void GetMinMaxValue(DataZoom dataZoom, int axisIndex, bool isValueAxis, bool yValue, + internal void GetMinMaxValue(DataZoom dataZoom, int axisIndex, bool isValueAxis, bool yValue, out float minVaule, out float maxValue) { float min = int.MaxValue; @@ -680,7 +680,7 @@ namespace XCharts /// 是否由数据堆叠 /// /// - public bool IsStack() + internal bool IsStack() { _setForStack.Clear(); foreach (var serie in m_Series) @@ -701,7 +701,7 @@ namespace XCharts /// /// /// - public bool IsStack(string stackName, SerieType type) + internal bool IsStack(string stackName, SerieType type) { if (string.IsNullOrEmpty(stackName)) return false; int count = 0; @@ -721,7 +721,7 @@ namespace XCharts /// /// /// - public bool IsPercentStack(SerieType type) + internal bool IsPercentStack(SerieType type) { int count = 0; bool isPercentStack = false; @@ -746,7 +746,7 @@ namespace XCharts /// /// /// - public bool IsPercentStack(string stackName, SerieType type) + internal bool IsPercentStack(string stackName, SerieType type) { if (string.IsNullOrEmpty(stackName)) return false; int count = 0; @@ -770,7 +770,7 @@ namespace XCharts /// 获得堆叠系列列表 /// /// - public Dictionary> GetStackSeries() + internal Dictionary> GetStackSeries() { int count = 0; Dictionary sets = new Dictionary(); @@ -810,7 +810,7 @@ namespace XCharts /// /// /// - public void GetStackSeries(ref Dictionary> stackSeries) + internal void GetStackSeries(ref Dictionary> stackSeries) { int count = 0; sets.Clear(); @@ -860,7 +860,7 @@ namespace XCharts /// 获得所有系列名,不包含空名字。 /// /// - public List GetSerieNameList() + internal List GetSerieNameList() { serieNameList.Clear(); for (int n = 0; n < m_Series.Count; n++) diff --git a/Assets/XCharts/Runtime/Component/Main/Tooltip.cs b/Assets/XCharts/Runtime/Component/Main/Tooltip.cs index d866672c..0a0a7a69 100644 --- a/Assets/XCharts/Runtime/Component/Main/Tooltip.cs +++ b/Assets/XCharts/Runtime/Component/Main/Tooltip.cs @@ -124,42 +124,42 @@ namespace XCharts /// The data index currently indicated by Tooltip. /// 当前提示框所指示的数据项索引。 /// - public List dataIndex { get; set; } + public List runtimeDataIndex { get; internal set; } /// /// the value for x indicator label. /// 指示器X轴上要显示的值。 /// - public float[] xValues { get; set; } + public float[] runtimeXValues { get; internal set; } /// /// the value for y indicator label. /// 指示器Y轴上要显示的值。 /// - public float[] yValues { get; set; } + public float[] runtimeYValues { get; internal set; } /// /// the current pointer position. /// 当前鼠标位置。 /// - public Vector2 pointerPos { get; set; } + public Vector2 runtimePointerPos { get; internal set; } /// /// the width of tooltip. /// 提示框宽。 /// - public float width { get { return m_ContentRect.sizeDelta.x; } } + public float runtimeWidth { get { return m_ContentRect.sizeDelta.x; } } /// /// the height of tooltip. /// 提示框高。 /// - public float height { get { return m_ContentRect.sizeDelta.y; } } + public float runtimeHeight { get { return m_ContentRect.sizeDelta.y; } } /// /// Whether the tooltip has been initialized. /// 提示框是否已初始化。 /// - public bool inited { get { return m_GameObject != null; } } + public bool runtimeInited { get { return m_GameObject != null; } } /// /// the gameObject of tooltip. /// 提示框的gameObject。 /// - public GameObject gameObject { get { return m_GameObject; } } + public GameObject runtimeGameObject { get { return m_GameObject; } } public static Tooltip defaultTooltip { @@ -168,9 +168,9 @@ namespace XCharts var tooltip = new Tooltip { m_Show = true, - xValues = new float[2] { -1, -1 }, - yValues = new float[2] { -1, -1 }, - dataIndex = new List() { -1, -1 }, + runtimeXValues = new float[2] { -1, -1 }, + runtimeYValues = new float[2] { -1, -1 }, + runtimeDataIndex = new List() { -1, -1 }, lastDataIndex = new List() { -1, -1 } }; return tooltip; @@ -214,7 +214,8 @@ namespace XCharts /// public void SetContentBackgroundColor(Color color) { - m_Content.GetComponent().color = color; + if (m_Content != null && m_Content.GetComponent() != null) + m_Content.GetComponent().color = color; } /// @@ -252,11 +253,11 @@ namespace XCharts /// /// 清除提示框指示数据 /// - public void ClearValue() + internal void ClearValue() { - dataIndex[0] = dataIndex[1] = -1; - xValues[0] = xValues[1] = -1; - yValues[0] = yValues[1] = -1; + runtimeDataIndex[0] = runtimeDataIndex[1] = -1; + runtimeXValues[0] = runtimeXValues[1] = -1; + runtimeYValues[0] = runtimeYValues[1] = -1; } /// @@ -308,17 +309,17 @@ namespace XCharts /// public bool IsDataIndexChanged() { - return dataIndex[0] != lastDataIndex[0] || - dataIndex[1] != lastDataIndex[1]; + return runtimeDataIndex[0] != lastDataIndex[0] || + runtimeDataIndex[1] != lastDataIndex[1]; } /// /// 当前索引缓存 /// - public void UpdateLastDataIndex() + internal void UpdateLastDataIndex() { - lastDataIndex[0] = dataIndex[0]; - lastDataIndex[1] = dataIndex[1]; + lastDataIndex[0] = runtimeDataIndex[0]; + lastDataIndex[1] = runtimeDataIndex[1]; } /// @@ -327,7 +328,7 @@ namespace XCharts /// public bool IsSelected() { - return dataIndex[0] >= 0 || dataIndex[1] >= 0; + return runtimeDataIndex[0] >= 0 || runtimeDataIndex[1] >= 0; } /// @@ -337,10 +338,10 @@ namespace XCharts /// public bool IsSelected(int index) { - return dataIndex[0] == index || dataIndex[1] == index; + return runtimeDataIndex[0] == index || runtimeDataIndex[1] == index; } - public string GetFormatterContent(int dataIndex, Series series, string category, DataZoom dataZoom = null) + internal string GetFormatterContent(int dataIndex, Series series, string category, DataZoom dataZoom = null) { if (string.IsNullOrEmpty(m_Formatter)) { @@ -383,7 +384,7 @@ namespace XCharts } } - public string GetFormatterContent(string serieName, string dataName, float dataValue) + internal string GetFormatterContent(string serieName, string dataName, float dataValue) { if (string.IsNullOrEmpty(m_Formatter)) return ChartCached.FloatToStr(dataValue, 0, m_ForceENotation); diff --git a/Assets/XCharts/Runtime/Component/Main/VisualMap.cs b/Assets/XCharts/Runtime/Component/Main/VisualMap.cs index 38e7f207..eb3c7d4f 100644 --- a/Assets/XCharts/Runtime/Component/Main/VisualMap.cs +++ b/Assets/XCharts/Runtime/Component/Main/VisualMap.cs @@ -164,14 +164,14 @@ namespace XCharts /// 鼠标悬停选中的index /// /// - public int rtSelectedIndex { get; set; } - public float rtSelectedValue { get; set; } + public int runtimeSelectedIndex { get; internal set; } + public float runtimeSelectedValue { get; internal set; } /// /// the current pointer position. /// 当前鼠标位置。 /// - public Vector2 pointerPos { get; set; } - public bool isVertical { get { return orient == Orient.Vertical; } } + public Vector2 runtimePointerPos { get; internal set; } + public bool runtimeIsVertical { get { return orient == Orient.Vertical; } } public float rangeMin { get @@ -198,7 +198,7 @@ namespace XCharts } } - public int rtSplitNumber + public int runtimeSplitNumber { get { @@ -207,18 +207,18 @@ namespace XCharts } } - public float rangeMinHeight { get { return (rangeMin - min) / (max - min) * itemHeight; } } - public float rangeMaxHeight { get { return (rangeMax - min) / (max - min) * itemHeight; } } + public float runtimeRangeMinHeight { get { return (rangeMin - min) / (max - min) * itemHeight; } } + public float runtimeRangeMaxHeight { get { return (rangeMax - min) / (max - min) * itemHeight; } } private List m_RtInRange = new List(); - public List rtInRange + public List runtimeInRange { get { if (splitNumber == 0 || m_InRange.Count >= splitNumber || m_InRange.Count < 1) return m_InRange; else { - if (m_RtInRange.Count != rtSplitNumber) + if (m_RtInRange.Count != runtimeSplitNumber) { m_RtInRange.Clear(); var total = max - min; @@ -256,7 +256,7 @@ namespace XCharts public Color GetColor(float value) { - int splitNumber = rtInRange.Count; + int splitNumber = runtimeInRange.Count; if (splitNumber <= 0) return Color.clear; value = Mathf.Clamp(value, min, max); @@ -264,13 +264,13 @@ namespace XCharts var index = GetIndex(value); var nowMin = min + index * diff; var rate = (value - nowMin) / diff; - if (index == splitNumber - 1) return rtInRange[index]; - else return Color.Lerp(rtInRange[index], rtInRange[index + 1], rate); + if (index == splitNumber - 1) return runtimeInRange[index]; + else return Color.Lerp(runtimeInRange[index], runtimeInRange[index + 1], rate); } public int GetIndex(float value) { - int splitNumber = rtInRange.Count; + int splitNumber = runtimeInRange.Count; if (splitNumber <= 0) return -1; value = Mathf.Clamp(value, min, max); @@ -289,19 +289,19 @@ namespace XCharts public bool IsInSelectedValue(float value) { - if (rtSelectedIndex < 0) return true; + if (runtimeSelectedIndex < 0) return true; else { - return rtSelectedIndex == GetIndex(value); + return runtimeSelectedIndex == GetIndex(value); } } public float GetValue(Vector3 pos, float chartWidth, float chartHeight) { var centerPos = location.GetPosition(chartWidth, chartHeight); - var pos1 = centerPos + (isVertical ? Vector3.down : Vector3.left) * itemHeight / 2; - var pos2 = centerPos + (isVertical ? Vector3.up : Vector3.right) * itemHeight / 2; - if (isVertical) + var pos1 = centerPos + (runtimeIsVertical ? Vector3.down : Vector3.left) * itemHeight / 2; + var pos2 = centerPos + (runtimeIsVertical ? Vector3.up : Vector3.right) * itemHeight / 2; + if (runtimeIsVertical) { if (pos.y < pos1.y) return min; else if (pos.y > pos2.y) return max; @@ -337,12 +337,12 @@ namespace XCharts { var pos1 = centerPos + Vector3.down * itemHeight / 2; return local.x >= centerPos.x - itemWidth / 2 && local.x <= centerPos.x + itemWidth / 2 && - local.y >= pos1.y + rangeMinHeight && local.y <= pos1.y + rangeMaxHeight; + local.y >= pos1.y + runtimeRangeMinHeight && local.y <= pos1.y + runtimeRangeMaxHeight; } else { var pos1 = centerPos + Vector3.left * itemHeight / 2; - return local.x >= pos1.x + rangeMinHeight && local.x <= pos1.x + rangeMaxHeight && + return local.x >= pos1.x + runtimeRangeMinHeight && local.x <= pos1.x + runtimeRangeMaxHeight && local.y >= centerPos.y - itemWidth / 2 && local.y <= centerPos.y + itemWidth / 2; } } @@ -354,7 +354,7 @@ namespace XCharts { var radius = triangleLen / 2; var pos1 = centerPos + Vector3.down * itemHeight / 2; - var cpos = new Vector3(pos1.x + itemWidth / 2 + radius, pos1.y + rangeMinHeight - radius); + var cpos = new Vector3(pos1.x + itemWidth / 2 + radius, pos1.y + runtimeRangeMinHeight - radius); return local.x >= cpos.x - radius && local.x <= cpos.x + radius && local.y >= cpos.y - radius && local.y <= cpos.y + radius; @@ -363,7 +363,7 @@ namespace XCharts { var radius = triangleLen / 2; var pos1 = centerPos + Vector3.left * itemHeight / 2; - var cpos = new Vector3(pos1.x + rangeMinHeight, pos1.y + itemWidth / 2 + radius); + var cpos = new Vector3(pos1.x + runtimeRangeMinHeight, pos1.y + itemWidth / 2 + radius); return local.x >= cpos.x - radius && local.x <= cpos.x + radius && local.y >= cpos.y - radius && local.y <= cpos.y + radius; } @@ -376,7 +376,7 @@ namespace XCharts { var radius = triangleLen / 2; var pos1 = centerPos + Vector3.down * itemHeight / 2; - var cpos = new Vector3(pos1.x + itemWidth / 2 + radius, pos1.y + rangeMaxHeight + radius); + var cpos = new Vector3(pos1.x + itemWidth / 2 + radius, pos1.y + runtimeRangeMaxHeight + radius); return local.x >= cpos.x - radius && local.x <= cpos.x + radius && local.y >= cpos.y - radius && local.y <= cpos.y + radius; @@ -385,7 +385,7 @@ namespace XCharts { var radius = triangleLen / 2; var pos1 = centerPos + Vector3.left * itemHeight / 2; - var cpos = new Vector3(pos1.x + rangeMaxHeight + radius, pos1.y + itemWidth / 2 + radius); + var cpos = new Vector3(pos1.x + runtimeRangeMaxHeight + radius, pos1.y + itemWidth / 2 + radius); return local.x >= cpos.x - radius && local.x <= cpos.x + radius && local.y >= cpos.y - radius && local.y <= cpos.y + radius; } diff --git a/Assets/XCharts/Runtime/Component/Sub/Location.cs b/Assets/XCharts/Runtime/Component/Sub/Location.cs index 83621c73..19c61aff 100644 --- a/Assets/XCharts/Runtime/Component/Sub/Location.cs +++ b/Assets/XCharts/Runtime/Component/Sub/Location.cs @@ -74,25 +74,25 @@ namespace XCharts /// Location对应的Anchor锚点 /// /// - public TextAnchor textAnchor { get { return m_TextAnchor; } } + public TextAnchor runtimeTextAnchor { get { return m_TextAnchor; } } /// /// the minimum achor. /// Location对应的anchorMin。 /// /// - public Vector2 anchorMin { get { return m_AnchorMin; } } + public Vector2 runtimeAnchorMin { get { return m_AnchorMin; } } /// /// the maximun achor. /// Location对应的anchorMax. /// /// - public Vector2 anchorMax { get { return m_AnchorMax; } } + public Vector2 runtimeAnchorMax { get { return m_AnchorMax; } } /// /// the povot. /// Loation对应的中心点。 /// /// - public Vector2 pivot { get { return m_Pivot; } } + public Vector2 runtimePivot { get { return m_Pivot; } } public static Location defaultLeft { diff --git a/Assets/XCharts/Runtime/Component/Sub/SerieAnimation.cs b/Assets/XCharts/Runtime/Component/Sub/SerieAnimation.cs index 12110e0a..9f8f7073 100644 --- a/Assets/XCharts/Runtime/Component/Sub/SerieAnimation.cs +++ b/Assets/XCharts/Runtime/Component/Sub/SerieAnimation.cs @@ -37,31 +37,26 @@ namespace XCharts /// Easing method used for the first animation. /// 动画的缓动效果。 /// - /// public Easing easing { get { return m_Easting; } set { m_Easting = value; } } /// /// The milliseconds duration of the first animation. /// 设定的动画时长(毫秒)。 /// - /// public int duration { get { return m_Duration; } set { m_Duration = value; } } /// /// The milliseconds actual duration of the first animation. /// 实际的动画时长(毫秒)。 /// - /// public int actualDuration { get { return m_ActualDuration; } } /// /// Whether to set graphic number threshold to animation. Animation will be disabled when graphic number is larger than threshold. /// 是否开启动画的阈值,当单个系列显示的图形数量大于这个阈值时会关闭动画。 /// - /// public int threshold { get { return m_Threshold; } set { m_Threshold = value; } } /// /// The milliseconds delay before updating the first animation. /// 动画延时(毫秒)。 /// - /// public int delay { get { return m_Delay; } set { m_Delay = value; if (m_Delay < 0) m_Delay = 0; } } private Dictionary m_DataAnimationState = new Dictionary(); @@ -179,7 +174,7 @@ namespace XCharts return dataIndex <= m_CurrDataProgress; } - public void CheckProgress(float delta) + internal void CheckProgress(float delta) { if (!enable) return; if (IsInDelay()) return; @@ -195,7 +190,7 @@ namespace XCharts } } - public void CheckSymbol(float delta, float dest) + internal void CheckSymbol(float delta, float dest) { m_CurrSymbolProgress += delta; if (m_CurrSymbolProgress > dest) m_CurrSymbolProgress = dest; diff --git a/Assets/XCharts/Runtime/Component/Sub/SerieData.cs b/Assets/XCharts/Runtime/Component/Sub/SerieData.cs index 2541e98a..a1299375 100644 --- a/Assets/XCharts/Runtime/Component/Sub/SerieData.cs +++ b/Assets/XCharts/Runtime/Component/Sub/SerieData.cs @@ -133,34 +133,34 @@ namespace XCharts /// /// 饼图数据项的开始角度(运行时自动计算) /// - public float pieStartAngle { get; set; } + public float runtimePieStartAngle { get; internal set; } /// /// 饼图数据项的结束角度(运行时自动计算) /// - public float pieToAngle { get; set; } + public float runtimePieToAngle { get; internal set; } /// /// 饼图数据项的一半时的角度(运行时自动计算) /// - public float pieHalfAngle { get; set; } + public float runtimePieHalfAngle { get; internal set; } /// /// 饼图数据项的当前角度(运行时自动计算) /// - public float pieCurrAngle { get; set; } + public float runtimePieCurrAngle { get; internal set; } /// /// 饼图数据项的内半径 /// - public float pieInsideRadius { get; set; } + public float runtimePieInsideRadius { get; internal set; } /// /// 饼图数据项的外半径 /// - public float pieOutsideRadius + public float runtimePieOutsideRadius { get { if (radius > 0) return radius; else return m_RtPieOutsideRadius; } - set + internal set { m_RtPieOutsideRadius = value; } @@ -168,8 +168,8 @@ namespace XCharts /// /// 饼图数据项的偏移半径 /// - public float pieOffsetRadius { get; set; } - public Vector3 pieOffsetCenter { get; set; } + public float runtimePieOffsetRadius { get; internal set; } + public Vector3 runtiemPieOffsetCenter { get; internal set; } public float GetData(int index) { diff --git a/Assets/XCharts/Runtime/HeatmapChart.cs b/Assets/XCharts/Runtime/HeatmapChart.cs index 280de6a1..a38c40ae 100644 --- a/Assets/XCharts/Runtime/HeatmapChart.cs +++ b/Assets/XCharts/Runtime/HeatmapChart.cs @@ -87,8 +87,8 @@ namespace XCharts protected override void RefreshTooltip() { - var xData = m_Tooltip.xValues[0]; - var yData = m_Tooltip.yValues[0]; + var xData = m_Tooltip.runtimeXValues[0]; + var yData = m_Tooltip.runtimeYValues[0]; if (IsCategory() && (xData < 0 || yData < 0)) return; sb.Length = 0; for (int i = 0; i < m_Series.Count; i++) @@ -117,13 +117,13 @@ namespace XCharts } m_Tooltip.UpdateContentText(sb.ToString().Trim()); var pos = m_Tooltip.GetContentPos(); - if (pos.x + m_Tooltip.width > chartWidth) + if (pos.x + m_Tooltip.runtimeWidth > chartWidth) { - pos.x = chartWidth - m_Tooltip.width; + pos.x = chartWidth - m_Tooltip.runtimeWidth; } - if (pos.y - m_Tooltip.height < 0) + if (pos.y - m_Tooltip.runtimeHeight < 0) { - pos.y = m_Tooltip.height; + pos.y = m_Tooltip.runtimeHeight; } m_Tooltip.UpdateContentPos(pos); m_Tooltip.SetActive(true); diff --git a/Assets/XCharts/Runtime/Internal/AxisPool.cs b/Assets/XCharts/Runtime/Internal/AxisPool.cs index 5d3afd51..e02b4d9e 100644 --- a/Assets/XCharts/Runtime/Internal/AxisPool.cs +++ b/Assets/XCharts/Runtime/Internal/AxisPool.cs @@ -7,7 +7,7 @@ namespace XCharts { - public static class XAxisPool + internal static class XAxisPool { private static readonly ObjectPool s_ListPool = new ObjectPool(null, null); @@ -22,7 +22,7 @@ namespace XCharts } } - public static class YAxisPool + internal static class YAxisPool { private static readonly ObjectPool s_ListPool = new ObjectPool(null, null); diff --git a/Assets/XCharts/Runtime/Internal/BaseChart.cs b/Assets/XCharts/Runtime/Internal/BaseChart.cs index 08066464..87283468 100644 --- a/Assets/XCharts/Runtime/Internal/BaseChart.cs +++ b/Assets/XCharts/Runtime/Internal/BaseChart.cs @@ -148,10 +148,10 @@ namespace XCharts private void InitTitle() { m_Title.OnChanged(); - TextAnchor anchor = m_Title.location.textAnchor; - Vector2 anchorMin = m_Title.location.anchorMin; - Vector2 anchorMax = m_Title.location.anchorMax; - Vector2 pivot = m_Title.location.pivot; + TextAnchor anchor = m_Title.location.runtimeTextAnchor; + Vector2 anchorMin = m_Title.location.runtimeAnchorMin; + Vector2 anchorMax = m_Title.location.runtimeAnchorMax; + Vector2 pivot = m_Title.location.runtimePivot; Vector3 titlePosition = m_Title.location.GetPosition(chartWidth, chartHeight); Vector3 subTitlePosition = -new Vector3(0, m_Title.textFontSize + m_Title.itemGap, 0); float titleWid = chartWidth; @@ -183,10 +183,10 @@ namespace XCharts private void InitLegend() { m_Legend.OnChanged(); - TextAnchor anchor = m_Legend.location.textAnchor; - Vector2 anchorMin = m_Legend.location.anchorMin; - Vector2 anchorMax = m_Legend.location.anchorMax; - Vector2 pivot = m_Legend.location.pivot; + TextAnchor anchor = m_Legend.location.runtimeTextAnchor; + Vector2 anchorMin = m_Legend.location.runtimeAnchorMin; + Vector2 anchorMax = m_Legend.location.runtimeAnchorMax; + Vector2 pivot = m_Legend.location.runtimePivot; var legendObject = ChartHelper.AddObject(s_LegendObjectName, transform, anchorMin, anchorMax, pivot, new Vector2(chartWidth, chartHeight)); @@ -409,7 +409,7 @@ namespace XCharts private void CheckPointerPos() { - var needCheck = (m_Tooltip.show && m_Tooltip.inited) + var needCheck = (m_Tooltip.show && m_Tooltip.runtimeInited) || raycastTarget; if (needCheck) { @@ -429,7 +429,7 @@ namespace XCharts private void CheckTooltip() { - if (!m_Tooltip.show || !m_Tooltip.inited) + if (!m_Tooltip.show || !m_Tooltip.runtimeInited) { if (m_Tooltip.IsActive()) { @@ -439,9 +439,9 @@ namespace XCharts } return; } - for (int i = 0; i < m_Tooltip.dataIndex.Count; i++) + for (int i = 0; i < m_Tooltip.runtimeDataIndex.Count; i++) { - m_Tooltip.dataIndex[i] = -1; + m_Tooltip.runtimeDataIndex[i] = -1; } Vector2 local = pointerPos; if (canvas == null) return; @@ -465,7 +465,7 @@ namespace XCharts } return; } - m_Tooltip.pointerPos = local; + m_Tooltip.runtimePointerPos = local; CheckTootipArea(local); } diff --git a/Assets/XCharts/Runtime/Internal/CoordinateChart.cs b/Assets/XCharts/Runtime/Internal/CoordinateChart.cs index fc25a548..5c35b927 100644 --- a/Assets/XCharts/Runtime/Internal/CoordinateChart.cs +++ b/Assets/XCharts/Runtime/Internal/CoordinateChart.cs @@ -154,14 +154,14 @@ namespace XCharts if (!xAxis.show && !yAxis.show) continue; if (isCartesian && xAxis.show && yAxis.show) { - var yRate = (yAxis.maxValue - yAxis.minValue) / coordinateHeight; - var xRate = (xAxis.maxValue - xAxis.minValue) / coordinateWidth; - var yValue = yRate * (local.y - coordinateY - yAxis.zeroYOffset); - if (yAxis.minValue > 0) yValue += yAxis.minValue; - m_Tooltip.yValues[i] = yValue; - var xValue = xRate * (local.x - coordinateX - xAxis.zeroXOffset); - if (xAxis.minValue > 0) xValue += xAxis.minValue; - m_Tooltip.xValues[i] = xValue; + var yRate = (yAxis.runtimeMaxValue - yAxis.runtimeMinValue) / coordinateHeight; + var xRate = (xAxis.runtimeMaxValue - xAxis.runtimeMinValue) / coordinateWidth; + var yValue = yRate * (local.y - coordinateY - yAxis.runtimeZeroYOffset); + if (yAxis.runtimeMinValue > 0) yValue += yAxis.runtimeMinValue; + m_Tooltip.runtimeYValues[i] = yValue; + var xValue = xRate * (local.x - coordinateX - xAxis.runtimeZeroXOffset); + if (xAxis.runtimeMinValue > 0) xValue += xAxis.runtimeMinValue; + m_Tooltip.runtimeXValues[i] = xValue; for (int j = 0; j < m_Series.Count; j++) { @@ -175,7 +175,7 @@ namespace XCharts if (Mathf.Abs(xValue - xdata) / xRate < symbolSize && Mathf.Abs(yValue - ydata) / yRate < symbolSize) { - m_Tooltip.dataIndex[i] = n; + m_Tooltip.runtimeDataIndex[i] = n; serieData.highlighted = true; } else @@ -195,8 +195,8 @@ namespace XCharts if ((xAxis.boundaryGap && (local.x > pX && local.x <= pX + splitWid)) || (!xAxis.boundaryGap && (local.x > pX - splitWid / 2 && local.x <= pX + splitWid / 2))) { - m_Tooltip.xValues[i] = j; - m_Tooltip.dataIndex[i] = j; + m_Tooltip.runtimeXValues[i] = j; + m_Tooltip.runtimeDataIndex[i] = j; break; } } @@ -207,16 +207,16 @@ namespace XCharts if ((yAxis.boundaryGap && (local.y > pY && local.y <= pY + splitWid)) || (!yAxis.boundaryGap && (local.y > pY - splitWid / 2 && local.y <= pY + splitWid / 2))) { - m_Tooltip.yValues[i] = j; + m_Tooltip.runtimeYValues[i] = j; break; } } } else if (xAxis.IsCategory()) { - var value = (yAxis.maxValue - yAxis.minValue) * (local.y - coordinateY - yAxis.zeroYOffset) / coordinateHeight; - if (yAxis.minValue > 0) value += yAxis.minValue; - m_Tooltip.yValues[i] = value; + var value = (yAxis.runtimeMaxValue - yAxis.runtimeMinValue) * (local.y - coordinateY - yAxis.runtimeZeroYOffset) / coordinateHeight; + if (yAxis.runtimeMinValue > 0) value += yAxis.runtimeMinValue; + m_Tooltip.runtimeYValues[i] = value; for (int j = 0; j < xAxis.GetDataNumber(m_DataZoom); j++) { float splitWid = xAxis.GetDataWidth(coordinateWidth, dataCount, m_DataZoom); @@ -224,17 +224,17 @@ namespace XCharts if ((xAxis.boundaryGap && (local.x > pX && local.x <= pX + splitWid)) || (!xAxis.boundaryGap && (local.x > pX - splitWid / 2 && local.x <= pX + splitWid / 2))) { - m_Tooltip.xValues[i] = j; - m_Tooltip.dataIndex[i] = j; + m_Tooltip.runtimeXValues[i] = j; + m_Tooltip.runtimeDataIndex[i] = j; break; } } } else if (yAxis.IsCategory()) { - var value = (xAxis.maxValue - xAxis.minValue) * (local.x - coordinateX - xAxis.zeroXOffset) / coordinateWidth; - if (xAxis.minValue > 0) value += xAxis.minValue; - m_Tooltip.xValues[i] = value; + var value = (xAxis.runtimeMaxValue - xAxis.runtimeMinValue) * (local.x - coordinateX - xAxis.runtimeZeroXOffset) / coordinateWidth; + if (xAxis.runtimeMinValue > 0) value += xAxis.runtimeMinValue; + m_Tooltip.runtimeXValues[i] = value; for (int j = 0; j < yAxis.GetDataNumber(m_DataZoom); j++) { float splitWid = yAxis.GetDataWidth(coordinateHeight, dataCount, m_DataZoom); @@ -242,8 +242,8 @@ namespace XCharts if ((yAxis.boundaryGap && (local.y > pY && local.y <= pY + splitWid)) || (!yAxis.boundaryGap && (local.y > pY - splitWid / 2 && local.y <= pY + splitWid / 2))) { - m_Tooltip.yValues[i] = j; - m_Tooltip.dataIndex[i] = j; + m_Tooltip.runtimeYValues[i] = j; + m_Tooltip.runtimeDataIndex[i] = j; break; } } @@ -276,17 +276,17 @@ namespace XCharts bool isCartesian = IsValue(); if (isCartesian) { - index = m_Tooltip.dataIndex[0]; + index = m_Tooltip.runtimeDataIndex[0]; tempAxis = m_XAxises[0]; } else if (m_XAxises[0].type == Axis.AxisType.Value) { - index = (int)m_Tooltip.yValues[0]; + index = (int)m_Tooltip.runtimeYValues[0]; tempAxis = m_YAxises[0]; } else { - index = (int)m_Tooltip.xValues[0]; + index = (int)m_Tooltip.runtimeXValues[0]; tempAxis = m_XAxises[0]; } if (index < 0) @@ -341,13 +341,13 @@ namespace XCharts m_Tooltip.UpdateContentText(m_Tooltip.GetFormatterContent(index, m_Series, category, m_DataZoom)); } var pos = m_Tooltip.GetContentPos(); - if (pos.x + m_Tooltip.width > chartWidth) + if (pos.x + m_Tooltip.runtimeWidth > chartWidth) { - pos.x = chartWidth - m_Tooltip.width; + pos.x = chartWidth - m_Tooltip.runtimeWidth; } - if (pos.y - m_Tooltip.height < 0) + if (pos.y - m_Tooltip.runtimeHeight < 0) { - pos.y = m_Tooltip.height; + pos.y = m_Tooltip.runtimeHeight; } m_Tooltip.UpdateContentPos(pos); m_Tooltip.SetActive(true); @@ -375,14 +375,14 @@ namespace XCharts var diff = axisIndex > 0 ? -axis.axisLabel.fontSize - axis.axisLabel.margin - 3.5f : axis.axisLabel.margin / 2 + 1; if (axis.IsValue()) { - labelText = ChartCached.FloatToStr(m_Tooltip.xValues[axisIndex], 2); - labelPos = new Vector2(m_Tooltip.pointerPos.x, posY - diff); + labelText = ChartCached.FloatToStr(m_Tooltip.runtimeXValues[axisIndex], 2); + labelPos = new Vector2(m_Tooltip.runtimePointerPos.x, posY - diff); } else { - labelText = axis.GetData((int)m_Tooltip.xValues[axisIndex], m_DataZoom); + labelText = axis.GetData((int)m_Tooltip.runtimeXValues[axisIndex], m_DataZoom); float splitWidth = axis.GetSplitWidth(coordinateWidth, m_DataZoom); - int index = (int)m_Tooltip.xValues[axisIndex]; + int index = (int)m_Tooltip.runtimeXValues[axisIndex]; float px = coordinateX + index * splitWidth + (axis.boundaryGap ? splitWidth / 2 : 0) + 0.5f; labelPos = new Vector2(px, posY - diff); } @@ -393,14 +393,14 @@ namespace XCharts var diff = axisIndex > 0 ? -axis.axisLabel.margin + 3 : axis.axisLabel.margin - 3; if (axis.IsValue()) { - labelText = ChartCached.FloatToStr(m_Tooltip.yValues[axisIndex], 2); - labelPos = new Vector2(posX - diff, m_Tooltip.pointerPos.y); + labelText = ChartCached.FloatToStr(m_Tooltip.runtimeYValues[axisIndex], 2); + labelPos = new Vector2(posX - diff, m_Tooltip.runtimePointerPos.y); } else { - labelText = axis.GetData((int)m_Tooltip.yValues[axisIndex], m_DataZoom); + labelText = axis.GetData((int)m_Tooltip.runtimeYValues[axisIndex], m_DataZoom); float splitWidth = axis.GetSplitWidth(coordinateHeight, m_DataZoom); - int index = (int)m_Tooltip.yValues[axisIndex]; + int index = (int)m_Tooltip.runtimeYValues[axisIndex]; float py = coordinateY + index * splitWidth + (axis.boundaryGap ? splitWidth / 2 : 0); labelPos = new Vector2(posX - diff, py); } @@ -439,8 +439,8 @@ namespace XCharts m_YAxises.Add(axis1); m_YAxises.Add(axis2); } - foreach (var axis in m_XAxises) axis.minValue = axis.maxValue = 0; - foreach (var axis in m_YAxises) axis.minValue = axis.maxValue = 0; + foreach (var axis in m_XAxises) axis.runtimeMinValue = axis.runtimeMaxValue = 0; + foreach (var axis in m_YAxises) axis.runtimeMinValue = axis.runtimeMaxValue = 0; } private void InitAxisY() @@ -462,7 +462,7 @@ namespace XCharts axisObj.transform.localPosition = Vector3.zero; axisObj.SetActive(yAxis.show && yAxis.axisLabel.show); ChartHelper.HideAllObject(axisObj); - if (yAxis.IsValue() && yAxis.minValue == 0 && yAxis.maxValue == 0) return; + if (yAxis.IsValue() && yAxis.runtimeMinValue == 0 && yAxis.runtimeMaxValue == 0) return; var labelColor = yAxis.axisLabel.color == Color.clear ? (Color)m_ThemeInfo.axisTextColor : yAxis.axisLabel.color; @@ -491,7 +491,7 @@ namespace XCharts txt.transform.localPosition = GetLabelYPosition(totalWidth + (yAxis.boundaryGap ? labelWidth / 2 : 0), i, yAxisIndex, yAxis); var isPercentStack = m_Series.IsPercentStack(SerieType.Bar); - txt.text = yAxis.GetLabelName(coordinateHeight, i, yAxis.minValue, yAxis.maxValue, m_DataZoom, isPercentStack); + txt.text = yAxis.GetLabelName(coordinateHeight, i, yAxis.runtimeMinValue, yAxis.runtimeMaxValue, m_DataZoom, isPercentStack); txt.gameObject.SetActive(yAxis.show && (yAxis.axisLabel.interval == 0 || i % (yAxis.axisLabel.interval + 1) == 0)); yAxis.axisLabelTextList.Add(txt); @@ -504,7 +504,7 @@ namespace XCharts var fontSize = yAxis.axisName.fontSize; var offset = yAxis.axisName.offset; Text axisName = null; - var zeroPos = new Vector3(coordinateX + m_XAxises[yAxisIndex].zeroXOffset, coordinateY); + var zeroPos = new Vector3(coordinateX + m_XAxises[yAxisIndex].runtimeZeroXOffset, coordinateY); switch (yAxis.axisName.location) { case AxisName.Location.Start: @@ -538,10 +538,10 @@ namespace XCharts axisName.text = yAxis.axisName.name; } //init tooltip label - if (m_Tooltip.gameObject) + if (m_Tooltip.runtimeGameObject) { Vector2 privot = yAxisIndex > 0 ? new Vector2(0, 0.5f) : new Vector2(1, 0.5f); - var labelParent = m_Tooltip.gameObject.transform; + var labelParent = m_Tooltip.runtimeGameObject.transform; GameObject labelObj = ChartHelper.AddTooltipLabel(objName + "_label", labelParent, m_ThemeInfo.font, privot); yAxis.SetTooltipLabel(labelObj); yAxis.SetTooltipLabelColor(m_ThemeInfo.tooltipBackgroundColor, m_ThemeInfo.tooltipTextColor); @@ -567,7 +567,7 @@ namespace XCharts axisObj.transform.localPosition = Vector3.zero; axisObj.SetActive(xAxis.show && xAxis.axisLabel.show); ChartHelper.HideAllObject(axisObj); - if (xAxis.IsValue() && xAxis.minValue == 0 && xAxis.maxValue == 0) return; + if (xAxis.IsValue() && xAxis.runtimeMinValue == 0 && xAxis.runtimeMaxValue == 0) return; var labelColor = xAxis.axisLabel.color == Color.clear ? (Color)m_ThemeInfo.axisTextColor : xAxis.axisLabel.color; @@ -586,7 +586,7 @@ namespace XCharts i, xAxisIndex, xAxis); totalWidth += labelWidth; var isPercentStack = m_Series.IsPercentStack(SerieType.Bar); - txt.text = xAxis.GetLabelName(coordinateWidth, i, xAxis.minValue, xAxis.maxValue, m_DataZoom, isPercentStack); + txt.text = xAxis.GetLabelName(coordinateWidth, i, xAxis.runtimeMinValue, xAxis.runtimeMaxValue, m_DataZoom, isPercentStack); txt.gameObject.SetActive(xAxis.show && (xAxis.axisLabel.interval == 0 || i % (xAxis.axisLabel.interval + 1) == 0)); xAxis.axisLabelTextList.Add(txt); @@ -598,7 +598,7 @@ namespace XCharts var fontSize = xAxis.axisName.fontSize; var offset = xAxis.axisName.offset; Text axisName = null; - var zeroPos = new Vector3(coordinateX, coordinateY + m_YAxises[xAxisIndex].zeroYOffset); + var zeroPos = new Vector3(coordinateX, coordinateY + m_YAxises[xAxisIndex].runtimeZeroYOffset); switch (xAxis.axisName.location) { case AxisName.Location.Start: @@ -631,10 +631,10 @@ namespace XCharts } axisName.text = xAxis.axisName.name; } - if (m_Tooltip.gameObject) + if (m_Tooltip.runtimeGameObject) { Vector2 privot = xAxisIndex > 0 ? new Vector2(0.5f, 1) : new Vector2(0.5f, 1); - var labelParent = m_Tooltip.gameObject.transform; + var labelParent = m_Tooltip.runtimeGameObject.transform; GameObject labelObj = ChartHelper.AddTooltipLabel(ChartHelper.Cancat(objName, "_label"), labelParent, m_ThemeInfo.font, privot); xAxis.SetTooltipLabel(labelObj); xAxis.SetTooltipLabelColor(m_ThemeInfo.tooltipBackgroundColor, m_ThemeInfo.tooltipTextColor); @@ -648,12 +648,14 @@ namespace XCharts chartAnchorMax, chartPivot, new Vector2(chartWidth, chartHeight)); dataZoomObject.transform.localPosition = Vector3.zero; ChartHelper.HideAllObject(dataZoomObject); - m_DataZoom.startLabel = ChartHelper.AddTextObject(s_DefaultDataZoom + "start", + var startLabel = ChartHelper.AddTextObject(s_DefaultDataZoom + "start", dataZoomObject.transform, m_ThemeInfo.font, m_ThemeInfo.dataZoomTextColor, TextAnchor.MiddleRight, Vector2.zero, Vector2.zero, new Vector2(1, 0.5f), new Vector2(200, 20), m_DataZoom.fontSize, 0, m_DataZoom.fontStyle); - m_DataZoom.endLabel = ChartHelper.AddTextObject(s_DefaultDataZoom + "end", + var endLabel = ChartHelper.AddTextObject(s_DefaultDataZoom + "end", dataZoomObject.transform, m_ThemeInfo.font, m_ThemeInfo.dataZoomTextColor, TextAnchor.MiddleLeft, Vector2.zero, Vector2.zero, new Vector2(0, 0.5f), new Vector2(200, 20), m_DataZoom.fontSize, 0, m_DataZoom.fontStyle); + m_DataZoom.SetStartLabel(startLabel); + m_DataZoom.SetEndLabel(endLabel); m_DataZoom.SetLabelActive(false); CheckRaycastTarget(); var xAxis = m_XAxises[m_DataZoom.xAxisIndex]; @@ -786,26 +788,26 @@ namespace XCharts m_Series.GetYMinMaxValue(m_DataZoom, axisIndex, false, out tempMinValue, out tempMaxValue); } axis.AdjustMinMaxValue(ref tempMinValue, ref tempMaxValue); - if (tempMinValue != axis.minValue || tempMaxValue != axis.maxValue) + if (tempMinValue != axis.runtimeMinValue || tempMaxValue != axis.runtimeMaxValue) { m_CheckMinMaxValue = true; - axis.minValue = tempMinValue; - axis.maxValue = tempMaxValue; - axis.zeroXOffset = 0; - axis.zeroYOffset = 0; + axis.runtimeMinValue = tempMinValue; + axis.runtimeMaxValue = tempMaxValue; + axis.runtimeZeroXOffset = 0; + axis.runtimeZeroYOffset = 0; if (tempMinValue != 0 || tempMaxValue != 0) { if (axis is XAxis && axis.IsValue()) { - axis.zeroXOffset = axis.minValue > 0 ? 0 : - axis.maxValue < 0 ? this.coordinateWidth : - Mathf.Abs(axis.minValue) * (this.coordinateWidth / (Mathf.Abs(axis.minValue) + Mathf.Abs(axis.maxValue))); + axis.runtimeZeroXOffset = axis.runtimeMinValue > 0 ? 0 : + axis.runtimeMaxValue < 0 ? this.coordinateWidth : + Mathf.Abs(axis.runtimeMinValue) * (this.coordinateWidth / (Mathf.Abs(axis.runtimeMinValue) + Mathf.Abs(axis.runtimeMaxValue))); } if (axis is YAxis && axis.IsValue()) { - axis.zeroYOffset = axis.minValue > 0 ? 0 : - axis.maxValue < 0 ? coordinateHeight : - Mathf.Abs(axis.minValue) * (coordinateHeight / (Mathf.Abs(axis.minValue) + Mathf.Abs(axis.maxValue))); + axis.runtimeZeroYOffset = axis.runtimeMinValue > 0 ? 0 : + axis.runtimeMaxValue < 0 ? coordinateHeight : + Mathf.Abs(axis.runtimeMinValue) * (coordinateHeight / (Mathf.Abs(axis.runtimeMinValue) + Mathf.Abs(axis.runtimeMaxValue))); } } if (updateChart) @@ -881,7 +883,7 @@ namespace XCharts var size = yAxis.GetScaleNumber(coordinateWidth, m_DataZoom); var totalWidth = coordinateY; var xAxis = m_XAxises[yAxisIndex]; - var zeroPos = new Vector3(coordinateX + xAxis.zeroXOffset, coordinateY + yAxis.zeroYOffset); + var zeroPos = new Vector3(coordinateX + xAxis.runtimeZeroXOffset, coordinateY + yAxis.runtimeZeroYOffset); for (int i = 0; i < size; i++) { var scaleWidth = yAxis.GetScaleWidth(coordinateHeight, i, m_DataZoom); @@ -901,7 +903,7 @@ namespace XCharts } if (yAxis.axisTick.show) { - var startX = coordinateX + m_XAxises[yAxisIndex].zeroXOffset; + var startX = coordinateX + m_XAxises[yAxisIndex].runtimeZeroXOffset; if (yAxis.IsValue() && yAxisIndex > 0) startX += coordinateWidth; bool inside = yAxis.axisTick.inside; if ((inside && yAxisIndex == 0) || (!inside && yAxisIndex == 1)) @@ -935,7 +937,7 @@ namespace XCharts var size = xAxis.GetScaleNumber(coordinateWidth, m_DataZoom); var totalWidth = coordinateX; var yAxis = m_YAxises[xAxisIndex]; - var zeroPos = new Vector3(coordinateX, coordinateY + yAxis.zeroYOffset); + var zeroPos = new Vector3(coordinateX, coordinateY + yAxis.runtimeZeroYOffset); for (int i = 0; i < size; i++) { var scaleWidth = xAxis.GetScaleWidth(coordinateWidth, i, m_DataZoom); @@ -955,7 +957,7 @@ namespace XCharts } if (xAxis.axisTick.show) { - var startY = coordinateY + m_YAxises[xAxisIndex].zeroYOffset; + var startY = coordinateY + m_YAxises[xAxisIndex].runtimeZeroYOffset; if (xAxis.IsValue() && xAxisIndex > 0) startY += coordinateHeight; bool inside = xAxis.axisTick.inside; if ((inside && xAxisIndex == 0) || (!inside && xAxisIndex == 1)) @@ -986,7 +988,7 @@ namespace XCharts { if (xAxis.show && xAxis.axisLine.show) { - var lineY = coordinateY + (xAxis.axisLine.onZero ? m_YAxises[xAxisIndex].zeroYOffset : 0); + var lineY = coordinateY + (xAxis.axisLine.onZero ? m_YAxises[xAxisIndex].runtimeZeroYOffset : 0); if (xAxis.IsValue() && xAxisIndex > 0) lineY += coordinateHeight; var left = new Vector3(coordinateX - xAxis.axisLine.width, lineY); var top = new Vector3(coordinateX + coordinateWidth + xAxis.axisLine.width, lineY); @@ -1004,7 +1006,7 @@ namespace XCharts { if (yAxis.show && yAxis.axisLine.show) { - var lineX = coordinateX + (yAxis.axisLine.onZero ? m_XAxises[yAxisIndex].zeroXOffset : 0); + var lineX = coordinateX + (yAxis.axisLine.onZero ? m_XAxises[yAxisIndex].runtimeZeroXOffset : 0); if (yAxis.IsValue() && yAxisIndex > 0) lineX += coordinateWidth; var top = new Vector3(lineX, coordinateY + coordinateHeight + yAxis.axisLine.width); ChartDrawer.DrawLine(vh, new Vector3(lineX, coordinateY - yAxis.axisLine.width), @@ -1056,8 +1058,8 @@ namespace XCharts { float value = SampleValue(ref showData, serie.sampleType, rate, serie.minShow, maxCount, totalAverage, i); float pX = coordinateX + i * scaleWid; - float dataHig = (axis.maxValue - axis.minValue) == 0 ? 0 : - (value - axis.minValue) / (axis.maxValue - axis.minValue) * hig; + float dataHig = (axis.runtimeMaxValue - axis.runtimeMinValue) == 0 ? 0 : + (value - axis.runtimeMinValue) / (axis.runtimeMaxValue - axis.runtimeMinValue) * hig; np = new Vector3(pX, m_DataZoom.bottom + dataHig); if (i > 0) { @@ -1127,24 +1129,24 @@ namespace XCharts { case Tooltip.Type.Corss: case Tooltip.Type.Line: - float pX = coordinateX + m_Tooltip.xValues[i] * splitWidth + float pX = coordinateX + m_Tooltip.runtimeXValues[i] * splitWidth + (xAxis.boundaryGap ? splitWidth / 2 : 0); - if (xAxis.IsValue()) pX = m_Tooltip.pointerPos.x; + if (xAxis.IsValue()) pX = m_Tooltip.runtimePointerPos.x; Vector2 sp = new Vector2(pX, coordinateY); Vector2 ep = new Vector2(pX, coordinateY + coordinateHeight); DrawSplitLine(vh, xAxis, Axis.SplitLineType.Solid, sp, ep, m_ThemeInfo.tooltipLineColor); if (m_Tooltip.type == Tooltip.Type.Corss) { - sp = new Vector2(coordinateX, m_Tooltip.pointerPos.y); - ep = new Vector2(coordinateX + coordinateWidth, m_Tooltip.pointerPos.y); + sp = new Vector2(coordinateX, m_Tooltip.runtimePointerPos.y); + ep = new Vector2(coordinateX + coordinateWidth, m_Tooltip.runtimePointerPos.y); DrawSplitLine(vh, yAxis, Axis.SplitLineType.Dashed, sp, ep, m_ThemeInfo.tooltipLineColor); } break; case Tooltip.Type.Shadow: float tooltipSplitWid = splitWidth < 1 ? 1 : splitWidth; - pX = coordinateX + splitWidth * m_Tooltip.xValues[i] - + pX = coordinateX + splitWidth * m_Tooltip.runtimeXValues[i] - (xAxis.boundaryGap ? 0 : splitWidth / 2); - if (xAxis.IsValue()) pX = m_Tooltip.xValues[i]; + if (xAxis.IsValue()) pX = m_Tooltip.runtimeXValues[i]; float pY = coordinateY + coordinateHeight; Vector3 p1 = new Vector3(pX, coordinateY); Vector3 p2 = new Vector3(pX, pY); @@ -1172,21 +1174,21 @@ namespace XCharts case Tooltip.Type.Corss: case Tooltip.Type.Line: - float pY = coordinateY + m_Tooltip.yValues[i] * splitWidth + (yAxis.boundaryGap ? splitWidth / 2 : 0); + float pY = coordinateY + m_Tooltip.runtimeYValues[i] * splitWidth + (yAxis.boundaryGap ? splitWidth / 2 : 0); Vector2 sp = new Vector2(coordinateX, pY); Vector2 ep = new Vector2(coordinateX + coordinateWidth, pY); DrawSplitLine(vh, xAxis, Axis.SplitLineType.Solid, sp, ep, m_ThemeInfo.tooltipLineColor); if (m_Tooltip.type == Tooltip.Type.Corss) { - sp = new Vector2(coordinateX, m_Tooltip.pointerPos.y); - ep = new Vector2(coordinateX + coordinateWidth, m_Tooltip.pointerPos.y); + sp = new Vector2(coordinateX, m_Tooltip.runtimePointerPos.y); + ep = new Vector2(coordinateX + coordinateWidth, m_Tooltip.runtimePointerPos.y); DrawSplitLine(vh, yAxis, Axis.SplitLineType.Dashed, sp, ep, m_ThemeInfo.tooltipLineColor); } break; case Tooltip.Type.Shadow: float tooltipSplitWid = splitWidth < 1 ? 1 : splitWidth; float pX = coordinateX + coordinateWidth; - pY = coordinateY + splitWidth * m_Tooltip.yValues[i] - + pY = coordinateY + splitWidth * m_Tooltip.runtimeYValues[i] - (yAxis.boundaryGap ? 0 : splitWidth / 2); Vector3 p1 = new Vector3(coordinateX, pY); Vector3 p2 = new Vector3(coordinateX, pY + tooltipSplitWid); @@ -1289,10 +1291,8 @@ namespace XCharts var start = coordinateX + coordinateWidth * m_DataZoom.start / 100; var end = coordinateX + coordinateWidth * m_DataZoom.end / 100; var hig = m_DataZoom.GetHeight(grid.bottom); - m_DataZoom.startLabel.transform.localPosition = - new Vector3(start - 10, m_DataZoom.bottom + hig / 2); - m_DataZoom.endLabel.transform.localPosition = - new Vector3(end + 10, m_DataZoom.bottom + hig / 2); + m_DataZoom.UpdateStartLabelPosition(new Vector3(start - 10, m_DataZoom.bottom + hig / 2)); + m_DataZoom.UpdateEndLabelPosition(new Vector3(end + 10, m_DataZoom.bottom + hig / 2)); } } @@ -1313,12 +1313,12 @@ namespace XCharts if (isYAxis) { var xAxis = m_XAxises[serie.axisIndex]; - zeroPos = new Vector3(coordinateX + xAxis.zeroXOffset, coordinateY); + zeroPos = new Vector3(coordinateX + xAxis.runtimeZeroXOffset, coordinateY); } else { var yAxis = m_YAxises[serie.axisIndex]; - zeroPos = new Vector3(coordinateX, coordinateY + yAxis.zeroYOffset); + zeroPos = new Vector3(coordinateX, coordinateY + yAxis.runtimeZeroYOffset); } } } diff --git a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawBar.cs b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawBar.cs index 6fefa517..8e20a161 100644 --- a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawBar.cs +++ b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawBar.cs @@ -50,7 +50,7 @@ namespace XCharts seriesHig.Add(0); } float value = showData[i].data[1]; - float pX = seriesHig[i] + coordinateX + xAxis.zeroXOffset + yAxis.axisLine.width; + float pX = seriesHig[i] + coordinateX + xAxis.runtimeZeroXOffset + yAxis.axisLine.width; float pY = coordinateY + +i * categoryWidth; if (!yAxis.boundaryGap) pY -= categoryWidth / 2; @@ -64,8 +64,8 @@ namespace XCharts } else { - valueTotal = xAxis.maxValue - xAxis.minValue; - barHig = (xAxis.minValue > 0 ? value - xAxis.minValue : value) + valueTotal = xAxis.runtimeMaxValue - xAxis.runtimeMinValue; + barHig = (xAxis.runtimeMinValue > 0 ? value - xAxis.runtimeMinValue : value) / valueTotal * coordinateWidth; seriesHig[i] += barHig; } @@ -160,7 +160,7 @@ namespace XCharts } float value = showData[i].data[1]; float pX = coordinateX + i * categoryWidth; - float zeroY = coordinateY + yAxis.zeroYOffset; + float zeroY = coordinateY + yAxis.runtimeZeroYOffset; if (!xAxis.boundaryGap) pX -= categoryWidth / 2; float pY = seriesHig[i] + zeroY + xAxis.axisLine.width; @@ -174,8 +174,8 @@ namespace XCharts } else { - valueTotal = yAxis.maxValue - yAxis.minValue; - barHig = (yAxis.minValue > 0 ? value - yAxis.minValue : value) + valueTotal = yAxis.runtimeMaxValue - yAxis.runtimeMinValue; + barHig = (yAxis.runtimeMinValue > 0 ? value - yAxis.runtimeMinValue : value) / valueTotal * coordinateHeight; seriesHig[i] += barHig; } diff --git a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawHeatmap.cs b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawHeatmap.cs index a4afe6ee..859b2357 100644 --- a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawHeatmap.cs +++ b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawHeatmap.cs @@ -24,9 +24,9 @@ namespace XCharts if (!RectTransformUtility.ScreenPointToLocalPointInRectangle(rectTransform, Input.mousePosition, canvas.worldCamera, out local)) { - if (m_VisualMap.rtSelectedIndex >= 0) + if (m_VisualMap.runtimeSelectedIndex >= 0) { - m_VisualMap.rtSelectedIndex = -1; + m_VisualMap.runtimeSelectedIndex = -1; RefreshChart(); } return; @@ -35,9 +35,9 @@ namespace XCharts local.y < 0 || local.y > chartHeight || !m_VisualMap.IsInRangeRect(local, chartWidth, chartHeight)) { - if (m_VisualMap.rtSelectedIndex >= 0) + if (m_VisualMap.runtimeSelectedIndex >= 0) { - m_VisualMap.rtSelectedIndex = -1; + m_VisualMap.runtimeSelectedIndex = -1; RefreshChart(); } return; @@ -63,8 +63,8 @@ namespace XCharts selectedIndex = m_VisualMap.GetIndex(value); break; } - m_VisualMap.rtSelectedValue = value; - m_VisualMap.rtSelectedIndex = selectedIndex; + m_VisualMap.runtimeSelectedValue = value; + m_VisualMap.runtimeSelectedIndex = selectedIndex; RefreshChart(); } @@ -161,8 +161,8 @@ namespace XCharts } if(animationIndex>= 0 && i> animationIndex) continue; serieData.canShowLabel = true; - var emphasis = (m_Tooltip.show && i == (int)m_Tooltip.xValues[0] && j == (int)m_Tooltip.yValues[0]) - || m_VisualMap.rtSelectedIndex > 0; + var emphasis = (m_Tooltip.show && i == (int)m_Tooltip.runtimeXValues[0] && j == (int)m_Tooltip.runtimeYValues[0]) + || m_VisualMap.runtimeSelectedIndex > 0; var rectWid = xWidth - 2 * borderWidth; var rectHig = yWidth - 2 * borderWidth; ChartDrawer.DrawPolygon(vh, pos, rectWid / 2, rectHig / 2, color); @@ -199,10 +199,10 @@ namespace XCharts var halfHig = m_VisualMap.itemHeight / 2; var xRadius = 0f; var yRadius = 0f; - var splitNum = m_VisualMap.rtInRange.Count; + var splitNum = m_VisualMap.runtimeInRange.Count; var splitWid = m_VisualMap.itemHeight / (splitNum - 1); var isVertical = false; - var colors = m_VisualMap.rtInRange; + var colors = m_VisualMap.runtimeInRange; var triangeLen = m_Settings.visualMapTriangeLen; switch (m_VisualMap.orient) { @@ -215,13 +215,13 @@ namespace XCharts isVertical = false; if (m_VisualMap.calculable) { - var p0 = pos1 + Vector3.right * m_VisualMap.rangeMinHeight; + var p0 = pos1 + Vector3.right * m_VisualMap.runtimeRangeMinHeight; var p1 = p0 + Vector3.up * halfWid; var p2 = p0 + Vector3.up * (halfWid + triangeLen); var p3 = p2 + Vector3.left * triangeLen; var color = m_VisualMap.GetColor(m_VisualMap.rangeMin); ChartDrawer.DrawTriangle(vh, p1, p2, p3, color); - p0 = pos1 + Vector3.right * m_VisualMap.rangeMaxHeight; + p0 = pos1 + Vector3.right * m_VisualMap.runtimeRangeMaxHeight; p1 = p0 + Vector3.up * halfWid; p2 = p0 + Vector3.up * (halfWid + triangeLen); p3 = p2 + Vector3.right * triangeLen; @@ -238,13 +238,13 @@ namespace XCharts isVertical = true; if (m_VisualMap.calculable) { - var p0 = pos1 + Vector3.up * m_VisualMap.rangeMinHeight; + var p0 = pos1 + Vector3.up * m_VisualMap.runtimeRangeMinHeight; var p1 = p0 + Vector3.right * halfWid; var p2 = p0 + Vector3.right * (halfWid + triangeLen); var p3 = p2 + Vector3.down * triangeLen; var color = m_VisualMap.GetColor(m_VisualMap.rangeMin); ChartDrawer.DrawTriangle(vh, p1, p2, p3, color); - p0 = pos1 + Vector3.up * m_VisualMap.rangeMaxHeight; + p0 = pos1 + Vector3.up * m_VisualMap.runtimeRangeMaxHeight; p1 = p0 + Vector3.right * halfWid; p2 = p0 + Vector3.right * (halfWid + triangeLen); p3 = p2 + Vector3.up * triangeLen; @@ -276,7 +276,7 @@ namespace XCharts } else if (rangeMin > splitMin && rangeMax >= splitMax) { - var p0 = pos1 + dir * m_VisualMap.rangeMinHeight; + var p0 = pos1 + dir * m_VisualMap.runtimeRangeMinHeight; var splitMaxPos = pos1 + dir * i * splitWid; var splitPos = p0 + (splitMaxPos - p0) / 2; var startColor = m_VisualMap.GetColor(m_VisualMap.rangeMin); @@ -289,7 +289,7 @@ namespace XCharts } else if (rangeMax < splitMax && rangeMin <= splitMin) { - var p0 = pos1 + dir * m_VisualMap.rangeMaxHeight; + var p0 = pos1 + dir * m_VisualMap.runtimeRangeMaxHeight; var splitMinPos = pos1 + dir * (i - 1) * splitWid; var splitPos = splitMinPos + (p0 - splitMinPos) / 2; var startColor = colors[i - 1]; @@ -302,8 +302,8 @@ namespace XCharts } else { - var p0 = pos1 + dir * m_VisualMap.rangeMinHeight; - var p1 = pos1 + dir * m_VisualMap.rangeMaxHeight; + var p0 = pos1 + dir * m_VisualMap.runtimeRangeMinHeight; + var p1 = pos1 + dir * m_VisualMap.runtimeRangeMaxHeight; var splitPos = (p0 + p1) / 2; var startColor = m_VisualMap.GetColor(m_VisualMap.rangeMin); var toColor = m_VisualMap.GetColor(m_VisualMap.rangeMax); @@ -328,38 +328,38 @@ namespace XCharts if (m_VisualMap.rangeMin > m_VisualMap.min) { - var p0 = pos1 + dir * m_VisualMap.rangeMinHeight; + var p0 = pos1 + dir * m_VisualMap.runtimeRangeMinHeight; ChartDrawer.DrawPolygon(vh, pos1, p0, m_VisualMap.itemWidth / 2, m_ThemeInfo.visualMapBackgroundColor); } if (m_VisualMap.rangeMax < m_VisualMap.max) { - var p1 = pos1 + dir * m_VisualMap.rangeMaxHeight; + var p1 = pos1 + dir * m_VisualMap.runtimeRangeMaxHeight; ChartDrawer.DrawPolygon(vh, p1, pos2, m_VisualMap.itemWidth / 2, m_ThemeInfo.visualMapBackgroundColor); } if (m_VisualMap.hoverLink) { - if (m_VisualMap.rtSelectedIndex >= 0) + if (m_VisualMap.runtimeSelectedIndex >= 0) { - var p0 = pos1 + dir * m_VisualMap.rangeMinHeight; - var p1 = pos1 + dir * m_VisualMap.rangeMaxHeight; + var p0 = pos1 + dir * m_VisualMap.runtimeRangeMinHeight; + var p1 = pos1 + dir * m_VisualMap.runtimeRangeMaxHeight; if (m_VisualMap.orient == Orient.Vertical) { var p2 = new Vector3(centerPos.x + halfWid, Mathf.Clamp(pointerPos.y + (triangeLen / 2), p0.y, p1.y)); var p3 = new Vector3(centerPos.x + halfWid, Mathf.Clamp(pointerPos.y - (triangeLen / 2), p0.y, p1.y)); var p4 = new Vector3(centerPos.x + halfWid + triangeLen / 2, pointerPos.y); - ChartDrawer.DrawTriangle(vh, p2, p3, p4, colors[m_VisualMap.rtSelectedIndex]); + ChartDrawer.DrawTriangle(vh, p2, p3, p4, colors[m_VisualMap.runtimeSelectedIndex]); } else { var p2 = new Vector3(Mathf.Clamp(pointerPos.x + (triangeLen / 2), p0.x, p1.x), centerPos.y + halfWid); var p3 = new Vector3(Mathf.Clamp(pointerPos.x - (triangeLen / 2), p0.x, p1.x), centerPos.y + halfWid); var p4 = new Vector3(pointerPos.x, centerPos.y + halfWid + triangeLen / 2); - ChartDrawer.DrawTriangle(vh, p2, p3, p4, colors[m_VisualMap.rtSelectedIndex]); + ChartDrawer.DrawTriangle(vh, p2, p3, p4, colors[m_VisualMap.runtimeSelectedIndex]); } } - else if (m_Tooltip.show && m_Tooltip.xValues[0] >= 0 && m_Tooltip.yValues[0] >= 0) + else if (m_Tooltip.show && m_Tooltip.runtimeXValues[0] >= 0 && m_Tooltip.runtimeYValues[0] >= 0) { // var p0 = pos1 + dir * m_VisualMap.rangeMinHeight; // var p1 = pos1 + dir * m_VisualMap.rangeMaxHeight; diff --git a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawLine.cs b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawLine.cs index fa0d56cc..329ee1b9 100644 --- a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawLine.cs +++ b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawLine.cs @@ -88,7 +88,7 @@ namespace XCharts Vector3 lp = Vector3.zero, np = Vector3.zero, llp = Vector3.zero, nnp = Vector3.zero; var yAxis = m_YAxises[serie.axisIndex]; var xAxis = m_XAxises[serie.axisIndex]; - var zeroPos = new Vector3(coordinateX, coordinateY + yAxis.zeroYOffset); + var zeroPos = new Vector3(coordinateX, coordinateY + yAxis.runtimeZeroYOffset); var isStack = m_Series.IsStack(serie.stack, SerieType.Line); if (!xAxis.show) xAxis = m_XAxises[(serie.axisIndex + 1) % m_XAxises.Count]; float scaleWid = xAxis.GetDataWidth(coordinateWidth, showData.Count, m_DataZoom); @@ -168,7 +168,7 @@ namespace XCharts serie.ClearSmoothList(i); if (!serie.animation.NeedAnimation(i)) break; bool isFinish = true; - if (serie.areaStyle.tooltipHighlight && m_Tooltip.show && i <= m_Tooltip.dataIndex[0]) + if (serie.areaStyle.tooltipHighlight && m_Tooltip.show && i <= m_Tooltip.runtimeDataIndex[0]) { areaColor = highlightAreaColor; areaToColor = highlightAreaToColor; @@ -294,18 +294,18 @@ namespace XCharts float xValue = i > showData.Count - 1 ? 0 : showData[i].data[0]; float pX = coordinateX + xAxis.axisLine.width; float pY = serieHig + coordinateY + xAxis.axisLine.width; - if ((xAxis.maxValue - xAxis.minValue) <= 0) xDataHig = 0; - else xDataHig = (xValue - xAxis.minValue) / (xAxis.maxValue - xAxis.minValue) * coordinateWidth; - if ((yAxis.maxValue - yAxis.minValue) <= 0) yDataHig = 0; - else yDataHig = (yValue - yAxis.minValue) / (yAxis.maxValue - yAxis.minValue) * coordinateHeight; + if ((xAxis.runtimeMaxValue - xAxis.runtimeMinValue) <= 0) xDataHig = 0; + else xDataHig = (xValue - xAxis.runtimeMinValue) / (xAxis.runtimeMaxValue - xAxis.runtimeMinValue) * coordinateWidth; + if ((yAxis.runtimeMaxValue - yAxis.runtimeMinValue) <= 0) yDataHig = 0; + else yDataHig = (yValue - yAxis.runtimeMinValue) / (yAxis.runtimeMaxValue - yAxis.runtimeMinValue) * coordinateHeight; np = new Vector3(pX + xDataHig, pY + yDataHig); } else { float pX = startX + i * scaleWid; float pY = serieHig + coordinateY + yAxis.axisLine.width; - if ((yAxis.maxValue - yAxis.minValue) <= 0) yDataHig = 0; - else yDataHig = (yValue - yAxis.minValue) / (yAxis.maxValue - yAxis.minValue) * coordinateHeight; + if ((yAxis.runtimeMaxValue - yAxis.runtimeMinValue) <= 0) yDataHig = 0; + else yDataHig = (yValue - yAxis.runtimeMinValue) / (yAxis.runtimeMaxValue - yAxis.runtimeMinValue) * coordinateHeight; np = new Vector3(pX, pY + yDataHig); } return yDataHig; @@ -327,7 +327,7 @@ namespace XCharts Color areaColor, areaToColor; var xAxis = m_XAxises[serie.axisIndex]; var yAxis = m_YAxises[serie.axisIndex]; - var zeroPos = new Vector3(coordinateX + xAxis.zeroXOffset, coordinateY); + var zeroPos = new Vector3(coordinateX + xAxis.runtimeZeroXOffset, coordinateY); var isStack = m_Series.IsStack(serie.stack, SerieType.Line); if (!yAxis.show) yAxis = m_YAxises[(serie.axisIndex + 1) % m_YAxises.Count]; float scaleWid = yAxis.GetDataWidth(coordinateHeight, showData.Count, m_DataZoom); @@ -356,7 +356,7 @@ namespace XCharts float value = showData[i].data[1]; float pY = startY + i * scaleWid; float pX = seriesHig[i] + coordinateX + yAxis.axisLine.width; - float dataHig = (value - xAxis.minValue) / (xAxis.maxValue - xAxis.minValue) * coordinateWidth; + float dataHig = (value - xAxis.runtimeMinValue) / (xAxis.runtimeMaxValue - xAxis.runtimeMinValue) * coordinateWidth; np = new Vector3(pX + dataHig, pY); serie.dataPoints.Add(np); seriesHig[i] += dataHig; @@ -368,7 +368,7 @@ namespace XCharts float value = showData[i].data[1]; float pY = startY + i * scaleWid; float pX = seriesHig[i] + coordinateX + yAxis.axisLine.width; - float dataHig = (value - xAxis.minValue) / (xAxis.maxValue - xAxis.minValue) * coordinateWidth; + float dataHig = (value - xAxis.runtimeMinValue) / (xAxis.runtimeMaxValue - xAxis.runtimeMinValue) * coordinateWidth; np = new Vector3(pX + dataHig, pY); serie.dataPoints.Add(np); seriesHig[i] += dataHig; @@ -384,7 +384,7 @@ namespace XCharts serie.ClearSmoothList(i); if (!serie.animation.NeedAnimation(i)) break; bool isFinish = true; - if (serie.areaStyle.tooltipHighlight && m_Tooltip.show && i < m_Tooltip.dataIndex[0]) + if (serie.areaStyle.tooltipHighlight && m_Tooltip.show && i < m_Tooltip.runtimeDataIndex[0]) { areaColor = highlightAreaColor; areaToColor = highlightAreaToColor; diff --git a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawScatter.cs b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawScatter.cs index b6feb2c7..71f6a686 100644 --- a/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawScatter.cs +++ b/Assets/XCharts/Runtime/Internal/CoordinateChart_DrawScatter.cs @@ -30,8 +30,8 @@ namespace XCharts float yValue = serieData.data[1]; float pX = coordinateX + xAxis.axisLine.width; float pY = coordinateY + yAxis.axisLine.width; - float xDataHig = (xValue - xAxis.minValue) / (xAxis.maxValue - xAxis.minValue) * coordinateWidth; - float yDataHig = (yValue - yAxis.minValue) / (yAxis.maxValue - yAxis.minValue) * coordinateHeight; + float xDataHig = (xValue - xAxis.runtimeMinValue) / (xAxis.runtimeMaxValue - xAxis.runtimeMinValue) * coordinateWidth; + float yDataHig = (yValue - yAxis.runtimeMinValue) / (yAxis.runtimeMaxValue - yAxis.runtimeMinValue) * coordinateHeight; var pos = new Vector3(pX + xDataHig, pY + yDataHig); var datas = serie.data[n].data; diff --git a/Assets/XCharts/Runtime/Internal/JsonDataSupport.cs b/Assets/XCharts/Runtime/Internal/JsonDataSupport.cs deleted file mode 100644 index 46b4b2e8..00000000 --- a/Assets/XCharts/Runtime/Internal/JsonDataSupport.cs +++ /dev/null @@ -1,45 +0,0 @@ -/******************************************/ -/* */ -/* Copyright (c) 2018 monitor1394 */ -/* https://github.com/monitor1394 */ -/* */ -/******************************************/ - -using UnityEngine; -using System; - -namespace XCharts -{ - /// - /// 支持从json格式的字符串中导入数据 - /// - public class JsonDataSupport : IJsonData, ISerializationCallbackReceiver - { - [SerializeField] protected string m_JsonData; - [SerializeField] protected bool m_DataFromJson; - - /// - /// json格式的字符串数据 - /// - /// - public string jsonData { get { return m_JsonData; } set { m_JsonData = value; ParseJsonData(value); } } - - public void OnAfterDeserialize() - { - if (m_DataFromJson) - { - ParseJsonData(m_JsonData); - m_DataFromJson = false; - } - } - - public void OnBeforeSerialize() - { - } - - public virtual void ParseJsonData(string json) - { - throw new Exception("no support yet"); - } - } -} diff --git a/Assets/XCharts/Runtime/Internal/JsonDataSupport.cs.meta b/Assets/XCharts/Runtime/Internal/JsonDataSupport.cs.meta deleted file mode 100644 index 5f64576a..00000000 --- a/Assets/XCharts/Runtime/Internal/JsonDataSupport.cs.meta +++ /dev/null @@ -1,13 +0,0 @@ -fileFormatVersion: 2 -guid: 73e326ed8a76f90408bfa9feb1797433 -timeCreated: 1555379601 -licenseType: Free -MonoImporter: - externalObjects: {} - serializedVersion: 2 - defaultReferences: [] - executionOrder: 0 - icon: {instanceID: 0} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/XCharts/Runtime/Internal/ObjectPool.cs b/Assets/XCharts/Runtime/Internal/ObjectPool.cs index e53dad38..be2bde7b 100644 --- a/Assets/XCharts/Runtime/Internal/ObjectPool.cs +++ b/Assets/XCharts/Runtime/Internal/ObjectPool.cs @@ -11,7 +11,7 @@ using UnityEngine.Events; namespace XCharts { - public class ObjectPool where T : new() + internal class ObjectPool where T : new() { private readonly Stack m_Stack = new Stack(); private readonly UnityAction m_ActionOnGet; diff --git a/Assets/XCharts/Runtime/PieChart.cs b/Assets/XCharts/Runtime/PieChart.cs index 50726fe5..a0226d6d 100644 --- a/Assets/XCharts/Runtime/PieChart.cs +++ b/Assets/XCharts/Runtime/PieChart.cs @@ -65,8 +65,8 @@ namespace XCharts } bool isFinish = true; if (serie.pieClickOffset) isClickOffset = true; - serie.pieDataMax = serie.yMax; - serie.pieDataTotal = serie.yTotal; + serie.runtimePieDataMax = serie.yMax; + serie.runtimePieDataTotal = serie.yTotal; UpdatePieCenter(serie); float totalDegree = 360; @@ -85,73 +85,73 @@ namespace XCharts float value = serieData.data[1]; serieNameCount = m_LegendRealShowName.IndexOf(serieData.legendName); Color color = m_ThemeInfo.GetColor(serieNameCount); - serieData.pieStartAngle = startDegree; - serieData.pieToAngle = startDegree; - serieData.pieHalfAngle = startDegree; - serieData.pieCurrAngle = startDegree; + serieData.runtimePieStartAngle = startDegree; + serieData.runtimePieToAngle = startDegree; + serieData.runtimePieHalfAngle = startDegree; + serieData.runtimePieCurrAngle = startDegree; if (!serieData.show) { continue; } float degree = serie.pieRoseType == RoseType.Area ? - (totalDegree / showdataCount) : (totalDegree * value / serie.pieDataTotal); - serieData.pieToAngle = startDegree + degree; + (totalDegree / showdataCount) : (totalDegree * value / serie.runtimePieDataTotal); + serieData.runtimePieToAngle = startDegree + degree; - serieData.pieOutsideRadius = serie.pieRoseType > 0 ? - serie.pieInsideRadius + (serie.pieOutsideRadius - serie.pieInsideRadius) * value / serie.pieDataMax : - serie.pieOutsideRadius; + serieData.runtimePieOutsideRadius = serie.pieRoseType > 0 ? + serie.runtimePieInsideRadius + (serie.runtimePieOutsideRadius - serie.runtimePieInsideRadius) * value / serie.runtimePieDataMax : + serie.runtimePieOutsideRadius; if (serieData.highlighted) { isDataHighlight = true; color *= 1.2f; - serieData.pieOutsideRadius += m_Settings.pieTooltipExtraRadius; + serieData.runtimePieOutsideRadius += m_Settings.pieTooltipExtraRadius; } var offset = serie.pieSpace; if (serie.pieClickOffset && serieData.selected) { offset += m_Settings.pieSelectedOffset; } - var halfDegree = (serieData.pieToAngle - startDegree) / 2; - serieData.pieHalfAngle = startDegree + halfDegree; - float currRad = serieData.pieHalfAngle * Mathf.Deg2Rad; + var halfDegree = (serieData.runtimePieToAngle - startDegree) / 2; + serieData.runtimePieHalfAngle = startDegree + halfDegree; + float currRad = serieData.runtimePieHalfAngle * Mathf.Deg2Rad; float currSin = Mathf.Sin(currRad); float currCos = Mathf.Cos(currRad); - var center = serie.pieCenterPos; + var center = serie.runtimePieCenterPos; - serieData.pieCurrAngle = serieData.pieToAngle; - serieData.pieOffsetCenter = center; - serieData.pieInsideRadius = serie.pieInsideRadius; - if (serie.animation.CheckDetailBreak(n, serieData.pieToAngle)) + serieData.runtimePieCurrAngle = serieData.runtimePieToAngle; + serieData.runtiemPieOffsetCenter = center; + serieData.runtimePieInsideRadius = serie.runtimePieInsideRadius; + if (serie.animation.CheckDetailBreak(n, serieData.runtimePieToAngle)) { isFinish = false; - serieData.pieCurrAngle = serie.animation.GetCurrDetail(); + serieData.runtimePieCurrAngle = serie.animation.GetCurrDetail(); } if (offset > 0) { - serieData.pieOffsetRadius = serie.pieSpace / Mathf.Sin(halfDegree * Mathf.Deg2Rad); - serieData.pieInsideRadius -= serieData.pieOffsetRadius; - serieData.pieOutsideRadius -= serieData.pieOffsetRadius; + serieData.runtimePieOffsetRadius = serie.pieSpace / Mathf.Sin(halfDegree * Mathf.Deg2Rad); + serieData.runtimePieInsideRadius -= serieData.runtimePieOffsetRadius; + serieData.runtimePieOutsideRadius -= serieData.runtimePieOffsetRadius; if (serie.pieClickOffset && serieData.selected) { - serieData.pieOffsetRadius += m_Settings.pieSelectedOffset; - if (serieData.pieInsideRadius > 0) serieData.pieInsideRadius += m_Settings.pieSelectedOffset; - serieData.pieOutsideRadius += m_Settings.pieSelectedOffset; + serieData.runtimePieOffsetRadius += m_Settings.pieSelectedOffset; + if (serieData.runtimePieInsideRadius > 0) serieData.runtimePieInsideRadius += m_Settings.pieSelectedOffset; + serieData.runtimePieOutsideRadius += m_Settings.pieSelectedOffset; } - serieData.pieOffsetCenter = new Vector3(center.x + serieData.pieOffsetRadius * currSin, - center.y + serieData.pieOffsetRadius * currCos); + serieData.runtiemPieOffsetCenter = new Vector3(center.x + serieData.runtimePieOffsetRadius * currSin, + center.y + serieData.runtimePieOffsetRadius * currCos); - ChartDrawer.DrawDoughnut(vh, serieData.pieOffsetCenter, serieData.pieInsideRadius, serieData.pieOutsideRadius, - color, m_ThemeInfo.backgroundColor, m_Settings.cicleSmoothness, startDegree, serieData.pieCurrAngle); + ChartDrawer.DrawDoughnut(vh, serieData.runtiemPieOffsetCenter, serieData.runtimePieInsideRadius, serieData.runtimePieOutsideRadius, + color, m_ThemeInfo.backgroundColor, m_Settings.cicleSmoothness, startDegree, serieData.runtimePieCurrAngle); } else { - ChartDrawer.DrawDoughnut(vh, center, serieData.pieInsideRadius, serieData.pieOutsideRadius, - color, m_ThemeInfo.backgroundColor, m_Settings.cicleSmoothness, startDegree, serieData.pieCurrAngle); + ChartDrawer.DrawDoughnut(vh, center, serieData.runtimePieInsideRadius, serieData.runtimePieOutsideRadius, + color, m_ThemeInfo.backgroundColor, m_Settings.cicleSmoothness, startDegree, serieData.runtimePieCurrAngle); } - serieData.canShowLabel = serieData.pieCurrAngle >= serieData.pieHalfAngle; + serieData.canShowLabel = serieData.runtimePieCurrAngle >= serieData.runtimePieHalfAngle; isDrawPie = true; - startDegree = serieData.pieToAngle; + startDegree = serieData.runtimePieToAngle; if (isFinish) serie.animation.SetDataFinish(n); else break; } @@ -213,17 +213,17 @@ namespace XCharts && serie.label.position == SerieLabel.Position.Outside && serie.label.line) { - var insideRadius = serieData.pieInsideRadius; - var outSideRadius = serieData.pieOutsideRadius; - var center = serie.pieCenterPos; - var currAngle = serieData.pieHalfAngle; + var insideRadius = serieData.runtimePieInsideRadius; + var outSideRadius = serieData.runtimePieOutsideRadius; + var center = serie.runtimePieCenterPos; + var currAngle = serieData.runtimePieHalfAngle; if (serie.label.lineColor != Color.clear) color = serie.label.lineColor; else if (serie.label.lineType == SerieLabel.LineType.HorizontalLine) color *= color; float currSin = Mathf.Sin(currAngle * Mathf.Deg2Rad); float currCos = Mathf.Cos(currAngle * Mathf.Deg2Rad); var radius1 = serie.label.lineType == SerieLabel.LineType.HorizontalLine ? - serie.pieOutsideRadius : outSideRadius; - var radius2 = serie.pieOutsideRadius + serie.label.lineLength1; + serie.runtimePieOutsideRadius : outSideRadius; + var radius2 = serie.runtimePieOutsideRadius + serie.label.lineLength1; var radius3 = insideRadius + (outSideRadius - insideRadius) / 2; var pos0 = new Vector3(center.x + radius3 * currSin, center.y + radius3 * currCos); var pos1 = new Vector3(center.x + radius1 * currSin, center.y + radius1 * currCos); @@ -332,7 +332,7 @@ namespace XCharts private void DrawLabel(Serie serie, int dataIndex, SerieData serieData, Color serieColor) { if (serieData.labelText == null) return; - var currAngle = serieData.pieHalfAngle; + var currAngle = serieData.runtimePieHalfAngle; var isHighlight = (serieData.highlighted && serie.emphasis.label.show); var showLabel = ((serie.label.show || isHighlight) && serieData.canShowLabel); if (showLabel || serieData.showIcon) @@ -387,30 +387,30 @@ namespace XCharts protected void UpdateLabelPostion(Serie serie, SerieData serieData) { - var currAngle = serieData.pieHalfAngle; + var currAngle = serieData.runtimePieHalfAngle; var currRad = currAngle * Mathf.Deg2Rad; - var offsetRadius = serieData.pieOffsetRadius; - var insideRadius = serieData.pieInsideRadius; - var outsideRadius = serieData.pieOutsideRadius; + var offsetRadius = serieData.runtimePieOffsetRadius; + var insideRadius = serieData.runtimePieInsideRadius; + var outsideRadius = serieData.runtimePieOutsideRadius; switch (serie.label.position) { case SerieLabel.Position.Center: - serieData.labelPosition = serie.pieCenterPos; + serieData.labelPosition = serie.runtimePieCenterPos; break; case SerieLabel.Position.Inside: var labelRadius = offsetRadius + insideRadius + (outsideRadius - insideRadius) / 2; - var labelCenter = new Vector2(serie.pieCenterPos.x + labelRadius * Mathf.Sin(currRad), - serie.pieCenterPos.y + labelRadius * Mathf.Cos(currRad)); + var labelCenter = new Vector2(serie.runtimePieCenterPos.x + labelRadius * Mathf.Sin(currRad), + serie.runtimePieCenterPos.y + labelRadius * Mathf.Cos(currRad)); serieData.labelPosition = labelCenter; break; case SerieLabel.Position.Outside: if (serie.label.lineType == SerieLabel.LineType.HorizontalLine) { - var radius1 = serie.pieOutsideRadius; + var radius1 = serie.runtimePieOutsideRadius; var radius3 = insideRadius + (outsideRadius - insideRadius) / 2; var currSin = Mathf.Sin(currRad); var currCos = Mathf.Cos(currRad); - var pos0 = new Vector3(serie.pieCenterPos.x + radius3 * currSin, serie.pieCenterPos.y + radius3 * currCos); + var pos0 = new Vector3(serie.runtimePieCenterPos.x + radius3 * currSin, serie.runtimePieCenterPos.y + radius3 * currCos); if (currAngle > 180) { currSin = Mathf.Sin((360 - currAngle) * Mathf.Deg2Rad); @@ -423,9 +423,9 @@ namespace XCharts } else { - labelRadius = serie.pieOutsideRadius + serie.label.lineLength1; - labelCenter = new Vector2(serie.pieCenterPos.x + labelRadius * Mathf.Sin(currRad), - serie.pieCenterPos.y + labelRadius * Mathf.Cos(currRad)); + labelRadius = serie.runtimePieOutsideRadius + serie.label.lineLength1; + labelCenter = new Vector2(serie.runtimePieCenterPos.x + labelRadius * Mathf.Sin(currRad), + serie.runtimePieCenterPos.y + labelRadius * Mathf.Cos(currRad)); float labelWidth = serieData.labelText.preferredWidth; if (currAngle > 180) { @@ -467,21 +467,21 @@ namespace XCharts if (serie.pieCenter.Length < 2) return; var centerX = serie.pieCenter[0] <= 1 ? chartWidth * serie.pieCenter[0] : serie.pieCenter[0]; var centerY = serie.pieCenter[1] <= 1 ? chartHeight * serie.pieCenter[1] : serie.pieCenter[1]; - serie.pieCenterPos = new Vector2(centerX, centerY); + serie.runtimePieCenterPos = new Vector2(centerX, centerY); var minWidth = Mathf.Min(chartWidth, chartHeight); - serie.pieInsideRadius = serie.pieRadius[0] <= 1 ? minWidth * serie.pieRadius[0] : serie.pieRadius[0]; - serie.pieOutsideRadius = serie.pieRadius[1] <= 1 ? minWidth * serie.pieRadius[1] : serie.pieRadius[1]; + serie.runtimePieInsideRadius = serie.pieRadius[0] <= 1 ? minWidth * serie.pieRadius[0] : serie.pieRadius[0]; + serie.runtimePieOutsideRadius = serie.pieRadius[1] <= 1 ? minWidth * serie.pieRadius[1] : serie.pieRadius[1]; } protected override void CheckTootipArea(Vector2 local) { if (m_IsEnterLegendButtom) return; - m_Tooltip.dataIndex.Clear(); + m_Tooltip.runtimeDataIndex.Clear(); bool selected = false; foreach (var serie in m_Series.list) { int index = GetPosPieIndex(serie, local); - m_Tooltip.dataIndex.Add(index); + m_Tooltip.runtimeDataIndex.Add(index); if (serie.type != SerieType.Pie) continue; bool refresh = false; for (int j = 0; j < serie.data.Count; j++) @@ -508,14 +508,14 @@ namespace XCharts private int GetPosPieIndex(Serie serie, Vector2 local) { if (serie.type != SerieType.Pie) return -1; - var dist = Vector2.Distance(local, serie.pieCenterPos); - if (dist < serie.pieInsideRadius || dist > serie.pieOutsideRadius) return -1; - Vector2 dir = local - new Vector2(serie.pieCenterPos.x, serie.pieCenterPos.y); + var dist = Vector2.Distance(local, serie.runtimePieCenterPos); + if (dist < serie.runtimePieInsideRadius || dist > serie.runtimePieOutsideRadius) return -1; + Vector2 dir = local - new Vector2(serie.runtimePieCenterPos.x, serie.runtimePieCenterPos.y); float angle = VectorAngle(Vector2.up, dir); for (int i = 0; i < serie.data.Count; i++) { var serieData = serie.data[i]; - if (angle >= serieData.pieStartAngle && angle <= serieData.pieToAngle) + if (angle >= serieData.runtimePieStartAngle && angle <= serieData.runtimePieToAngle) { return i; } @@ -541,7 +541,7 @@ namespace XCharts bool showTooltip = false; foreach (var serie in m_Series.list) { - int index = m_Tooltip.dataIndex[serie.index]; + int index = m_Tooltip.runtimeDataIndex[serie.index]; if (index < 0) continue; showTooltip = true; if (string.IsNullOrEmpty(tooltip.formatter)) @@ -565,13 +565,13 @@ namespace XCharts } var pos = m_Tooltip.GetContentPos(); - if (pos.x + m_Tooltip.width > chartWidth) + if (pos.x + m_Tooltip.runtimeWidth > chartWidth) { - pos.x = chartWidth - m_Tooltip.width; + pos.x = chartWidth - m_Tooltip.runtimeWidth; } - if (pos.y - m_Tooltip.height < 0) + if (pos.y - m_Tooltip.runtimeHeight < 0) { - pos.y = m_Tooltip.height; + pos.y = m_Tooltip.runtimeHeight; } m_Tooltip.UpdateContentPos(pos); } diff --git a/Assets/XCharts/Runtime/RadarChart.cs b/Assets/XCharts/Runtime/RadarChart.cs index 75b2eea0..b9f0169b 100644 --- a/Assets/XCharts/Runtime/RadarChart.cs +++ b/Assets/XCharts/Runtime/RadarChart.cs @@ -110,7 +110,7 @@ namespace XCharts var indicator = radar.indicatorList[i]; var pos = radar.GetIndicatorPosition(i); TextAnchor anchor = TextAnchor.MiddleCenter; - var diff = pos.x - radar.centerPos.x; + var diff = pos.x - radar.runtimeCenterPos.x; if (diff < -1f) { pos = new Vector3(pos.x - 5, pos.y); @@ -124,7 +124,7 @@ namespace XCharts else { anchor = TextAnchor.MiddleCenter; - float y = pos.y > radar.centerPos.y ? pos.y + txtHig / 2 : pos.y - txtHig / 2; + float y = pos.y > radar.runtimeCenterPos.y ? pos.y + txtHig / 2 : pos.y - txtHig / 2; pos = new Vector3(pos.x + txtWid / 2, y); } var textColor = indicator.color == Color.clear ? (Color)m_ThemeInfo.axisTextColor : indicator.color; @@ -212,7 +212,7 @@ namespace XCharts var radar = m_Radars[serie.radarIndex]; int indicatorNum = radar.indicatorList.Count; var angle = 2 * Mathf.PI / indicatorNum; - Vector3 p = radar.centerPos; + Vector3 p = radar.runtimeCenterPos; serie.animation.InitProgress(1, 0, 1); if (!IsActive(i)) { @@ -223,13 +223,13 @@ namespace XCharts { var serieData = serie.data[j]; int key = i * 100 + j; - if (!radar.dataPosList.ContainsKey(key)) + if (!radar.runtimeDataPosList.ContainsKey(key)) { - radar.dataPosList.Add(i * 100 + j, new List(serieData.data.Count)); + radar.runtimeDataPosList.Add(i * 100 + j, new List(serieData.data.Count)); } else { - radar.dataPosList[key].Clear(); + radar.runtimeDataPosList[key].Clear(); } string dataName = serieData.name; int serieIndex = 0; @@ -253,11 +253,11 @@ namespace XCharts continue; } var isHighlight = serie.highlighted || serieData.highlighted || - (m_Tooltip.show && m_Tooltip.dataIndex[0] == i && m_Tooltip.dataIndex[1] == j); + (m_Tooltip.show && m_Tooltip.runtimeDataIndex[0] == i && m_Tooltip.runtimeDataIndex[1] == j); var areaColor = serie.GetAreaColor(m_ThemeInfo, serieIndex, isHighlight); var lineColor = serie.GetLineColor(m_ThemeInfo, serieIndex, isHighlight); int dataCount = radar.indicatorList.Count; - List pointList = radar.dataPosList[key]; + List pointList = radar.runtimeDataPosList[key]; for (int n = 0; n < dataCount; n++) { if (n >= serieData.data.Count) break; @@ -269,8 +269,8 @@ namespace XCharts serie.GetMinMaxData(n, out min, out max); min = radar.GetIndicatorMin(n); } - var radius = max < 0 ? radar.actualRadius - radar.actualRadius * value / max - : radar.actualRadius * value / max; + var radius = max < 0 ? radar.runtimeRadius - radar.runtimeRadius * value / max + : radar.runtimeRadius * value / max; var currAngle = n * angle; radius *= rate; if (n == 0) @@ -331,10 +331,10 @@ namespace XCharts return; } float insideRadius = 0, outsideRadius = 0; - float block = radar.actualRadius / radar.splitNumber; + float block = radar.runtimeRadius / radar.splitNumber; int indicatorNum = radar.indicatorList.Count; Vector3 p1, p2, p3, p4; - Vector3 p = radar.centerPos; + Vector3 p = radar.runtimeCenterPos; float angle = 2 * Mathf.PI / indicatorNum; var lineColor = GetLineColor(radar); for (int i = 0; i < radar.splitNumber; i++) @@ -382,9 +382,9 @@ namespace XCharts return; } float insideRadius = 0, outsideRadius = 0; - float block = radar.actualRadius / radar.splitNumber; + float block = radar.runtimeRadius / radar.splitNumber; int indicatorNum = radar.indicatorList.Count; - Vector3 p = radar.centerPos; + Vector3 p = radar.runtimeCenterPos; Vector3 p1; float angle = 2 * Mathf.PI / indicatorNum; var lineColor = GetLineColor(radar); @@ -443,23 +443,23 @@ namespace XCharts if (!IsActive(i)) continue; var serie = m_Series.GetSerie(i); var radar = m_Radars[serie.radarIndex]; - var dist = Vector2.Distance(radar.centerPos, local); - if (dist > radar.actualRadius + serie.symbol.size) + var dist = Vector2.Distance(radar.runtimeCenterPos, local); + if (dist > radar.runtimeRadius + serie.symbol.size) { continue; } for (int n = 0; n < serie.data.Count; n++) { var posKey = i * 100 + n; - if (radar.dataPosList.ContainsKey(posKey)) + if (radar.runtimeDataPosList.ContainsKey(posKey)) { - var posList = radar.dataPosList[posKey]; + var posList = radar.runtimeDataPosList[posKey]; foreach (var pos in posList) { if (Vector2.Distance(pos, local) <= serie.symbol.size * 1.2f) { - m_Tooltip.dataIndex[0] = i; - m_Tooltip.dataIndex[1] = n; + m_Tooltip.runtimeDataIndex[0] = i; + m_Tooltip.runtimeDataIndex[1] = n; highlight = true; break; } @@ -487,7 +487,7 @@ namespace XCharts protected override void RefreshTooltip() { base.RefreshTooltip(); - int serieIndex = m_Tooltip.dataIndex[0]; + int serieIndex = m_Tooltip.runtimeDataIndex[0]; if (serieIndex < 0) { if (m_Tooltip.IsActive()) @@ -500,7 +500,7 @@ namespace XCharts m_Tooltip.SetActive(true); var serie = m_Series.GetSerie(serieIndex); var radar = m_Radars[serie.radarIndex]; - var serieData = serie.GetSerieData(m_Tooltip.dataIndex[1]); + var serieData = serie.GetSerieData(m_Tooltip.runtimeDataIndex[1]); StringBuilder sb = new StringBuilder(serieData.name); for (int i = 0; i < radar.indicatorList.Count; i++) { @@ -511,13 +511,13 @@ namespace XCharts } m_Tooltip.UpdateContentText(sb.ToString()); var pos = m_Tooltip.GetContentPos(); - if (pos.x + m_Tooltip.width > chartWidth) + if (pos.x + m_Tooltip.runtimeWidth > chartWidth) { - pos.x = chartWidth - m_Tooltip.width; + pos.x = chartWidth - m_Tooltip.runtimeWidth; } - if (pos.y - m_Tooltip.height < 0) + if (pos.y - m_Tooltip.runtimeHeight < 0) { - pos.y = m_Tooltip.height; + pos.y = m_Tooltip.runtimeHeight; } m_Tooltip.UpdateContentPos(pos); } diff --git a/Assets/XCharts/Runtime/Utility/ChartHelper.cs b/Assets/XCharts/Runtime/Utility/ChartHelper.cs index 4fb650a5..20243ff6 100644 --- a/Assets/XCharts/Runtime/Utility/ChartHelper.cs +++ b/Assets/XCharts/Runtime/Utility/ChartHelper.cs @@ -190,7 +190,7 @@ namespace XCharts return btnObj.GetComponent public float min { get { return m_Min; } set { m_Min = value; } } /// - /// Specfy a color the the indicator. - /// 标签特定的颜色。默认取自主题的axisTextColor。 + /// the style of text. + /// 文本样式。 /// - public Color color { get { return m_Color; } set { m_Color = value; } } + public TextStyle textStyle { get { return m_TextStyle; } set { m_TextStyle = value; } } /// /// the text conponent of indicator. /// 指示器的文本组件。 @@ -72,7 +87,7 @@ namespace XCharts m_Name = name, m_Max = max, m_Min = min, - m_Color = color + m_TextStyle = textStyle.Clone() }; } @@ -99,7 +114,7 @@ namespace XCharts return false; } return m_Name.Equals(other.name) && - ChartHelper.IsValueEqualsColor(m_Color, other.color); + m_TextStyle.Equals(other.textStyle); } public override int GetHashCode() @@ -114,6 +129,8 @@ namespace XCharts [SerializeField] private LineStyle m_LineStyle = new LineStyle(); [SerializeField] private AxisSplitArea m_SplitArea = AxisSplitArea.defaultSplitArea; [SerializeField] private bool m_Indicator = true; + [SerializeField] private PositionType m_PositionType = PositionType.Vertice; + [SerializeField] private float m_IndicatorGap = 10; [SerializeField] private List m_IndicatorList = new List(); /// /// Radar render type, in which 'Polygon' and 'Circle' are supported. @@ -153,6 +170,14 @@ namespace XCharts /// public bool indicator { get { return m_Indicator; } set { m_Indicator = value; } } /// + /// 指示器和雷达的间距。 + /// + public float indicatorGap { get { return m_IndicatorGap; } set { m_IndicatorGap = value; } } + /// + /// 指示器显示位置类型。 + /// + public PositionType positionType { get { return m_PositionType; } set { m_PositionType = value; } } + /// /// the indicator list. /// 指示器列表。 /// @@ -168,6 +193,7 @@ namespace XCharts /// 雷达图的运行时实际半径。 /// public float runtimeRadius { get; internal set; } + public float runtimeDataRadius { get; internal set; } /// /// the data position list of radar. /// 雷达图的所有数据坐标点列表。 @@ -216,12 +242,14 @@ namespace XCharts { var radar = new Radar(); radar.shape = shape; + radar.positionType = positionType; radar.radius = radius; radar.splitNumber = splitNumber; radar.center[0] = center[0]; radar.center[1] = center[1]; radar.indicatorList.Clear(); radar.indicator = indicator; + radar.indicatorGap = indicatorGap; foreach (var d in indicatorList) radar.indicatorList.Add(d.Clone()); return radar; } @@ -250,10 +278,12 @@ namespace XCharts } return radius == other.radius && shape == other.shape && + positionType == other.positionType && splitNumber == other.splitNumber && center[0] == other.center[0] && center[1] == other.center[1] && indicator == other.indicator && + indicatorGap == other.indicatorGap && IsEqualsIndicatorList(indicatorList, other.indicatorList); } @@ -359,14 +389,32 @@ namespace XCharts { runtimeRadius = radius; } + if (shape == Radar.Shape.Polygon && positionType == PositionType.Between) + { + var angle = Mathf.PI / indicatorList.Count; + runtimeDataRadius = runtimeRadius * Mathf.Cos(angle); + } + else + { + runtimeDataRadius = runtimeRadius; + } } public Vector3 GetIndicatorPosition(int index) { int indicatorNum = indicatorList.Count; - var angle = 2 * Mathf.PI / indicatorNum * index; - var x = runtimeCenterPos.x + runtimeRadius * Mathf.Sin(angle); - var y = runtimeCenterPos.y + runtimeRadius * Mathf.Cos(angle); + var angle = 0f; + switch (positionType) + { + case PositionType.Vertice: + angle = 2 * Mathf.PI / indicatorNum * index; + break; + case PositionType.Between: + angle = 2 * Mathf.PI / indicatorNum * (index + 0.5f); + break; + } + var x = runtimeCenterPos.x + (runtimeRadius + indicatorGap) * Mathf.Sin(angle); + var y = runtimeCenterPos.y + (runtimeRadius + indicatorGap) * Mathf.Cos(angle); return new Vector3(x, y); } } diff --git a/Assets/XCharts/Runtime/Component/Sub/TextStyle.cs b/Assets/XCharts/Runtime/Component/Sub/TextStyle.cs new file mode 100644 index 00000000..31a68656 --- /dev/null +++ b/Assets/XCharts/Runtime/Component/Sub/TextStyle.cs @@ -0,0 +1,129 @@ +using System.Threading; +/******************************************/ +/* */ +/* Copyright (c) 2018 monitor1394 */ +/* https://github.com/monitor1394 */ +/* */ +/******************************************/ + +using System; +using UnityEngine; + +namespace XCharts +{ + /// + /// Settings related to text. + /// 文本的相关设置。 + /// + [Serializable] + public class TextStyle : SubComponent, IEquatable + { + [SerializeField] private float m_Rotate = 0; + [SerializeField] private Vector2 m_Offset = Vector2.zero; + [SerializeField] private Color m_Color = Color.clear; + [SerializeField] private int m_FontSize = 18; + [SerializeField] private FontStyle m_FontStyle = FontStyle.Normal; + + /// + /// Rotation of text. + /// 文本的旋转。 + /// + public float rotate { get { return m_Rotate; } set { m_Rotate = value; } } + /// + /// the offset of position. + /// 坐标偏移。 + /// + public Vector2 offset { get { return m_Offset; } set { m_Offset = value; } } + + /// + /// the color of text. + /// 文本的颜色。 + /// + public Color color { get { return m_Color; } set { m_Color = value; } } + /// + /// font size. + /// 文本字体大小。 + /// + public int fontSize { get { return m_FontSize; } set { m_FontSize = value; } } + /// + /// font style. + /// 文本字体的风格。 + /// + public FontStyle fontStyle { get { return m_FontStyle; } set { m_FontStyle = value; } } + + public TextStyle() + { + } + + public TextStyle(int fontSize) + { + this.fontSize = fontSize; + } + + public TextStyle(int fontSize, FontStyle fontStyle) + { + this.fontSize = fontSize; + this.fontStyle = fontStyle; + } + + public TextStyle(int fontSize, FontStyle fontStyle, Color color) + { + this.fontSize = fontSize; + this.fontStyle = fontStyle; + this.color = color; + } + + public TextStyle(int fontSize, FontStyle fontStyle, Color color, int rorate) + { + this.fontSize = fontSize; + this.fontStyle = fontStyle; + this.color = color; + this.rotate = rotate; + } + + public TextStyle Clone() + { + var textStyle = new TextStyle(); + textStyle.rotate = rotate; + textStyle.color = color; + textStyle.fontSize = fontSize; + textStyle.fontStyle = fontStyle; + textStyle.offset = offset; + return textStyle; + } + + public override bool Equals(object obj) + { + if (ReferenceEquals(null, obj)) + { + return false; + } + else if (obj is TextStyle) + { + return Equals((TextStyle)obj); + } + else + { + return false; + } + } + + public bool Equals(TextStyle other) + { + if (ReferenceEquals(null, other)) + { + return false; + } + return rotate == other.rotate && + fontSize == other.fontSize && + fontStyle == other.fontStyle && + offset == other.offset && + ChartHelper.IsValueEqualsColor(m_Color, other.color); + } + + public override int GetHashCode() + { + return base.GetHashCode(); + } + } +} \ No newline at end of file diff --git a/Assets/XCharts/Runtime/Component/Sub/TextStyle.cs.meta b/Assets/XCharts/Runtime/Component/Sub/TextStyle.cs.meta new file mode 100644 index 00000000..c429b3bd --- /dev/null +++ b/Assets/XCharts/Runtime/Component/Sub/TextStyle.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: e8f6b652968894ab195666501dda672c +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/XCharts/Runtime/Internal/SerieLabelPool.cs b/Assets/XCharts/Runtime/Internal/SerieLabelPool.cs index 8e863aac..e8704857 100644 --- a/Assets/XCharts/Runtime/Internal/SerieLabelPool.cs +++ b/Assets/XCharts/Runtime/Internal/SerieLabelPool.cs @@ -17,7 +17,7 @@ namespace XCharts public static GameObject Get(string name, Transform parent, SerieLabel label, Font font, Color color, SerieData serieData) { GameObject element; - if (m_Stack.Count == 0) + if (m_Stack.Count == 0 || !Application.isPlaying) { element = ChartHelper.AddSerieLabel(name, parent, font, color, label.backgroundColor, label.fontSize, label.fontStyle, label.rotate, @@ -39,7 +39,8 @@ namespace XCharts ChartHelper.SetActive(element, false); //if (m_Stack.Count > 0 && ReferenceEquals(m_Stack.Peek(), element)) // Debug.LogError("Internal error. Trying to destroy object that is already released to pool." + element.name); - m_Stack.Push(element); + if (Application.isPlaying) + m_Stack.Push(element); } public static void ReleaseAll(Transform parent) diff --git a/Assets/XCharts/Runtime/RadarChart.cs b/Assets/XCharts/Runtime/RadarChart.cs index b9f0169b..e2fc66c6 100644 --- a/Assets/XCharts/Runtime/RadarChart.cs +++ b/Assets/XCharts/Runtime/RadarChart.cs @@ -20,12 +20,10 @@ namespace XCharts { private const string INDICATOR_TEXT = "indicator"; - //[SerializeField] private Radar radar = Radar.defaultRadar; [SerializeField] private List m_Radars = new List(); private List m_CheckRadars = new List(); private bool m_IsEnterLegendButtom; - //public Radar radar { get { return radar; } } public List radars { get { return m_Radars; } } /// @@ -110,30 +108,31 @@ namespace XCharts var indicator = radar.indicatorList[i]; var pos = radar.GetIndicatorPosition(i); TextAnchor anchor = TextAnchor.MiddleCenter; + var textStyle = indicator.textStyle; + var textColor = textStyle.color == Color.clear ? (Color)m_ThemeInfo.axisTextColor : textStyle.color; + var txt = ChartHelper.AddTextObject(INDICATOR_TEXT + "_" + n + "_" + i, transform, m_ThemeInfo.font, + textColor, anchor, new Vector2(0.5f, 0.5f), new Vector2(0.5f, 0.5f), new Vector2(0.5f, 0.5f), + new Vector2(txtWid, txtHig), textStyle.fontSize, textStyle.rotate, textStyle.fontStyle); + txt.text = radar.indicatorList[i].name; + txt.gameObject.SetActive(radar.indicator); + var txtWidth = txt.preferredWidth; + var sizeDelta = new Vector2(txt.preferredWidth, txt.preferredHeight); + txt.GetComponent().sizeDelta = sizeDelta; var diff = pos.x - radar.runtimeCenterPos.x; - if (diff < -1f) + if (diff < -1f) //left { - pos = new Vector3(pos.x - 5, pos.y); - anchor = TextAnchor.MiddleRight; + pos = new Vector3(pos.x - txtWidth / 2, pos.y); } - else if (diff > 1f) + else if (diff > 1f) //right { - anchor = TextAnchor.MiddleLeft; - pos = new Vector3(pos.x + txtWid + 5, pos.y); + pos = new Vector3(pos.x + txtWidth / 2, pos.y); } else { - anchor = TextAnchor.MiddleCenter; float y = pos.y > radar.runtimeCenterPos.y ? pos.y + txtHig / 2 : pos.y - txtHig / 2; - pos = new Vector3(pos.x + txtWid / 2, y); + pos = new Vector3(pos.x, y); } - var textColor = indicator.color == Color.clear ? (Color)m_ThemeInfo.axisTextColor : indicator.color; - Text txt = ChartHelper.AddTextObject(INDICATOR_TEXT + "_" + n + "_" + i, transform, m_ThemeInfo.font, - textColor, anchor, Vector2.zero, Vector2.zero, new Vector2(1, 0.5f), - new Vector2(txtWid, txtHig)); - txt.transform.localPosition = pos; - txt.text = radar.indicatorList[i].name; - txt.gameObject.SetActive(radar.indicator); + txt.transform.localPosition = pos + new Vector3(textStyle.offset.x, textStyle.offset.y); } } } @@ -269,9 +268,9 @@ namespace XCharts serie.GetMinMaxData(n, out min, out max); min = radar.GetIndicatorMin(n); } - var radius = max < 0 ? radar.runtimeRadius - radar.runtimeRadius * value / max - : radar.runtimeRadius * value / max; - var currAngle = n * angle; + var radius = max < 0 ? radar.runtimeDataRadius - radar.runtimeDataRadius * value / max + : radar.runtimeDataRadius * value / max; + var currAngle = (n + (radar.positionType == Radar.PositionType.Between ? 0.5f : 0)) * angle; radius *= rate; if (n == 0) { diff --git a/Assets/XCharts/Runtime/Utility/ChartHelper.cs b/Assets/XCharts/Runtime/Utility/ChartHelper.cs index 415b97a7..c92ab1c4 100644 --- a/Assets/XCharts/Runtime/Utility/ChartHelper.cs +++ b/Assets/XCharts/Runtime/Utility/ChartHelper.cs @@ -156,15 +156,13 @@ namespace XCharts Text txt = GetOrAddComponent(txtObj); txt.font = font; txt.fontSize = fontSize; + txt.fontStyle = fontStyle; txt.text = "Text"; txt.alignment = anchor; txt.horizontalOverflow = HorizontalWrapMode.Overflow; txt.verticalOverflow = VerticalWrapMode.Overflow; txt.color = color; - if (rotate > 0) - { - txtObj.transform.localEulerAngles = new Vector3(0, 0, rotate); - } + txtObj.transform.localEulerAngles = new Vector3(0, 0, rotate); RectTransform rect = GetOrAddComponent(txtObj); rect.localPosition = Vector3.zero; From aef05a53ef3a506d7fbf41eef60d8485c77b2bf1 Mon Sep 17 00:00:00 2001 From: monitor1394 Date: Tue, 5 Nov 2019 19:20:06 +0800 Subject: [PATCH 16/27] =?UTF-8?q?=E5=8F=91=E5=B8=831.0.4=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/XCharts/CHANGELOG.md | 2 +- .../Documentation/XCharts配置项手册.md | 39 +++++++++++++++++++ .../XCharts/Runtime/Component/Main/Radar.cs | 2 +- Assets/XCharts/Runtime/Utility/XChartsMgr.cs | 4 +- Assets/XCharts/package.json | 2 +- Assets/XCharts/version.json | 6 +-- 6 files changed, 47 insertions(+), 8 deletions(-) diff --git a/Assets/XCharts/CHANGELOG.md b/Assets/XCharts/CHANGELOG.md index bc19c72f..8c33dca0 100644 --- a/Assets/XCharts/CHANGELOG.md +++ b/Assets/XCharts/CHANGELOG.md @@ -1,7 +1,7 @@ # 更新日志 -* (2019.11.05) 增加`Radar`雷达组件更多样式配置参数支持,如`positionType`,`rotate`,`fontSize`,`fontStyle`,`offset`等 +* (2019.11.05) 增加`Radar`雷达组件文本样式参数配置支持 * (2019.11.04) 修复`Unity2018.3`以下版本代码不兼容的问题 * (2019.11.04) 优化`SerieLabel`过多时引起的性能问题 * (2019.11.03) 发布`v1.0.3`版本 diff --git a/Assets/XCharts/Documentation/XCharts配置项手册.md b/Assets/XCharts/Documentation/XCharts配置项手册.md index 9d9ef82a..e16b85ca 100644 --- a/Assets/XCharts/Documentation/XCharts配置项手册.md +++ b/Assets/XCharts/Documentation/XCharts配置项手册.md @@ -10,6 +10,7 @@ * [DataZoom 区域缩放](#DataZoom) * [Grid 网格](#Grid) * [Legend 图例](#Legend) +* [Radar 雷达](#Radar) * [Series 系列](#Series) * [Settings 设置](#Settings) * [Theme 主题](#Theme) @@ -34,6 +35,7 @@ * [SerieData 数据项](#SerieData) * [SerieLabel 图形上的文本标签](#SerieLabel) * [SerieSymbol 图形标记](#SerieSymbol) +* [TextStyle 文本样式](#TextStyle) ## `Theme` @@ -115,6 +117,43 @@ * `GetData(int index)`:获得指定索引的图例。 * `GetIndex(string legendName)`:获得指定图例的索引。 +## `Radar` + +--- + +* `shape`:雷达图绘制类型。 + * `Polygon`:多边形。 + * `Circle`:圆形。 +* `positionType`:显示位置类型。 + * `Vertice`:显示在顶点处。 + * `Between`:显示在顶点之间。 +* `radius`:雷达图的半径。 +* `center`:雷达图的中心点。数组的第一项是横坐标,第二项是纵坐标。当值为0-1之间时表示百分比,设置成百分比时第一项是相对于容器宽度,第二项是相对于容器高度。 +* `lineStyle`:线条样式 [LineStyle](#LineStyle)。 +* `splitArea`:分割区域 [AxisSplitArea](#AxisSplitArea)。 +* `indicator`:是否显示指示器。 +* `indicatorGap`:指示器和雷达的间距。 +* `indicatorList`指示器列表 [Radar.Indicator](#Radar.Indicator)。 + +## `Radar.Indicator` + +--- + +* `name`:指示器名称。 +* `max`:指示器的最大值,默认为 0 无限制。 +* `min`:指示器的最小值,默认为 0 无限制。 +* `textStyle`:文本样式 [TextStyle](#TextStyle)。 + +## `TextStyle` + +--- + +* `rotate`:旋转。 +* `offset`:偏移。 +* `color`:颜色。 +* `fontSize`:字体大小。 +* `fontStyle`:字体风格。 + ## `Tooltip` --- diff --git a/Assets/XCharts/Runtime/Component/Main/Radar.cs b/Assets/XCharts/Runtime/Component/Main/Radar.cs index d942bbe4..0cef4db5 100644 --- a/Assets/XCharts/Runtime/Component/Main/Radar.cs +++ b/Assets/XCharts/Runtime/Component/Main/Radar.cs @@ -174,7 +174,7 @@ namespace XCharts /// public float indicatorGap { get { return m_IndicatorGap; } set { m_IndicatorGap = value; } } /// - /// 指示器显示位置类型。 + /// 显示位置类型。 /// public PositionType positionType { get { return m_PositionType; } set { m_PositionType = value; } } /// diff --git a/Assets/XCharts/Runtime/Utility/XChartsMgr.cs b/Assets/XCharts/Runtime/Utility/XChartsMgr.cs index 2602df21..e8675b8d 100644 --- a/Assets/XCharts/Runtime/Utility/XChartsMgr.cs +++ b/Assets/XCharts/Runtime/Utility/XChartsMgr.cs @@ -24,8 +24,8 @@ namespace XCharts public class XChartsMgr : MonoBehaviour { - public const string version = "1.0.3"; - public const int date = 20191103; + public const string version = "1.0.4"; + public const int date = 20191105; [SerializeField] private string m_NowVersion; [SerializeField] private string m_NewVersion; diff --git a/Assets/XCharts/package.json b/Assets/XCharts/package.json index ed2deb24..5d4ed075 100644 --- a/Assets/XCharts/package.json +++ b/Assets/XCharts/package.json @@ -1,7 +1,7 @@ { "name": "com.monitor1394.xcharts", "displayName": "XCharts", - "version": "1.0.3", + "version": "1.0.4", "unity": "2018.3", "description": "A charting and data visualization library for Unity.", "keywords": [ diff --git a/Assets/XCharts/version.json b/Assets/XCharts/version.json index 04a82307..8725cd6d 100644 --- a/Assets/XCharts/version.json +++ b/Assets/XCharts/version.json @@ -1,7 +1,7 @@ { - "version": "1.0.3", - "date": "20191103", - "checkdate": "20191103", + "version": "1.0.4", + "date": "20191105", + "checkdate": "20191105", "desc": "欢迎 Github 上点 Star 支持,非常感谢!", "homepage": "https://github.com/monitor1394/unity-ugui-XCharts" } \ No newline at end of file From d45e2695a5354ac8a3cdd390aeff4829fe899e02 Mon Sep 17 00:00:00 2001 From: monitor1394 Date: Sat, 9 Nov 2019 07:00:58 +0800 Subject: [PATCH 17/27] =?UTF-8?q?=E4=BC=98=E5=8C=96=E7=BB=93=E6=9E=84?= =?UTF-8?q?=EF=BC=8C=E5=88=86=E7=A6=BB=E4=B8=BAXCharts=E5=92=8CXChartsDemo?= =?UTF-8?q?=E4=B8=A4=E9=83=A8=E5=88=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/XCharts/CHANGELOG.md | 2 + Assets/XCharts/Demo.meta | 2 - .../Demo/Editor/XCharts.Editor.Demo.asmdef | 17 - Assets/XChartsDemo.meta | 8 + .../{XCharts/Demo => XChartsDemo}/Editor.meta | 2 +- .../Editor/ChartModuleDrawer.cs | 2 +- .../Editor/ChartModuleDrawer.cs.meta | 0 .../Demo => XChartsDemo}/Editor/DemoEditor.cs | 2 +- .../Editor/DemoEditor.cs.meta | 0 Assets/XChartsDemo/Runtime.meta | 8 + .../Demo => XChartsDemo}/Runtime/Demo.cs | 5 +- .../Demo => XChartsDemo}/Runtime/Demo.cs.meta | 2 +- Assets/XChartsDemo/demo_test.unity | 6350 +++++++++++++++++ .../demo_test.unity.meta} | 4 +- .../Demo => XChartsDemo}/demo_xchart.unity | 0 .../demo_xchart.unity.meta | 0 README.md | 34 +- 17 files changed, 6392 insertions(+), 46 deletions(-) delete mode 100644 Assets/XCharts/Demo/Editor/XCharts.Editor.Demo.asmdef create mode 100644 Assets/XChartsDemo.meta rename Assets/{XCharts/Demo => XChartsDemo}/Editor.meta (77%) rename Assets/{XCharts/Demo => XChartsDemo}/Editor/ChartModuleDrawer.cs (98%) rename Assets/{XCharts/Demo => XChartsDemo}/Editor/ChartModuleDrawer.cs.meta (100%) rename Assets/{XCharts/Demo => XChartsDemo}/Editor/DemoEditor.cs (99%) rename Assets/{XCharts/Demo => XChartsDemo}/Editor/DemoEditor.cs.meta (100%) create mode 100644 Assets/XChartsDemo/Runtime.meta rename Assets/{XCharts/Demo => XChartsDemo}/Runtime/Demo.cs (99%) rename Assets/{XCharts/Demo => XChartsDemo}/Runtime/Demo.cs.meta (83%) create mode 100644 Assets/XChartsDemo/demo_test.unity rename Assets/{XCharts/Demo/Editor/XCharts.Editor.Demo.asmdef.meta => XChartsDemo/demo_test.unity.meta} (59%) rename Assets/{XCharts/Demo => XChartsDemo}/demo_xchart.unity (100%) rename Assets/{XCharts/Demo => XChartsDemo}/demo_xchart.unity.meta (100%) diff --git a/Assets/XCharts/CHANGELOG.md b/Assets/XCharts/CHANGELOG.md index 8c33dca0..15f7ff60 100644 --- a/Assets/XCharts/CHANGELOG.md +++ b/Assets/XCharts/CHANGELOG.md @@ -1,6 +1,8 @@ # 更新日志 +* (2019.11.09) 优化结构,分离为`XCharts`和`XChartsDemo`两部分 +* (2019.11.05) 发布`v1.0.4`版本 * (2019.11.05) 增加`Radar`雷达组件文本样式参数配置支持 * (2019.11.04) 修复`Unity2018.3`以下版本代码不兼容的问题 * (2019.11.04) 优化`SerieLabel`过多时引起的性能问题 diff --git a/Assets/XCharts/Demo.meta b/Assets/XCharts/Demo.meta index 24e0f666..2976fd1f 100644 --- a/Assets/XCharts/Demo.meta +++ b/Assets/XCharts/Demo.meta @@ -1,8 +1,6 @@ fileFormatVersion: 2 guid: 5e6b0fb015bc6524d8bab146b6f2ba3a folderAsset: yes -timeCreated: 1553641866 -licenseType: Free DefaultImporter: externalObjects: {} userData: diff --git a/Assets/XCharts/Demo/Editor/XCharts.Editor.Demo.asmdef b/Assets/XCharts/Demo/Editor/XCharts.Editor.Demo.asmdef deleted file mode 100644 index ebf6f8e5..00000000 --- a/Assets/XCharts/Demo/Editor/XCharts.Editor.Demo.asmdef +++ /dev/null @@ -1,17 +0,0 @@ -{ - "name": "XCharts.Editor.Demo", - "references": [ - "XCharts.Demo.Runtime", - "XCharts.Runtime" - ], - "optionalUnityReferences": [], - "includePlatforms": [ - "Editor" - ], - "excludePlatforms": [], - "allowUnsafeCode": false, - "overrideReferences": false, - "precompiledReferences": [], - "autoReferenced": true, - "defineConstraints": [] -} \ No newline at end of file diff --git a/Assets/XChartsDemo.meta b/Assets/XChartsDemo.meta new file mode 100644 index 00000000..3c9b0556 --- /dev/null +++ b/Assets/XChartsDemo.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 926cd5f4d8406451cb0c54e3ae6f71cd +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/XCharts/Demo/Editor.meta b/Assets/XChartsDemo/Editor.meta similarity index 77% rename from Assets/XCharts/Demo/Editor.meta rename to Assets/XChartsDemo/Editor.meta index 1896fb2f..d830f608 100644 --- a/Assets/XCharts/Demo/Editor.meta +++ b/Assets/XChartsDemo/Editor.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 05b7d15b7a92f4c1eb56dbf47522bf6c +guid: e7c05fe198b1e46eabc5896450bf9cec folderAsset: yes DefaultImporter: externalObjects: {} diff --git a/Assets/XCharts/Demo/Editor/ChartModuleDrawer.cs b/Assets/XChartsDemo/Editor/ChartModuleDrawer.cs similarity index 98% rename from Assets/XCharts/Demo/Editor/ChartModuleDrawer.cs rename to Assets/XChartsDemo/Editor/ChartModuleDrawer.cs index 1a609b4a..9b628b4f 100644 --- a/Assets/XCharts/Demo/Editor/ChartModuleDrawer.cs +++ b/Assets/XChartsDemo/Editor/ChartModuleDrawer.cs @@ -8,7 +8,7 @@ using UnityEditor; using UnityEngine; -namespace XCharts +namespace XChartsDemo { [CustomPropertyDrawer(typeof(ChartModule), true)] public class ChartModuleDrawer : PropertyDrawer diff --git a/Assets/XCharts/Demo/Editor/ChartModuleDrawer.cs.meta b/Assets/XChartsDemo/Editor/ChartModuleDrawer.cs.meta similarity index 100% rename from Assets/XCharts/Demo/Editor/ChartModuleDrawer.cs.meta rename to Assets/XChartsDemo/Editor/ChartModuleDrawer.cs.meta diff --git a/Assets/XCharts/Demo/Editor/DemoEditor.cs b/Assets/XChartsDemo/Editor/DemoEditor.cs similarity index 99% rename from Assets/XCharts/Demo/Editor/DemoEditor.cs rename to Assets/XChartsDemo/Editor/DemoEditor.cs index f2928fc5..5e8035b9 100644 --- a/Assets/XCharts/Demo/Editor/DemoEditor.cs +++ b/Assets/XChartsDemo/Editor/DemoEditor.cs @@ -8,7 +8,7 @@ using UnityEditor; -namespace XCharts +namespace XChartsDemo { /// /// Editor class used to edit UI BaseChart. diff --git a/Assets/XCharts/Demo/Editor/DemoEditor.cs.meta b/Assets/XChartsDemo/Editor/DemoEditor.cs.meta similarity index 100% rename from Assets/XCharts/Demo/Editor/DemoEditor.cs.meta rename to Assets/XChartsDemo/Editor/DemoEditor.cs.meta diff --git a/Assets/XChartsDemo/Runtime.meta b/Assets/XChartsDemo/Runtime.meta new file mode 100644 index 00000000..760ca6d7 --- /dev/null +++ b/Assets/XChartsDemo/Runtime.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7a51c10c0ca30408fba6f8e59145ce69 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/XCharts/Demo/Runtime/Demo.cs b/Assets/XChartsDemo/Runtime/Demo.cs similarity index 99% rename from Assets/XCharts/Demo/Runtime/Demo.cs rename to Assets/XChartsDemo/Runtime/Demo.cs index d2777332..2f5a0b87 100644 --- a/Assets/XCharts/Demo/Runtime/Demo.cs +++ b/Assets/XChartsDemo/Runtime/Demo.cs @@ -9,8 +9,9 @@ using System.Collections.Generic; using UnityEngine; using UnityEngine.EventSystems; using UnityEngine.UI; +using XCharts; -namespace XCharts +namespace XChartsDemo { [System.Serializable] public class ChartModule @@ -34,7 +35,7 @@ namespace XCharts [SerializeField] private Color m_ButtonNormalColor; [SerializeField] private Color m_ButtonSelectedColor; [SerializeField] private Color m_ButtonHighlightColor; - [SerializeField] private List m_ChartModule; + [SerializeField] private List m_ChartModule = new List(); private GameObject m_BtnClone; private Theme m_SelectedTheme; diff --git a/Assets/XCharts/Demo/Runtime/Demo.cs.meta b/Assets/XChartsDemo/Runtime/Demo.cs.meta similarity index 83% rename from Assets/XCharts/Demo/Runtime/Demo.cs.meta rename to Assets/XChartsDemo/Runtime/Demo.cs.meta index 93f30b0e..3b39d8af 100644 --- a/Assets/XCharts/Demo/Runtime/Demo.cs.meta +++ b/Assets/XChartsDemo/Runtime/Demo.cs.meta @@ -1,5 +1,5 @@ fileFormatVersion: 2 -guid: 85bc0178fe453471fb2706bf81a09235 +guid: f81ca580204024b8db33b4646c549c4f MonoImporter: externalObjects: {} serializedVersion: 2 diff --git a/Assets/XChartsDemo/demo_test.unity b/Assets/XChartsDemo/demo_test.unity new file mode 100644 index 00000000..176e4759 --- /dev/null +++ b/Assets/XChartsDemo/demo_test.unity @@ -0,0 +1,6350 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!29 &1 +OcclusionCullingSettings: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_OcclusionBakeSettings: + smallestOccluder: 5 + smallestHole: 0.25 + backfaceThreshold: 100 + m_SceneGUID: 00000000000000000000000000000000 + m_OcclusionCullingData: {fileID: 0} +--- !u!104 &2 +RenderSettings: + m_ObjectHideFlags: 0 + serializedVersion: 9 + m_Fog: 0 + m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_FogMode: 3 + m_FogDensity: 0.01 + m_LinearFogStart: 0 + m_LinearFogEnd: 300 + m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} + m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} + m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} + m_AmbientIntensity: 1 + m_AmbientMode: 0 + m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} + m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} + m_HaloStrength: 0.5 + m_FlareStrength: 1 + m_FlareFadeSpeed: 3 + m_HaloTexture: {fileID: 0} + m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} + m_DefaultReflectionMode: 0 + m_DefaultReflectionResolution: 128 + m_ReflectionBounces: 1 + m_ReflectionIntensity: 1 + m_CustomReflection: {fileID: 0} + m_Sun: {fileID: 0} + m_IndirectSpecularColor: {r: 0.44657898, g: 0.49641287, b: 0.5748173, a: 1} + m_UseRadianceAmbientProbe: 0 +--- !u!157 &3 +LightmapSettings: + m_ObjectHideFlags: 0 + serializedVersion: 11 + m_GIWorkflowMode: 0 + m_GISettings: + serializedVersion: 2 + m_BounceScale: 1 + m_IndirectOutputScale: 1 + m_AlbedoBoost: 1 + m_EnvironmentLightingMode: 0 + m_EnableBakedLightmaps: 1 + m_EnableRealtimeLightmaps: 1 + m_LightmapEditorSettings: + serializedVersion: 10 + m_Resolution: 2 + m_BakeResolution: 40 + m_AtlasSize: 1024 + m_AO: 0 + m_AOMaxDistance: 1 + m_CompAOExponent: 1 + m_CompAOExponentDirect: 0 + m_Padding: 2 + m_LightmapParameters: {fileID: 0} + m_LightmapsBakeMode: 1 + m_TextureCompression: 1 + m_FinalGather: 0 + m_FinalGatherFiltering: 1 + m_FinalGatherRayCount: 256 + m_ReflectionCompression: 2 + m_MixedBakeMode: 2 + m_BakeBackend: 1 + m_PVRSampling: 1 + m_PVRDirectSampleCount: 32 + m_PVRSampleCount: 500 + m_PVRBounces: 2 + m_PVRFilterTypeDirect: 0 + m_PVRFilterTypeIndirect: 0 + m_PVRFilterTypeAO: 0 + m_PVRFilteringMode: 1 + m_PVRCulling: 1 + m_PVRFilteringGaussRadiusDirect: 1 + m_PVRFilteringGaussRadiusIndirect: 5 + m_PVRFilteringGaussRadiusAO: 2 + m_PVRFilteringAtrousPositionSigmaDirect: 0.5 + m_PVRFilteringAtrousPositionSigmaIndirect: 2 + m_PVRFilteringAtrousPositionSigmaAO: 1 + m_ShowResolutionOverlay: 1 + m_LightingDataAsset: {fileID: 0} + m_UseShadowmask: 1 +--- !u!196 &4 +NavMeshSettings: + serializedVersion: 2 + m_ObjectHideFlags: 0 + m_BuildSettings: + serializedVersion: 2 + agentTypeID: 0 + agentRadius: 0.5 + agentHeight: 2 + agentSlope: 45 + agentClimb: 0.4 + ledgeDropHeight: 0 + maxJumpAcrossDistance: 0 + minRegionArea: 2 + manualCellSize: 0 + cellSize: 0.16666667 + manualTileSize: 0 + tileSize: 256 + accuratePlacement: 0 + debug: + m_Flags: 0 + m_NavMeshData: {fileID: 0} +--- !u!1 &187683276 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 187683277} + - component: {fileID: 187683279} + - component: {fileID: 187683278} + 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 &187683277 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 187683276} + m_LocalRotation: {x: 0, 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: 1302635557} + 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: 250, y: -33} + m_SizeDelta: {x: 100, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &187683278 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 187683276} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &187683279 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 187683276} + m_CullTransparentMesh: 0 +--- !u!1 &195955844 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 195955845} + - component: {fileID: 195955847} + - component: {fileID: 195955846} + m_Layer: 0 + m_Name: RadarChart + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &195955845 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 195955844} + m_LocalRotation: {x: -0, 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: 1661419644} + - {fileID: 729600689} + - {fileID: 1509481686} + - {fileID: 370318009} + - {fileID: 1553059878} + - {fileID: 399384903} + - {fileID: 1919035122} + - {fileID: 1113095190} + - {fileID: 582596681} + m_Father: {fileID: 1374268762} + 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: -641, y: -609} + m_SizeDelta: {x: 580, y: 300} + m_Pivot: {x: 0, y: 0} +--- !u!114 &195955846 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 195955844} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: d2231a0d3e3a5b043b074f6739be4a86, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 0 + m_ChartWidth: 580 + m_ChartHeight: 300 + 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: 4293848814 + 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: RadarChart + m_TextFontSize: 16 + m_SubText: + m_SubTextFontSize: 14 + 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_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: 60 + m_ItemHeight: 20 + m_ItemGap: 5 + m_ItemFontSize: 16 + m_Formatter: + m_Data: [] + m_Tooltip: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Formatter: + m_FixedWidth: 0 + m_FixedHeight: 0 + m_MinWidth: 0 + m_MinHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_ForceENotation: 0 + m_Series: + m_JsonData: + m_DataFromJson: 0 + m_Series: + - m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 3 + m_Name: serie1 + m_Stack: + m_AxisIndex: 0 + m_RadarIndex: 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_Type: 0 + m_SizeType: 0 + m_Size: 4 + m_SelectedSize: 6 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_SampleDist: 0 + m_SampleType: 1 + m_SampleAverage: 0 + m_LineType: 0 + 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_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_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: 1 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_Animation: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 1 + m_Easting: 0 + m_Duration: 1000 + m_Threshold: 2000 + m_Delay: 0 + m_ActualDuration: 0 + m_CurrDetailProgress: 0 + m_DestDetailProgress: 1 + 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_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + 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_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: 1 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_ShowDataDimension: 0 + m_ShowDataName: 0 + m_ShowDataIcon: 0 + m_Data: + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_ShowIcon: 0 + m_IconImage: {fileID: 0} + m_IconColor: {r: 1, g: 1, b: 1, a: 1} + m_IconWidth: 40 + m_IconHeight: 40 + m_IconOffset: {x: 0, y: 0, z: 0} + m_Data: + - 56 + - 56 + - 31 + - 77 + - 29 + m_CanShowLabel: 1 + 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_Large: 1 + m_Radars: + - m_JsonData: + m_DataFromJson: 0 + m_Shape: 1 + m_Radius: 0.34 + m_SplitNumber: 5 + m_Center: + - 0.5 + - 0.45 + 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.6 + m_Opacity: 1 + m_SplitArea: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + 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_Indicator: 1 + m_IndicatorGap: 8 + m_IndicatorList: + - m_Name: indicator1 + m_Max: 100 + m_Min: 0 + m_TextStyle: + m_JsonData: + m_DataFromJson: 0 + m_Rotate: -2.13 + m_Offset: {x: 0, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + - m_Name: indicator2 + m_Max: 100 + m_Min: 0 + m_TextStyle: + m_JsonData: + m_DataFromJson: 0 + m_Rotate: -75.45 + m_Offset: {x: -29.32, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + - m_Name: indicator3 + m_Max: 100 + m_Min: 0 + m_TextStyle: + m_JsonData: + m_DataFromJson: 0 + m_Rotate: 38.09 + m_Offset: {x: -28.11, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + - m_Name: indicator4 + m_Max: 100 + m_Min: 0 + m_TextStyle: + m_JsonData: + m_DataFromJson: 0 + m_Rotate: -34.25 + m_Offset: {x: 32.98, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 + - m_Name: indicator5 + m_Max: 100 + m_Min: 0 + m_TextStyle: + m_JsonData: + m_DataFromJson: 0 + m_Rotate: 69.7 + m_Offset: {x: 32.27, y: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_FontSize: 18 + m_FontStyle: 0 +--- !u!222 &195955847 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 195955844} + m_CullTransparentMesh: 0 +--- !u!1 &340891139 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 340891140} + - component: {fileID: 340891142} + - component: {fileID: 340891141} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &340891140 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 340891139} + m_LocalRotation: {x: 0, 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: 2144557631} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &340891141 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 340891139} + m_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: 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 &340891142 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 340891139} + m_CullTransparentMesh: 0 +--- !u!1 &341605624 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 341605625} + - component: {fileID: 341605627} + - component: {fileID: 341605626} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &341605625 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 341605624} + m_LocalRotation: {x: -0, 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: 801736437} + 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 &341605626 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 341605624} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &341605627 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 341605624} + m_CullTransparentMesh: 0 +--- !u!1 &367212736 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 367212737} + - component: {fileID: 367212739} + - component: {fileID: 367212738} + 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 &367212737 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 367212736} + m_LocalRotation: {x: 0, 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: 1966843200} + 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: 450, y: -287} + m_SizeDelta: {x: 100, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &367212738 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 367212736} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x4 +--- !u!222 &367212739 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 367212736} + m_CullTransparentMesh: 0 +--- !u!1 &370318008 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 370318009} + - component: {fileID: 370318011} + - component: {fileID: 370318010} + m_Layer: 0 + m_Name: indicator_0_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &370318009 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 370318008} + m_LocalRotation: {x: 0, y: 0, z: -0.018586686, w: 0.99982727} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 195955845} + 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: 0, y: 105} + m_SizeDelta: {x: 78, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &370318010 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 370318008} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: indicator1 +--- !u!222 &370318011 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 370318008} + m_CullTransparentMesh: 0 +--- !u!1 &397671790 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 397671791} + - component: {fileID: 397671793} + - component: {fileID: 397671792} + m_Layer: 0 + m_Name: title_sub + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &397671791 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 397671790} + m_LocalRotation: {x: 0, 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: 529851968} + 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: 580, y: 14} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &397671792 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 397671790} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 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: +--- !u!222 &397671793 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 397671790} + m_CullTransparentMesh: 0 +--- !u!1 &399384902 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 399384903} + - component: {fileID: 399384905} + - component: {fileID: 399384904} + m_Layer: 0 + m_Name: indicator_0_2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &399384903 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 399384902} + m_LocalRotation: {x: 0, y: 0, z: 0.3263107, w: 0.9452626} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 195955845} + 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: 75.54639, y: -103.99188} + m_SizeDelta: {x: 78, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &399384904 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 399384902} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: indicator3 +--- !u!222 &399384905 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 399384902} + m_CullTransparentMesh: 0 +--- !u!1 &421275482 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 421275483} + 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 &421275483 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 421275482} + m_LocalRotation: {x: -0, 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: 2017616964} + m_RootOrder: 7 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 580, y: 300} + m_Pivot: {x: 0, y: 0} +--- !u!1 &484411266 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 484411267} + 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 &484411267 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 484411266} + m_LocalRotation: {x: -0, 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: 2090876562} + - {fileID: 782708637} + - {fileID: 544337863} + - {fileID: 1936699278} + - {fileID: 942081449} + m_Father: {fileID: 2017616964} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 580, y: 300} + m_Pivot: {x: 0, y: 0} +--- !u!1 &520925601 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 520925602} + - component: {fileID: 520925604} + - component: {fileID: 520925603} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &520925602 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 520925601} + m_LocalRotation: {x: 0, 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: 1411059418} + 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 &520925603 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 520925601} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 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 &520925604 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 520925601} + m_CullTransparentMesh: 0 +--- !u!1 &521826804 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 521826806} + - component: {fileID: 521826805} + m_Layer: 0 + m_Name: Directional Light + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!108 &521826805 +Light: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 521826804} + m_Enabled: 1 + serializedVersion: 8 + m_Type: 1 + m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} + m_Intensity: 1 + m_Range: 10 + m_SpotAngle: 30 + m_CookieSize: 10 + m_Shadows: + m_Type: 2 + m_Resolution: -1 + m_CustomResolution: -1 + m_Strength: 1 + m_Bias: 0.05 + m_NormalBias: 0.4 + m_NearPlane: 0.2 + m_Cookie: {fileID: 0} + m_DrawHalo: 0 + m_Flare: {fileID: 0} + m_RenderMode: 0 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_Lightmapping: 4 + m_LightShadowCasterMode: 0 + m_AreaSize: {x: 1, y: 1} + m_BounceIntensity: 1 + m_ColorTemperature: 6570 + m_UseColorTemperature: 0 + m_ShadowRadius: 0 + m_ShadowAngle: 0 +--- !u!4 &521826806 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 521826804} + m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} + m_LocalPosition: {x: 0, y: 3, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} +--- !u!1 &529851967 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 529851968} + m_Layer: 0 + m_Name: title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &529851968 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 529851967} + m_LocalRotation: {x: -0, 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: 1726913371} + - {fileID: 397671791} + m_Father: {fileID: 2017616964} + 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: 580, y: 300} + m_Pivot: {x: 0.5, y: 1} +--- !u!1 &544337862 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 544337863} + - component: {fileID: 544337865} + - component: {fileID: 544337864} + 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 &544337863 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 544337862} + m_LocalRotation: {x: 0, 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: 484411267} + 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 &544337864 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 544337862} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 45 +--- !u!222 &544337865 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 544337862} + m_CullTransparentMesh: 0 +--- !u!1 &582596680 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 582596681} + m_Layer: 0 + m_Name: tooltip + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &582596681 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 582596680} + m_LocalRotation: {x: -0, 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: 1888272520} + m_Father: {fileID: 195955845} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 580, y: 300} + m_Pivot: {x: 0, y: 0} +--- !u!1 &692598252 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 692598253} + - component: {fileID: 692598255} + - component: {fileID: 692598254} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &692598253 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 692598252} + m_LocalRotation: {x: -0, 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: 987942591} + 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 &692598254 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 692598252} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &692598255 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 692598252} + m_CullTransparentMesh: 0 +--- !u!1 &729600688 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 729600689} + m_Layer: 0 + m_Name: legend + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &729600689 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 729600688} + m_LocalRotation: {x: -0, 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: 195955845} + 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: -30} + m_SizeDelta: {x: 580, y: 300} + m_Pivot: {x: 0.5, y: 1} +--- !u!1 &782708636 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 782708637} + - component: {fileID: 782708639} + - component: {fileID: 782708638} + 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 &782708637 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 782708636} + m_LocalRotation: {x: 0, 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: 484411267} + 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 &782708638 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 782708636} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 22.5 +--- !u!222 &782708639 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 782708636} + m_CullTransparentMesh: 0 +--- !u!1 &801736436 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 801736437} + 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 &801736437 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 801736436} + m_LocalRotation: {x: 0, 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: 1346390320} + - {fileID: 341605625} + m_Father: {fileID: 1653967798} + 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: -290, y: -150} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &827356653 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 827356654} + - component: {fileID: 827356656} + - component: {fileID: 827356655} + 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 &827356654 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 827356653} + m_LocalRotation: {x: 0, 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: 1966843200} + 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, y: -287} + m_SizeDelta: {x: 100, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &827356655 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 827356653} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x1 +--- !u!222 &827356656 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 827356653} + m_CullTransparentMesh: 0 +--- !u!1 &849205412 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 849205413} + - component: {fileID: 849205415} + - component: {fileID: 849205414} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &849205413 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 849205412} + m_LocalRotation: {x: 0, 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: 2009861050} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &849205414 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 849205412} + m_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: 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 &849205415 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 849205412} + m_CullTransparentMesh: 0 +--- !u!1 &857875237 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 857875238} + - component: {fileID: 857875240} + - component: {fileID: 857875239} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &857875238 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 857875237} + m_LocalRotation: {x: 0, 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: 893939017} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &857875239 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 857875237} + m_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: 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 &857875240 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 857875237} + m_CullTransparentMesh: 0 +--- !u!1 &858583463 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 858583464} + - component: {fileID: 858583466} + - component: {fileID: 858583465} + m_Layer: 0 + m_Name: datazoomstart + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &858583464 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 858583463} + m_LocalRotation: {x: 0, 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: 1862041471} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &858583465 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 858583463} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &858583466 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 858583463} + m_CullTransparentMesh: 0 +--- !u!1 &878642596 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 878642598} + - component: {fileID: 878642597} + m_Layer: 0 + m_Name: _xcharts_ + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &878642597 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 878642596} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4cbfef5a9a03149f6a1ddf4ebe502bf6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_NowVersion: 1.0.3 (20191103) + m_NewVersion: +--- !u!4 &878642598 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 878642596} + m_LocalRotation: {x: 0, 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: 0} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &889580647 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 889580648} + - component: {fileID: 889580650} + - component: {fileID: 889580649} + 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 &889580648 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 889580647} + m_LocalRotation: {x: 0, 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: 1302635557} + 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: 550, y: -33} + m_SizeDelta: {x: 100, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &889580649 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 889580647} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &889580650 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 889580647} + m_CullTransparentMesh: 0 +--- !u!1 &893939016 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 893939017} + 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 &893939017 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 893939016} + m_LocalRotation: {x: 0, 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: 857875238} + - {fileID: 1733908787} + m_Father: {fileID: 1653967798} + 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: -290, y: -150} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &909368115 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 909368118} + - component: {fileID: 909368117} + - component: {fileID: 909368116} + m_Layer: 0 + m_Name: EventSystem + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &909368116 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 909368115} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1077351063, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalAxis: Horizontal + m_VerticalAxis: Vertical + m_SubmitButton: Submit + m_CancelButton: Cancel + m_InputActionsPerSecond: 10 + m_RepeatDelay: 0.5 + m_ForceModuleActive: 0 +--- !u!114 &909368117 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 909368115} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: -619905303, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_FirstSelected: {fileID: 0} + m_sendNavigationEvents: 1 + m_DragThreshold: 10 +--- !u!4 &909368118 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 909368115} + m_LocalRotation: {x: 0, 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: 0} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &942081448 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 942081449} + - component: {fileID: 942081451} + - component: {fileID: 942081450} + 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 &942081449 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 942081448} + m_LocalRotation: {x: 0, 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: 484411267} + 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 &942081450 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 942081448} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 90 +--- !u!222 &942081451 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 942081448} + m_CullTransparentMesh: 0 +--- !u!1 &987942590 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 987942591} + 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 &987942591 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 987942590} + m_LocalRotation: {x: 0, 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: 1761959002} + - {fileID: 692598253} + m_Father: {fileID: 1653967798} + 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: -290, y: -150} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1079627670 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1079627671} + - component: {fileID: 1079627673} + - component: {fileID: 1079627672} + 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 &1079627671 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1079627670} + m_LocalRotation: {x: 0, 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: 1966843200} + 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: 550, y: -287} + m_SizeDelta: {x: 100, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1079627672 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1079627670} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x5 +--- !u!222 &1079627673 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1079627670} + m_CullTransparentMesh: 0 +--- !u!1 &1108805289 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1108805290} + - component: {fileID: 1108805292} + - component: {fileID: 1108805291} + 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 &1108805290 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1108805289} + m_LocalRotation: {x: 0, 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: 1302635557} + 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: 450, y: -33} + m_SizeDelta: {x: 100, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1108805291 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1108805289} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1108805292 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1108805289} + m_CullTransparentMesh: 0 +--- !u!1 &1113095189 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1113095190} + - component: {fileID: 1113095192} + - component: {fileID: 1113095191} + m_Layer: 0 + m_Name: indicator_0_4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1113095190 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1113095189} + m_LocalRotation: {x: 0, y: 0, z: 0.5714299, w: 0.8206509} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 195955845} + 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: -111.34621, y: 18.991882} + m_SizeDelta: {x: 78, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1113095191 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1113095189} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: indicator5 +--- !u!222 &1113095192 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1113095189} + m_CullTransparentMesh: 0 +--- !u!1 &1117089279 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1117089280} + - component: {fileID: 1117089282} + - component: {fileID: 1117089281} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1117089280 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1117089279} + m_LocalRotation: {x: -0, 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: 2009861050} + 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 &1117089281 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1117089279} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1117089282 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1117089279} + m_CullTransparentMesh: 0 +--- !u!1 &1259004118 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1259004119} + - component: {fileID: 1259004121} + - component: {fileID: 1259004120} + 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 &1259004119 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1259004118} + m_LocalRotation: {x: -0, 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: 1476192633} + m_Father: {fileID: 1299429999} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1259004120 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1259004118} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1259004121 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1259004118} + m_CullTransparentMesh: 0 +--- !u!1 &1299429998 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1299429999} + m_Layer: 0 + m_Name: tooltip + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1299429999 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1299429998} + m_LocalRotation: {x: -0, 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: 2080305486} + - {fileID: 1765852954} + - {fileID: 1259004119} + - {fileID: 1411059418} + m_Father: {fileID: 2017616964} + m_RootOrder: 8 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 580, y: 300} + m_Pivot: {x: 0, y: 0} +--- !u!1 &1302635556 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1302635557} + 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 &1302635557 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1302635556} + m_LocalRotation: {x: -0, 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: 1951652164} + - {fileID: 187683277} + - {fileID: 1893009640} + - {fileID: 1108805290} + - {fileID: 889580648} + m_Father: {fileID: 2017616964} + m_RootOrder: 5 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 580, y: 300} + m_Pivot: {x: 0, y: 0} +--- !u!1 &1346390319 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1346390320} + - component: {fileID: 1346390322} + - component: {fileID: 1346390321} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1346390320 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1346390319} + m_LocalRotation: {x: 0, 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: 801736437} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1346390321 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1346390319} + m_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: 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 &1346390322 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1346390319} + m_CullTransparentMesh: 0 +--- !u!1 &1374268758 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1374268762} + - component: {fileID: 1374268761} + - component: {fileID: 1374268760} + - component: {fileID: 1374268759} + m_Layer: 0 + m_Name: Canvas + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1374268759 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1374268758} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreReversedGraphics: 1 + m_BlockingObjects: 0 + m_BlockingMask: + serializedVersion: 2 + m_Bits: 4294967295 +--- !u!114 &1374268760 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1374268758} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_UiScaleMode: 0 + m_ReferencePixelsPerUnit: 100 + m_ScaleFactor: 1 + m_ReferenceResolution: {x: 800, y: 600} + m_ScreenMatchMode: 0 + m_MatchWidthOrHeight: 0 + m_PhysicalUnit: 3 + m_FallbackScreenDPI: 96 + m_DefaultSpriteDPI: 96 + m_DynamicPixelsPerUnit: 1 +--- !u!223 &1374268761 +Canvas: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1374268758} + m_Enabled: 1 + serializedVersion: 3 + m_RenderMode: 0 + m_Camera: {fileID: 0} + m_PlaneDistance: 100 + m_PixelPerfect: 0 + m_ReceivesEvents: 1 + m_OverrideSorting: 0 + m_OverridePixelPerfect: 0 + m_SortingBucketNormalizedSize: 0 + m_AdditionalShaderChannelsFlag: 0 + m_SortingLayerID: 0 + m_SortingOrder: 0 + m_TargetDisplay: 0 +--- !u!224 &1374268762 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1374268758} + m_LocalRotation: {x: 0, 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: 195955845} + - {fileID: 2017616964} + m_Father: {fileID: 0} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0, y: 0} +--- !u!1 &1376155060 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1376155061} + - component: {fileID: 1376155063} + - component: {fileID: 1376155062} + m_Layer: 0 + m_Name: title_sub + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1376155061 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1376155060} + m_LocalRotation: {x: 0, 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: 1661419644} + 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: 580, y: 14} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1376155062 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1376155060} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 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: +--- !u!222 &1376155063 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1376155060} + m_CullTransparentMesh: 0 +--- !u!1 &1409063083 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1409063084} + - component: {fileID: 1409063086} + - component: {fileID: 1409063085} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1409063084 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1409063083} + m_LocalRotation: {x: -0, 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: 2144557631} + 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 &1409063085 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1409063083} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1409063086 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1409063083} + m_CullTransparentMesh: 0 +--- !u!1 &1411059417 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1411059418} + - component: {fileID: 1411059420} + - component: {fileID: 1411059419} + 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 &1411059418 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1411059417} + m_LocalRotation: {x: -0, 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: 520925602} + m_Father: {fileID: 1299429999} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1411059419 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1411059417} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1411059420 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1411059417} + m_CullTransparentMesh: 0 +--- !u!1 &1476192632 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1476192633} + - component: {fileID: 1476192635} + - component: {fileID: 1476192634} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1476192633 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1476192632} + m_LocalRotation: {x: 0, 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: 1259004119} + 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 &1476192634 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1476192632} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 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 &1476192635 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1476192632} + m_CullTransparentMesh: 0 +--- !u!1 &1509481685 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1509481686} + m_Layer: 0 + m_Name: label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1509481686 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1509481685} + m_LocalRotation: {x: -0, 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: 2009861050} + m_Father: {fileID: 195955845} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 580, y: 300} + m_Pivot: {x: 0, y: 0} +--- !u!1 &1553059877 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1553059878} + - component: {fileID: 1553059880} + - component: {fileID: 1553059879} + m_Layer: 0 + m_Name: indicator_0_1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1553059878 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1553059877} + m_LocalRotation: {x: 0, y: 0, z: -0.6118722, w: 0.7909566} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 195955845} + 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: 114.2962, y: 18.991867} + m_SizeDelta: {x: 78, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1553059879 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1553059877} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: indicator2 +--- !u!222 &1553059880 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1553059877} + m_CullTransparentMesh: 0 +--- !u!1 &1631148257 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1631148258} + - component: {fileID: 1631148260} + - component: {fileID: 1631148259} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1631148258 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1631148257} + m_LocalRotation: {x: 0, 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: 1779264541} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1631148259 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1631148257} + m_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: 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 &1631148260 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1631148257} + m_CullTransparentMesh: 0 +--- !u!1 &1653967797 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1653967798} + m_Layer: 0 + m_Name: label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1653967798 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1653967797} + m_LocalRotation: {x: -0, 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: 987942591} + - {fileID: 2144557631} + - {fileID: 893939017} + - {fileID: 1779264541} + - {fileID: 801736437} + m_Father: {fileID: 2017616964} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 580, y: 300} + m_Pivot: {x: 0, y: 0} +--- !u!1 &1661419643 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1661419644} + m_Layer: 0 + m_Name: title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1661419644 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1661419643} + m_LocalRotation: {x: -0, 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: 2005580986} + - {fileID: 1376155061} + m_Father: {fileID: 195955845} + 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: 580, y: 300} + m_Pivot: {x: 0.5, y: 1} +--- !u!1 &1695798715 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1695798716} + - component: {fileID: 1695798718} + - component: {fileID: 1695798717} + 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 &1695798716 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1695798715} + m_LocalRotation: {x: 0, 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: 1966843200} + 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: 250, y: -287} + m_SizeDelta: {x: 100, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1695798717 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1695798715} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x2 +--- !u!222 &1695798718 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1695798715} + m_CullTransparentMesh: 0 +--- !u!1 &1703825194 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1703825195} + - component: {fileID: 1703825197} + - component: {fileID: 1703825196} + 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 &1703825195 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1703825194} + m_LocalRotation: {x: 0, 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: 1966843200} + 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: 350, y: -287} + m_SizeDelta: {x: 100, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1703825196 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1703825194} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: x3 +--- !u!222 &1703825197 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1703825194} + m_CullTransparentMesh: 0 +--- !u!1 &1705820915 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1705820916} + - component: {fileID: 1705820918} + - component: {fileID: 1705820917} + m_Layer: 0 + m_Name: datazoomend + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!224 &1705820916 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1705820915} + m_LocalRotation: {x: 0, 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: 1862041471} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 200, y: 20} + m_Pivot: {x: 0, y: 0.5} +--- !u!114 &1705820917 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1705820915} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 3 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: Text +--- !u!222 &1705820918 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1705820915} + m_CullTransparentMesh: 0 +--- !u!1 &1709268210 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1709268211} + - component: {fileID: 1709268213} + - component: {fileID: 1709268212} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1709268211 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1709268210} + m_LocalRotation: {x: 0, 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: 2080305486} + 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 &1709268212 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1709268210} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 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 &1709268213 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1709268210} + m_CullTransparentMesh: 0 +--- !u!1 &1726913370 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1726913371} + - component: {fileID: 1726913373} + - component: {fileID: 1726913372} + m_Layer: 0 + m_Name: title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1726913371 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1726913370} + m_LocalRotation: {x: 0, 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: 529851968} + 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: 580, y: 16} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1726913372 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1726913370} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 1 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: LineChart +--- !u!222 &1726913373 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1726913370} + m_CullTransparentMesh: 0 +--- !u!1 &1733908786 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1733908787} + - component: {fileID: 1733908789} + - component: {fileID: 1733908788} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1733908787 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1733908786} + m_LocalRotation: {x: -0, 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: 893939017} + 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 &1733908788 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1733908786} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1733908789 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1733908786} + m_CullTransparentMesh: 0 +--- !u!1 &1757350245 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1757350246} + - component: {fileID: 1757350248} + - component: {fileID: 1757350247} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1757350246 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1757350245} + m_LocalRotation: {x: 0, 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: 1765852954} + 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 &1757350247 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1757350245} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 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 &1757350248 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1757350245} + m_CullTransparentMesh: 0 +--- !u!1 &1761959001 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1761959002} + - component: {fileID: 1761959004} + - component: {fileID: 1761959003} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1761959002 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1761959001} + m_LocalRotation: {x: 0, 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: 987942591} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1761959003 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1761959001} + m_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: 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 &1761959004 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1761959001} + m_CullTransparentMesh: 0 +--- !u!1 &1765852953 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1765852954} + - component: {fileID: 1765852956} + - component: {fileID: 1765852955} + 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 &1765852954 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1765852953} + m_LocalRotation: {x: -0, 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: 1757350246} + m_Father: {fileID: 1299429999} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 100, y: 50} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &1765852955 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1765852953} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1765852956 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1765852953} + m_CullTransparentMesh: 0 +--- !u!1 &1779264540 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1779264541} + 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 &1779264541 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1779264540} + m_LocalRotation: {x: 0, 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: 1631148258} + - {fileID: 1979733022} + m_Father: {fileID: 1653967798} + 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: -290, y: -150} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1824536970 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1824536973} + - component: {fileID: 1824536972} + - component: {fileID: 1824536971} + m_Layer: 0 + m_Name: Main Camera + m_TagString: MainCamera + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!81 &1824536971 +AudioListener: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1824536970} + m_Enabled: 1 +--- !u!20 &1824536972 +Camera: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1824536970} + m_Enabled: 1 + serializedVersion: 2 + m_ClearFlags: 1 + m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} + m_projectionMatrixMode: 1 + m_SensorSize: {x: 36, y: 24} + m_LensShift: {x: 0, y: 0} + m_GateFitMode: 2 + m_FocalLength: 50 + m_NormalizedViewPortRect: + serializedVersion: 2 + x: 0 + y: 0 + width: 1 + height: 1 + near clip plane: 0.3 + far clip plane: 1000 + field of view: 60 + orthographic: 0 + orthographic size: 5 + m_Depth: -1 + m_CullingMask: + serializedVersion: 2 + m_Bits: 4294967295 + m_RenderingPath: -1 + m_TargetTexture: {fileID: 0} + m_TargetDisplay: 0 + m_TargetEye: 3 + m_HDR: 1 + m_AllowMSAA: 1 + m_AllowDynamicResolution: 0 + m_ForceIntoRT: 0 + m_OcclusionCulling: 1 + m_StereoConvergence: 10 + m_StereoSeparation: 0.022 +--- !u!4 &1824536973 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1824536970} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 1, z: -10} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} +--- !u!1 &1829453290 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1829453291} + - component: {fileID: 1829453293} + - component: {fileID: 1829453292} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1829453291 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1829453290} + m_LocalRotation: {x: 0, 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: 1888272520} + 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 &1829453292 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1829453290} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 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 &1829453293 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1829453290} + m_CullTransparentMesh: 0 +--- !u!1 &1862041470 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1862041471} + m_Layer: 0 + m_Name: datazoom + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1862041471 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1862041470} + m_LocalRotation: {x: -0, 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: 858583464} + - {fileID: 1705820916} + m_Father: {fileID: 2017616964} + m_RootOrder: 3 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 580, y: 300} + m_Pivot: {x: 0, y: 0} +--- !u!1 &1888272519 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1888272520} + - component: {fileID: 1888272522} + - component: {fileID: 1888272521} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1888272520 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1888272519} + m_LocalRotation: {x: -0, 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: 1829453291} + m_Father: {fileID: 582596681} + 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: -300} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0, y: 1} +--- !u!114 &1888272521 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1888272519} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1888272522 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1888272519} + m_CullTransparentMesh: 0 +--- !u!1 &1893009639 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1893009640} + - component: {fileID: 1893009642} + - component: {fileID: 1893009641} + 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 &1893009640 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1893009639} + m_LocalRotation: {x: 0, 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: 1302635557} + 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: 350, y: -33} + m_SizeDelta: {x: 100, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1893009641 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1893009639} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1893009642 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1893009639} + m_CullTransparentMesh: 0 +--- !u!1 &1919035121 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1919035122} + - component: {fileID: 1919035124} + - component: {fileID: 1919035123} + m_Layer: 0 + m_Name: indicator_0_3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1919035122 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1919035121} + m_LocalRotation: {x: 0, y: 0, z: -0.29445735, w: 0.95566463} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_Children: [] + m_Father: {fileID: 195955845} + m_RootOrder: 6 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: -0.44} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: -70.67639, y: -103.99187} + m_SizeDelta: {x: 78, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1919035123 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1919035121} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: indicator4 +--- !u!222 &1919035124 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1919035121} + m_CullTransparentMesh: 0 +--- !u!1 &1936699277 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1936699278} + - component: {fileID: 1936699280} + - component: {fileID: 1936699279} + 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 &1936699278 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1936699277} + m_LocalRotation: {x: 0, 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: 484411267} + 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 &1936699279 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1936699277} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 67.5 +--- !u!222 &1936699280 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1936699277} + m_CullTransparentMesh: 0 +--- !u!1 &1951652163 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1951652164} + - component: {fileID: 1951652166} + - component: {fileID: 1951652165} + 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 &1951652164 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1951652163} + m_LocalRotation: {x: 0, 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: 1302635557} + 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, y: -33} + m_SizeDelta: {x: 100, y: 20} + m_Pivot: {x: 1, y: 0.5} +--- !u!114 &1951652165 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1951652163} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 4 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: +--- !u!222 &1951652166 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1951652163} + m_CullTransparentMesh: 0 +--- !u!1 &1966843199 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1966843200} + 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 &1966843200 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1966843199} + m_LocalRotation: {x: -0, 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: 827356654} + - {fileID: 1695798716} + - {fileID: 1703825195} + - {fileID: 367212737} + - {fileID: 1079627671} + m_Father: {fileID: 2017616964} + m_RootOrder: 4 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 0, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 580, y: 300} + m_Pivot: {x: 0, y: 0} +--- !u!1 &1979733021 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1979733022} + - component: {fileID: 1979733024} + - component: {fileID: 1979733023} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1979733022 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1979733021} + m_LocalRotation: {x: -0, 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: 1779264541} + 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 &1979733023 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1979733021} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1979733024 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1979733021} + m_CullTransparentMesh: 0 +--- !u!1 &2005580985 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2005580986} + - component: {fileID: 2005580988} + - component: {fileID: 2005580987} + m_Layer: 0 + m_Name: title + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2005580986 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2005580985} + m_LocalRotation: {x: 0, 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: 1661419644} + 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: 580, y: 16} + m_Pivot: {x: 0.5, y: 1} +--- !u!114 &2005580987 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2005580985} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 16 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 1 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: RadarChart +--- !u!222 &2005580988 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2005580985} + m_CullTransparentMesh: 0 +--- !u!1 &2009652325 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2009652326} + m_Layer: 0 + m_Name: legend + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2009652326 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2009652325} + m_LocalRotation: {x: -0, 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: 2017616964} + 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: -30} + m_SizeDelta: {x: 580, y: 300} + m_Pivot: {x: 0.5, y: 1} +--- !u!1 &2009861049 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2009861050} + 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 &2009861050 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2009861049} + m_LocalRotation: {x: 0, 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: 849205413} + - {fileID: 1117089280} + m_Father: {fileID: 1509481686} + 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: -290, y: -150} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &2017616963 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2017616964} + - component: {fileID: 2017616966} + - component: {fileID: 2017616965} + m_Layer: 0 + m_Name: LineChart + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2017616964 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2017616963} + m_LocalRotation: {x: -0, 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: 529851968} + - {fileID: 2009652326} + - {fileID: 1653967798} + - {fileID: 1862041471} + - {fileID: 1966843200} + - {fileID: 1302635557} + - {fileID: 484411267} + - {fileID: 421275483} + - {fileID: 1299429999} + m_Father: {fileID: 1374268762} + 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: 961, y: 849} + m_SizeDelta: {x: 580, y: 300} + m_Pivot: {x: 0, y: 0} +--- !u!114 &2017616965 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2017616963} + 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: 0 + m_ChartWidth: 580 + m_ChartHeight: 300 + 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: 4293848814 + 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: LineChart + m_TextFontSize: 16 + m_SubText: + m_SubTextFontSize: 14 + 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_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: 60 + m_ItemHeight: 20 + m_ItemGap: 5 + m_ItemFontSize: 16 + m_Formatter: + m_Data: [] + m_Tooltip: + m_JsonData: + m_DataFromJson: 0 + m_Show: 1 + m_Type: 0 + m_Formatter: + m_FixedWidth: 0 + m_FixedHeight: 0 + m_MinWidth: 0 + m_MinHeight: 0 + m_FontSize: 18 + m_FontStyle: 0 + m_ForceENotation: 0 + 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_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_Type: 0 + m_SizeType: 0 + m_Size: 2.5 + m_SelectedSize: 5 + m_DataIndex: 1 + m_DataScale: 1 + m_SelectedDataScale: 1.5 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_StartIndex: 0 + m_Interval: 0 + m_ForceShowLast: 0 + m_SampleDist: 0 + m_SampleType: 1 + m_SampleAverage: 0 + m_LineType: 0 + 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_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_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: 1 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_Animation: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 1 + m_Easting: 0 + m_Duration: 1000 + m_Threshold: 2000 + m_Delay: 0 + m_ActualDuration: 0 + m_CurrDetailProgress: 100 + m_DestDetailProgress: 500 + 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_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + 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_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: 1 + m_BorderWidth: 0.5 + m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} + m_ForceENotation: 0 + m_ItemStyle: + m_JsonData: + m_DataFromJson: 0 + m_Show: 0 + m_Color: {r: 0, g: 0, b: 0, a: 0} + m_BorderType: 0 + m_BorderWidth: 0 + m_BorderColor: {r: 0, g: 0, b: 0, a: 0} + m_Opacity: 1 + m_ShowDataDimension: 1 + m_ShowDataName: 0 + m_ShowDataIcon: 0 + m_Data: + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_ShowIcon: 0 + m_IconImage: {fileID: 0} + m_IconColor: {r: 1, g: 1, b: 1, a: 1} + m_IconWidth: 40 + m_IconHeight: 40 + m_IconOffset: {x: 0, y: 0, z: 0} + m_Data: + - 0 + - 52 + m_CanShowLabel: 1 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_ShowIcon: 0 + m_IconImage: {fileID: 0} + m_IconColor: {r: 1, g: 1, b: 1, a: 1} + m_IconWidth: 40 + m_IconHeight: 40 + m_IconOffset: {x: 0, y: 0, z: 0} + m_Data: + - 1 + - 51 + m_CanShowLabel: 1 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_ShowIcon: 0 + m_IconImage: {fileID: 0} + m_IconColor: {r: 1, g: 1, b: 1, a: 1} + m_IconWidth: 40 + m_IconHeight: 40 + m_IconOffset: {x: 0, y: 0, z: 0} + m_Data: + - 2 + - 36 + m_CanShowLabel: 1 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_ShowIcon: 0 + m_IconImage: {fileID: 0} + m_IconColor: {r: 1, g: 1, b: 1, a: 1} + m_IconWidth: 40 + m_IconHeight: 40 + m_IconOffset: {x: 0, y: 0, z: 0} + m_Data: + - 3 + - 28 + m_CanShowLabel: 1 + - m_JsonData: + m_DataFromJson: 0 + m_Name: + m_Selected: 0 + m_Radius: 0 + m_ShowIcon: 0 + m_IconImage: {fileID: 0} + m_IconColor: {r: 1, g: 1, b: 1, a: 1} + m_IconWidth: 40 + m_IconHeight: 40 + m_IconOffset: {x: 0, y: 0, z: 0} + m_Data: + - 4 + - 82 + m_CanShowLabel: 1 + 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_Large: 1 + 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_ShowSplitLine: 0 + m_SplitLineType: 2 + m_BoundaryGap: 1 + m_MaxCache: 0 + 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: 0 + 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_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_ForceENotation: 0 + 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_ShowSplitLine: 0 + m_SplitLineType: 2 + m_BoundaryGap: 1 + m_MaxCache: 0 + 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: 0 + 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_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_ForceENotation: 0 + 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_ShowSplitLine: 1 + m_SplitLineType: 2 + m_BoundaryGap: 0 + m_MaxCache: 0 + 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: 0 + 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_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_ForceENotation: 0 + 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_ShowSplitLine: 1 + m_SplitLineType: 2 + m_BoundaryGap: 0 + m_MaxCache: 0 + 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: 0 + 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_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_ForceENotation: 0 + 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_ScrollSensitivity: 10 + m_FontSize: 18 + m_FontStyle: 0 + m_VisualMap: + m_JsonData: + m_DataFromJson: 0 + m_Enable: 0 + m_Show: 1 + m_Type: 0 + m_SelectedMode: 0 + m_Min: 0 + m_Max: 100 + 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: 0 + m_HoverLink: 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: [] + m_OutOfRange: [] +--- !u!222 &2017616966 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2017616963} + m_CullTransparentMesh: 0 +--- !u!1 &2080305485 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2080305486} + - component: {fileID: 2080305488} + - component: {fileID: 2080305487} + m_Layer: 0 + m_Name: content + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2080305486 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2080305485} + m_LocalRotation: {x: -0, 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: 1709268211} + m_Father: {fileID: 1299429999} + 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: -300} + m_SizeDelta: {x: 100, y: 100} + m_Pivot: {x: 0, y: 1} +--- !u!114 &2080305487 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2080305485} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &2080305488 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2080305485} + m_CullTransparentMesh: 0 +--- !u!1 &2090876561 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2090876562} + - component: {fileID: 2090876564} + - component: {fileID: 2090876563} + 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 &2090876562 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2090876561} + m_LocalRotation: {x: 0, 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: 484411267} + 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 &2090876563 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2090876561} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_FontData: + m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} + m_FontSize: 18 + m_FontStyle: 0 + m_BestFit: 0 + m_MinSize: 10 + m_MaxSize: 40 + m_Alignment: 5 + m_AlignByGeometry: 0 + m_RichText: 1 + m_HorizontalOverflow: 1 + m_VerticalOverflow: 1 + m_LineSpacing: 1 + m_Text: 0 +--- !u!222 &2090876564 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2090876561} + m_CullTransparentMesh: 0 +--- !u!1 &2144557630 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2144557631} + 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 &2144557631 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2144557630} + m_LocalRotation: {x: 0, 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: 340891140} + - {fileID: 1409063084} + m_Father: {fileID: 1653967798} + 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: -290, y: -150} + m_SizeDelta: {x: 50, y: 20} + m_Pivot: {x: 0.5, y: 0.5} diff --git a/Assets/XCharts/Demo/Editor/XCharts.Editor.Demo.asmdef.meta b/Assets/XChartsDemo/demo_test.unity.meta similarity index 59% rename from Assets/XCharts/Demo/Editor/XCharts.Editor.Demo.asmdef.meta rename to Assets/XChartsDemo/demo_test.unity.meta index 67d354f5..e04afe36 100644 --- a/Assets/XCharts/Demo/Editor/XCharts.Editor.Demo.asmdef.meta +++ b/Assets/XChartsDemo/demo_test.unity.meta @@ -1,6 +1,6 @@ fileFormatVersion: 2 -guid: 2d3606aaaf73f468984f4615b496f408 -AssemblyDefinitionImporter: +guid: fdfb9e4f5faa4431d936da787c337fc9 +DefaultImporter: externalObjects: {} userData: assetBundleName: diff --git a/Assets/XCharts/Demo/demo_xchart.unity b/Assets/XChartsDemo/demo_xchart.unity similarity index 100% rename from Assets/XCharts/Demo/demo_xchart.unity rename to Assets/XChartsDemo/demo_xchart.unity diff --git a/Assets/XCharts/Demo/demo_xchart.unity.meta b/Assets/XChartsDemo/demo_xchart.unity.meta similarity index 100% rename from Assets/XCharts/Demo/demo_xchart.unity.meta rename to Assets/XChartsDemo/demo_xchart.unity.meta diff --git a/README.md b/README.md index 7adee497..b93b89fd 100644 --- a/README.md +++ b/README.md @@ -132,25 +132,21 @@ XCharts的图表由组件和数据组成。不同的组件和数据可以组合 ``` js ├── Demo // Demo -│ ├── Editor -│ │ ├── ChartModuleDrawer.cs -│ │ └── DemoEditor.cs -│ ├── Runtime -│ │ ├── Demo_Dynamic.cs -│ │ ├── Demo_LargeData.cs -│ │ ├── Demo_PieChart.cs -│ │ ├── Demo_Test.cs -│ │ ├── Demo.cs -│ │ ├── Demo00_CheatSheet.cs -│ │ ├── Demo10_LineChart.cs -│ │ ├── Demo11_AddSinCurve.cs -│ │ ├── Demo12_CustomDrawing.cs -│ │ ├── Demo13_LineSimple.cs -│ │ ├── Demo20_BarChart.cs -│ │ ├── Demo30_PieChart.cs -│ │ ├── Demo50_Scatter.cs -│ │ ├── Demo60_Heatmap.cs -│ └── demo-xchart.unity +│ └── Runtime +│ ├── Demo_Dynamic.cs +│ ├── Demo_LargeData.cs +│ ├── Demo_PieChart.cs +│ ├── Demo_Test.cs +│ ├── Demo.cs +│ ├── Demo00_CheatSheet.cs +│ ├── Demo10_LineChart.cs +│ ├── Demo11_AddSinCurve.cs +│ ├── Demo12_CustomDrawing.cs +│ ├── Demo13_LineSimple.cs +│ ├── Demo20_BarChart.cs +│ ├── Demo30_PieChart.cs +│ ├── Demo50_Scatter.cs +│ └── Demo60_Heatmap.cs ├── Editor // Editor相关代码 │ ├── PropertyDrawers // 组件Drawer │ │ ├── AnimationDrawer.cs From 70bcebe9ea3573af09861feb6f1554ee928e0db6 Mon Sep 17 00:00:00 2001 From: monitor1394 Date: Sat, 9 Nov 2019 07:51:37 +0800 Subject: [PATCH 18/27] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=96=87=E6=A1=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- LICENSE | 21 +++++++++++++++++++++ README.md | 6 +++--- 2 files changed, 24 insertions(+), 3 deletions(-) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..f3479469 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2018 monitor1394 + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index b93b89fd..359732a2 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # XCharts ![license](https://img.shields.io/github/license/monitor1394/unity-ugui-XCharts) -![issues](https://img.shields.io/github/issues/monitor1394/unity-ugui-XCharts) -![issues](https://img.shields.io/github/stars/monitor1394/unity-ugui-XCharts) -![issues](https://img.shields.io/github/forks/monitor1394/unity-ugui-XCharts) +[![npm Package](https://img.shields.io/npm/v/unity-ugui-xcharts.svg)](https://www.npmjs.org/package/unity-ugui-xcharts) +[![downloads per month](http://img.shields.io/npm/dm/unity-ugui-xcharts.svg)](https://www.npmjs.org/package/unity-ugui-xcharts) +![qq](https://img.shields.io/badge/QQ群-202030963-green) A powerful, easy-to-use, configurable charting and data visualization library for Unity. From 6cfcf84b5d6786062ae8bd7d654babb54accd804 Mon Sep 17 00:00:00 2001 From: monitor1394 Date: Sat, 9 Nov 2019 16:34:16 +0800 Subject: [PATCH 19/27] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=A5=BC=E5=9B=BE?= =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=95=B0=E6=8D=AE=E6=97=B6Label=E5=BC=82?= =?UTF-8?q?=E5=B8=B8=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/XCharts/Runtime/Component/Main/Serie.cs | 1 + Assets/XCharts/Runtime/Internal/BaseChart.cs | 9 ++++++++- Assets/XCharts/Runtime/PieChart.cs | 1 + 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/Assets/XCharts/Runtime/Component/Main/Serie.cs b/Assets/XCharts/Runtime/Component/Main/Serie.cs index fa9f9cd5..1abb89b7 100644 --- a/Assets/XCharts/Runtime/Component/Main/Serie.cs +++ b/Assets/XCharts/Runtime/Component/Main/Serie.cs @@ -461,6 +461,7 @@ namespace XCharts /// 饼图的数据项之和 /// public float runtimePieDataTotal { get; internal set; } + internal int runtimeLastCheckDataCount { get; set; } internal List GetUpSmoothList(int dataIndex, int size = 100) { diff --git a/Assets/XCharts/Runtime/Internal/BaseChart.cs b/Assets/XCharts/Runtime/Internal/BaseChart.cs index d60234e4..0d4db010 100644 --- a/Assets/XCharts/Runtime/Internal/BaseChart.cs +++ b/Assets/XCharts/Runtime/Internal/BaseChart.cs @@ -289,7 +289,6 @@ namespace XCharts { var labelObject = ChartHelper.AddObject(s_SerieLabelObjectName, transform, chartAnchorMin, chartAnchorMax, chartPivot, new Vector2(chartWidth, chartHeight)); - //ChartHelper.DestroyAllChildren(labelObject.transform); SerieLabelPool.ReleaseAll(labelObject.transform); int count = 0; for (int i = 0; i < m_Series.Count; i++) @@ -484,6 +483,14 @@ namespace XCharts protected void CheckRefreshLabel() { + foreach (var serie in m_Series.list) + { + if (serie.label.show && serie.runtimeLastCheckDataCount != serie.dataCount) + { + m_ReinitLabel = true; + serie.runtimeLastCheckDataCount = serie.dataCount; + } + } if (m_ReinitLabel) { m_ReinitLabel = false; diff --git a/Assets/XCharts/Runtime/PieChart.cs b/Assets/XCharts/Runtime/PieChart.cs index a0226d6d..3c700a5e 100644 --- a/Assets/XCharts/Runtime/PieChart.cs +++ b/Assets/XCharts/Runtime/PieChart.cs @@ -387,6 +387,7 @@ namespace XCharts protected void UpdateLabelPostion(Serie serie, SerieData serieData) { + if (serieData.labelText == null) return; var currAngle = serieData.runtimePieHalfAngle; var currRad = currAngle * Mathf.Deg2Rad; var offsetRadius = serieData.runtimePieOffsetRadius; From 7198734083bbbfee82943e3305b161f1de1587a2 Mon Sep 17 00:00:00 2001 From: monitor1394 Date: Mon, 11 Nov 2019 09:24:24 +0800 Subject: [PATCH 20/27] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=A5=BC=E5=9B=BE?= =?UTF-8?q?=E5=BD=93=E6=95=B0=E6=8D=AE=E8=BF=87=E5=B0=8F=E6=97=B6=E8=A7=86?= =?UTF-8?q?=E8=A7=89=E5=BC=95=E5=AF=BC=E7=BA=BF=E4=BC=9A=E7=A9=BF=E9=80=8F?= =?UTF-8?q?=E7=9A=84=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/XCharts/Runtime/PieChart.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Assets/XCharts/Runtime/PieChart.cs b/Assets/XCharts/Runtime/PieChart.cs index 3c700a5e..c8f20146 100644 --- a/Assets/XCharts/Runtime/PieChart.cs +++ b/Assets/XCharts/Runtime/PieChart.cs @@ -225,6 +225,8 @@ namespace XCharts serie.runtimePieOutsideRadius : outSideRadius; var radius2 = serie.runtimePieOutsideRadius + serie.label.lineLength1; var radius3 = insideRadius + (outSideRadius - insideRadius) / 2; + if (radius1 < serie.runtimePieInsideRadius) radius1 = serie.runtimePieInsideRadius; + radius1 -= 0.1f; var pos0 = new Vector3(center.x + radius3 * currSin, center.y + radius3 * currCos); var pos1 = new Vector3(center.x + radius1 * currSin, center.y + radius1 * currCos); var pos2 = new Vector3(center.x + radius2 * currSin, center.y + radius2 * currCos); From db50c8ffbe93e689ae4230d17b9d32fc5bb4aa45 Mon Sep 17 00:00:00 2001 From: monitor1394 Date: Mon, 11 Nov 2019 09:37:31 +0800 Subject: [PATCH 21/27] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=9B=BE=E6=A0=87?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E5=9C=A8=E4=B8=8A=E8=A6=86=E7=9B=96Label?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/XCharts/Runtime/Internal/BaseChart.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Assets/XCharts/Runtime/Internal/BaseChart.cs b/Assets/XCharts/Runtime/Internal/BaseChart.cs index 0d4db010..28fdded0 100644 --- a/Assets/XCharts/Runtime/Internal/BaseChart.cs +++ b/Assets/XCharts/Runtime/Internal/BaseChart.cs @@ -313,6 +313,7 @@ namespace XCharts var labelObj = SerieLabelPool.Get(textName, labelObject.transform, serie.label, m_ThemeInfo.font, color, serieData); var iconObj = labelObj.transform.Find("Icon").gameObject; serieData.SetIconObj(iconObj); + iconObj.GetComponent().SetSiblingIndex(0); var isAutoSize = serie.label.backgroundWidth == 0 || serie.label.backgroundHeight == 0; serieData.InitLabel(labelObj, isAutoSize, serie.label.paddingLeftRight, serie.label.paddingTopBottom); From ddb526fb428ca344bdf2de873ee3207076c2cb17 Mon Sep 17 00:00:00 2001 From: monitor1394 Date: Tue, 12 Nov 2019 07:38:02 +0800 Subject: [PATCH 22/27] =?UTF-8?q?=E5=A2=9E=E5=8A=A0IconStyle=E5=AD=90?= =?UTF-8?q?=E7=BB=84=E4=BB=B6=EF=BC=8C=E4=BC=98=E5=8C=96SerieData=E7=9A=84?= =?UTF-8?q?=E5=9B=BE=E6=A0=87=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Editor/PropertyDrawers/IconStyleDrawer.cs | 67 +++++++++++ .../PropertyDrawers/IconStyleDrawer.cs.meta | 11 ++ .../Editor/PropertyDrawers/SerieDrawer.cs | 65 +++++------ .../Editor/PropertyDrawers/TextStyleDrawer.cs | 2 +- .../Editor/Utility/ChartEditorHelper.cs | 2 +- .../XCharts/Runtime/Component/Main/Serie.cs | 18 +-- .../Runtime/Component/Sub/IconStyle.cs | 105 ++++++++++++++++++ .../Runtime/Component/Sub/IconStyle.cs.meta | 11 ++ .../Runtime/Component/Sub/SerieData.cs | 65 +++-------- Assets/XCharts/Runtime/Internal/BaseChart.cs | 5 +- .../Runtime/Internal/CoordinateChart.cs | 2 +- .../Runtime/Internal/SerieLabelPool.cs | 2 +- Assets/XCharts/Runtime/PieChart.cs | 2 +- 13 files changed, 250 insertions(+), 107 deletions(-) create mode 100644 Assets/XCharts/Editor/PropertyDrawers/IconStyleDrawer.cs create mode 100644 Assets/XCharts/Editor/PropertyDrawers/IconStyleDrawer.cs.meta create mode 100644 Assets/XCharts/Runtime/Component/Sub/IconStyle.cs create mode 100644 Assets/XCharts/Runtime/Component/Sub/IconStyle.cs.meta diff --git a/Assets/XCharts/Editor/PropertyDrawers/IconStyleDrawer.cs b/Assets/XCharts/Editor/PropertyDrawers/IconStyleDrawer.cs new file mode 100644 index 00000000..b90773fc --- /dev/null +++ b/Assets/XCharts/Editor/PropertyDrawers/IconStyleDrawer.cs @@ -0,0 +1,67 @@ +/******************************************/ +/* */ +/* Copyright (c) 2018 monitor1394 */ +/* https://github.com/monitor1394 */ +/* */ +/******************************************/ + +using System.Collections.Generic; +using UnityEditor; +using UnityEngine; + +namespace XCharts +{ + [CustomPropertyDrawer(typeof(IconStyle), true)] + public class IconStyleDrawer : PropertyDrawer + { + private Dictionary m_IconStyleToggle = new Dictionary(); + + public override void OnGUI(Rect pos, SerializedProperty prop, GUIContent label) + { + Rect drawRect = pos; + drawRect.height = EditorGUIUtility.singleLineHeight; + SerializedProperty m_Show = prop.FindPropertyRelative("m_Show"); + SerializedProperty m_Layer = prop.FindPropertyRelative("m_Layer"); + SerializedProperty m_Sprite = prop.FindPropertyRelative("m_Sprite"); + SerializedProperty m_Color = prop.FindPropertyRelative("m_Color"); + SerializedProperty m_Width = prop.FindPropertyRelative("m_Width"); + SerializedProperty m_Height = prop.FindPropertyRelative("m_Height"); + SerializedProperty m_Offset = prop.FindPropertyRelative("m_Offset"); + ChartEditorHelper.MakeFoldout(ref drawRect, ref m_IconStyleToggle, prop, null, m_Show, false); + drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; + if (ChartEditorHelper.IsToggle(m_IconStyleToggle, prop)) + { + ++EditorGUI.indentLevel; + + EditorGUI.PropertyField(drawRect, m_Layer); + drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; + EditorGUI.PropertyField(drawRect, m_Sprite); + drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; + EditorGUI.PropertyField(drawRect, m_Color); + drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; + EditorGUI.PropertyField(drawRect, m_Width); + drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; + EditorGUI.PropertyField(drawRect, m_Height); + drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; + EditorGUI.PropertyField(drawRect, m_Offset); + drawRect.y += EditorGUI.GetPropertyHeight(m_Offset); + --EditorGUI.indentLevel; + } + } + + public override float GetPropertyHeight(SerializedProperty prop, GUIContent label) + { + if (ChartEditorHelper.IsToggle(m_IconStyleToggle, prop)) + { + var hight = 6 * EditorGUIUtility.singleLineHeight + 6 * EditorGUIUtility.standardVerticalSpacing; + hight += EditorGUI.GetPropertyHeight(prop.FindPropertyRelative("m_Offset")); + hight += EditorGUIUtility.standardVerticalSpacing; + return hight; + } + else + { + return EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; + } + } + } +} \ No newline at end of file diff --git a/Assets/XCharts/Editor/PropertyDrawers/IconStyleDrawer.cs.meta b/Assets/XCharts/Editor/PropertyDrawers/IconStyleDrawer.cs.meta new file mode 100644 index 00000000..fb19ace6 --- /dev/null +++ b/Assets/XCharts/Editor/PropertyDrawers/IconStyleDrawer.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 9cae26ad61d224d8a97d41bdc52ec0b7 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/XCharts/Editor/PropertyDrawers/SerieDrawer.cs b/Assets/XCharts/Editor/PropertyDrawers/SerieDrawer.cs index f243e32e..367683b7 100644 --- a/Assets/XCharts/Editor/PropertyDrawers/SerieDrawer.cs +++ b/Assets/XCharts/Editor/PropertyDrawers/SerieDrawer.cs @@ -173,7 +173,7 @@ namespace XCharts { EditorGUI.indentLevel++; - float nameWid = 40; + float nameWid = 42; EditorGUI.PropertyField(new Rect(drawRect.x, drawRect.y, pos.width - 2 * nameWid - 2, pos.height), m_DataDimension); var nameRect = new Rect(pos.width - 2 * nameWid + 14, drawRect.y, nameWid, pos.height); if (GUI.Button(nameRect, new GUIContent("Name"))) @@ -181,7 +181,7 @@ namespace XCharts m_ShowDataName.boolValue = !m_ShowDataName.boolValue; } var iconRect = new Rect(pos.width - nameWid + 14, drawRect.y, nameWid, pos.height); - if (GUI.Button(iconRect, new GUIContent("Icon"))) + if (GUI.Button(iconRect, new GUIContent("Other"))) { m_ShowDataIcon.boolValue = !m_ShowDataIcon.boolValue; } @@ -232,7 +232,7 @@ namespace XCharts } private void DrawDataElement(ref Rect drawRect, int dimension, SerializedProperty m_Datas, bool showName, - bool showIconDetail, bool showSelected, int index, float currentWidth) + bool showDetail, bool showSelected, int index, float currentWidth) { var lastX = drawRect.x; var lastWid = drawRect.width; @@ -253,7 +253,7 @@ namespace XCharts if (showSelected) { drawRect.width = drawRect.width - 18; - EditorGUI.PropertyField(drawRect, element); + EditorGUI.PropertyField(drawRect, element, new GUIContent("Element " + index)); drawRect.x = currentWidth - 45; EditorGUI.PropertyField(drawRect, selected, GUIContent.none); drawRect.x = lastX; @@ -261,13 +261,14 @@ namespace XCharts } else { - EditorGUI.PropertyField(drawRect, element); + EditorGUI.PropertyField(drawRect, element, new GUIContent("Element " + index)); } drawRect.y += EditorGUI.GetPropertyHeight(element) + EditorGUIUtility.standardVerticalSpacing; } else { EditorGUI.LabelField(drawRect, "Element " + index); + Debug.LogError("Element " + index); var startX = drawRect.x + EditorGUIUtility.labelWidth - EditorGUI.indentLevel * 15; var dataWidTotal = (currentWidth - (startX + 20.5f + 1)); var dataWid = dataWidTotal / fieldCount; @@ -296,36 +297,12 @@ namespace XCharts EditorGUIUtility.fieldWidth = lastFieldWid; EditorGUIUtility.labelWidth = lastLabelWid; } - if (showIconDetail) + if (showDetail) { EditorGUI.indentLevel++; - var m_ShowIcon = serieData.FindPropertyRelative("m_ShowIcon"); - var m_IconImage = serieData.FindPropertyRelative("m_IconImage"); - var m_IconColor = serieData.FindPropertyRelative("m_IconColor"); - var m_IconWidth = serieData.FindPropertyRelative("m_IconWidth"); - var m_IconHeight = serieData.FindPropertyRelative("m_IconHeight"); - var m_IconOffset = serieData.FindPropertyRelative("m_IconOffset"); - EditorGUI.PropertyField(drawRect, m_ShowIcon); - drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; - EditorGUI.PropertyField(drawRect, m_IconImage); - drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; - EditorGUI.PropertyField(drawRect, m_IconColor); - drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; - EditorGUI.PropertyField(drawRect, m_IconWidth); - drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; - EditorGUI.PropertyField(drawRect, m_IconHeight); - drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; - - EditorGUI.LabelField(drawRect, "Icon Offset"); - var startX = drawRect.x + EditorGUIUtility.labelWidth - EditorGUI.indentLevel * 15; - var tempWidth = (drawRect.width - startX + 72) / 2; - var centerXRect = new Rect(startX, drawRect.y, tempWidth, drawRect.height); - var centerYRect = new Rect(centerXRect.x + tempWidth - 58, drawRect.y, tempWidth, drawRect.height); - var x = EditorGUI.FloatField(centerXRect, m_IconOffset.vector3Value.x); - var y = EditorGUI.FloatField(centerYRect, m_IconOffset.vector3Value.y); - m_IconOffset.vector3Value = new Vector3(x, y); - drawRect.y += EditorGUIUtility.singleLineHeight + EditorGUIUtility.standardVerticalSpacing; - + var m_Icon = serieData.FindPropertyRelative("m_IconStyle"); + EditorGUI.PropertyField(drawRect, m_Icon); + drawRect.y += EditorGUI.GetPropertyHeight(m_Icon); EditorGUI.indentLevel--; } } @@ -373,15 +350,25 @@ namespace XCharts if (m_DataFoldout[index]) { SerializedProperty m_Data = prop.FindPropertyRelative("m_Data"); - int num = m_Data.arraySize + 2; - if (num > 30) num = 15; + height += 2 * EditorGUIUtility.singleLineHeight + 1 * EditorGUIUtility.standardVerticalSpacing; + int num = m_Data.arraySize; + if (num > 30) + { + num = 11; + height += (num + 1) * EditorGUIUtility.singleLineHeight + (num) * EditorGUIUtility.standardVerticalSpacing; + } + else + { + height += (num) * EditorGUIUtility.singleLineHeight + (num - 1) * EditorGUIUtility.standardVerticalSpacing; + } if (prop.FindPropertyRelative("m_ShowDataIcon").boolValue) { - num *= 5; - num += 2; + for (int i = 0; i < num; i++) + { + var item = m_Data.GetArrayElementAtIndex(i); + height += EditorGUI.GetPropertyHeight(item.FindPropertyRelative("m_IconStyle")); + } } - height += num * EditorGUIUtility.singleLineHeight + (num - 1) * EditorGUIUtility.standardVerticalSpacing; - } if (m_ShowJsonDataArea) { diff --git a/Assets/XCharts/Editor/PropertyDrawers/TextStyleDrawer.cs b/Assets/XCharts/Editor/PropertyDrawers/TextStyleDrawer.cs index 3669d33c..38f9713e 100644 --- a/Assets/XCharts/Editor/PropertyDrawers/TextStyleDrawer.cs +++ b/Assets/XCharts/Editor/PropertyDrawers/TextStyleDrawer.cs @@ -14,7 +14,7 @@ namespace XCharts [CustomPropertyDrawer(typeof(TextStyle), true)] public class TextStyleDrawer : PropertyDrawer { - private Dictionary m_TextStyleToggle = new Dictionary(); + //private Dictionary m_TextStyleToggle = new Dictionary(); public override void OnGUI(Rect pos, SerializedProperty prop, GUIContent label) { diff --git a/Assets/XCharts/Editor/Utility/ChartEditorHelper.cs b/Assets/XCharts/Editor/Utility/ChartEditorHelper.cs index 6c86dacd..e83f4c20 100644 --- a/Assets/XCharts/Editor/Utility/ChartEditorHelper.cs +++ b/Assets/XCharts/Editor/Utility/ChartEditorHelper.cs @@ -114,7 +114,7 @@ public class ChartEditorHelper { if (showProp.propertyType == SerializedPropertyType.Boolean) { - drawRect.width = 60; + drawRect.width = 80; } else { diff --git a/Assets/XCharts/Runtime/Component/Main/Serie.cs b/Assets/XCharts/Runtime/Component/Main/Serie.cs index 1abb89b7..11556617 100644 --- a/Assets/XCharts/Runtime/Component/Main/Serie.cs +++ b/Assets/XCharts/Runtime/Component/Main/Serie.cs @@ -1028,7 +1028,7 @@ namespace XCharts { foreach (var data in m_Data) { - data.showIcon = flag; + data.iconStyle.show = flag; } } @@ -1042,7 +1042,7 @@ namespace XCharts if (dataIndex >= 0 && dataIndex < m_Data.Count) { var data = m_Data[dataIndex]; - data.showIcon = flag; + data.iconStyle.show = flag; } } @@ -1055,8 +1055,8 @@ namespace XCharts { foreach (var data in m_Data) { - data.iconWidth = width; - data.iconHeight = height; + data.iconStyle.width = width; + data.iconStyle.height = height; } } @@ -1070,7 +1070,7 @@ namespace XCharts if (dataIndex >= 0 && dataIndex < m_Data.Count) { var data = m_Data[dataIndex]; - data.iconImage = image; + data.iconStyle.sprite = image; } } @@ -1078,7 +1078,7 @@ namespace XCharts { foreach (var data in m_Data) { - if (data.showIcon) return true; + if (data.iconStyle.show) return true; } return false; } @@ -1094,8 +1094,8 @@ namespace XCharts if (dataIndex >= 0 && dataIndex < m_Data.Count) { var data = m_Data[dataIndex]; - data.iconWidth = width; - data.iconHeight = height; + data.iconStyle.width = width; + data.iconStyle.height = height; } } @@ -1109,7 +1109,7 @@ namespace XCharts if (dataIndex >= 0 && dataIndex < m_Data.Count) { var data = m_Data[dataIndex]; - data.iconColor = color; + data.iconStyle.color = color; } } diff --git a/Assets/XCharts/Runtime/Component/Sub/IconStyle.cs b/Assets/XCharts/Runtime/Component/Sub/IconStyle.cs new file mode 100644 index 00000000..8d665b0a --- /dev/null +++ b/Assets/XCharts/Runtime/Component/Sub/IconStyle.cs @@ -0,0 +1,105 @@ +/******************************************/ +/* */ +/* Copyright (c) 2018 monitor1394 */ +/* https://github.com/monitor1394 */ +/* */ +/******************************************/ + +using UnityEngine; +using UnityEngine.UI; + +namespace XCharts +{ + /// + /// 系列数据项的图标 + /// + [System.Serializable] + public class IconStyle : SubComponent + { + public enum Layer + { + UnderLabel, + AboveLabel + } + [SerializeField] private bool m_Show; + [SerializeField] private Layer m_Layer; + [SerializeField] private Sprite m_Sprite; + [SerializeField] private Color m_Color = Color.white; + [SerializeField] private float m_Width = 40; + [SerializeField] private float m_Height = 40; + [SerializeField] private Vector3 m_Offset; + + /// + /// Whether the data icon is show. + /// 是否显示图标。 + /// + public bool show { get { return m_Show; } set { m_Show = value; UpdateIcon(); } } + /// + /// 显示在上层还是在下层。 + /// + public Layer layer { get { return m_Layer; } set { m_Layer = value; } } + /// + /// The image of icon. + /// 图标的图片。 + /// + public Sprite sprite { get { return m_Sprite; } set { m_Sprite = value; } } + /// + /// 图标颜色。 + /// + public Color color { get { return m_Color; } set { m_Color = value; } } + /// + /// 图标宽。 + /// + public float width { get { return m_Width; } set { m_Width = value; } } + /// + /// 图标高。 + /// + public float height { get { return m_Height; } set { m_Height = value; } } + /// + /// 图标偏移。 + /// + public Vector3 offset { get { return m_Offset; } set { m_Offset = value; } } + + public Image image { get; private set; } + public RectTransform rect { get; private set; } + + public void SetImage(Image image) + { + this.image = image; + if (image) + { + rect = image.GetComponent(); + if (m_Layer == Layer.UnderLabel) + rect.SetSiblingIndex(0); + else + rect.SetSiblingIndex(image.transform.childCount - 1); + UpdateIcon(); + } + } + + public void SetActive(bool flag) + { + if (image) + { + ChartHelper.SetActive(image.gameObject, flag); + } + } + + public void UpdateIcon() + { + if (image == null) return; + if (show) + { + ChartHelper.SetActive(image.gameObject, true); + image.sprite = m_Sprite; + image.color = m_Color; + rect.sizeDelta = new Vector2(m_Width, m_Height); + image.transform.localPosition = m_Offset; + } + else + { + ChartHelper.SetActive(image.gameObject, false); + } + } + } +} diff --git a/Assets/XCharts/Runtime/Component/Sub/IconStyle.cs.meta b/Assets/XCharts/Runtime/Component/Sub/IconStyle.cs.meta new file mode 100644 index 00000000..53609daf --- /dev/null +++ b/Assets/XCharts/Runtime/Component/Sub/IconStyle.cs.meta @@ -0,0 +1,11 @@ +fileFormatVersion: 2 +guid: 82c4d360f7b5b4ee7845e9bbe611c8a3 +MonoImporter: + externalObjects: {} + serializedVersion: 2 + defaultReferences: [] + executionOrder: 0 + icon: {instanceID: 0} + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/XCharts/Runtime/Component/Sub/SerieData.cs b/Assets/XCharts/Runtime/Component/Sub/SerieData.cs index 0e2089f1..14be0cc4 100644 --- a/Assets/XCharts/Runtime/Component/Sub/SerieData.cs +++ b/Assets/XCharts/Runtime/Component/Sub/SerieData.cs @@ -9,6 +9,7 @@ using System.Linq; using System.Collections.Generic; using UnityEngine; using UnityEngine.UI; +using System; namespace XCharts { @@ -22,13 +23,7 @@ namespace XCharts [SerializeField] private string m_Name; [SerializeField] private bool m_Selected; [SerializeField] private float m_Radius; - [SerializeField] private bool m_ShowIcon; - [SerializeField] private Sprite m_IconImage; - [SerializeField] private Color m_IconColor = Color.white; - [SerializeField] private float m_IconWidth = 40; - [SerializeField] private float m_IconHeight = 40; - [SerializeField] private Vector3 m_IconOffset; - + [SerializeField] private IconStyle m_IconStyle = new IconStyle(); [SerializeField] private List m_Data = new List(); private bool m_Show = true; @@ -58,32 +53,10 @@ namespace XCharts /// public bool selected { get { return m_Selected; } set { m_Selected = value; } } /// - /// Whether the data icon is show. - /// 是否显示图标。 + /// the icon of data. + /// 数据项图标样式。 /// - public bool showIcon { get { return m_ShowIcon; } set { m_ShowIcon = value; } } - /// - /// The image of icon. - /// 图标的图片。 - /// - public Sprite iconImage { get { return m_IconImage; } set { m_IconImage = value; } } - /// - /// 图标颜色。 - /// - public Color iconColor { get { return m_IconColor; } set { m_IconColor = value; } } - /// - /// 图标宽。 - /// - public float iconWidth { get { return m_IconWidth; } set { m_IconWidth = value; } } - /// - /// 图标高。 - /// - public float iconHeight { get { return m_IconHeight; } set { m_IconHeight = value; } } - /// - /// 图标偏移。 - /// - public Vector3 iconOffset { get { return m_IconOffset; } set { m_IconOffset = value; } } - + public IconStyle iconStyle { get { return m_IconStyle; } set { m_IconStyle = value; } } /// /// An arbitrary dimension data list of data item. /// 可指定任意维数的数值列表。 @@ -124,8 +97,7 @@ namespace XCharts /// 最小值。 /// public float min { get { return m_Data.Min(); } } - public Image icon { get; private set; } - public RectTransform iconRect { get; private set; } + /// /// 关联的gameObject /// @@ -238,28 +210,19 @@ namespace XCharts if (labelRect) labelRect.localPosition = position; } - public void SetIconObj(GameObject iconObj) + [Obsolete("Use SerieData.SetIconImage() instead.", true)] + public void SetIconObj(GameObject iconObj) { } + + public void SetIconImage(Image image) { - icon = iconObj.GetComponent(); - iconRect = iconObj.GetComponent(); - UpdateIcon(); + if (iconStyle == null) return; + iconStyle.SetImage(image); } public void UpdateIcon() { - if (icon == null) return; - if (m_ShowIcon) - { - ChartHelper.SetActive(icon.gameObject, true); - icon.sprite = m_IconImage; - icon.color = m_IconColor; - iconRect.sizeDelta = new Vector2(m_IconWidth, m_IconHeight); - icon.transform.localPosition = m_IconOffset; - } - else - { - ChartHelper.SetActive(icon.gameObject, false); - } + if (iconStyle == null) return; + iconStyle.UpdateIcon(); } } } diff --git a/Assets/XCharts/Runtime/Internal/BaseChart.cs b/Assets/XCharts/Runtime/Internal/BaseChart.cs index 28fdded0..f4161c28 100644 --- a/Assets/XCharts/Runtime/Internal/BaseChart.cs +++ b/Assets/XCharts/Runtime/Internal/BaseChart.cs @@ -311,9 +311,8 @@ namespace XCharts (Color)m_ThemeInfo.GetColor(i); } var labelObj = SerieLabelPool.Get(textName, labelObject.transform, serie.label, m_ThemeInfo.font, color, serieData); - var iconObj = labelObj.transform.Find("Icon").gameObject; - serieData.SetIconObj(iconObj); - iconObj.GetComponent().SetSiblingIndex(0); + var iconImage = labelObj.transform.Find("Icon").GetComponent(); + serieData.SetIconImage(iconImage); var isAutoSize = serie.label.backgroundWidth == 0 || serie.label.backgroundHeight == 0; serieData.InitLabel(labelObj, isAutoSize, serie.label.paddingLeftRight, serie.label.paddingTopBottom); diff --git a/Assets/XCharts/Runtime/Internal/CoordinateChart.cs b/Assets/XCharts/Runtime/Internal/CoordinateChart.cs index 5c35b927..f33ec5f1 100644 --- a/Assets/XCharts/Runtime/Internal/CoordinateChart.cs +++ b/Assets/XCharts/Runtime/Internal/CoordinateChart.cs @@ -1325,7 +1325,7 @@ namespace XCharts for (int j = 0; j < serie.data.Count; j++) { var serieData = serie.data[j]; - if (serie.label.show || serieData.showIcon) + if (serie.label.show || serieData.iconStyle.show) { var pos = serie.dataPoints[j]; var value = serieData.data[1]; diff --git a/Assets/XCharts/Runtime/Internal/SerieLabelPool.cs b/Assets/XCharts/Runtime/Internal/SerieLabelPool.cs index e8704857..2cbff214 100644 --- a/Assets/XCharts/Runtime/Internal/SerieLabelPool.cs +++ b/Assets/XCharts/Runtime/Internal/SerieLabelPool.cs @@ -22,7 +22,7 @@ namespace XCharts element = ChartHelper.AddSerieLabel(name, parent, font, color, label.backgroundColor, label.fontSize, label.fontStyle, label.rotate, label.backgroundWidth, label.backgroundHeight); - ChartHelper.AddIcon("Icon", element.transform, serieData.iconWidth, serieData.iconHeight); + ChartHelper.AddIcon("Icon", element.transform, serieData.iconStyle.width, serieData.iconStyle.height); } else { diff --git a/Assets/XCharts/Runtime/PieChart.cs b/Assets/XCharts/Runtime/PieChart.cs index c8f20146..9efa5f34 100644 --- a/Assets/XCharts/Runtime/PieChart.cs +++ b/Assets/XCharts/Runtime/PieChart.cs @@ -337,7 +337,7 @@ namespace XCharts var currAngle = serieData.runtimePieHalfAngle; var isHighlight = (serieData.highlighted && serie.emphasis.label.show); var showLabel = ((serie.label.show || isHighlight) && serieData.canShowLabel); - if (showLabel || serieData.showIcon) + if (showLabel || serieData.iconStyle.show) { serieData.SetLabelActive(showLabel); float rotate = 0; From eae0afe6593c6838296fef855fbdaf1f76227472 Mon Sep 17 00:00:00 2001 From: monitor1394 Date: Tue, 12 Nov 2019 07:57:10 +0800 Subject: [PATCH 23/27] =?UTF-8?q?=E4=BF=AE=E5=A4=8DDemo=E8=84=9A=E6=9C=AC?= =?UTF-8?q?=E4=B8=A2=E5=A4=B1=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/XChartsDemo/demo_test.unity | 6350 -- Assets/XChartsDemo/demo_test.unity.meta | 7 - Assets/XChartsDemo/demo_xchart.unity | 70826 ++++++++++++-------- ProjectSettings/EditorBuildSettings.asset | 3 +- 4 files changed, 44157 insertions(+), 33029 deletions(-) delete mode 100644 Assets/XChartsDemo/demo_test.unity delete mode 100644 Assets/XChartsDemo/demo_test.unity.meta diff --git a/Assets/XChartsDemo/demo_test.unity b/Assets/XChartsDemo/demo_test.unity deleted file mode 100644 index 176e4759..00000000 --- a/Assets/XChartsDemo/demo_test.unity +++ /dev/null @@ -1,6350 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!29 &1 -OcclusionCullingSettings: - m_ObjectHideFlags: 0 - serializedVersion: 2 - m_OcclusionBakeSettings: - smallestOccluder: 5 - smallestHole: 0.25 - backfaceThreshold: 100 - m_SceneGUID: 00000000000000000000000000000000 - m_OcclusionCullingData: {fileID: 0} ---- !u!104 &2 -RenderSettings: - m_ObjectHideFlags: 0 - serializedVersion: 9 - m_Fog: 0 - m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} - m_FogMode: 3 - m_FogDensity: 0.01 - m_LinearFogStart: 0 - m_LinearFogEnd: 300 - m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1} - m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1} - m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1} - m_AmbientIntensity: 1 - m_AmbientMode: 0 - m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1} - m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0} - m_HaloStrength: 0.5 - m_FlareStrength: 1 - m_FlareFadeSpeed: 3 - m_HaloTexture: {fileID: 0} - m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0} - m_DefaultReflectionMode: 0 - m_DefaultReflectionResolution: 128 - m_ReflectionBounces: 1 - m_ReflectionIntensity: 1 - m_CustomReflection: {fileID: 0} - m_Sun: {fileID: 0} - m_IndirectSpecularColor: {r: 0.44657898, g: 0.49641287, b: 0.5748173, a: 1} - m_UseRadianceAmbientProbe: 0 ---- !u!157 &3 -LightmapSettings: - m_ObjectHideFlags: 0 - serializedVersion: 11 - m_GIWorkflowMode: 0 - m_GISettings: - serializedVersion: 2 - m_BounceScale: 1 - m_IndirectOutputScale: 1 - m_AlbedoBoost: 1 - m_EnvironmentLightingMode: 0 - m_EnableBakedLightmaps: 1 - m_EnableRealtimeLightmaps: 1 - m_LightmapEditorSettings: - serializedVersion: 10 - m_Resolution: 2 - m_BakeResolution: 40 - m_AtlasSize: 1024 - m_AO: 0 - m_AOMaxDistance: 1 - m_CompAOExponent: 1 - m_CompAOExponentDirect: 0 - m_Padding: 2 - m_LightmapParameters: {fileID: 0} - m_LightmapsBakeMode: 1 - m_TextureCompression: 1 - m_FinalGather: 0 - m_FinalGatherFiltering: 1 - m_FinalGatherRayCount: 256 - m_ReflectionCompression: 2 - m_MixedBakeMode: 2 - m_BakeBackend: 1 - m_PVRSampling: 1 - m_PVRDirectSampleCount: 32 - m_PVRSampleCount: 500 - m_PVRBounces: 2 - m_PVRFilterTypeDirect: 0 - m_PVRFilterTypeIndirect: 0 - m_PVRFilterTypeAO: 0 - m_PVRFilteringMode: 1 - m_PVRCulling: 1 - m_PVRFilteringGaussRadiusDirect: 1 - m_PVRFilteringGaussRadiusIndirect: 5 - m_PVRFilteringGaussRadiusAO: 2 - m_PVRFilteringAtrousPositionSigmaDirect: 0.5 - m_PVRFilteringAtrousPositionSigmaIndirect: 2 - m_PVRFilteringAtrousPositionSigmaAO: 1 - m_ShowResolutionOverlay: 1 - m_LightingDataAsset: {fileID: 0} - m_UseShadowmask: 1 ---- !u!196 &4 -NavMeshSettings: - serializedVersion: 2 - m_ObjectHideFlags: 0 - m_BuildSettings: - serializedVersion: 2 - agentTypeID: 0 - agentRadius: 0.5 - agentHeight: 2 - agentSlope: 45 - agentClimb: 0.4 - ledgeDropHeight: 0 - maxJumpAcrossDistance: 0 - minRegionArea: 2 - manualCellSize: 0 - cellSize: 0.16666667 - manualTileSize: 0 - tileSize: 256 - accuratePlacement: 0 - debug: - m_Flags: 0 - m_NavMeshData: {fileID: 0} ---- !u!1 &187683276 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 187683277} - - component: {fileID: 187683279} - - component: {fileID: 187683278} - 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 &187683277 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 187683276} - m_LocalRotation: {x: 0, 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: 1302635557} - 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: 250, y: -33} - m_SizeDelta: {x: 100, y: 20} - m_Pivot: {x: 1, y: 0.5} ---- !u!114 &187683278 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 187683276} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: ---- !u!222 &187683279 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 187683276} - m_CullTransparentMesh: 0 ---- !u!1 &195955844 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 195955845} - - component: {fileID: 195955847} - - component: {fileID: 195955846} - m_Layer: 0 - m_Name: RadarChart - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &195955845 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 195955844} - m_LocalRotation: {x: -0, 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: 1661419644} - - {fileID: 729600689} - - {fileID: 1509481686} - - {fileID: 370318009} - - {fileID: 1553059878} - - {fileID: 399384903} - - {fileID: 1919035122} - - {fileID: 1113095190} - - {fileID: 582596681} - m_Father: {fileID: 1374268762} - 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: -641, y: -609} - m_SizeDelta: {x: 580, y: 300} - m_Pivot: {x: 0, y: 0} ---- !u!114 &195955846 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 195955844} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: d2231a0d3e3a5b043b074f6739be4a86, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 0 - m_ChartWidth: 580 - m_ChartHeight: 300 - 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: 4293848814 - 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: RadarChart - m_TextFontSize: 16 - m_SubText: - m_SubTextFontSize: 14 - 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_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: 60 - m_ItemHeight: 20 - m_ItemGap: 5 - m_ItemFontSize: 16 - m_Formatter: - m_Data: [] - m_Tooltip: - m_JsonData: - m_DataFromJson: 0 - m_Show: 1 - m_Type: 0 - m_Formatter: - m_FixedWidth: 0 - m_FixedHeight: 0 - m_MinWidth: 0 - m_MinHeight: 0 - m_FontSize: 18 - m_FontStyle: 0 - m_ForceENotation: 0 - m_Series: - m_JsonData: - m_DataFromJson: 0 - m_Series: - - m_JsonData: - m_DataFromJson: 0 - m_Show: 1 - m_Type: 3 - m_Name: serie1 - m_Stack: - m_AxisIndex: 0 - m_RadarIndex: 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_Type: 0 - m_SizeType: 0 - m_Size: 4 - m_SelectedSize: 6 - m_DataIndex: 1 - m_DataScale: 1 - m_SelectedDataScale: 1.5 - m_Color: {r: 0, g: 0, b: 0, a: 0} - m_Opacity: 1 - m_StartIndex: 0 - m_Interval: 0 - m_ForceShowLast: 0 - m_SampleDist: 0 - m_SampleType: 1 - m_SampleAverage: 0 - m_LineType: 0 - 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_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_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: 1 - m_BorderWidth: 0.5 - m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} - m_ForceENotation: 0 - m_Animation: - m_JsonData: - m_DataFromJson: 0 - m_Enable: 1 - m_Easting: 0 - m_Duration: 1000 - m_Threshold: 2000 - m_Delay: 0 - m_ActualDuration: 0 - m_CurrDetailProgress: 0 - m_DestDetailProgress: 1 - 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_BorderType: 0 - m_BorderWidth: 0 - m_BorderColor: {r: 0, g: 0, b: 0, a: 0} - m_Opacity: 1 - 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_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: 1 - m_BorderWidth: 0.5 - m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} - m_ForceENotation: 0 - m_ItemStyle: - m_JsonData: - m_DataFromJson: 0 - m_Show: 0 - m_Color: {r: 0, g: 0, b: 0, a: 0} - m_BorderType: 0 - m_BorderWidth: 0 - m_BorderColor: {r: 0, g: 0, b: 0, a: 0} - m_Opacity: 1 - m_ShowDataDimension: 0 - m_ShowDataName: 0 - m_ShowDataIcon: 0 - m_Data: - - m_JsonData: - m_DataFromJson: 0 - m_Name: - m_Selected: 0 - m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 0} - m_Data: - - 56 - - 56 - - 31 - - 77 - - 29 - m_CanShowLabel: 1 - 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_Large: 1 - m_Radars: - - m_JsonData: - m_DataFromJson: 0 - m_Shape: 1 - m_Radius: 0.34 - m_SplitNumber: 5 - m_Center: - - 0.5 - - 0.45 - 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.6 - m_Opacity: 1 - m_SplitArea: - m_JsonData: - m_DataFromJson: 0 - m_Show: 1 - 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_Indicator: 1 - m_IndicatorGap: 8 - m_IndicatorList: - - m_Name: indicator1 - m_Max: 100 - m_Min: 0 - m_TextStyle: - m_JsonData: - m_DataFromJson: 0 - m_Rotate: -2.13 - m_Offset: {x: 0, y: 0} - m_Color: {r: 0, g: 0, b: 0, a: 0} - m_FontSize: 18 - m_FontStyle: 0 - - m_Name: indicator2 - m_Max: 100 - m_Min: 0 - m_TextStyle: - m_JsonData: - m_DataFromJson: 0 - m_Rotate: -75.45 - m_Offset: {x: -29.32, y: 0} - m_Color: {r: 0, g: 0, b: 0, a: 0} - m_FontSize: 18 - m_FontStyle: 0 - - m_Name: indicator3 - m_Max: 100 - m_Min: 0 - m_TextStyle: - m_JsonData: - m_DataFromJson: 0 - m_Rotate: 38.09 - m_Offset: {x: -28.11, y: 0} - m_Color: {r: 0, g: 0, b: 0, a: 0} - m_FontSize: 18 - m_FontStyle: 0 - - m_Name: indicator4 - m_Max: 100 - m_Min: 0 - m_TextStyle: - m_JsonData: - m_DataFromJson: 0 - m_Rotate: -34.25 - m_Offset: {x: 32.98, y: 0} - m_Color: {r: 0, g: 0, b: 0, a: 0} - m_FontSize: 18 - m_FontStyle: 0 - - m_Name: indicator5 - m_Max: 100 - m_Min: 0 - m_TextStyle: - m_JsonData: - m_DataFromJson: 0 - m_Rotate: 69.7 - m_Offset: {x: 32.27, y: 0} - m_Color: {r: 0, g: 0, b: 0, a: 0} - m_FontSize: 18 - m_FontStyle: 0 ---- !u!222 &195955847 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 195955844} - m_CullTransparentMesh: 0 ---- !u!1 &340891139 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 340891140} - - component: {fileID: 340891142} - - component: {fileID: 340891141} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &340891140 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 340891139} - m_LocalRotation: {x: 0, 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: 2144557631} - 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: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &340891141 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 340891139} - m_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: 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 &340891142 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 340891139} - m_CullTransparentMesh: 0 ---- !u!1 &341605624 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 341605625} - - component: {fileID: 341605627} - - component: {fileID: 341605626} - m_Layer: 0 - m_Name: Icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &341605625 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 341605624} - m_LocalRotation: {x: -0, 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: 801736437} - 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 &341605626 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 341605624} - 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 - m_UseSpriteMesh: 0 ---- !u!222 &341605627 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 341605624} - m_CullTransparentMesh: 0 ---- !u!1 &367212736 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 367212737} - - component: {fileID: 367212739} - - component: {fileID: 367212738} - 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 &367212737 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 367212736} - m_LocalRotation: {x: 0, 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: 1966843200} - 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: 450, y: -287} - m_SizeDelta: {x: 100, y: 20} - m_Pivot: {x: 1, y: 0.5} ---- !u!114 &367212738 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 367212736} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: x4 ---- !u!222 &367212739 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 367212736} - m_CullTransparentMesh: 0 ---- !u!1 &370318008 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 370318009} - - component: {fileID: 370318011} - - component: {fileID: 370318010} - m_Layer: 0 - m_Name: indicator_0_0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &370318009 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 370318008} - m_LocalRotation: {x: 0, y: 0, z: -0.018586686, w: 0.99982727} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 195955845} - 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: 0, y: 105} - m_SizeDelta: {x: 78, y: 20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &370318010 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 370318008} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: indicator1 ---- !u!222 &370318011 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 370318008} - m_CullTransparentMesh: 0 ---- !u!1 &397671790 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 397671791} - - component: {fileID: 397671793} - - component: {fileID: 397671792} - m_Layer: 0 - m_Name: title_sub - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!224 &397671791 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 397671790} - m_LocalRotation: {x: 0, 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: 529851968} - 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: 580, y: 14} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &397671792 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 397671790} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 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: ---- !u!222 &397671793 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 397671790} - m_CullTransparentMesh: 0 ---- !u!1 &399384902 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 399384903} - - component: {fileID: 399384905} - - component: {fileID: 399384904} - m_Layer: 0 - m_Name: indicator_0_2 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &399384903 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 399384902} - m_LocalRotation: {x: 0, y: 0, z: 0.3263107, w: 0.9452626} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 195955845} - 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: 75.54639, y: -103.99188} - m_SizeDelta: {x: 78, y: 20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &399384904 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 399384902} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: indicator3 ---- !u!222 &399384905 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 399384902} - m_CullTransparentMesh: 0 ---- !u!1 &421275482 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 421275483} - 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 &421275483 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 421275482} - m_LocalRotation: {x: -0, 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: 2017616964} - m_RootOrder: 7 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 580, y: 300} - m_Pivot: {x: 0, y: 0} ---- !u!1 &484411266 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 484411267} - 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 &484411267 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 484411266} - m_LocalRotation: {x: -0, 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: 2090876562} - - {fileID: 782708637} - - {fileID: 544337863} - - {fileID: 1936699278} - - {fileID: 942081449} - m_Father: {fileID: 2017616964} - m_RootOrder: 6 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 580, y: 300} - m_Pivot: {x: 0, y: 0} ---- !u!1 &520925601 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 520925602} - - component: {fileID: 520925604} - - component: {fileID: 520925603} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &520925602 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 520925601} - m_LocalRotation: {x: 0, 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: 1411059418} - 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 &520925603 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 520925601} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 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 &520925604 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 520925601} - m_CullTransparentMesh: 0 ---- !u!1 &521826804 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 521826806} - - component: {fileID: 521826805} - m_Layer: 0 - m_Name: Directional Light - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!108 &521826805 -Light: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 521826804} - m_Enabled: 1 - serializedVersion: 8 - m_Type: 1 - m_Color: {r: 1, g: 0.95686275, b: 0.8392157, a: 1} - m_Intensity: 1 - m_Range: 10 - m_SpotAngle: 30 - m_CookieSize: 10 - m_Shadows: - m_Type: 2 - m_Resolution: -1 - m_CustomResolution: -1 - m_Strength: 1 - m_Bias: 0.05 - m_NormalBias: 0.4 - m_NearPlane: 0.2 - m_Cookie: {fileID: 0} - m_DrawHalo: 0 - m_Flare: {fileID: 0} - m_RenderMode: 0 - m_CullingMask: - serializedVersion: 2 - m_Bits: 4294967295 - m_Lightmapping: 4 - m_LightShadowCasterMode: 0 - m_AreaSize: {x: 1, y: 1} - m_BounceIntensity: 1 - m_ColorTemperature: 6570 - m_UseColorTemperature: 0 - m_ShadowRadius: 0 - m_ShadowAngle: 0 ---- !u!4 &521826806 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 521826804} - m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261} - m_LocalPosition: {x: 0, y: 3, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0} ---- !u!1 &529851967 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 529851968} - m_Layer: 0 - m_Name: title - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &529851968 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 529851967} - m_LocalRotation: {x: -0, 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: 1726913371} - - {fileID: 397671791} - m_Father: {fileID: 2017616964} - 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: 580, y: 300} - m_Pivot: {x: 0.5, y: 1} ---- !u!1 &544337862 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 544337863} - - component: {fileID: 544337865} - - component: {fileID: 544337864} - 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 &544337863 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 544337862} - m_LocalRotation: {x: 0, 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: 484411267} - 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 &544337864 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 544337862} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 5 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: 45 ---- !u!222 &544337865 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 544337862} - m_CullTransparentMesh: 0 ---- !u!1 &582596680 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 582596681} - m_Layer: 0 - m_Name: tooltip - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!224 &582596681 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 582596680} - m_LocalRotation: {x: -0, 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: 1888272520} - m_Father: {fileID: 195955845} - m_RootOrder: 8 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 580, y: 300} - m_Pivot: {x: 0, y: 0} ---- !u!1 &692598252 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 692598253} - - component: {fileID: 692598255} - - component: {fileID: 692598254} - m_Layer: 0 - m_Name: Icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &692598253 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 692598252} - m_LocalRotation: {x: -0, 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: 987942591} - 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 &692598254 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 692598252} - 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 - m_UseSpriteMesh: 0 ---- !u!222 &692598255 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 692598252} - m_CullTransparentMesh: 0 ---- !u!1 &729600688 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 729600689} - m_Layer: 0 - m_Name: legend - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &729600689 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 729600688} - m_LocalRotation: {x: -0, 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: 195955845} - 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: -30} - m_SizeDelta: {x: 580, y: 300} - m_Pivot: {x: 0.5, y: 1} ---- !u!1 &782708636 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 782708637} - - component: {fileID: 782708639} - - component: {fileID: 782708638} - 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 &782708637 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 782708636} - m_LocalRotation: {x: 0, 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: 484411267} - 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 &782708638 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 782708636} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 5 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: 22.5 ---- !u!222 &782708639 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 782708636} - m_CullTransparentMesh: 0 ---- !u!1 &801736436 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 801736437} - 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 &801736437 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 801736436} - m_LocalRotation: {x: 0, 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: 1346390320} - - {fileID: 341605625} - m_Father: {fileID: 1653967798} - 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: -290, y: -150} - m_SizeDelta: {x: 50, y: 20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &827356653 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 827356654} - - component: {fileID: 827356656} - - component: {fileID: 827356655} - 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 &827356654 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 827356653} - m_LocalRotation: {x: 0, 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: 1966843200} - 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, y: -287} - m_SizeDelta: {x: 100, y: 20} - m_Pivot: {x: 1, y: 0.5} ---- !u!114 &827356655 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 827356653} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: x1 ---- !u!222 &827356656 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 827356653} - m_CullTransparentMesh: 0 ---- !u!1 &849205412 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 849205413} - - component: {fileID: 849205415} - - component: {fileID: 849205414} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &849205413 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 849205412} - m_LocalRotation: {x: 0, 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: 2009861050} - 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: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &849205414 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 849205412} - m_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: 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 &849205415 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 849205412} - m_CullTransparentMesh: 0 ---- !u!1 &857875237 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 857875238} - - component: {fileID: 857875240} - - component: {fileID: 857875239} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &857875238 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 857875237} - m_LocalRotation: {x: 0, 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: 893939017} - 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: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &857875239 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 857875237} - m_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: 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 &857875240 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 857875237} - m_CullTransparentMesh: 0 ---- !u!1 &858583463 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 858583464} - - component: {fileID: 858583466} - - component: {fileID: 858583465} - m_Layer: 0 - m_Name: datazoomstart - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!224 &858583464 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 858583463} - m_LocalRotation: {x: 0, 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: 1862041471} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 200, y: 20} - m_Pivot: {x: 1, y: 0.5} ---- !u!114 &858583465 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 858583463} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 5 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: Text ---- !u!222 &858583466 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 858583463} - m_CullTransparentMesh: 0 ---- !u!1 &878642596 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 878642598} - - component: {fileID: 878642597} - m_Layer: 0 - m_Name: _xcharts_ - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!114 &878642597 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 878642596} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 4cbfef5a9a03149f6a1ddf4ebe502bf6, type: 3} - m_Name: - m_EditorClassIdentifier: - m_NowVersion: 1.0.3 (20191103) - m_NewVersion: ---- !u!4 &878642598 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 878642596} - m_LocalRotation: {x: 0, 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: 0} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &889580647 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 889580648} - - component: {fileID: 889580650} - - component: {fileID: 889580649} - 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 &889580648 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 889580647} - m_LocalRotation: {x: 0, 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: 1302635557} - 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: 550, y: -33} - m_SizeDelta: {x: 100, y: 20} - m_Pivot: {x: 1, y: 0.5} ---- !u!114 &889580649 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 889580647} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: ---- !u!222 &889580650 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 889580647} - m_CullTransparentMesh: 0 ---- !u!1 &893939016 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 893939017} - 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 &893939017 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 893939016} - m_LocalRotation: {x: 0, 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: 857875238} - - {fileID: 1733908787} - m_Father: {fileID: 1653967798} - 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: -290, y: -150} - m_SizeDelta: {x: 50, y: 20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &909368115 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 909368118} - - component: {fileID: 909368117} - - component: {fileID: 909368116} - m_Layer: 0 - m_Name: EventSystem - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!114 &909368116 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 909368115} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 1077351063, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_HorizontalAxis: Horizontal - m_VerticalAxis: Vertical - m_SubmitButton: Submit - m_CancelButton: Cancel - m_InputActionsPerSecond: 10 - m_RepeatDelay: 0.5 - m_ForceModuleActive: 0 ---- !u!114 &909368117 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 909368115} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: -619905303, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_FirstSelected: {fileID: 0} - m_sendNavigationEvents: 1 - m_DragThreshold: 10 ---- !u!4 &909368118 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 909368115} - m_LocalRotation: {x: 0, 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: 0} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &942081448 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 942081449} - - component: {fileID: 942081451} - - component: {fileID: 942081450} - 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 &942081449 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 942081448} - m_LocalRotation: {x: 0, 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: 484411267} - 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 &942081450 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 942081448} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 5 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: 90 ---- !u!222 &942081451 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 942081448} - m_CullTransparentMesh: 0 ---- !u!1 &987942590 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 987942591} - 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 &987942591 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 987942590} - m_LocalRotation: {x: 0, 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: 1761959002} - - {fileID: 692598253} - m_Father: {fileID: 1653967798} - 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: -290, y: -150} - m_SizeDelta: {x: 50, y: 20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1079627670 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1079627671} - - component: {fileID: 1079627673} - - component: {fileID: 1079627672} - 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 &1079627671 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1079627670} - m_LocalRotation: {x: 0, 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: 1966843200} - 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: 550, y: -287} - m_SizeDelta: {x: 100, y: 20} - m_Pivot: {x: 1, y: 0.5} ---- !u!114 &1079627672 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1079627670} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: x5 ---- !u!222 &1079627673 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1079627670} - m_CullTransparentMesh: 0 ---- !u!1 &1108805289 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1108805290} - - component: {fileID: 1108805292} - - component: {fileID: 1108805291} - 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 &1108805290 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1108805289} - m_LocalRotation: {x: 0, 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: 1302635557} - 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: 450, y: -33} - m_SizeDelta: {x: 100, y: 20} - m_Pivot: {x: 1, y: 0.5} ---- !u!114 &1108805291 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1108805289} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: ---- !u!222 &1108805292 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1108805289} - m_CullTransparentMesh: 0 ---- !u!1 &1113095189 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1113095190} - - component: {fileID: 1113095192} - - component: {fileID: 1113095191} - m_Layer: 0 - m_Name: indicator_0_4 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1113095190 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1113095189} - m_LocalRotation: {x: 0, y: 0, z: 0.5714299, w: 0.8206509} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 195955845} - 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: -111.34621, y: 18.991882} - m_SizeDelta: {x: 78, y: 20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1113095191 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1113095189} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: indicator5 ---- !u!222 &1113095192 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1113095189} - m_CullTransparentMesh: 0 ---- !u!1 &1117089279 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1117089280} - - component: {fileID: 1117089282} - - component: {fileID: 1117089281} - m_Layer: 0 - m_Name: Icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1117089280 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1117089279} - m_LocalRotation: {x: -0, 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: 2009861050} - 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 &1117089281 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1117089279} - 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 - m_UseSpriteMesh: 0 ---- !u!222 &1117089282 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1117089279} - m_CullTransparentMesh: 0 ---- !u!1 &1259004118 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1259004119} - - component: {fileID: 1259004121} - - component: {fileID: 1259004120} - 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 &1259004119 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1259004118} - m_LocalRotation: {x: -0, 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: 1476192633} - m_Father: {fileID: 1299429999} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 100, y: 50} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &1259004120 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1259004118} - 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 - m_UseSpriteMesh: 0 ---- !u!222 &1259004121 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1259004118} - m_CullTransparentMesh: 0 ---- !u!1 &1299429998 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1299429999} - m_Layer: 0 - m_Name: tooltip - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!224 &1299429999 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1299429998} - m_LocalRotation: {x: -0, 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: 2080305486} - - {fileID: 1765852954} - - {fileID: 1259004119} - - {fileID: 1411059418} - m_Father: {fileID: 2017616964} - m_RootOrder: 8 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 580, y: 300} - m_Pivot: {x: 0, y: 0} ---- !u!1 &1302635556 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1302635557} - 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 &1302635557 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1302635556} - m_LocalRotation: {x: -0, 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: 1951652164} - - {fileID: 187683277} - - {fileID: 1893009640} - - {fileID: 1108805290} - - {fileID: 889580648} - m_Father: {fileID: 2017616964} - m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 580, y: 300} - m_Pivot: {x: 0, y: 0} ---- !u!1 &1346390319 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1346390320} - - component: {fileID: 1346390322} - - component: {fileID: 1346390321} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1346390320 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1346390319} - m_LocalRotation: {x: 0, 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: 801736437} - 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: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1346390321 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1346390319} - m_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: 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 &1346390322 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1346390319} - m_CullTransparentMesh: 0 ---- !u!1 &1374268758 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1374268762} - - component: {fileID: 1374268761} - - component: {fileID: 1374268760} - - component: {fileID: 1374268759} - m_Layer: 0 - m_Name: Canvas - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!114 &1374268759 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1374268758} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_IgnoreReversedGraphics: 1 - m_BlockingObjects: 0 - m_BlockingMask: - serializedVersion: 2 - m_Bits: 4294967295 ---- !u!114 &1374268760 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1374268758} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_UiScaleMode: 0 - m_ReferencePixelsPerUnit: 100 - m_ScaleFactor: 1 - m_ReferenceResolution: {x: 800, y: 600} - m_ScreenMatchMode: 0 - m_MatchWidthOrHeight: 0 - m_PhysicalUnit: 3 - m_FallbackScreenDPI: 96 - m_DefaultSpriteDPI: 96 - m_DynamicPixelsPerUnit: 1 ---- !u!223 &1374268761 -Canvas: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1374268758} - m_Enabled: 1 - serializedVersion: 3 - m_RenderMode: 0 - m_Camera: {fileID: 0} - m_PlaneDistance: 100 - m_PixelPerfect: 0 - m_ReceivesEvents: 1 - m_OverrideSorting: 0 - m_OverridePixelPerfect: 0 - m_SortingBucketNormalizedSize: 0 - m_AdditionalShaderChannelsFlag: 0 - m_SortingLayerID: 0 - m_SortingOrder: 0 - m_TargetDisplay: 0 ---- !u!224 &1374268762 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1374268758} - m_LocalRotation: {x: 0, 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: 195955845} - - {fileID: 2017616964} - m_Father: {fileID: 0} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} - m_Pivot: {x: 0, y: 0} ---- !u!1 &1376155060 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1376155061} - - component: {fileID: 1376155063} - - component: {fileID: 1376155062} - m_Layer: 0 - m_Name: title_sub - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!224 &1376155061 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1376155060} - m_LocalRotation: {x: 0, 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: 1661419644} - 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: 580, y: 14} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &1376155062 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1376155060} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 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: ---- !u!222 &1376155063 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1376155060} - m_CullTransparentMesh: 0 ---- !u!1 &1409063083 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1409063084} - - component: {fileID: 1409063086} - - component: {fileID: 1409063085} - m_Layer: 0 - m_Name: Icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1409063084 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1409063083} - m_LocalRotation: {x: -0, 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: 2144557631} - 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 &1409063085 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1409063083} - 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 - m_UseSpriteMesh: 0 ---- !u!222 &1409063086 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1409063083} - m_CullTransparentMesh: 0 ---- !u!1 &1411059417 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1411059418} - - component: {fileID: 1411059420} - - component: {fileID: 1411059419} - 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 &1411059418 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1411059417} - m_LocalRotation: {x: -0, 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: 520925602} - m_Father: {fileID: 1299429999} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 100, y: 50} - m_Pivot: {x: 1, y: 0.5} ---- !u!114 &1411059419 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1411059417} - 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 - m_UseSpriteMesh: 0 ---- !u!222 &1411059420 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1411059417} - m_CullTransparentMesh: 0 ---- !u!1 &1476192632 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1476192633} - - component: {fileID: 1476192635} - - component: {fileID: 1476192634} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1476192633 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1476192632} - m_LocalRotation: {x: 0, 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: 1259004119} - 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 &1476192634 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1476192632} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 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 &1476192635 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1476192632} - m_CullTransparentMesh: 0 ---- !u!1 &1509481685 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1509481686} - m_Layer: 0 - m_Name: label - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1509481686 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1509481685} - m_LocalRotation: {x: -0, 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: 2009861050} - m_Father: {fileID: 195955845} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 580, y: 300} - m_Pivot: {x: 0, y: 0} ---- !u!1 &1553059877 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1553059878} - - component: {fileID: 1553059880} - - component: {fileID: 1553059879} - m_Layer: 0 - m_Name: indicator_0_1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1553059878 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1553059877} - m_LocalRotation: {x: 0, y: 0, z: -0.6118722, w: 0.7909566} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 195955845} - 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: 114.2962, y: 18.991867} - m_SizeDelta: {x: 78, y: 20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1553059879 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1553059877} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: indicator2 ---- !u!222 &1553059880 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1553059877} - m_CullTransparentMesh: 0 ---- !u!1 &1631148257 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1631148258} - - component: {fileID: 1631148260} - - component: {fileID: 1631148259} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1631148258 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1631148257} - m_LocalRotation: {x: 0, 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: 1779264541} - 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: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1631148259 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1631148257} - m_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: 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 &1631148260 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1631148257} - m_CullTransparentMesh: 0 ---- !u!1 &1653967797 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1653967798} - m_Layer: 0 - m_Name: label - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1653967798 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1653967797} - m_LocalRotation: {x: -0, 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: 987942591} - - {fileID: 2144557631} - - {fileID: 893939017} - - {fileID: 1779264541} - - {fileID: 801736437} - m_Father: {fileID: 2017616964} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 580, y: 300} - m_Pivot: {x: 0, y: 0} ---- !u!1 &1661419643 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1661419644} - m_Layer: 0 - m_Name: title - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1661419644 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1661419643} - m_LocalRotation: {x: -0, 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: 2005580986} - - {fileID: 1376155061} - m_Father: {fileID: 195955845} - 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: 580, y: 300} - m_Pivot: {x: 0.5, y: 1} ---- !u!1 &1695798715 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1695798716} - - component: {fileID: 1695798718} - - component: {fileID: 1695798717} - 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 &1695798716 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1695798715} - m_LocalRotation: {x: 0, 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: 1966843200} - 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: 250, y: -287} - m_SizeDelta: {x: 100, y: 20} - m_Pivot: {x: 1, y: 0.5} ---- !u!114 &1695798717 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1695798715} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: x2 ---- !u!222 &1695798718 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1695798715} - m_CullTransparentMesh: 0 ---- !u!1 &1703825194 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1703825195} - - component: {fileID: 1703825197} - - component: {fileID: 1703825196} - 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 &1703825195 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1703825194} - m_LocalRotation: {x: 0, 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: 1966843200} - 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: 350, y: -287} - m_SizeDelta: {x: 100, y: 20} - m_Pivot: {x: 1, y: 0.5} ---- !u!114 &1703825196 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1703825194} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: x3 ---- !u!222 &1703825197 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1703825194} - m_CullTransparentMesh: 0 ---- !u!1 &1705820915 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1705820916} - - component: {fileID: 1705820918} - - component: {fileID: 1705820917} - m_Layer: 0 - m_Name: datazoomend - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 0 ---- !u!224 &1705820916 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1705820915} - m_LocalRotation: {x: 0, 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: 1862041471} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 200, y: 20} - m_Pivot: {x: 0, y: 0.5} ---- !u!114 &1705820917 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1705820915} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 3 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: Text ---- !u!222 &1705820918 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1705820915} - m_CullTransparentMesh: 0 ---- !u!1 &1709268210 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1709268211} - - component: {fileID: 1709268213} - - component: {fileID: 1709268212} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1709268211 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1709268210} - m_LocalRotation: {x: 0, 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: 2080305486} - 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 &1709268212 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1709268210} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 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 &1709268213 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1709268210} - m_CullTransparentMesh: 0 ---- !u!1 &1726913370 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1726913371} - - component: {fileID: 1726913373} - - component: {fileID: 1726913372} - m_Layer: 0 - m_Name: title - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1726913371 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1726913370} - m_LocalRotation: {x: 0, 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: 529851968} - 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: 580, y: 16} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &1726913372 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1726913370} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 16 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 1 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: LineChart ---- !u!222 &1726913373 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1726913370} - m_CullTransparentMesh: 0 ---- !u!1 &1733908786 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1733908787} - - component: {fileID: 1733908789} - - component: {fileID: 1733908788} - m_Layer: 0 - m_Name: Icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1733908787 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1733908786} - m_LocalRotation: {x: -0, 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: 893939017} - 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 &1733908788 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1733908786} - 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 - m_UseSpriteMesh: 0 ---- !u!222 &1733908789 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1733908786} - m_CullTransparentMesh: 0 ---- !u!1 &1757350245 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1757350246} - - component: {fileID: 1757350248} - - component: {fileID: 1757350247} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1757350246 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1757350245} - m_LocalRotation: {x: 0, 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: 1765852954} - 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 &1757350247 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1757350245} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 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 &1757350248 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1757350245} - m_CullTransparentMesh: 0 ---- !u!1 &1761959001 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1761959002} - - component: {fileID: 1761959004} - - component: {fileID: 1761959003} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1761959002 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1761959001} - m_LocalRotation: {x: 0, 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: 987942591} - 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: 0, y: 0} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1761959003 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1761959001} - m_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: 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 &1761959004 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1761959001} - m_CullTransparentMesh: 0 ---- !u!1 &1765852953 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1765852954} - - component: {fileID: 1765852956} - - component: {fileID: 1765852955} - 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 &1765852954 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1765852953} - m_LocalRotation: {x: -0, 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: 1757350246} - m_Father: {fileID: 1299429999} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 100, y: 50} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &1765852955 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1765852953} - 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 - m_UseSpriteMesh: 0 ---- !u!222 &1765852956 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1765852953} - m_CullTransparentMesh: 0 ---- !u!1 &1779264540 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1779264541} - 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 &1779264541 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1779264540} - m_LocalRotation: {x: 0, 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: 1631148258} - - {fileID: 1979733022} - m_Father: {fileID: 1653967798} - 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: -290, y: -150} - m_SizeDelta: {x: 50, y: 20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &1824536970 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1824536973} - - component: {fileID: 1824536972} - - component: {fileID: 1824536971} - m_Layer: 0 - m_Name: Main Camera - m_TagString: MainCamera - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!81 &1824536971 -AudioListener: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1824536970} - m_Enabled: 1 ---- !u!20 &1824536972 -Camera: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1824536970} - m_Enabled: 1 - serializedVersion: 2 - m_ClearFlags: 1 - m_BackGroundColor: {r: 0.19215687, g: 0.3019608, b: 0.4745098, a: 0} - m_projectionMatrixMode: 1 - m_SensorSize: {x: 36, y: 24} - m_LensShift: {x: 0, y: 0} - m_GateFitMode: 2 - m_FocalLength: 50 - m_NormalizedViewPortRect: - serializedVersion: 2 - x: 0 - y: 0 - width: 1 - height: 1 - near clip plane: 0.3 - far clip plane: 1000 - field of view: 60 - orthographic: 0 - orthographic size: 5 - m_Depth: -1 - m_CullingMask: - serializedVersion: 2 - m_Bits: 4294967295 - m_RenderingPath: -1 - m_TargetTexture: {fileID: 0} - m_TargetDisplay: 0 - m_TargetEye: 3 - m_HDR: 1 - m_AllowMSAA: 1 - m_AllowDynamicResolution: 0 - m_ForceIntoRT: 0 - m_OcclusionCulling: 1 - m_StereoConvergence: 10 - m_StereoSeparation: 0.022 ---- !u!4 &1824536973 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1824536970} - m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} - m_LocalPosition: {x: 0, y: 1, z: -10} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!1 &1829453290 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1829453291} - - component: {fileID: 1829453293} - - component: {fileID: 1829453292} - m_Layer: 0 - m_Name: Text - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1829453291 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1829453290} - m_LocalRotation: {x: 0, 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: 1888272520} - 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 &1829453292 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1829453290} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 1, g: 1, b: 1, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 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 &1829453293 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1829453290} - m_CullTransparentMesh: 0 ---- !u!1 &1862041470 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1862041471} - m_Layer: 0 - m_Name: datazoom - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1862041471 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1862041470} - m_LocalRotation: {x: -0, 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: 858583464} - - {fileID: 1705820916} - m_Father: {fileID: 2017616964} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 580, y: 300} - m_Pivot: {x: 0, y: 0} ---- !u!1 &1888272519 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1888272520} - - component: {fileID: 1888272522} - - component: {fileID: 1888272521} - m_Layer: 0 - m_Name: content - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1888272520 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1888272519} - m_LocalRotation: {x: -0, 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: 1829453291} - m_Father: {fileID: 582596681} - 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: -300} - m_SizeDelta: {x: 100, y: 100} - m_Pivot: {x: 0, y: 1} ---- !u!114 &1888272521 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1888272519} - 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 - m_UseSpriteMesh: 0 ---- !u!222 &1888272522 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1888272519} - m_CullTransparentMesh: 0 ---- !u!1 &1893009639 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1893009640} - - component: {fileID: 1893009642} - - component: {fileID: 1893009641} - 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 &1893009640 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1893009639} - m_LocalRotation: {x: 0, 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: 1302635557} - 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: 350, y: -33} - m_SizeDelta: {x: 100, y: 20} - m_Pivot: {x: 1, y: 0.5} ---- !u!114 &1893009641 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1893009639} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: ---- !u!222 &1893009642 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1893009639} - m_CullTransparentMesh: 0 ---- !u!1 &1919035121 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1919035122} - - component: {fileID: 1919035124} - - component: {fileID: 1919035123} - m_Layer: 0 - m_Name: indicator_0_3 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1919035122 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1919035121} - m_LocalRotation: {x: 0, y: 0, z: -0.29445735, w: 0.95566463} - m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_Children: [] - m_Father: {fileID: 195955845} - m_RootOrder: 6 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: -0.44} - m_AnchorMin: {x: 0.5, y: 0.5} - m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -70.67639, y: -103.99187} - m_SizeDelta: {x: 78, y: 20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!114 &1919035123 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1919035121} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: indicator4 ---- !u!222 &1919035124 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1919035121} - m_CullTransparentMesh: 0 ---- !u!1 &1936699277 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1936699278} - - component: {fileID: 1936699280} - - component: {fileID: 1936699279} - 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 &1936699278 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1936699277} - m_LocalRotation: {x: 0, 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: 484411267} - 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 &1936699279 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1936699277} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 5 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: 67.5 ---- !u!222 &1936699280 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1936699277} - m_CullTransparentMesh: 0 ---- !u!1 &1951652163 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1951652164} - - component: {fileID: 1951652166} - - component: {fileID: 1951652165} - 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 &1951652164 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1951652163} - m_LocalRotation: {x: 0, 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: 1302635557} - 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, y: -33} - m_SizeDelta: {x: 100, y: 20} - m_Pivot: {x: 1, y: 0.5} ---- !u!114 &1951652165 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1951652163} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 4 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: ---- !u!222 &1951652166 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1951652163} - m_CullTransparentMesh: 0 ---- !u!1 &1966843199 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1966843200} - 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 &1966843200 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1966843199} - m_LocalRotation: {x: -0, 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: 827356654} - - {fileID: 1695798716} - - {fileID: 1703825195} - - {fileID: 367212737} - - {fileID: 1079627671} - m_Father: {fileID: 2017616964} - m_RootOrder: 4 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 580, y: 300} - m_Pivot: {x: 0, y: 0} ---- !u!1 &1979733021 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1979733022} - - component: {fileID: 1979733024} - - component: {fileID: 1979733023} - m_Layer: 0 - m_Name: Icon - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &1979733022 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1979733021} - m_LocalRotation: {x: -0, 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: 1779264541} - 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 &1979733023 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1979733021} - 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 - m_UseSpriteMesh: 0 ---- !u!222 &1979733024 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 1979733021} - m_CullTransparentMesh: 0 ---- !u!1 &2005580985 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2005580986} - - component: {fileID: 2005580988} - - component: {fileID: 2005580987} - m_Layer: 0 - m_Name: title - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &2005580986 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2005580985} - m_LocalRotation: {x: 0, 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: 1661419644} - 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: 580, y: 16} - m_Pivot: {x: 0.5, y: 1} ---- !u!114 &2005580987 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2005580985} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 16 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 1 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: RadarChart ---- !u!222 &2005580988 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2005580985} - m_CullTransparentMesh: 0 ---- !u!1 &2009652325 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2009652326} - m_Layer: 0 - m_Name: legend - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &2009652326 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2009652325} - m_LocalRotation: {x: -0, 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: 2017616964} - 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: -30} - m_SizeDelta: {x: 580, y: 300} - m_Pivot: {x: 0.5, y: 1} ---- !u!1 &2009861049 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2009861050} - 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 &2009861050 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2009861049} - m_LocalRotation: {x: 0, 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: 849205413} - - {fileID: 1117089280} - m_Father: {fileID: 1509481686} - 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: -290, y: -150} - m_SizeDelta: {x: 50, y: 20} - m_Pivot: {x: 0.5, y: 0.5} ---- !u!1 &2017616963 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2017616964} - - component: {fileID: 2017616966} - - component: {fileID: 2017616965} - m_Layer: 0 - m_Name: LineChart - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &2017616964 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2017616963} - m_LocalRotation: {x: -0, 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: 529851968} - - {fileID: 2009652326} - - {fileID: 1653967798} - - {fileID: 1862041471} - - {fileID: 1966843200} - - {fileID: 1302635557} - - {fileID: 484411267} - - {fileID: 421275483} - - {fileID: 1299429999} - m_Father: {fileID: 1374268762} - 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: 961, y: 849} - m_SizeDelta: {x: 580, y: 300} - m_Pivot: {x: 0, y: 0} ---- !u!114 &2017616965 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2017616963} - 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: 0 - m_ChartWidth: 580 - m_ChartHeight: 300 - 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: 4293848814 - 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: LineChart - m_TextFontSize: 16 - m_SubText: - m_SubTextFontSize: 14 - 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_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: 60 - m_ItemHeight: 20 - m_ItemGap: 5 - m_ItemFontSize: 16 - m_Formatter: - m_Data: [] - m_Tooltip: - m_JsonData: - m_DataFromJson: 0 - m_Show: 1 - m_Type: 0 - m_Formatter: - m_FixedWidth: 0 - m_FixedHeight: 0 - m_MinWidth: 0 - m_MinHeight: 0 - m_FontSize: 18 - m_FontStyle: 0 - m_ForceENotation: 0 - 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_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_Type: 0 - m_SizeType: 0 - m_Size: 2.5 - m_SelectedSize: 5 - m_DataIndex: 1 - m_DataScale: 1 - m_SelectedDataScale: 1.5 - m_Color: {r: 0, g: 0, b: 0, a: 0} - m_Opacity: 1 - m_StartIndex: 0 - m_Interval: 0 - m_ForceShowLast: 0 - m_SampleDist: 0 - m_SampleType: 1 - m_SampleAverage: 0 - m_LineType: 0 - 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_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_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: 1 - m_BorderWidth: 0.5 - m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} - m_ForceENotation: 0 - m_Animation: - m_JsonData: - m_DataFromJson: 0 - m_Enable: 1 - m_Easting: 0 - m_Duration: 1000 - m_Threshold: 2000 - m_Delay: 0 - m_ActualDuration: 0 - m_CurrDetailProgress: 100 - m_DestDetailProgress: 500 - 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_BorderType: 0 - m_BorderWidth: 0 - m_BorderColor: {r: 0, g: 0, b: 0, a: 0} - m_Opacity: 1 - 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_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: 1 - m_BorderWidth: 0.5 - m_BorderColor: {r: 0.5, g: 0.5, b: 0.5, a: 1} - m_ForceENotation: 0 - m_ItemStyle: - m_JsonData: - m_DataFromJson: 0 - m_Show: 0 - m_Color: {r: 0, g: 0, b: 0, a: 0} - m_BorderType: 0 - m_BorderWidth: 0 - m_BorderColor: {r: 0, g: 0, b: 0, a: 0} - m_Opacity: 1 - m_ShowDataDimension: 1 - m_ShowDataName: 0 - m_ShowDataIcon: 0 - m_Data: - - m_JsonData: - m_DataFromJson: 0 - m_Name: - m_Selected: 0 - m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 0} - m_Data: - - 0 - - 52 - m_CanShowLabel: 1 - - m_JsonData: - m_DataFromJson: 0 - m_Name: - m_Selected: 0 - m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 0} - m_Data: - - 1 - - 51 - m_CanShowLabel: 1 - - m_JsonData: - m_DataFromJson: 0 - m_Name: - m_Selected: 0 - m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 0} - m_Data: - - 2 - - 36 - m_CanShowLabel: 1 - - m_JsonData: - m_DataFromJson: 0 - m_Name: - m_Selected: 0 - m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 0} - m_Data: - - 3 - - 28 - m_CanShowLabel: 1 - - m_JsonData: - m_DataFromJson: 0 - m_Name: - m_Selected: 0 - m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 0} - m_Data: - - 4 - - 82 - m_CanShowLabel: 1 - 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_Large: 1 - 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_ShowSplitLine: 0 - m_SplitLineType: 2 - m_BoundaryGap: 1 - m_MaxCache: 0 - 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: 0 - 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_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_ForceENotation: 0 - 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_ShowSplitLine: 0 - m_SplitLineType: 2 - m_BoundaryGap: 1 - m_MaxCache: 0 - 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: 0 - 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_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_ForceENotation: 0 - 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_ShowSplitLine: 1 - m_SplitLineType: 2 - m_BoundaryGap: 0 - m_MaxCache: 0 - 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: 0 - 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_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_ForceENotation: 0 - 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_ShowSplitLine: 1 - m_SplitLineType: 2 - m_BoundaryGap: 0 - m_MaxCache: 0 - 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: 0 - 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_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_ForceENotation: 0 - 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_ScrollSensitivity: 10 - m_FontSize: 18 - m_FontStyle: 0 - m_VisualMap: - m_JsonData: - m_DataFromJson: 0 - m_Enable: 0 - m_Show: 1 - m_Type: 0 - m_SelectedMode: 0 - m_Min: 0 - m_Max: 100 - 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: 0 - m_HoverLink: 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: [] - m_OutOfRange: [] ---- !u!222 &2017616966 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2017616963} - m_CullTransparentMesh: 0 ---- !u!1 &2080305485 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2080305486} - - component: {fileID: 2080305488} - - component: {fileID: 2080305487} - m_Layer: 0 - m_Name: content - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!224 &2080305486 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2080305485} - m_LocalRotation: {x: -0, 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: 1709268211} - m_Father: {fileID: 1299429999} - 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: -300} - m_SizeDelta: {x: 100, y: 100} - m_Pivot: {x: 0, y: 1} ---- !u!114 &2080305487 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2080305485} - 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 - m_UseSpriteMesh: 0 ---- !u!222 &2080305488 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2080305485} - m_CullTransparentMesh: 0 ---- !u!1 &2090876561 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2090876562} - - component: {fileID: 2090876564} - - component: {fileID: 2090876563} - 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 &2090876562 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2090876561} - m_LocalRotation: {x: 0, 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: 484411267} - 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 &2090876563 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2090876561} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 708705254, guid: f70555f144d8491a825f0804e09c671c, type: 3} - m_Name: - m_EditorClassIdentifier: - m_Material: {fileID: 0} - m_Color: {r: 0.31764707, g: 0.3019608, b: 0.3019608, a: 1} - m_RaycastTarget: 1 - m_OnCullStateChanged: - m_PersistentCalls: - m_Calls: [] - m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, - Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - m_FontData: - m_Font: {fileID: 10102, guid: 0000000000000000e000000000000000, type: 0} - m_FontSize: 18 - m_FontStyle: 0 - m_BestFit: 0 - m_MinSize: 10 - m_MaxSize: 40 - m_Alignment: 5 - m_AlignByGeometry: 0 - m_RichText: 1 - m_HorizontalOverflow: 1 - m_VerticalOverflow: 1 - m_LineSpacing: 1 - m_Text: 0 ---- !u!222 &2090876564 -CanvasRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2090876561} - m_CullTransparentMesh: 0 ---- !u!1 &2144557630 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2144557631} - 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 &2144557631 -RectTransform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 2144557630} - m_LocalRotation: {x: 0, 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: 340891140} - - {fileID: 1409063084} - m_Father: {fileID: 1653967798} - 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: -290, y: -150} - m_SizeDelta: {x: 50, y: 20} - m_Pivot: {x: 0.5, y: 0.5} diff --git a/Assets/XChartsDemo/demo_test.unity.meta b/Assets/XChartsDemo/demo_test.unity.meta deleted file mode 100644 index e04afe36..00000000 --- a/Assets/XChartsDemo/demo_test.unity.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: fdfb9e4f5faa4431d936da787c337fc9 -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/XChartsDemo/demo_xchart.unity b/Assets/XChartsDemo/demo_xchart.unity index 49008cd8..d45a8766 100644 --- a/Assets/XChartsDemo/demo_xchart.unity +++ b/Assets/XChartsDemo/demo_xchart.unity @@ -534,7 +534,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 146, y: -131.54001} - m_SizeDelta: {x: 36, y: 20} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1185844 MonoBehaviour: @@ -2669,7 +2669,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 243749875} - m_RootOrder: 0 + 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} @@ -3241,7 +3241,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1119716364} - m_RootOrder: 1 + 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} @@ -4629,8 +4629,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 269299450} - {fileID: 272533159} + - {fileID: 269299450} m_Father: {fileID: 473592951} m_RootOrder: 70 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -6972,12 +6972,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 120 @@ -6987,12 +6991,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 132 @@ -7002,12 +7010,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 101 @@ -7017,12 +7029,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 134 @@ -7032,12 +7048,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 90 @@ -7047,12 +7067,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 230 @@ -7062,12 +7086,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 210 @@ -7240,12 +7268,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 220 @@ -7255,12 +7287,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 282 @@ -7270,12 +7306,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 201 @@ -7285,12 +7325,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 234 @@ -7300,12 +7344,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 290 @@ -7315,12 +7363,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 430 @@ -7330,12 +7382,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 410 @@ -7508,12 +7564,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 546.12 @@ -7523,12 +7583,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 452 @@ -7538,12 +7602,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 501 @@ -7553,12 +7621,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 554 @@ -7568,12 +7640,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 690 @@ -7583,12 +7659,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 630 @@ -7598,12 +7678,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 610 @@ -7776,12 +7860,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 450 @@ -7791,12 +7879,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 432 @@ -7806,12 +7898,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 401 @@ -7821,12 +7917,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 454 @@ -7836,12 +7936,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 590 @@ -7851,12 +7955,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 530 @@ -7866,12 +7974,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 510 @@ -8940,7 +9052,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -0.000039670147} + m_AnchoredPosition: {x: 0, y: -0.000036569832} m_SizeDelta: {x: 1180, y: 400} m_Pivot: {x: 0, y: 1} --- !u!114 &37761824 @@ -9702,7 +9814,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1395062955} - m_RootOrder: 1 + 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} @@ -13077,12 +13189,12 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 513008813} - m_RootOrder: 0 + 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: 60, y: 20} + m_SizeDelta: {x: 59.810425, y: 19.77251} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &51612973 MonoBehaviour: @@ -13269,8 +13381,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1247376757} - {fileID: 1119499577} + - {fileID: 1247376757} m_Father: {fileID: 473592951} m_RootOrder: 89 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -15391,7 +15503,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 513008813} - m_RootOrder: 1 + 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} @@ -16173,7 +16285,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 840966508} - m_RootOrder: 1 + 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} @@ -16870,7 +16982,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: -24} m_SizeDelta: {x: 584, y: 14} m_Pivot: {x: 0.5, y: 1} --- !u!114 &71281872 @@ -20259,7 +20371,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1842937535} - m_RootOrder: 1 + 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} @@ -20597,7 +20709,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1366633068} - m_RootOrder: 1 + 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} @@ -21188,12 +21300,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 120 @@ -21203,12 +21319,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 200 @@ -21218,12 +21338,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 150 @@ -21233,12 +21357,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 80 @@ -21248,12 +21376,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 70 @@ -21263,12 +21395,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 110 @@ -21278,12 +21414,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 130 @@ -23517,8 +23657,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 2029849200} - {fileID: 1039665619} + - {fileID: 2029849200} m_Father: {fileID: 473592951} m_RootOrder: 43 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -25536,7 +25676,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1750319886} - m_RootOrder: 1 + 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} @@ -28663,12 +28803,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 55 @@ -28684,12 +28828,16 @@ MonoBehaviour: m_Name: "\u4F18" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 25 @@ -28705,12 +28853,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 56 @@ -28726,12 +28878,16 @@ MonoBehaviour: m_Name: "\u4F18" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 33 @@ -28747,12 +28903,16 @@ MonoBehaviour: m_Name: "\u4F18" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 42 @@ -28768,12 +28928,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 82 @@ -28789,12 +28953,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 74 @@ -28810,12 +28978,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 78 @@ -28831,12 +29003,16 @@ MonoBehaviour: m_Name: "\u91CD\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 267 @@ -28852,12 +29028,16 @@ MonoBehaviour: m_Name: "\u4E2D\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 185 @@ -28873,12 +29053,16 @@ MonoBehaviour: m_Name: "\u4F18" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 39 @@ -28893,12 +29077,16 @@ MonoBehaviour: m_Name: "\u4F18" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 41 @@ -28913,12 +29101,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 64 @@ -28933,12 +29125,16 @@ MonoBehaviour: m_Name: "\u8F7B\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 108 @@ -28953,12 +29149,16 @@ MonoBehaviour: m_Name: "\u8F7B\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 108 @@ -28973,12 +29173,16 @@ MonoBehaviour: m_Name: "\u4F18" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 33 @@ -28993,12 +29197,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 94 @@ -29013,12 +29221,16 @@ MonoBehaviour: m_Name: "\u4E2D\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 186 @@ -29033,12 +29245,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 57 @@ -29053,12 +29269,16 @@ MonoBehaviour: m_Name: "\u4F18" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 22 @@ -29073,12 +29293,16 @@ MonoBehaviour: m_Name: "\u4F18" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 39 @@ -29093,12 +29317,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 94 @@ -29113,12 +29341,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 99 @@ -29133,12 +29365,16 @@ MonoBehaviour: m_Name: "\u4F18" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 31 @@ -29153,12 +29389,16 @@ MonoBehaviour: m_Name: "\u4F18" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 42 @@ -29173,12 +29413,16 @@ MonoBehaviour: m_Name: "\u4E2D\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 154 @@ -29193,12 +29437,16 @@ MonoBehaviour: m_Name: "\u91CD\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 234 @@ -29213,12 +29461,16 @@ MonoBehaviour: m_Name: "\u4E2D\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 160 @@ -29233,12 +29485,16 @@ MonoBehaviour: m_Name: "\u8F7B\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 134 @@ -29253,12 +29509,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 52 @@ -29273,12 +29533,16 @@ MonoBehaviour: m_Name: "\u4F18" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 46 @@ -29472,12 +29736,16 @@ MonoBehaviour: m_Name: "\u4F18" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 26 @@ -29493,12 +29761,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 85 @@ -29514,12 +29786,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 78 @@ -29535,12 +29811,16 @@ MonoBehaviour: m_Name: "\u4F18" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 21 @@ -29556,12 +29836,16 @@ MonoBehaviour: m_Name: "\u4F18" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 41 @@ -29577,12 +29861,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 56 @@ -29598,12 +29886,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 64 @@ -29619,12 +29911,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 55 @@ -29640,12 +29936,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 76 @@ -29661,12 +29961,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 91 @@ -29682,12 +29986,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 84 @@ -29702,12 +30010,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 64 @@ -29722,12 +30034,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 70 @@ -29742,12 +30058,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 77 @@ -29762,12 +30082,16 @@ MonoBehaviour: m_Name: "\u8F7B\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 109 @@ -29782,12 +30106,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 73 @@ -29802,12 +30130,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 54 @@ -29822,12 +30154,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 51 @@ -29842,12 +30178,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 91 @@ -29862,12 +30202,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 73 @@ -29882,12 +30226,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 73 @@ -29902,12 +30250,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 84 @@ -29922,12 +30274,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 93 @@ -29942,12 +30298,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 99 @@ -29962,12 +30322,16 @@ MonoBehaviour: m_Name: "\u8F7B\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 146 @@ -29982,12 +30346,16 @@ MonoBehaviour: m_Name: "\u8F7B\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 113 @@ -30002,12 +30370,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 81 @@ -30022,12 +30394,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 56 @@ -30042,12 +30418,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 82 @@ -30062,12 +30442,16 @@ MonoBehaviour: m_Name: "\u8F7B\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 106 @@ -30082,12 +30466,16 @@ MonoBehaviour: m_Name: "\u8F7B\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 118 @@ -30297,12 +30685,16 @@ MonoBehaviour: m_Name: "\u4F18" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 26 @@ -30318,12 +30710,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 85 @@ -30339,12 +30735,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 78 @@ -30360,12 +30760,16 @@ MonoBehaviour: m_Name: "\u4F18" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 21 @@ -30381,12 +30785,16 @@ MonoBehaviour: m_Name: "\u4F18" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 41 @@ -30402,12 +30810,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 56 @@ -30423,12 +30835,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 64 @@ -30444,12 +30860,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 55 @@ -30465,12 +30885,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 76 @@ -30486,12 +30910,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 91 @@ -30507,12 +30935,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 84 @@ -30527,12 +30959,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 64 @@ -30547,12 +30983,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 70 @@ -30567,12 +31007,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 77 @@ -30587,12 +31031,16 @@ MonoBehaviour: m_Name: "\u8F7B\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 109 @@ -30607,12 +31055,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 73 @@ -30627,12 +31079,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 54 @@ -30647,12 +31103,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 51 @@ -30667,12 +31127,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 91 @@ -30687,12 +31151,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 73 @@ -30707,12 +31175,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 73 @@ -30727,12 +31199,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 84 @@ -30747,12 +31223,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 93 @@ -30767,12 +31247,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 99 @@ -30787,12 +31271,16 @@ MonoBehaviour: m_Name: "\u8F7B\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 146 @@ -30807,12 +31295,16 @@ MonoBehaviour: m_Name: "\u8F7B\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 113 @@ -30827,12 +31319,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 81 @@ -30847,12 +31343,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 56 @@ -30867,12 +31367,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 82 @@ -30887,12 +31391,16 @@ MonoBehaviour: m_Name: "\u8F7B\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 106 @@ -30907,12 +31415,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 118 @@ -30934,12 +31446,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 65 @@ -30954,12 +31470,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 83 @@ -30974,12 +31494,16 @@ MonoBehaviour: m_Name: "\u8F7B\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 109 @@ -30994,12 +31518,16 @@ MonoBehaviour: m_Name: "\u8F7B\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 106 @@ -31014,12 +31542,16 @@ MonoBehaviour: m_Name: "\u8F7B\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 109 @@ -31034,12 +31566,16 @@ MonoBehaviour: m_Name: "\u8F7B\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 106 @@ -31054,12 +31590,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 89 @@ -31074,12 +31614,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 53 @@ -31094,12 +31638,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 80 @@ -31114,12 +31662,16 @@ MonoBehaviour: m_Name: "\u8F7B\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 117 @@ -31134,12 +31686,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 99 @@ -31154,12 +31710,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 95 @@ -31174,12 +31734,16 @@ MonoBehaviour: m_Name: "\u8F7B\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 116 @@ -31194,12 +31758,16 @@ MonoBehaviour: m_Name: "\u8F7B\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 108 @@ -31214,12 +31782,16 @@ MonoBehaviour: m_Name: "\u8F7B\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 134 @@ -31234,12 +31806,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 79 @@ -31254,12 +31830,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 71 @@ -31274,12 +31854,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 97 @@ -31294,12 +31878,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 84 @@ -31314,12 +31902,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 87 @@ -31334,12 +31926,16 @@ MonoBehaviour: m_Name: "\u8F7B\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 104 @@ -31354,12 +31950,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 87 @@ -31374,12 +31974,16 @@ MonoBehaviour: m_Name: "\u4E2D\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 168 @@ -31394,12 +31998,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 65 @@ -31414,12 +32022,16 @@ MonoBehaviour: m_Name: "\u4F18" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 39 @@ -31434,12 +32046,16 @@ MonoBehaviour: m_Name: "\u4F18" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 39 @@ -31454,12 +32070,16 @@ MonoBehaviour: m_Name: "\u826F" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 93 @@ -31474,12 +32094,16 @@ MonoBehaviour: m_Name: "\u4E2D\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 188 @@ -31494,12 +32118,16 @@ MonoBehaviour: m_Name: "\u4E2D\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 174 @@ -31514,12 +32142,16 @@ MonoBehaviour: m_Name: "\u4E2D\u5EA6\u6C61\u67D3" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 187 @@ -34810,12 +35442,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 120 @@ -34825,12 +35461,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 132 @@ -34840,12 +35480,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 101 @@ -34855,12 +35499,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 134 @@ -34870,12 +35518,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 90 @@ -34885,12 +35537,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 230 @@ -34900,12 +35556,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 210 @@ -35078,12 +35738,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 220 @@ -35093,12 +35757,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 182 @@ -35108,12 +35776,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 191 @@ -35123,12 +35795,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 234 @@ -35138,12 +35814,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 290 @@ -35153,12 +35833,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 330 @@ -35168,12 +35852,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 310 @@ -35346,12 +36034,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 150 @@ -35361,12 +36053,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 232 @@ -35376,12 +36072,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 201 @@ -35391,12 +36091,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 154 @@ -35406,12 +36110,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 190 @@ -35421,12 +36129,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 330 @@ -35436,12 +36148,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 410 @@ -35614,12 +36330,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 320 @@ -35629,12 +36349,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 332 @@ -35644,12 +36368,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 301 @@ -35659,12 +36387,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 334 @@ -35674,12 +36406,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 390 @@ -35689,12 +36425,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 330 @@ -35704,12 +36444,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 320 @@ -35882,12 +36626,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 820 @@ -35897,12 +36645,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 932 @@ -35912,12 +36664,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 901 @@ -35927,12 +36683,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 934 @@ -35942,12 +36702,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 1290 @@ -35957,12 +36721,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 1330 @@ -35972,12 +36740,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 1320 @@ -37052,8 +37824,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1843882041} - {fileID: 641791058} + - {fileID: 1843882041} m_Father: {fileID: 473592951} m_RootOrder: 72 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -37909,7 +38681,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 888431544} - m_RootOrder: 0 + 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} @@ -38881,7 +39653,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1633069331} - m_RootOrder: 1 + 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} @@ -39659,12 +40431,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 18203 @@ -39674,12 +40450,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 23489 @@ -39689,12 +40469,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 29034 @@ -39704,12 +40488,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 104970 @@ -39719,12 +40507,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 131744 @@ -39734,12 +40526,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 630230 @@ -39912,12 +40708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 19325 @@ -39927,12 +40727,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 23438 @@ -39942,12 +40746,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 31000 @@ -39957,12 +40765,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 121594 @@ -39972,12 +40784,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 134141 @@ -39987,12 +40803,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 681807 @@ -40534,8 +41354,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1695289924} - {fileID: 270841969} + - {fileID: 1695289924} m_Father: {fileID: 473592951} m_RootOrder: 57 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -41229,8 +42049,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1991798509} - {fileID: 1022959330} + - {fileID: 1991798509} m_Father: {fileID: 473592951} m_RootOrder: 77 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -41266,8 +42086,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 802688941} - {fileID: 547601924} + - {fileID: 802688941} m_Father: {fileID: 473592951} m_RootOrder: 67 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -41615,7 +42435,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1362883122} - m_RootOrder: 0 + 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} @@ -42241,12 +43061,12 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1122289577} - m_RootOrder: 0 + 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: 24} + m_SizeDelta: {x: 39.184834, y: 23.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &144864953 MonoBehaviour: @@ -43111,12 +43931,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 120 @@ -43126,12 +43950,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 200 @@ -43141,12 +43969,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - -91 @@ -43156,12 +43988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 80 @@ -43171,12 +44007,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 285.5 @@ -43186,12 +44026,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 110 @@ -43201,12 +44045,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 275.4 @@ -44438,8 +45286,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 726580820} - {fileID: 256643584} + - {fileID: 726580820} m_Father: {fileID: 473592951} m_RootOrder: 84 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -44830,7 +45678,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1350915932} - m_RootOrder: 1 + 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} @@ -46931,12 +47779,12 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1050293135} - m_RootOrder: 0 + 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: 60, y: 20} + m_SizeDelta: {x: 59.810425, y: 19.77251} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &161350630 MonoBehaviour: @@ -49322,7 +50170,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 832351922} - m_RootOrder: 1 + 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} @@ -50313,7 +51161,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 808565888} - m_RootOrder: 1 + 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} @@ -50387,7 +51235,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 653499335} - m_RootOrder: 1 + 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} @@ -50805,8 +51653,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1556436474} - {fileID: 1634496988} + - {fileID: 1556436474} m_Father: {fileID: 473592951} m_RootOrder: 71 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -52612,7 +53460,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1132378098} - m_RootOrder: 0 + 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} @@ -53789,7 +54637,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1122289577} - m_RootOrder: 1 + 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} @@ -54359,7 +55207,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1132378098} - m_RootOrder: 1 + 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} @@ -55782,7 +56630,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1096857384} - m_RootOrder: 1 + 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} @@ -56905,7 +57753,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 888431544} - m_RootOrder: 1 + 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} @@ -60453,7 +61301,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 860141505} - m_RootOrder: 0 + 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} @@ -61254,7 +62102,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 576587771} - m_RootOrder: 1 + 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} @@ -64418,8 +65266,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 131.03632, y: 0} - m_SizeDelta: {x: 34.672688, y: 19.503386} + m_AnchoredPosition: {x: 131.29239, y: 0} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &239771766 MonoBehaviour: @@ -64578,8 +65426,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 254.62091, y: 35.419983} - m_SizeDelta: {x: 36, y: 20} + m_AnchoredPosition: {x: 254.21332, y: 35.419983} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &240114081 MonoBehaviour: @@ -65995,7 +66843,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 694036232} - m_RootOrder: 1 + 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} @@ -66066,8 +66914,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 13861425} - {fileID: 2041279719} + - {fileID: 13861425} m_Father: {fileID: 473592951} m_RootOrder: 13 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -66656,7 +67504,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: -175.2, y: 104.5} - m_SizeDelta: {x: 36, y: 20} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &245728543 MonoBehaviour: @@ -66738,8 +67586,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 122.399994, y: -50.30355} - m_SizeDelta: {x: 28, y: 20} + m_AnchoredPosition: {x: 122.7507, y: -50.30355} + m_SizeDelta: {x: 27.298578, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &245866652 MonoBehaviour: @@ -68421,7 +69269,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1543296642} - m_RootOrder: 0 + 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} @@ -69627,7 +70475,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 151961019} - m_RootOrder: 1 + 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} @@ -71290,12 +72138,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 18203 @@ -71305,12 +72157,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 23489 @@ -71320,12 +72176,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 29034 @@ -71335,12 +72195,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 104970 @@ -71350,12 +72214,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 131744 @@ -71365,12 +72233,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 630230 @@ -71543,12 +72415,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 19325 @@ -71558,12 +72434,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 23438 @@ -71573,12 +72453,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 31000 @@ -71588,12 +72472,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 121594 @@ -71603,12 +72491,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 134141 @@ -71618,12 +72510,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 681807 @@ -72978,7 +73874,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 432869039} - m_RootOrder: 1 + 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} @@ -73845,8 +74741,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -234.50586, y: -101.55554} - m_SizeDelta: {x: 54, y: 20} + m_AnchoredPosition: {x: -233.89449, y: -101.55554} + m_SizeDelta: {x: 52.777252, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &269036022 MonoBehaviour: @@ -73922,7 +74818,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 22878742} - m_RootOrder: 0 + 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} @@ -74317,7 +75213,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 146, y: 97.73999} - m_SizeDelta: {x: 36, y: 20} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &269847832 MonoBehaviour: @@ -74707,7 +75603,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 138292120} - m_RootOrder: 1 + 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} @@ -75332,7 +76228,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 22878742} - m_RootOrder: 1 + 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} @@ -78972,7 +79868,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 175.20001, y: 104.5} - m_SizeDelta: {x: 28, y: 20} + m_SizeDelta: {x: 27.298578, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &286405259 MonoBehaviour: @@ -80110,8 +81006,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1689323090} - {fileID: 1961769763} + - {fileID: 1689323090} m_Father: {fileID: 473592951} m_RootOrder: 34 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -82118,7 +83014,7 @@ RectTransform: 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: -21} + m_AnchoredPosition: {x: 0, y: -21} m_SizeDelta: {x: 584, y: 16} m_Pivot: {x: 0.5, y: 1} --- !u!114 &298969831 @@ -82792,8 +83688,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1951498113} - {fileID: 1524623586} + - {fileID: 1951498113} m_Father: {fileID: 473592951} m_RootOrder: 81 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -85250,7 +86146,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2073446934} - m_RootOrder: 1 + 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} @@ -85798,12 +86694,12 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1003196578} - m_RootOrder: 0 + 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: 24} + m_SizeDelta: {x: 39.184834, y: 23.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &317452494 MonoBehaviour: @@ -87836,8 +88732,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 722489456} - {fileID: 998426441} + - {fileID: 722489456} m_Father: {fileID: 473592951} m_RootOrder: 62 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -89087,7 +89983,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1096466782} - m_RootOrder: 0 + 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} @@ -91622,7 +92518,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 838113696} - m_RootOrder: 0 + 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} @@ -93833,8 +94729,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1476495487} - {fileID: 1795355271} + - {fileID: 1476495487} m_Father: {fileID: 473592951} m_RootOrder: 82 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -94994,7 +95890,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1842937535} - m_RootOrder: 0 + 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} @@ -98913,8 +99809,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 73.282684, y: -111.11105} - m_SizeDelta: {x: 69.345375, y: 19.503386} + m_AnchoredPosition: {x: 73.79483, y: -111.11105} + m_SizeDelta: {x: 70.36967, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &367237728 MonoBehaviour: @@ -99768,7 +100664,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2146965009} - m_RootOrder: 0 + 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} @@ -101051,7 +101947,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1229799098} - m_RootOrder: 1 + 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} @@ -101315,7 +102211,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1251282783} - m_RootOrder: 0 + 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} @@ -104794,7 +105690,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1409867903} - m_RootOrder: 0 + 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} @@ -105142,7 +106038,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 955969909} - m_RootOrder: 1 + 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} @@ -106080,7 +106976,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: -3.6600037} - m_SizeDelta: {x: 36, y: 20} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &401163387 MonoBehaviour: @@ -108105,12 +109001,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 820 @@ -108120,12 +109020,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 1081.1 @@ -108135,12 +109039,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 901 @@ -108150,12 +109058,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 1019.7 @@ -108165,12 +109077,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 492 @@ -108180,12 +109096,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 1511.6 @@ -108195,12 +109115,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 1320 @@ -108373,12 +109297,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 1 @@ -108388,12 +109316,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 3 @@ -108403,12 +109335,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 8 @@ -108418,12 +109354,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 4 @@ -108433,12 +109373,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 3 @@ -108448,12 +109392,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 9 @@ -108463,12 +109411,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 7 @@ -114072,12 +115024,16 @@ MonoBehaviour: m_Name: "\u76F4\u63A5\u8BBF\u95EE" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 335 @@ -114087,12 +115043,16 @@ MonoBehaviour: m_Name: "\u90AE\u4EF6\u8425\u9500" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 310 @@ -114102,12 +115062,16 @@ MonoBehaviour: m_Name: "\u8054\u76DF\u5E7F\u544A" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 234 @@ -114117,12 +115081,16 @@ MonoBehaviour: m_Name: "\u89C6\u9891\u5E7F\u544A" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 135 @@ -114132,12 +115100,16 @@ MonoBehaviour: m_Name: "\u641C\u7D22\u5F15\u64CE" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 1548 @@ -114197,7 +115169,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: -138.29999} - m_SizeDelta: {x: 34.672688, y: 19.503386} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &426876015 MonoBehaviour: @@ -114888,7 +115860,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1777407521} - m_RootOrder: 0 + 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} @@ -115352,8 +116324,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1626579420} - {fileID: 264450737} + - {fileID: 1626579420} m_Father: {fileID: 473592951} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -116552,8 +117524,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1594478827} - {fileID: 1563496582} + - {fileID: 1594478827} m_Father: {fileID: 473592951} m_RootOrder: 18 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -118366,7 +119338,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1714789090} - m_RootOrder: 0 + 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} @@ -119451,12 +120423,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 55 - 9 @@ -119472,12 +120448,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 11 @@ -119493,12 +120473,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 56 - 7 @@ -119514,12 +120498,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 7 @@ -119535,12 +120523,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 42 - 24 @@ -119556,12 +120548,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 82 - 58 @@ -119577,12 +120573,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 74 - 49 @@ -119598,12 +120598,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 78 - 55 @@ -119619,12 +120623,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 267 - 216 @@ -119640,12 +120648,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 185 - 127 @@ -119661,12 +120673,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 19 @@ -119681,12 +120697,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 11 @@ -119701,12 +120721,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 64 - 38 @@ -119721,12 +120745,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 108 - 79 @@ -119741,12 +120769,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 108 - 63 @@ -119761,12 +120793,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 6 @@ -119781,12 +120817,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 94 - 66 @@ -119801,12 +120841,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 186 - 142 @@ -119821,12 +120865,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 57 - 31 @@ -119841,12 +120889,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 8 @@ -119861,12 +120913,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 15 @@ -119881,12 +120937,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 94 - 69 @@ -119901,12 +120961,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 99 - 73 @@ -119921,12 +120985,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 12 @@ -119941,12 +121009,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 42 - 27 @@ -119961,12 +121033,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 154 - 117 @@ -119981,12 +121057,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 234 - 185 @@ -120001,12 +121081,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160 - 120 @@ -120021,12 +121105,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 134 - 96 @@ -120041,12 +121129,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 52 - 24 @@ -120061,12 +121153,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 46 - 5 @@ -120255,12 +121351,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 37 @@ -120276,12 +121376,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 85 - 62 @@ -120297,12 +121401,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 78 - 38 @@ -120318,12 +121426,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 21 @@ -120339,12 +121451,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 42 @@ -120360,12 +121476,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 56 - 52 @@ -120381,12 +121501,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 64 - 30 @@ -120402,12 +121526,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 55 - 48 @@ -120423,12 +121551,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 76 - 85 @@ -120444,12 +121576,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 91 - 81 @@ -120465,12 +121601,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 84 - 39 @@ -120485,12 +121625,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 64 - 51 @@ -120505,12 +121649,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 70 - 69 @@ -120525,12 +121673,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 77 - 105 @@ -120545,12 +121697,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 109 - 68 @@ -120565,12 +121721,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 73 - 68 @@ -120585,12 +121745,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 54 - 27 @@ -120605,12 +121769,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 51 - 61 @@ -120625,12 +121793,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 91 - 71 @@ -120645,12 +121817,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 73 - 102 @@ -120665,12 +121841,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 73 - 50 @@ -120685,12 +121865,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 84 - 94 @@ -120705,12 +121889,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 93 - 77 @@ -120725,12 +121913,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 99 - 130 @@ -120745,12 +121937,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 146 - 84 @@ -120765,12 +121961,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 113 - 108 @@ -120785,12 +121985,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 81 - 48 @@ -120805,12 +122009,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 56 - 48 @@ -120825,12 +122033,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 82 - 92 @@ -120845,12 +122057,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 106 - 116 @@ -120865,12 +122081,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 118 - 50 @@ -121059,12 +122279,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 91 - 45 @@ -121080,12 +122304,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 65 - 27 @@ -121101,12 +122329,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 83 - 60 @@ -121122,12 +122354,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 109 - 81 @@ -121143,12 +122379,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 106 - 77 @@ -121164,12 +122404,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 109 - 81 @@ -121185,12 +122429,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 106 - 77 @@ -121206,12 +122454,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 89 - 65 @@ -121227,12 +122479,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 53 - 33 @@ -121248,12 +122504,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 80 - 55 @@ -121269,12 +122529,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 117 - 81 @@ -121289,12 +122553,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 99 - 71 @@ -121309,12 +122577,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 95 - 69 @@ -121329,12 +122601,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 116 - 87 @@ -121349,12 +122625,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 108 - 80 @@ -121369,12 +122649,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 134 - 83 @@ -121389,12 +122673,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 79 - 43 @@ -121409,12 +122697,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 71 - 46 @@ -121429,12 +122721,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 97 - 71 @@ -121449,12 +122745,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 84 - 57 @@ -121469,12 +122769,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 87 - 63 @@ -121489,12 +122793,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 104 - 77 @@ -121509,12 +122817,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 87 - 62 @@ -121529,12 +122841,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 168 - 128 @@ -121549,12 +122865,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 65 - 45 @@ -121569,12 +122889,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 24 @@ -121589,12 +122913,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 24 @@ -121609,12 +122937,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 93 - 68 @@ -121629,12 +122961,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 188 - 143 @@ -121649,12 +122985,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 174 - 131 @@ -121669,12 +123009,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 187 - 143 @@ -124235,7 +125579,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1037277971} - m_RootOrder: 1 + 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} @@ -125823,7 +127167,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2067623317} - m_RootOrder: 0 + 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} @@ -128032,12 +129376,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 23 @@ -128047,12 +129395,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 81 @@ -128062,12 +129414,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 85 @@ -128077,12 +129433,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 88 @@ -128092,12 +129452,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 52 @@ -128912,7 +130276,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1860695676} - m_RootOrder: 0 + 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} @@ -129706,8 +131070,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1506103503} - {fileID: 2033451848} + - {fileID: 1506103503} m_Father: {fileID: 473592951} m_RootOrder: 87 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -130758,8 +132122,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 2143759969} - {fileID: 1529007983} + - {fileID: 2143759969} m_Father: {fileID: 473592951} m_RootOrder: 76 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -131353,7 +132717,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: -114.64001} - m_SizeDelta: {x: 27, y: 20} + m_SizeDelta: {x: 26.691942, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &484836157 MonoBehaviour: @@ -131702,7 +133066,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2067623317} - m_RootOrder: 1 + 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} @@ -134530,7 +135894,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2008804791} - m_RootOrder: 1 + 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} @@ -134952,7 +136316,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1839790638} - m_RootOrder: 0 + 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} @@ -135834,8 +137198,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 905111505} - {fileID: 701580798} + - {fileID: 905111505} m_Father: {fileID: 473592951} m_RootOrder: 15 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -136725,8 +138089,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 51612972} - {fileID: 63604458} + - {fileID: 51612972} m_Father: {fileID: 1050794689} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -137273,7 +138637,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1548447441} - m_RootOrder: 1 + 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} @@ -137495,7 +138859,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1714789090} - m_RootOrder: 1 + 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} @@ -138003,12 +139367,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 820 @@ -138018,12 +139386,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 1081.1 @@ -138033,12 +139405,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 901 @@ -138048,12 +139424,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 1019.7 @@ -138063,12 +139443,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 492 @@ -138078,12 +139462,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 1511.6 @@ -138093,12 +139481,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 1320 @@ -139549,7 +140941,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 838113696} - m_RootOrder: 1 + 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} @@ -142298,12 +143690,12 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2073446934} - m_RootOrder: 0 + 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: 24} + m_SizeDelta: {x: 39.184834, y: 23.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &531635507 MonoBehaviour: @@ -143077,8 +144469,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 2054511195} - {fileID: 1670293375} + - {fileID: 2054511195} m_Father: {fileID: 473592951} m_RootOrder: 69 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -144893,8 +146285,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -270.8, y: 16.90001} - m_SizeDelta: {x: 36, y: 20} + m_AnchoredPosition: {x: -270.39243, y: 16.90001} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &547193116 MonoBehaviour: @@ -145053,7 +146445,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 140824591} - m_RootOrder: 1 + 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} @@ -147625,7 +149017,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1807111091} - m_RootOrder: 0 + 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} @@ -148208,12 +149600,12 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1817849955} - m_RootOrder: 0 + 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: 60, y: 18} + m_SizeDelta: {x: 59.810425, y: 19.77251} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &559285484 MonoBehaviour: @@ -148528,7 +149920,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 955969909} - m_RootOrder: 0 + 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} @@ -149867,8 +151259,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 977222577} - {fileID: 1935729174} + - {fileID: 977222577} m_Father: {fileID: 473592951} m_RootOrder: 40 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -150023,7 +151415,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2018827222} - m_RootOrder: 1 + 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} @@ -151571,8 +152963,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1800900768} - {fileID: 1040315350} + - {fileID: 1800900768} m_Father: {fileID: 473592951} m_RootOrder: 39 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -153269,12 +154661,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 120 @@ -153284,12 +154680,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 200 @@ -153299,12 +154699,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - -90.97 @@ -153314,12 +154718,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 80 @@ -153329,12 +154737,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 285.5 @@ -153344,12 +154756,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 110 @@ -153359,12 +154775,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 275.4 @@ -154239,12 +155659,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 172.7 - 105.2 @@ -154255,12 +155679,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 153.4 - 42 @@ -154486,12 +155914,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 161.2 - 51.6 @@ -154507,12 +155939,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 167.5 - 59 @@ -154528,12 +155964,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 159.5 - 49.2 @@ -154549,12 +155989,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 157 - 63 @@ -154570,12 +156014,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 155.8 - 53.6 @@ -154591,12 +156039,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 170 - 59 @@ -154612,12 +156064,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 159.1 - 47.6 @@ -154633,12 +156089,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 166 - 69.8 @@ -154654,12 +156114,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 176.2 - 66.8 @@ -154675,12 +156139,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160.2 - 75.2 @@ -154696,12 +156164,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 172.5 - 55.2 @@ -154711,12 +156183,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 170.9 - 54.2 @@ -154726,12 +156202,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 172.9 - 62.5 @@ -154741,12 +156221,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 153.4 - 42 @@ -154756,12 +156240,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160 - 50 @@ -154771,12 +156259,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 147.2 - 49.8 @@ -154786,12 +156278,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 168.2 - 49.2 @@ -154801,12 +156297,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 175 - 73.2 @@ -154816,12 +156316,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 157 - 47.8 @@ -154831,12 +156335,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 167.6 - 68.8 @@ -154846,12 +156354,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 159.5 - 50.6 @@ -154861,12 +156373,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 175 - 82.5 @@ -154876,12 +156392,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 166.8 - 57.2 @@ -154891,12 +156411,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 176.5 - 87.8 @@ -154906,12 +156430,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 170.2 - 72.8 @@ -154921,12 +156449,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 174 - 54.5 @@ -154936,12 +156468,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 173 - 59.8 @@ -154951,12 +156487,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 179.9 - 67.3 @@ -154966,12 +156506,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 170.5 - 67.8 @@ -154981,12 +156525,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160 - 47 @@ -154996,12 +156544,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 154.4 - 46.2 @@ -155011,12 +156563,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162 - 55 @@ -155026,12 +156582,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 176.5 - 83 @@ -155041,12 +156601,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160 - 54.4 @@ -155056,12 +156620,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 152 - 45.8 @@ -155071,12 +156639,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162.1 - 53.6 @@ -155086,12 +156658,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 170 - 73.2 @@ -155101,12 +156677,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160.2 - 52.1 @@ -155116,12 +156696,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 161.3 - 67.9 @@ -155131,12 +156715,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 166.4 - 56.6 @@ -155146,12 +156734,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 168.9 - 62.3 @@ -155161,12 +156753,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 163.8 - 58.5 @@ -155176,12 +156772,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 167.6 - 54.5 @@ -155191,12 +156791,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160 - 50.2 @@ -155206,12 +156810,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 161.3 - 60.3 @@ -155221,12 +156829,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 167.6 - 58.3 @@ -155236,12 +156848,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 165.1 - 56.2 @@ -155251,12 +156867,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160 - 50.2 @@ -155266,12 +156886,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 170 - 72.9 @@ -155281,12 +156905,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 157.5 - 59.8 @@ -155296,12 +156924,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 167.6 - 61 @@ -155311,12 +156943,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160.7 - 69.1 @@ -155326,12 +156962,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 163.2 - 55.9 @@ -155341,12 +156981,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 152.4 - 46.5 @@ -155356,12 +157000,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 157.5 - 54.3 @@ -155371,12 +157019,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 168.3 - 54.8 @@ -155386,12 +157038,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 180.3 - 60.7 @@ -155401,12 +157057,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 165.5 - 60 @@ -155416,12 +157076,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 165 - 62 @@ -155431,12 +157095,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 164.5 - 60.3 @@ -155446,12 +157114,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 156 - 52.7 @@ -155461,12 +157133,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160 - 74.3 @@ -155476,12 +157152,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 163 - 62 @@ -155491,12 +157171,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 165.7 - 73.1 @@ -155506,12 +157190,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 161 - 80 @@ -155521,12 +157209,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162 - 54.7 @@ -155536,12 +157228,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 166 - 53.2 @@ -155551,12 +157247,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 174 - 75.7 @@ -155566,12 +157266,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 172.7 - 61.1 @@ -155581,12 +157285,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 167.6 - 55.7 @@ -155596,12 +157304,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 151.1 - 48.7 @@ -155611,12 +157323,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 164.5 - 52.3 @@ -155626,12 +157342,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 163.5 - 50 @@ -155641,12 +157361,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 152 - 59.3 @@ -155656,12 +157380,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 169 - 62.5 @@ -155671,12 +157399,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 164 - 55.7 @@ -155686,12 +157418,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 161.2 - 54.8 @@ -155701,12 +157437,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 155 - 45.9 @@ -155716,12 +157456,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 170 - 70.6 @@ -155731,12 +157475,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 176.2 - 67.2 @@ -155746,12 +157494,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 170 - 69.4 @@ -155761,12 +157513,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162.5 - 58.2 @@ -155776,12 +157532,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 170.3 - 64.8 @@ -155791,12 +157551,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 164.1 - 71.6 @@ -155806,12 +157570,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 169.5 - 52.8 @@ -155821,12 +157589,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 163.2 - 59.8 @@ -155836,12 +157608,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 154.5 - 49 @@ -155851,12 +157627,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 159.8 - 50 @@ -155866,12 +157646,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 173.2 - 69.2 @@ -155881,12 +157665,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 170 - 55.9 @@ -155896,12 +157684,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 161.4 - 63.4 @@ -155911,12 +157703,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 169 - 58.2 @@ -155926,12 +157722,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 166.2 - 58.6 @@ -155941,12 +157741,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 159.4 - 45.7 @@ -155956,12 +157760,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162.5 - 52.2 @@ -155971,12 +157779,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 159 - 48.6 @@ -155986,12 +157798,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162.8 - 57.8 @@ -156001,12 +157817,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 159 - 55.6 @@ -156016,12 +157836,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 179.8 - 66.8 @@ -156031,12 +157855,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162.9 - 59.4 @@ -156046,12 +157874,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 161 - 53.6 @@ -156061,12 +157893,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 151.1 - 73.2 @@ -156076,12 +157912,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 168.2 - 53.4 @@ -156091,12 +157931,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 168.9 - 69 @@ -156106,12 +157950,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 173.2 - 58.4 @@ -156121,12 +157969,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 171.8 - 56.2 @@ -156136,12 +157988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 178 - 70.6 @@ -156151,12 +158007,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 164.3 - 59.8 @@ -156166,12 +158026,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 163 - 72 @@ -156181,12 +158045,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 168.5 - 65.2 @@ -156196,12 +158064,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 166.8 - 56.6 @@ -156211,12 +158083,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 172.7 - 105.2 @@ -156226,12 +158102,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 163.5 - 51.8 @@ -156241,12 +158121,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 169.4 - 63.4 @@ -156256,12 +158140,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 167.8 - 59 @@ -156271,12 +158159,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 159.5 - 47.6 @@ -156286,12 +158178,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 167.6 - 63 @@ -156301,12 +158197,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 161.2 - 55.2 @@ -156316,12 +158216,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160 - 45 @@ -156331,12 +158235,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 163.2 - 54 @@ -156346,12 +158254,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162.2 - 50.2 @@ -156361,12 +158273,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 161.3 - 60.2 @@ -156376,12 +158292,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 149.5 - 44.8 @@ -156391,12 +158311,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 157.5 - 58.8 @@ -156406,12 +158330,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 163.2 - 56.4 @@ -156421,12 +158349,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 172.7 - 62 @@ -156436,12 +158368,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 155 - 49.2 @@ -156451,12 +158387,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 156.5 - 67.2 @@ -156466,12 +158406,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 164 - 53.8 @@ -156481,12 +158425,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160.9 - 54.4 @@ -156496,12 +158444,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162.8 - 58 @@ -156511,12 +158463,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 167 - 59.8 @@ -156526,12 +158482,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160 - 54.8 @@ -156541,12 +158501,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160 - 43.2 @@ -156556,12 +158520,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 168.9 - 60.5 @@ -156571,12 +158539,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 158.2 - 46.4 @@ -156586,12 +158558,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 156 - 64.4 @@ -156601,12 +158577,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160 - 48.8 @@ -156616,12 +158596,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 167.1 - 62.2 @@ -156631,12 +158615,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 158 - 55.5 @@ -156646,12 +158634,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 167.6 - 57.8 @@ -156661,12 +158653,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 156 - 54.6 @@ -156676,12 +158672,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162.1 - 59.2 @@ -156691,12 +158691,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 173.4 - 52.7 @@ -156706,12 +158710,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 159.8 - 53.2 @@ -156721,12 +158729,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 170.5 - 64.5 @@ -156736,12 +158748,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 159.2 - 51.8 @@ -156751,12 +158767,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 157.5 - 56 @@ -156766,12 +158786,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 161.3 - 63.6 @@ -156781,12 +158805,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162.6 - 63.2 @@ -156796,12 +158824,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160 - 59.5 @@ -156811,12 +158843,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 168.9 - 56.8 @@ -156826,12 +158862,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 165.1 - 64.1 @@ -156841,12 +158881,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162.6 - 50 @@ -156856,12 +158900,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 165.1 - 72.3 @@ -156871,12 +158919,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 166.4 - 55 @@ -156886,12 +158938,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160 - 55.9 @@ -156901,12 +158957,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 152.4 - 60.4 @@ -156916,12 +158976,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 170.2 - 69.1 @@ -156931,12 +158995,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162.6 - 84.5 @@ -156946,12 +159014,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 170.2 - 55.9 @@ -156961,12 +159033,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 158.8 - 55.5 @@ -156976,12 +159052,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 172.7 - 69.5 @@ -156991,12 +159071,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 167.6 - 76.4 @@ -157006,12 +159090,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162.6 - 61.4 @@ -157021,12 +159109,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 167.6 - 65.9 @@ -157036,12 +159128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 156.2 - 58.6 @@ -157051,12 +159147,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 175.2 - 66.8 @@ -157066,12 +159166,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 172.1 - 56.6 @@ -157081,12 +159185,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162.6 - 58.6 @@ -157096,12 +159204,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160 - 55.9 @@ -157111,12 +159223,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 165.1 - 59.1 @@ -157126,12 +159242,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 182.9 - 81.8 @@ -157141,12 +159261,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 166.4 - 70.7 @@ -157156,12 +159280,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 165.1 - 56.8 @@ -157171,12 +159299,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 177.8 - 60 @@ -157186,12 +159318,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 165.1 - 58.2 @@ -157201,12 +159337,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 175.3 - 72.7 @@ -157216,12 +159356,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 154.9 - 54.1 @@ -157231,12 +159375,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 158.8 - 49.1 @@ -157246,12 +159394,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 172.7 - 75.9 @@ -157261,12 +159413,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 168.9 - 55 @@ -157276,12 +159432,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 161.3 - 57.3 @@ -157291,12 +159451,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 167.6 - 55 @@ -157306,12 +159470,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 165.1 - 65.5 @@ -157321,12 +159489,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 175.3 - 65.5 @@ -157336,12 +159508,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 157.5 - 48.6 @@ -157351,12 +159527,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 163.8 - 58.6 @@ -157366,12 +159546,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 167.6 - 63.6 @@ -157381,12 +159565,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 165.1 - 55.2 @@ -157396,12 +159584,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 165.1 - 62.7 @@ -157411,12 +159603,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 168.9 - 56.6 @@ -157426,12 +159622,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162.6 - 53.9 @@ -157441,12 +159641,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 164.5 - 63.2 @@ -157456,12 +159660,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 176.5 - 73.6 @@ -157471,12 +159679,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 168.9 - 62 @@ -157486,12 +159698,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 175.3 - 63.6 @@ -157501,12 +159717,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 159.4 - 53.2 @@ -157516,12 +159736,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160 - 53.4 @@ -157531,12 +159755,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 170.2 - 55 @@ -157546,12 +159774,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162.6 - 70.5 @@ -157561,12 +159793,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 167.6 - 54.5 @@ -157576,12 +159812,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162.6 - 54.5 @@ -157591,12 +159831,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160.7 - 55.9 @@ -157606,12 +159850,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160 - 59 @@ -157621,12 +159869,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 157.5 - 63.6 @@ -157636,12 +159888,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162.6 - 54.5 @@ -157651,12 +159907,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 152.4 - 47.3 @@ -157666,12 +159926,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 170.2 - 67.7 @@ -157681,12 +159945,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 165.1 - 80.9 @@ -157696,12 +159964,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 172.7 - 70.5 @@ -157711,12 +159983,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 165.1 - 60.9 @@ -157726,12 +160002,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 170.2 - 63.6 @@ -157741,12 +160021,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 170.2 - 54.5 @@ -157756,12 +160040,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 170.2 - 59.1 @@ -157771,12 +160059,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 161.3 - 70.5 @@ -157786,12 +160078,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 167.6 - 52.7 @@ -157801,12 +160097,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 167.6 - 62.7 @@ -157816,12 +160116,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 165.1 - 86.3 @@ -157831,12 +160135,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162.6 - 66.4 @@ -157846,12 +160154,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 152.4 - 67.3 @@ -157861,12 +160173,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 168.9 - 63 @@ -157876,12 +160192,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 170.2 - 73.6 @@ -157891,12 +160211,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 175.2 - 62.3 @@ -157906,12 +160230,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 175.2 - 57.7 @@ -157921,12 +160249,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160 - 55.4 @@ -157936,12 +160268,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 165.1 - 104.1 @@ -157951,12 +160287,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 174 - 55.5 @@ -157966,12 +160306,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 170.2 - 77.3 @@ -157981,12 +160325,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160 - 80.5 @@ -157996,12 +160344,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 167.6 - 64.5 @@ -158011,12 +160363,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 167.6 - 72.3 @@ -158026,12 +160382,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 167.6 - 61.4 @@ -158041,12 +160401,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 154.9 - 58.2 @@ -158056,12 +160420,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162.6 - 81.8 @@ -158071,12 +160439,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 175.3 - 63.6 @@ -158086,12 +160458,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 171.4 - 53.4 @@ -158101,12 +160477,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 157.5 - 54.5 @@ -158116,12 +160496,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 165.1 - 53.6 @@ -158131,12 +160515,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160 - 60 @@ -158146,12 +160534,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 174 - 73.6 @@ -158161,12 +160553,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162.6 - 61.4 @@ -158176,12 +160572,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 174 - 55.5 @@ -158191,12 +160591,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162.6 - 63.6 @@ -158206,12 +160610,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 161.3 - 60.9 @@ -158221,12 +160629,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 156.2 - 60 @@ -158236,12 +160648,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 149.9 - 46.8 @@ -158251,12 +160667,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 169.5 - 57.3 @@ -158266,12 +160686,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160 - 64.1 @@ -158281,12 +160705,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 175.3 - 63.6 @@ -158296,12 +160724,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 169.5 - 67.3 @@ -158311,12 +160743,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160 - 75.5 @@ -158326,12 +160762,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 172.7 - 68.2 @@ -158341,12 +160781,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162.6 - 61.4 @@ -158356,12 +160800,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 157.5 - 76.8 @@ -158371,12 +160819,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 176.5 - 71.8 @@ -158386,12 +160838,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 164.4 - 55.5 @@ -158401,12 +160857,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160.7 - 48.6 @@ -158416,12 +160876,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 174 - 66.4 @@ -158431,12 +160895,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 163.8 - 67.3 @@ -158822,7 +161290,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 907726326} - m_RootOrder: 0 + 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} @@ -159014,8 +161482,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1312829396} - {fileID: 227766838} + - {fileID: 1312829396} m_Father: {fileID: 473592951} m_RootOrder: 10 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -159254,8 +161722,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 63.61212, y: -154.03972} - m_SizeDelta: {x: 36, y: 20} + m_AnchoredPosition: {x: 63.20453, y: -154.03972} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &577564336 MonoBehaviour: @@ -159996,8 +162464,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 91.80197, y: -67.28029} - m_SizeDelta: {x: 36, y: 20} + m_AnchoredPosition: {x: 91.39438, y: -67.28029} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &580361154 MonoBehaviour: @@ -161323,8 +163791,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -63.612137, y: -154.03972} - m_SizeDelta: {x: 36, y: 20} + m_AnchoredPosition: {x: -63.20456, y: -154.03972} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &585766402 MonoBehaviour: @@ -161811,12 +164279,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 15.0349045 @@ -161826,12 +164298,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 15.069799 @@ -161841,12 +164317,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 15.1046715 @@ -161856,12 +164336,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 15.139513 @@ -161871,12 +164355,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 15.174312 @@ -161886,12 +164374,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 15.209057 @@ -161901,12 +164393,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 15.243739 @@ -161916,12 +164412,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 15.278346 @@ -161931,12 +164431,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 15.312869 @@ -161946,12 +164450,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 15.347297 @@ -161961,12 +164469,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 15.381618 @@ -161976,12 +164488,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 15.415823 @@ -161991,12 +164507,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 15.449903 @@ -162006,12 +164526,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 15.483844 @@ -162021,12 +164545,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 15.517638 @@ -162036,12 +164564,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 15.551274 @@ -162051,12 +164583,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 15.5847435 @@ -162066,12 +164602,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 15.618034 @@ -162081,12 +164621,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 15.651136 @@ -162096,12 +164640,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 15.68404 @@ -162111,12 +164659,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 15.716736 @@ -162126,12 +164678,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 15.749213 @@ -162141,12 +164697,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 15.781463 @@ -162156,12 +164716,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 15.813474 @@ -162171,12 +164735,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 15.845237 @@ -162186,12 +164754,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 15.876742 @@ -162201,12 +164773,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 15.907981 @@ -162216,12 +164792,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 15.938943 @@ -162231,12 +164811,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 15.969619 @@ -162246,12 +164830,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 16 @@ -162261,12 +164849,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 16.030077 @@ -162276,12 +164868,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 16.05984 @@ -162291,12 +164887,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 16.089277 @@ -162306,12 +164906,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 16.118385 @@ -162321,12 +164925,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 16.147152 @@ -162336,12 +164944,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 16.175571 @@ -162351,12 +164963,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 16.20363 @@ -162366,12 +164982,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 16.231323 @@ -162381,12 +165001,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 16.25864 @@ -162396,12 +165020,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 16.285576 @@ -162411,12 +165039,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 16.312119 @@ -162426,12 +165058,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 16.33826 @@ -162441,12 +165077,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 42 - 16.363997 @@ -162456,12 +165096,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 43 - 16.389317 @@ -162471,12 +165115,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 44 - 16.414213 @@ -162486,12 +165134,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 45 - 16.438679 @@ -162501,12 +165153,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 46 - 16.462708 @@ -162516,12 +165172,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 47 - 16.48629 @@ -162531,12 +165191,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 48 - 16.509418 @@ -162546,12 +165210,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 49 - 16.53209 @@ -162561,12 +165229,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 50 - 16.554293 @@ -162576,12 +165248,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 51 - 16.576021 @@ -162591,12 +165267,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 52 - 16.597271 @@ -162606,12 +165286,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 53 - 16.618034 @@ -162621,12 +165305,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 54 - 16.638304 @@ -162636,12 +165324,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 55 - 16.658075 @@ -162651,12 +165343,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 56 - 16.677341 @@ -162666,12 +165362,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 57 - 16.696096 @@ -162681,12 +165381,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 58 - 16.714334 @@ -162696,12 +165400,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 59 - 16.732052 @@ -162711,12 +165419,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 60 - 16.749239 @@ -162726,12 +165438,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 61 - 16.765896 @@ -162741,12 +165457,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 62 - 16.782013 @@ -162756,12 +165476,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 63 - 16.797588 @@ -162771,12 +165495,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 64 - 16.812616 @@ -162786,12 +165514,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 65 - 16.827091 @@ -162801,12 +165533,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 66 - 16.84101 @@ -162816,12 +165552,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 67 - 16.854368 @@ -162831,12 +165571,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 68 - 16.86716 @@ -162846,12 +165590,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 69 - 16.879385 @@ -162861,12 +165609,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 70 - 16.891037 @@ -162876,12 +165628,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 71 - 16.902113 @@ -162891,12 +165647,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 72 - 16.91261 @@ -162906,12 +165666,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 73 - 16.922523 @@ -162921,12 +165685,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 74 - 16.931852 @@ -162936,12 +165704,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 75 - 16.940592 @@ -162951,12 +165723,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 76 - 16.94874 @@ -162966,12 +165742,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 77 - 16.956295 @@ -162981,12 +165761,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 78 - 16.963255 @@ -162996,12 +165780,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 79 - 16.969616 @@ -163011,12 +165799,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 80 - 16.975376 @@ -163026,12 +165818,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 81 - 16.980536 @@ -163041,12 +165837,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 82 - 16.985092 @@ -163056,12 +165856,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 83 - 16.989044 @@ -163071,12 +165875,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 84 - 16.99239 @@ -163086,12 +165894,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 85 - 16.995129 @@ -163101,12 +165913,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 86 - 16.99726 @@ -163116,12 +165932,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 87 - 16.998781 @@ -163131,12 +165951,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 88 - 16.999695 @@ -163146,12 +165970,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 89 - 17 @@ -163161,12 +165989,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 90 - 16.999695 @@ -163176,12 +166008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 91 - 16.998781 @@ -163191,12 +166027,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 92 - 16.99726 @@ -163206,12 +166046,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 93 - 16.995129 @@ -163221,12 +166065,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 94 - 16.99239 @@ -163236,12 +166084,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 95 - 16.989044 @@ -163251,12 +166103,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 96 - 16.985092 @@ -163266,12 +166122,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 97 - 16.980536 @@ -163281,12 +166141,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 98 - 16.975376 @@ -163296,12 +166160,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 99 - 16.969616 @@ -163311,12 +166179,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 100 - 16.963255 @@ -163326,12 +166198,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 101 - 16.956295 @@ -163341,12 +166217,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 102 - 16.94874 @@ -163356,12 +166236,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 103 - 16.940592 @@ -163371,12 +166255,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 104 - 16.931852 @@ -163386,12 +166274,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 105 - 16.922523 @@ -163401,12 +166293,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 106 - 16.91261 @@ -163416,12 +166312,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 107 - 16.902113 @@ -163431,12 +166331,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 108 - 16.891037 @@ -163446,12 +166350,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 109 - 16.879385 @@ -163461,12 +166369,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 110 - 16.86716 @@ -163476,12 +166388,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 111 - 16.854368 @@ -163491,12 +166407,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 112 - 16.84101 @@ -163506,12 +166426,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 113 - 16.827091 @@ -163521,12 +166445,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 114 - 16.812616 @@ -163536,12 +166464,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 115 - 16.797588 @@ -163551,12 +166483,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 116 - 16.782013 @@ -163566,12 +166502,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 117 - 16.765896 @@ -163581,12 +166521,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 118 - 16.749239 @@ -163596,12 +166540,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 119 - 16.73205 @@ -163611,12 +166559,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 120 - 16.714334 @@ -163626,12 +166578,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 121 - 16.696096 @@ -163641,12 +166597,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 122 - 16.677341 @@ -163656,12 +166616,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 123 - 16.658075 @@ -163671,12 +166635,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 124 - 16.638304 @@ -163686,12 +166654,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 125 - 16.618034 @@ -163701,12 +166673,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 126 - 16.597271 @@ -163716,12 +166692,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 127 - 16.576021 @@ -163731,12 +166711,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 128 - 16.554293 @@ -163746,12 +166730,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 129 - 16.53209 @@ -163761,12 +166749,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 130 - 16.509418 @@ -163776,12 +166768,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 131 - 16.48629 @@ -163791,12 +166787,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 132 - 16.462708 @@ -163806,12 +166806,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 133 - 16.43868 @@ -163821,12 +166825,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 134 - 16.414213 @@ -163836,12 +166844,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 135 - 16.389317 @@ -163851,12 +166863,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 136 - 16.363997 @@ -163866,12 +166882,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 137 - 16.33826 @@ -163881,12 +166901,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 138 - 16.312119 @@ -163896,12 +166920,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 139 - 16.285576 @@ -163911,12 +166939,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 140 - 16.25864 @@ -163926,12 +166958,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 141 - 16.231323 @@ -163941,12 +166977,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 142 - 16.20363 @@ -163956,12 +166996,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 143 - 16.17557 @@ -163971,12 +167015,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 144 - 16.147152 @@ -163986,12 +167034,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 145 - 16.118385 @@ -164001,12 +167053,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 146 - 16.089277 @@ -164016,12 +167072,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 147 - 16.05984 @@ -164031,12 +167091,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 148 - 16.030075 @@ -164046,12 +167110,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 149 - 16 @@ -164061,12 +167129,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 150 - 15.969619 @@ -164076,12 +167148,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 151 - 15.938943 @@ -164091,12 +167167,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 152 - 15.907981 @@ -164106,12 +167186,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 153 - 15.876742 @@ -164121,12 +167205,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 154 - 15.845237 @@ -164136,12 +167224,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 155 - 15.813473 @@ -164151,12 +167243,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 156 - 15.781463 @@ -164166,12 +167262,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 157 - 15.749213 @@ -164181,12 +167281,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 158 - 15.716736 @@ -164196,12 +167300,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 159 - 15.68404 @@ -164211,12 +167319,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 160 - 15.651136 @@ -164226,12 +167338,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 161 - 15.618034 @@ -164241,12 +167357,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 162 - 15.5847435 @@ -164256,12 +167376,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 163 - 15.551274 @@ -164271,12 +167395,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 164 - 15.517638 @@ -164286,12 +167414,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 165 - 15.483844 @@ -164301,12 +167433,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 166 - 15.449903 @@ -164316,12 +167452,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 167 - 15.415823 @@ -164331,12 +167471,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 168 - 15.3816185 @@ -164346,12 +167490,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 169 - 15.347297 @@ -164361,12 +167509,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 170 - 15.312869 @@ -164376,12 +167528,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 171 - 15.278346 @@ -164391,12 +167547,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 172 - 15.243738 @@ -164406,12 +167566,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 173 - 15.209057 @@ -164421,12 +167585,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 174 - 15.174312 @@ -164436,12 +167604,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 175 - 15.139513 @@ -164451,12 +167623,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 176 - 15.104672 @@ -164466,12 +167642,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 177 - 15.069798 @@ -164481,12 +167661,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 178 - 15.0349045 @@ -164496,12 +167680,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 179 - 15 @@ -164511,12 +167699,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 180 - 14.9650955 @@ -164526,12 +167718,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 181 - 14.930202 @@ -164541,12 +167737,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 182 - 14.895328 @@ -164556,12 +167756,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 183 - 14.860487 @@ -164571,12 +167775,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 184 - 14.825688 @@ -164586,12 +167794,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 185 - 14.790943 @@ -164601,12 +167813,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 186 - 14.756262 @@ -164616,12 +167832,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 187 - 14.721654 @@ -164631,12 +167851,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 188 - 14.687131 @@ -164646,12 +167870,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 189 - 14.652703 @@ -164661,12 +167889,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 190 - 14.618382 @@ -164676,12 +167908,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 191 - 14.584176 @@ -164691,12 +167927,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 192 - 14.550097 @@ -164706,12 +167946,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 193 - 14.516156 @@ -164721,12 +167965,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 194 - 14.482362 @@ -164736,12 +167984,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 195 - 14.448726 @@ -164751,12 +168003,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 196 - 14.4152565 @@ -164766,12 +168022,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 197 - 14.381966 @@ -164781,12 +168041,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 198 - 14.348864 @@ -164796,12 +168060,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 199 - 14.31596 @@ -164811,12 +168079,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 200 - 14.283264 @@ -164826,12 +168098,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 201 - 14.250787 @@ -164841,12 +168117,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 202 - 14.218538 @@ -164856,12 +168136,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 203 - 14.186527 @@ -164871,12 +168155,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 204 - 14.154763 @@ -164886,12 +168174,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 205 - 14.123258 @@ -164901,12 +168193,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 206 - 14.092019 @@ -164916,12 +168212,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 207 - 14.061057 @@ -164931,12 +168231,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 208 - 14.03038 @@ -164946,12 +168250,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 209 - 14 @@ -164961,12 +168269,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 210 - 13.969924 @@ -164976,12 +168288,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 211 - 13.940162 @@ -164991,12 +168307,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 212 - 13.910722 @@ -165006,12 +168326,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 213 - 13.881614 @@ -165021,12 +168345,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 214 - 13.852847 @@ -165036,12 +168364,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 215 - 13.8244295 @@ -165051,12 +168383,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 216 - 13.79637 @@ -165066,12 +168402,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 217 - 13.768677 @@ -165081,12 +168421,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 218 - 13.741359 @@ -165096,12 +168440,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 219 - 13.714425 @@ -165111,12 +168459,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 220 - 13.687881 @@ -165126,12 +168478,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 221 - 13.661738 @@ -165141,12 +168497,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 222 - 13.6360035 @@ -165156,12 +168516,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 223 - 13.610683 @@ -165171,12 +168535,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 224 - 13.585787 @@ -165186,12 +168554,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 225 - 13.56132 @@ -165201,12 +168573,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 226 - 13.5372925 @@ -165216,12 +168592,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 227 - 13.51371 @@ -165231,12 +168611,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 228 - 13.490581 @@ -165246,12 +168630,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 229 - 13.467911 @@ -165261,12 +168649,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 230 - 13.445708 @@ -165276,12 +168668,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 231 - 13.423979 @@ -165291,12 +168687,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 232 - 13.402729 @@ -165306,12 +168706,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 233 - 13.381967 @@ -165321,12 +168725,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 234 - 13.361696 @@ -165336,12 +168744,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 235 - 13.341925 @@ -165351,12 +168763,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 236 - 13.322659 @@ -165366,12 +168782,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 237 - 13.303904 @@ -165381,12 +168801,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 238 - 13.2856655 @@ -165396,12 +168820,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 239 - 13.267949 @@ -165411,12 +168839,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 240 - 13.250761 @@ -165426,12 +168858,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 241 - 13.234105 @@ -165441,12 +168877,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 242 - 13.217987 @@ -165456,12 +168896,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 243 - 13.202412 @@ -165471,12 +168915,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 244 - 13.187385 @@ -165486,12 +168934,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 245 - 13.172909 @@ -165501,12 +168953,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 246 - 13.158991 @@ -165516,12 +168972,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 247 - 13.145633 @@ -165531,12 +168991,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 248 - 13.132839 @@ -165546,12 +169010,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 249 - 13.120615 @@ -165561,12 +169029,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 250 - 13.108963 @@ -165576,12 +169048,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 251 - 13.097887 @@ -165591,12 +169067,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 252 - 13.087391 @@ -165606,12 +169086,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 253 - 13.0774765 @@ -165621,12 +169105,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 254 - 13.068149 @@ -165636,12 +169124,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 255 - 13.059408 @@ -165651,12 +169143,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 256 - 13.05126 @@ -165666,12 +169162,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 257 - 13.043705 @@ -165681,12 +169181,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 258 - 13.036745 @@ -165696,12 +169200,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 259 - 13.030384 @@ -165711,12 +169219,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 260 - 13.024624 @@ -165726,12 +169238,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 261 - 13.019464 @@ -165741,12 +169257,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 262 - 13.014908 @@ -165756,12 +169276,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 263 - 13.010956 @@ -165771,12 +169295,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 264 - 13.00761 @@ -165786,12 +169314,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 265 - 13.004872 @@ -165801,12 +169333,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 266 - 13.002741 @@ -165816,12 +169352,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 267 - 13.001219 @@ -165831,12 +169371,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 268 - 13.000304 @@ -165846,12 +169390,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 269 - 13 @@ -165861,12 +169409,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 270 - 13.000304 @@ -165876,12 +169428,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 271 - 13.001219 @@ -165891,12 +169447,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 272 - 13.002741 @@ -165906,12 +169466,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 273 - 13.004872 @@ -165921,12 +169485,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 274 - 13.00761 @@ -165936,12 +169504,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 275 - 13.010956 @@ -165951,12 +169523,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 276 - 13.014908 @@ -165966,12 +169542,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 277 - 13.019464 @@ -165981,12 +169561,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 278 - 13.024624 @@ -165996,12 +169580,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 279 - 13.030384 @@ -166011,12 +169599,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 280 - 13.036745 @@ -166026,12 +169618,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 281 - 13.043705 @@ -166041,12 +169637,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 282 - 13.05126 @@ -166056,12 +169656,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 283 - 13.059408 @@ -166071,12 +169675,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 284 - 13.068149 @@ -166086,12 +169694,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 285 - 13.0774765 @@ -166101,12 +169713,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 286 - 13.08739 @@ -166116,12 +169732,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 287 - 13.097887 @@ -166131,12 +169751,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 288 - 13.108963 @@ -166146,12 +169770,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 289 - 13.120615 @@ -166161,12 +169789,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 290 - 13.132839 @@ -166176,12 +169808,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 291 - 13.145632 @@ -166191,12 +169827,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 292 - 13.158991 @@ -166206,12 +169846,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 293 - 13.172909 @@ -166221,12 +169865,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 294 - 13.187385 @@ -166236,12 +169884,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 295 - 13.202412 @@ -166251,12 +169903,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 296 - 13.217987 @@ -166266,12 +169922,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 297 - 13.234105 @@ -166281,12 +169941,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 298 - 13.250761 @@ -166296,12 +169960,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 299 - 13.267949 @@ -166311,12 +169979,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 300 - 13.2856655 @@ -166326,12 +169998,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 301 - 13.303904 @@ -166341,12 +170017,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 302 - 13.322659 @@ -166356,12 +170036,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 303 - 13.341925 @@ -166371,12 +170055,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 304 - 13.361696 @@ -166386,12 +170074,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 305 - 13.381966 @@ -166401,12 +170093,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 306 - 13.402729 @@ -166416,12 +170112,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 307 - 13.423979 @@ -166431,12 +170131,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 308 - 13.445708 @@ -166446,12 +170150,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 309 - 13.467911 @@ -166461,12 +170169,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 310 - 13.490581 @@ -166476,12 +170188,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 311 - 13.51371 @@ -166491,12 +170207,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 312 - 13.5372925 @@ -166506,12 +170226,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 313 - 13.56132 @@ -166521,12 +170245,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 314 - 13.585786 @@ -166536,12 +170264,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 315 - 13.610683 @@ -166551,12 +170283,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 316 - 13.6360035 @@ -166566,12 +170302,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 317 - 13.661739 @@ -166581,12 +170321,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 318 - 13.687881 @@ -166596,12 +170340,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 319 - 13.714424 @@ -166611,12 +170359,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 320 - 13.741359 @@ -166626,12 +170378,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 321 - 13.768677 @@ -166641,12 +170397,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 322 - 13.79637 @@ -166656,12 +170416,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 323 - 13.8244295 @@ -166671,12 +170435,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 324 - 13.852847 @@ -166686,12 +170454,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 325 - 13.881614 @@ -166701,12 +170473,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 326 - 13.910722 @@ -166716,12 +170492,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 327 - 13.940162 @@ -166731,12 +170511,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 328 - 13.969924 @@ -166746,12 +170530,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 329 - 14 @@ -166761,12 +170549,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 330 - 14.030381 @@ -166776,12 +170568,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 331 - 14.061057 @@ -166791,12 +170587,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 332 - 14.092019 @@ -166806,12 +170606,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 333 - 14.123258 @@ -166821,12 +170625,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 334 - 14.154763 @@ -166836,12 +170644,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 335 - 14.186527 @@ -166851,12 +170663,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 336 - 14.218538 @@ -166866,12 +170682,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 337 - 14.250787 @@ -166881,12 +170701,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 338 - 14.283264 @@ -166896,12 +170720,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 339 - 14.315959 @@ -166911,12 +170739,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 340 - 14.348864 @@ -166926,12 +170758,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 341 - 14.381966 @@ -166941,12 +170777,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 342 - 14.4152565 @@ -166956,12 +170796,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 343 - 14.448725 @@ -166971,12 +170815,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 344 - 14.482362 @@ -166986,12 +170834,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 345 - 14.516156 @@ -167001,12 +170853,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 346 - 14.550098 @@ -167016,12 +170872,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 347 - 14.584176 @@ -167031,12 +170891,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 348 - 14.6183815 @@ -167046,12 +170910,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 349 - 14.652703 @@ -167061,12 +170929,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 350 - 14.687131 @@ -167076,12 +170948,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 351 - 14.721654 @@ -167091,12 +170967,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 352 - 14.756261 @@ -167106,12 +170986,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 353 - 14.790943 @@ -167121,12 +171005,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 354 - 14.825688 @@ -167136,12 +171024,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 355 - 14.860487 @@ -167151,12 +171043,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 356 - 14.8953285 @@ -167166,12 +171062,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 357 - 14.930201 @@ -167181,12 +171081,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 358 - 14.965095 @@ -167196,12 +171100,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 359 - 15 @@ -167211,12 +171119,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 360 - 15.034905 @@ -167226,12 +171138,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 361 - 15.069799 @@ -167241,12 +171157,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 362 - 15.1046715 @@ -167256,12 +171176,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 363 - 15.139512 @@ -167271,12 +171195,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 364 - 15.174312 @@ -167286,12 +171214,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 365 - 15.209057 @@ -167301,12 +171233,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 366 - 15.243738 @@ -167316,12 +171252,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 367 - 15.278346 @@ -167331,12 +171271,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 368 - 15.312868 @@ -167346,12 +171290,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 369 - 15.347297 @@ -167361,12 +171309,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 370 - 15.3816185 @@ -167376,12 +171328,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 371 - 15.415823 @@ -167391,12 +171347,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 372 - 15.449902 @@ -167406,12 +171366,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 373 - 15.483843 @@ -167421,12 +171385,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 374 - 15.517638 @@ -167436,12 +171404,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 375 - 15.551275 @@ -167451,12 +171423,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 376 - 15.5847435 @@ -167466,12 +171442,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 377 - 15.618033 @@ -167481,12 +171461,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 378 - 15.651135 @@ -167496,12 +171480,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 379 - 15.68404 @@ -167511,12 +171499,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 380 - 15.716736 @@ -167526,12 +171518,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 381 - 15.749213 @@ -167541,12 +171537,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 382 - 15.781462 @@ -167556,12 +171556,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 383 - 15.813474 @@ -167571,12 +171575,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 384 - 15.845237 @@ -167586,12 +171594,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 385 - 15.876742 @@ -167601,12 +171613,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 386 - 15.907981 @@ -167616,12 +171632,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 387 - 15.938943 @@ -167631,12 +171651,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 388 - 15.96962 @@ -167646,12 +171670,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 389 - 16 @@ -167661,12 +171689,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 390 - 16.030077 @@ -167676,12 +171708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 391 - 16.059837 @@ -167691,12 +171727,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 392 - 16.089277 @@ -167706,12 +171746,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 393 - 16.118385 @@ -167721,12 +171765,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 394 - 16.147152 @@ -167736,12 +171784,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 395 - 16.175571 @@ -167751,12 +171803,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 396 - 16.20363 @@ -167766,12 +171822,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 397 - 16.231323 @@ -167781,12 +171841,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 398 - 16.25864 @@ -167796,12 +171860,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 399 - 16.285576 @@ -167811,12 +171879,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 400 - 16.312119 @@ -167826,12 +171898,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 401 - 16.33826 @@ -167841,12 +171917,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 402 - 16.363997 @@ -167856,12 +171936,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 403 - 16.389317 @@ -167871,12 +171955,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 404 - 16.414213 @@ -167886,12 +171974,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 405 - 16.438679 @@ -167901,12 +171993,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 406 - 16.462708 @@ -167916,12 +172012,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 407 - 16.48629 @@ -167931,12 +172031,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 408 - 16.509418 @@ -167946,12 +172050,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 409 - 16.53209 @@ -167961,12 +172069,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 410 - 16.554293 @@ -167976,12 +172088,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 411 - 16.576021 @@ -167991,12 +172107,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 412 - 16.597271 @@ -168006,12 +172126,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 413 - 16.618034 @@ -168021,12 +172145,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 414 - 16.638304 @@ -168036,12 +172164,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 415 - 16.658075 @@ -168051,12 +172183,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 416 - 16.677341 @@ -168066,12 +172202,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 417 - 16.696096 @@ -168081,12 +172221,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 418 - 16.714334 @@ -168096,12 +172240,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 419 - 16.73205 @@ -168111,12 +172259,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 420 - 16.749239 @@ -168126,12 +172278,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 421 - 16.765896 @@ -168141,12 +172297,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 422 - 16.782013 @@ -168156,12 +172316,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 423 - 16.797588 @@ -168171,12 +172335,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 424 - 16.812616 @@ -168186,12 +172354,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 425 - 16.827091 @@ -168201,12 +172373,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 426 - 16.84101 @@ -168216,12 +172392,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 427 - 16.854368 @@ -168231,12 +172411,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 428 - 16.86716 @@ -168246,12 +172430,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 429 - 16.879385 @@ -168261,12 +172449,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 430 - 16.891037 @@ -168276,12 +172468,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 431 - 16.902113 @@ -168291,12 +172487,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 432 - 16.91261 @@ -168306,12 +172506,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 433 - 16.922523 @@ -168321,12 +172525,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 434 - 16.931852 @@ -168336,12 +172544,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 435 - 16.940592 @@ -168351,12 +172563,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 436 - 16.94874 @@ -168366,12 +172582,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 437 - 16.956295 @@ -168381,12 +172601,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 438 - 16.963255 @@ -168396,12 +172620,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 439 - 16.969616 @@ -168411,12 +172639,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 440 - 16.975376 @@ -168426,12 +172658,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 441 - 16.980536 @@ -168441,12 +172677,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 442 - 16.985092 @@ -168456,12 +172696,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 443 - 16.989044 @@ -168471,12 +172715,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 444 - 16.99239 @@ -168486,12 +172734,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 445 - 16.995129 @@ -168501,12 +172753,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 446 - 16.99726 @@ -168516,12 +172772,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 447 - 16.998781 @@ -168531,12 +172791,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 448 - 16.999695 @@ -168546,12 +172810,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 449 - 17 @@ -168561,12 +172829,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 450 - 16.999695 @@ -168576,12 +172848,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 451 - 16.998781 @@ -168591,12 +172867,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 452 - 16.99726 @@ -168606,12 +172886,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 453 - 16.995129 @@ -168621,12 +172905,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 454 - 16.99239 @@ -168636,12 +172924,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 455 - 16.989044 @@ -168651,12 +172943,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 456 - 16.985092 @@ -168666,12 +172962,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 457 - 16.980536 @@ -168681,12 +172981,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 458 - 16.975376 @@ -168696,12 +173000,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 459 - 16.969616 @@ -168711,12 +173019,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 460 - 16.963255 @@ -168726,12 +173038,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 461 - 16.956295 @@ -168741,12 +173057,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 462 - 16.94874 @@ -168756,12 +173076,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 463 - 16.940592 @@ -168771,12 +173095,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 464 - 16.931852 @@ -168786,12 +173114,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 465 - 16.922523 @@ -168801,12 +173133,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 466 - 16.91261 @@ -168816,12 +173152,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 467 - 16.902113 @@ -168831,12 +173171,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 468 - 16.891037 @@ -168846,12 +173190,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 469 - 16.879385 @@ -168861,12 +173209,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 470 - 16.86716 @@ -168876,12 +173228,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 471 - 16.854368 @@ -168891,12 +173247,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 472 - 16.84101 @@ -168906,12 +173266,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 473 - 16.827091 @@ -168921,12 +173285,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 474 - 16.812616 @@ -168936,12 +173304,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 475 - 16.797588 @@ -168951,12 +173323,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 476 - 16.782013 @@ -168966,12 +173342,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 477 - 16.765896 @@ -168981,12 +173361,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 478 - 16.749239 @@ -168996,12 +173380,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 479 - 16.73205 @@ -169011,12 +173399,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 480 - 16.714334 @@ -169026,12 +173418,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 481 - 16.696096 @@ -169041,12 +173437,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 482 - 16.677341 @@ -169056,12 +173456,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 483 - 16.658075 @@ -169071,12 +173475,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 484 - 16.638304 @@ -169086,12 +173494,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 485 - 16.618034 @@ -169101,12 +173513,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 486 - 16.597271 @@ -169116,12 +173532,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 487 - 16.576021 @@ -169131,12 +173551,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 488 - 16.55429 @@ -169146,12 +173570,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 489 - 16.53209 @@ -169161,12 +173589,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 490 - 16.509418 @@ -169176,12 +173608,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 491 - 16.48629 @@ -169191,12 +173627,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 492 - 16.462708 @@ -169206,12 +173646,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 493 - 16.43868 @@ -169221,12 +173665,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 494 - 16.414213 @@ -169236,12 +173684,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 495 - 16.389317 @@ -169251,12 +173703,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 496 - 16.363998 @@ -169266,12 +173722,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 497 - 16.33826 @@ -169281,12 +173741,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 498 - 16.312119 @@ -169296,12 +173760,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 499 - 16.285576 @@ -169311,12 +173779,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 500 - 16.25864 @@ -169326,12 +173798,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 501 - 16.231323 @@ -169341,12 +173817,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 502 - 16.20363 @@ -169356,12 +173836,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 503 - 16.175571 @@ -169371,12 +173855,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 504 - 16.147154 @@ -169386,12 +173874,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 505 - 16.118387 @@ -169401,12 +173893,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 506 - 16.08928 @@ -169416,12 +173912,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 507 - 16.059837 @@ -169431,12 +173931,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 508 - 16.030075 @@ -169446,12 +173950,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 509 - 16 @@ -169461,12 +173969,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 510 - 15.969619 @@ -169476,12 +173988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 511 - 15.938943 @@ -169491,12 +174007,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 512 - 15.907981 @@ -169506,12 +174026,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 513 - 15.876742 @@ -169521,12 +174045,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 514 - 15.845237 @@ -169536,12 +174064,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 515 - 15.813474 @@ -169551,12 +174083,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 516 - 15.781462 @@ -169566,12 +174102,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 517 - 15.749212 @@ -169581,12 +174121,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 518 - 15.716736 @@ -169596,12 +174140,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 519 - 15.68404 @@ -169611,12 +174159,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 520 - 15.651136 @@ -169626,12 +174178,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 521 - 15.618034 @@ -169641,12 +174197,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 522 - 15.5847435 @@ -169656,12 +174216,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 523 - 15.551275 @@ -169671,12 +174235,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 524 - 15.517639 @@ -169686,12 +174254,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 525 - 15.483845 @@ -169701,12 +174273,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 526 - 15.449902 @@ -169716,12 +174292,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 527 - 15.415823 @@ -169731,12 +174311,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 528 - 15.381618 @@ -169746,12 +174330,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 529 - 15.347296 @@ -169761,12 +174349,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 530 - 15.312869 @@ -169776,12 +174368,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 531 - 15.278346 @@ -169791,12 +174387,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 532 - 15.243739 @@ -169806,12 +174406,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 533 - 15.209058 @@ -169821,12 +174425,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 534 - 15.174313 @@ -169836,12 +174444,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 535 - 15.139514 @@ -169851,12 +174463,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 536 - 15.1046715 @@ -169866,12 +174482,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 537 - 15.069798 @@ -169881,12 +174501,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 538 - 15.0349045 @@ -169896,12 +174520,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 539 - 15 @@ -169911,12 +174539,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 540 - 14.9650955 @@ -169926,12 +174558,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 541 - 14.930202 @@ -169941,12 +174577,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 542 - 14.8953285 @@ -169956,12 +174596,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 543 - 14.860488 @@ -169971,12 +174615,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 544 - 14.825689 @@ -169986,12 +174634,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 545 - 14.790942 @@ -170001,12 +174653,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 546 - 14.756261 @@ -170016,12 +174672,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 547 - 14.721653 @@ -170031,12 +174691,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 548 - 14.687131 @@ -170046,12 +174710,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 549 - 14.652703 @@ -170061,12 +174729,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 550 - 14.618382 @@ -170076,12 +174748,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 551 - 14.584177 @@ -170091,12 +174767,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 552 - 14.550098 @@ -170106,12 +174786,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 553 - 14.516157 @@ -170121,12 +174805,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 554 - 14.482363 @@ -170136,12 +174824,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 555 - 14.448725 @@ -170151,12 +174843,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 556 - 14.4152565 @@ -170166,12 +174862,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 557 - 14.381966 @@ -170181,12 +174881,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 558 - 14.348864 @@ -170196,12 +174900,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 559 - 14.31596 @@ -170211,12 +174919,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 560 - 14.283264 @@ -170226,12 +174938,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 561 - 14.250788 @@ -170241,12 +174957,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 562 - 14.218538 @@ -170256,12 +174976,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 563 - 14.186527 @@ -170271,12 +174995,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 564 - 14.154764 @@ -170286,12 +175014,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 565 - 14.123257 @@ -170301,12 +175033,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 566 - 14.092018 @@ -170316,12 +175052,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 567 - 14.061057 @@ -170331,12 +175071,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 568 - 14.03038 @@ -170346,12 +175090,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 569 - 14 @@ -170361,12 +175109,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 570 - 13.969924 @@ -170376,12 +175128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 571 - 13.940162 @@ -170391,12 +175147,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 572 - 13.910723 @@ -170406,12 +175166,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 573 - 13.881615 @@ -170421,12 +175185,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 574 - 13.852846 @@ -170436,12 +175204,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 575 - 13.824429 @@ -170451,12 +175223,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 576 - 13.79637 @@ -170466,12 +175242,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 577 - 13.768677 @@ -170481,12 +175261,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 578 - 13.74136 @@ -170496,12 +175280,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 579 - 13.714425 @@ -170511,12 +175299,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 580 - 13.687882 @@ -170526,12 +175318,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 581 - 13.661739 @@ -170541,12 +175337,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 582 - 13.6360035 @@ -170556,12 +175356,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 583 - 13.610684 @@ -170571,12 +175375,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 584 - 13.585786 @@ -170586,12 +175394,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 585 - 13.56132 @@ -170601,12 +175413,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 586 - 13.5372925 @@ -170616,12 +175432,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 587 - 13.51371 @@ -170631,12 +175451,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 588 - 13.490581 @@ -170646,12 +175470,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 589 - 13.467912 @@ -170661,12 +175489,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 590 - 13.445708 @@ -170676,12 +175508,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 591 - 13.423979 @@ -170691,12 +175527,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 592 - 13.402729 @@ -170706,12 +175546,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 593 - 13.381967 @@ -170721,12 +175565,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 594 - 13.361695 @@ -170736,12 +175584,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 595 - 13.341925 @@ -170751,12 +175603,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 596 - 13.322659 @@ -170766,12 +175622,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 597 - 13.303904 @@ -170781,12 +175641,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 598 - 13.2856655 @@ -170796,12 +175660,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 599 - 13.267949 @@ -170811,12 +175679,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 600 - 13.250761 @@ -170826,12 +175698,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 601 - 13.234105 @@ -170841,12 +175717,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 602 - 13.217987 @@ -170856,12 +175736,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 603 - 13.202412 @@ -170871,12 +175755,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 604 - 13.187385 @@ -170886,12 +175774,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 605 - 13.172909 @@ -170901,12 +175793,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 606 - 13.15899 @@ -170916,12 +175812,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 607 - 13.145632 @@ -170931,12 +175831,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 608 - 13.132839 @@ -170946,12 +175850,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 609 - 13.120615 @@ -170961,12 +175869,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 610 - 13.108963 @@ -170976,12 +175888,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 611 - 13.097887 @@ -170991,12 +175907,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 612 - 13.087391 @@ -171006,12 +175926,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 613 - 13.0774765 @@ -171021,12 +175945,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 614 - 13.068149 @@ -171036,12 +175964,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 615 - 13.059408 @@ -171051,12 +175983,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 616 - 13.05126 @@ -171066,12 +176002,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 617 - 13.043705 @@ -171081,12 +176021,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 618 - 13.036746 @@ -171096,12 +176040,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 619 - 13.030384 @@ -171111,12 +176059,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 620 - 13.024624 @@ -171126,12 +176078,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 621 - 13.0194645 @@ -171141,12 +176097,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 622 - 13.014908 @@ -171156,12 +176116,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 623 - 13.010956 @@ -171171,12 +176135,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 624 - 13.00761 @@ -171186,12 +176154,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 625 - 13.004871 @@ -171201,12 +176173,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 626 - 13.002741 @@ -171216,12 +176192,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 627 - 13.001219 @@ -171231,12 +176211,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 628 - 13.000304 @@ -171246,12 +176230,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 629 - 13 @@ -171261,12 +176249,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 630 - 13.000304 @@ -171276,12 +176268,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 631 - 13.001219 @@ -171291,12 +176287,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 632 - 13.002741 @@ -171306,12 +176306,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 633 - 13.004872 @@ -171321,12 +176325,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 634 - 13.00761 @@ -171336,12 +176344,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 635 - 13.010956 @@ -171351,12 +176363,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 636 - 13.014908 @@ -171366,12 +176382,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 637 - 13.019464 @@ -171381,12 +176401,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 638 - 13.024623 @@ -171396,12 +176420,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 639 - 13.030384 @@ -171411,12 +176439,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 640 - 13.036745 @@ -171426,12 +176458,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 641 - 13.043705 @@ -171441,12 +176477,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 642 - 13.05126 @@ -171456,12 +176496,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 643 - 13.059408 @@ -171471,12 +176515,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 644 - 13.068149 @@ -171486,12 +176534,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 645 - 13.0774765 @@ -171501,12 +176553,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 646 - 13.087391 @@ -171516,12 +176572,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 647 - 13.097887 @@ -171531,12 +176591,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 648 - 13.108963 @@ -171546,12 +176610,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 649 - 13.120615 @@ -171561,12 +176629,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 650 - 13.132839 @@ -171576,12 +176648,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 651 - 13.145632 @@ -171591,12 +176667,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 652 - 13.158991 @@ -171606,12 +176686,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 653 - 13.172909 @@ -171621,12 +176705,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 654 - 13.187385 @@ -171636,12 +176724,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 655 - 13.202412 @@ -171651,12 +176743,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 656 - 13.217987 @@ -171666,12 +176762,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 657 - 13.234104 @@ -171681,12 +176781,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 658 - 13.25076 @@ -171696,12 +176800,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 659 - 13.267949 @@ -171711,12 +176819,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 660 - 13.285665 @@ -171726,12 +176838,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 661 - 13.303905 @@ -171741,12 +176857,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 662 - 13.3226595 @@ -171756,12 +176876,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 663 - 13.341925 @@ -171771,12 +176895,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 664 - 13.361696 @@ -171786,12 +176914,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 665 - 13.381966 @@ -171801,12 +176933,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 666 - 13.402729 @@ -171816,12 +176952,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 667 - 13.423978 @@ -171831,12 +176971,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 668 - 13.445707 @@ -171846,12 +176990,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 669 - 13.467911 @@ -171861,12 +177009,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 670 - 13.490581 @@ -171876,12 +177028,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 671 - 13.513711 @@ -171891,12 +177047,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 672 - 13.5372925 @@ -171906,12 +177066,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 673 - 13.56132 @@ -171921,12 +177085,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 674 - 13.585787 @@ -171936,12 +177104,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 675 - 13.610683 @@ -171951,12 +177123,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 676 - 13.6360035 @@ -171966,12 +177142,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 677 - 13.661738 @@ -171981,12 +177161,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 678 - 13.687881 @@ -171996,12 +177180,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 679 - 13.714424 @@ -172011,12 +177199,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 680 - 13.741359 @@ -172026,12 +177218,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 681 - 13.768678 @@ -172041,12 +177237,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 682 - 13.7963705 @@ -172056,12 +177256,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 683 - 13.8244295 @@ -172071,12 +177275,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 684 - 13.852847 @@ -172086,12 +177294,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 685 - 13.881614 @@ -172101,12 +177313,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 686 - 13.910722 @@ -172116,12 +177332,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 687 - 13.940161 @@ -172131,12 +177351,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 688 - 13.969923 @@ -172146,12 +177370,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 689 - 13.999999 @@ -172161,12 +177389,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 690 - 14.030381 @@ -172176,12 +177408,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 691 - 14.061057 @@ -172191,12 +177427,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 692 - 14.092019 @@ -172206,12 +177446,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 693 - 14.123258 @@ -172221,12 +177465,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 694 - 14.154763 @@ -172236,12 +177484,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 695 - 14.186526 @@ -172251,12 +177503,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 696 - 14.218537 @@ -172266,12 +177522,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 697 - 14.250786 @@ -172281,12 +177541,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 698 - 14.283263 @@ -172296,12 +177560,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 699 - 14.315959 @@ -172311,12 +177579,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 700 - 14.348865 @@ -172326,12 +177598,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 701 - 14.381967 @@ -172341,12 +177617,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 702 - 14.4152565 @@ -172356,12 +177636,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 703 - 14.448726 @@ -172371,12 +177655,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 704 - 14.482362 @@ -172386,12 +177674,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 705 - 14.516156 @@ -172401,12 +177693,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 706 - 14.550097 @@ -172416,12 +177712,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 707 - 14.584176 @@ -172431,12 +177731,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 708 - 14.6183815 @@ -172446,12 +177750,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 709 - 14.652702 @@ -172461,12 +177769,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 710 - 14.687132 @@ -172476,12 +177788,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 711 - 14.721654 @@ -172491,12 +177807,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 712 - 14.756262 @@ -172506,12 +177826,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 713 - 14.790943 @@ -172521,12 +177845,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 714 - 14.825688 @@ -172536,12 +177864,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 715 - 14.860487 @@ -172551,12 +177883,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 716 - 14.895328 @@ -172566,12 +177902,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 717 - 14.930201 @@ -172581,12 +177921,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 718 - 14.965095 @@ -172596,12 +177940,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 719 - 15.000001 @@ -172611,12 +177959,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 720 - 15.034905 @@ -172626,12 +177978,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 721 - 15.069799 @@ -172641,12 +177997,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 722 - 15.104672 @@ -172656,12 +178016,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 723 - 15.139513 @@ -172671,12 +178035,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 724 - 15.174312 @@ -172686,12 +178054,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 725 - 15.209057 @@ -172701,12 +178073,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 726 - 15.243738 @@ -172716,12 +178092,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 727 - 15.278345 @@ -172731,12 +178111,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 728 - 15.312868 @@ -172746,12 +178130,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 729 - 15.347297 @@ -172761,12 +178149,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 730 - 15.3816185 @@ -172776,12 +178168,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 731 - 15.415824 @@ -172791,12 +178187,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 732 - 15.449903 @@ -172806,12 +178206,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 733 - 15.483844 @@ -172821,12 +178225,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 734 - 15.517637 @@ -172836,12 +178244,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 735 - 15.551274 @@ -172851,12 +178263,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 736 - 15.584743 @@ -172866,12 +178282,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 737 - 15.618033 @@ -172881,12 +178301,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 738 - 15.651135 @@ -172896,12 +178320,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 739 - 15.684041 @@ -172911,12 +178339,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 740 - 15.716736 @@ -172926,12 +178358,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 741 - 15.749213 @@ -172941,12 +178377,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 742 - 15.781463 @@ -172956,12 +178396,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 743 - 15.813473 @@ -172971,12 +178415,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 744 - 15.845236 @@ -172986,12 +178434,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 745 - 15.876741 @@ -173001,12 +178453,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 746 - 15.90798 @@ -173016,12 +178472,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 747 - 15.938942 @@ -173031,12 +178491,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 748 - 15.96962 @@ -173046,12 +178510,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 749 - 16 @@ -173061,12 +178529,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 750 - 16.030077 @@ -173076,12 +178548,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 751 - 16.05984 @@ -173091,12 +178567,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 752 - 16.089277 @@ -173106,12 +178586,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 753 - 16.118385 @@ -173121,12 +178605,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 754 - 16.147152 @@ -173136,12 +178624,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 755 - 16.17557 @@ -173151,12 +178643,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 756 - 16.203629 @@ -173166,12 +178662,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 757 - 16.231321 @@ -173181,12 +178681,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 758 - 16.25864 @@ -173196,12 +178700,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 759 - 16.285576 @@ -173211,12 +178719,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 760 - 16.312119 @@ -173226,12 +178738,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 761 - 16.33826 @@ -173241,12 +178757,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 762 - 16.363997 @@ -173256,12 +178776,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 763 - 16.389317 @@ -173271,12 +178795,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 764 - 16.414213 @@ -173286,12 +178814,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 765 - 16.438679 @@ -173301,12 +178833,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 766 - 16.462708 @@ -173316,12 +178852,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 767 - 16.48629 @@ -173331,12 +178871,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 768 - 16.50942 @@ -173346,12 +178890,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 769 - 16.53209 @@ -173361,12 +178909,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 770 - 16.554293 @@ -173376,12 +178928,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 771 - 16.576021 @@ -173391,12 +178947,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 772 - 16.597271 @@ -173406,12 +178966,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 773 - 16.618034 @@ -173421,12 +178985,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 774 - 16.638304 @@ -173436,12 +179004,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 775 - 16.658075 @@ -173451,12 +179023,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 776 - 16.677341 @@ -173466,12 +179042,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 777 - 16.696096 @@ -173481,12 +179061,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 778 - 16.714334 @@ -173496,12 +179080,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 779 - 16.732052 @@ -173511,12 +179099,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 780 - 16.749239 @@ -173526,12 +179118,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 781 - 16.765896 @@ -173541,12 +179137,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 782 - 16.782013 @@ -173556,12 +179156,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 783 - 16.797588 @@ -173571,12 +179175,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 784 - 16.812614 @@ -173586,12 +179194,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 785 - 16.827091 @@ -173601,12 +179213,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 786 - 16.84101 @@ -173616,12 +179232,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 787 - 16.854368 @@ -173631,12 +179251,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 788 - 16.86716 @@ -173646,12 +179270,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 789 - 16.879385 @@ -173661,12 +179289,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 790 - 16.891037 @@ -173676,12 +179308,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 791 - 16.902113 @@ -173691,12 +179327,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 792 - 16.91261 @@ -173706,12 +179346,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 793 - 16.922523 @@ -173721,12 +179365,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 794 - 16.931852 @@ -173736,12 +179384,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 795 - 16.940592 @@ -173751,12 +179403,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 796 - 16.94874 @@ -173766,12 +179422,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 797 - 16.956295 @@ -173781,12 +179441,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 798 - 16.963255 @@ -173796,12 +179460,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 799 - 16.969616 @@ -173811,12 +179479,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 800 - 16.975376 @@ -173826,12 +179498,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 801 - 16.980536 @@ -173841,12 +179517,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 802 - 16.985092 @@ -173856,12 +179536,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 803 - 16.989044 @@ -173871,12 +179555,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 804 - 16.99239 @@ -173886,12 +179574,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 805 - 16.995129 @@ -173901,12 +179593,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 806 - 16.99726 @@ -173916,12 +179612,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 807 - 16.998781 @@ -173931,12 +179631,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 808 - 16.999695 @@ -173946,12 +179650,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 809 - 17 @@ -173961,12 +179669,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 810 - 16.999695 @@ -173976,12 +179688,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 811 - 16.998781 @@ -173991,12 +179707,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 812 - 16.99726 @@ -174006,12 +179726,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 813 - 16.995129 @@ -174021,12 +179745,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 814 - 16.99239 @@ -174036,12 +179764,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 815 - 16.989044 @@ -174051,12 +179783,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 816 - 16.985092 @@ -174066,12 +179802,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 817 - 16.980536 @@ -174081,12 +179821,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 818 - 16.975376 @@ -174096,12 +179840,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 819 - 16.969616 @@ -174111,12 +179859,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 820 - 16.963255 @@ -174126,12 +179878,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 821 - 16.956295 @@ -174141,12 +179897,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 822 - 16.94874 @@ -174156,12 +179916,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 823 - 16.940592 @@ -174171,12 +179935,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 824 - 16.931852 @@ -174186,12 +179954,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 825 - 16.922523 @@ -174201,12 +179973,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 826 - 16.91261 @@ -174216,12 +179992,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 827 - 16.902113 @@ -174231,12 +180011,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 828 - 16.891037 @@ -174246,12 +180030,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 829 - 16.879385 @@ -174261,12 +180049,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 830 - 16.86716 @@ -174276,12 +180068,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 831 - 16.854368 @@ -174291,12 +180087,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 832 - 16.84101 @@ -174306,12 +180106,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 833 - 16.827091 @@ -174321,12 +180125,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 834 - 16.812616 @@ -174336,12 +180144,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 835 - 16.797588 @@ -174351,12 +180163,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 836 - 16.782013 @@ -174366,12 +180182,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 837 - 16.765896 @@ -174381,12 +180201,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 838 - 16.749239 @@ -174396,12 +180220,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 839 - 16.732052 @@ -174411,12 +180239,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 840 - 16.714334 @@ -174426,12 +180258,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 841 - 16.696096 @@ -174441,12 +180277,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 842 - 16.677341 @@ -174456,12 +180296,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 843 - 16.658075 @@ -174471,12 +180315,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 844 - 16.638306 @@ -174486,12 +180334,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 845 - 16.618034 @@ -174501,12 +180353,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 846 - 16.597271 @@ -174516,12 +180372,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 847 - 16.576021 @@ -174531,12 +180391,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 848 - 16.554293 @@ -174546,12 +180410,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 849 - 16.53209 @@ -174561,12 +180429,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 850 - 16.509418 @@ -174576,12 +180448,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 851 - 16.48629 @@ -174591,12 +180467,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 852 - 16.462708 @@ -174606,12 +180486,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 853 - 16.43868 @@ -174621,12 +180505,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 854 - 16.414213 @@ -174636,12 +180524,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 855 - 16.389317 @@ -174651,12 +180543,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 856 - 16.363997 @@ -174666,12 +180562,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 857 - 16.33826 @@ -174681,12 +180581,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 858 - 16.312119 @@ -174696,12 +180600,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 859 - 16.285576 @@ -174711,12 +180619,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 860 - 16.25864 @@ -174726,12 +180638,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 861 - 16.231323 @@ -174741,12 +180657,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 862 - 16.20363 @@ -174756,12 +180676,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 863 - 16.175571 @@ -174771,12 +180695,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 864 - 16.147152 @@ -174786,12 +180714,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 865 - 16.118385 @@ -174801,12 +180733,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 866 - 16.089277 @@ -174816,12 +180752,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 867 - 16.05984 @@ -174831,12 +180771,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 868 - 16.030077 @@ -174846,12 +180790,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 869 - 16 @@ -174861,12 +180809,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 870 - 15.96962 @@ -174876,12 +180828,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 871 - 15.938944 @@ -174891,12 +180847,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 872 - 15.907982 @@ -174906,12 +180866,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 873 - 15.876743 @@ -174921,12 +180885,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 874 - 15.845236 @@ -174936,12 +180904,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 875 - 15.813473 @@ -174951,12 +180923,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 876 - 15.781462 @@ -174966,12 +180942,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 877 - 15.749213 @@ -174981,12 +180961,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 878 - 15.716736 @@ -174996,12 +180980,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 879 - 15.684041 @@ -175011,12 +180999,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 880 - 15.651136 @@ -175026,12 +181018,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 881 - 15.618034 @@ -175041,12 +181037,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 882 - 15.584744 @@ -175056,12 +181056,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 883 - 15.551274 @@ -175071,12 +181075,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 884 - 15.517637 @@ -175086,12 +181094,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 885 - 15.483844 @@ -175101,12 +181113,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 886 - 15.449902 @@ -175116,12 +181132,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 887 - 15.415823 @@ -175131,12 +181151,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 888 - 15.3816185 @@ -175146,12 +181170,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 889 - 15.347297 @@ -175161,12 +181189,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 890 - 15.31287 @@ -175176,12 +181208,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 891 - 15.278347 @@ -175191,12 +181227,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 892 - 15.24374 @@ -175206,12 +181246,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 893 - 15.209056 @@ -175221,12 +181265,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 894 - 15.174311 @@ -175236,12 +181284,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 895 - 15.139513 @@ -175251,12 +181303,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 896 - 15.1046715 @@ -175266,12 +181322,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 897 - 15.069799 @@ -175281,12 +181341,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 898 - 15.034905 @@ -175296,12 +181360,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 899 - 15.000001 @@ -175311,12 +181379,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 900 - 14.9650955 @@ -175326,12 +181398,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 901 - 14.930202 @@ -175341,12 +181417,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 902 - 14.895329 @@ -175356,12 +181436,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 903 - 14.860486 @@ -175371,12 +181455,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 904 - 14.825688 @@ -175386,12 +181474,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 905 - 14.790943 @@ -175401,12 +181493,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 906 - 14.756262 @@ -175416,12 +181512,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 907 - 14.721654 @@ -175431,12 +181531,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 908 - 14.687132 @@ -175446,12 +181550,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 909 - 14.652704 @@ -175461,12 +181569,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 910 - 14.618382 @@ -175476,12 +181588,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 911 - 14.584178 @@ -175491,12 +181607,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 912 - 14.550097 @@ -175506,12 +181626,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 913 - 14.516155 @@ -175521,12 +181645,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 914 - 14.482362 @@ -175536,12 +181664,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 915 - 14.448725 @@ -175551,12 +181683,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 916 - 14.4152565 @@ -175566,12 +181702,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 917 - 14.381965 @@ -175581,12 +181721,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 918 - 14.348865 @@ -175596,12 +181740,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 919 - 14.315959 @@ -175611,12 +181759,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 920 - 14.283265 @@ -175626,12 +181778,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 921 - 14.250786 @@ -175641,12 +181797,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 922 - 14.218539 @@ -175656,12 +181816,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 923 - 14.186526 @@ -175671,12 +181835,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 924 - 14.154765 @@ -175686,12 +181854,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 925 - 14.123258 @@ -175701,12 +181873,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 926 - 14.092021 @@ -175716,12 +181892,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 927 - 14.061057 @@ -175731,12 +181911,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 928 - 14.030379 @@ -175746,12 +181930,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 929 - 14.000001 @@ -175761,12 +181949,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 930 - 13.969923 @@ -175776,12 +181968,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 931 - 13.940163 @@ -175791,12 +181987,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 932 - 13.910722 @@ -175806,12 +182006,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 933 - 13.881616 @@ -175821,12 +182025,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 934 - 13.852847 @@ -175836,12 +182044,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 935 - 13.824431 @@ -175851,12 +182063,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 936 - 13.7963705 @@ -175866,12 +182082,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 937 - 13.768676 @@ -175881,12 +182101,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 938 - 13.74136 @@ -175896,12 +182120,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 939 - 13.714424 @@ -181519,7 +187747,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1119716364} - m_RootOrder: 0 + 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} @@ -181635,7 +187863,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1096857384} - m_RootOrder: 0 + 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} @@ -184675,8 +190903,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1613123365} - {fileID: 823124926} + - {fileID: 1613123365} m_Father: {fileID: 473592951} m_RootOrder: 92 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -185296,8 +191524,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1436598725} - {fileID: 705051032} + - {fileID: 1436598725} m_Father: {fileID: 473592951} m_RootOrder: 32 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -188108,12 +194336,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 820 @@ -188123,12 +194355,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 1250 @@ -188138,12 +194374,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 896.7 @@ -188153,12 +194393,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 1029.27 @@ -188168,12 +194412,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 1290 @@ -188183,12 +194431,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 1530 @@ -188198,12 +194450,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 903.2 @@ -188376,12 +194632,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 820 @@ -188391,12 +194651,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 388.6 @@ -188406,12 +194670,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 1069.8 @@ -188421,12 +194689,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 1216.7 @@ -188436,12 +194708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 839.9 @@ -188451,12 +194727,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 742 @@ -188466,12 +194746,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 1108.1 @@ -189736,7 +196020,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1543296642} - m_RootOrder: 1 + 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} @@ -191535,12 +197819,16 @@ MonoBehaviour: m_Name: rose1 m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 10 @@ -191550,12 +197838,16 @@ MonoBehaviour: m_Name: rose2 m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 5 @@ -191565,12 +197857,16 @@ MonoBehaviour: m_Name: rose3 m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 15 @@ -191580,12 +197876,16 @@ MonoBehaviour: m_Name: rose4 m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 25 @@ -191595,12 +197895,16 @@ MonoBehaviour: m_Name: rose5 m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 20 @@ -191610,12 +197914,16 @@ MonoBehaviour: m_Name: rose6 m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 35 @@ -191625,12 +197933,16 @@ MonoBehaviour: m_Name: rose7 m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 30 @@ -191640,12 +197952,16 @@ MonoBehaviour: m_Name: rose8 m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 40 @@ -191822,12 +198138,16 @@ MonoBehaviour: m_Name: rose1 m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 10 @@ -191837,12 +198157,16 @@ MonoBehaviour: m_Name: rose2 m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 5 @@ -191852,12 +198176,16 @@ MonoBehaviour: m_Name: rose3 m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 15 @@ -191867,12 +198195,16 @@ MonoBehaviour: m_Name: rose4 m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 25 @@ -191882,12 +198214,16 @@ MonoBehaviour: m_Name: rose5 m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 20 @@ -191897,12 +198233,16 @@ MonoBehaviour: m_Name: rose6 m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 35 @@ -191912,12 +198252,16 @@ MonoBehaviour: m_Name: rose7 m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 30 @@ -191927,12 +198271,16 @@ MonoBehaviour: m_Name: rose8 m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 40 @@ -192833,12 +199181,12 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1752609155} - m_RootOrder: 0 + 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: 60, y: 20} + m_SizeDelta: {x: 59.810425, y: 19.77251} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &641164109 MonoBehaviour: @@ -193134,7 +199482,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 127743410} - m_RootOrder: 1 + 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} @@ -193593,7 +199941,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1429263363} - m_RootOrder: 1 + 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} @@ -195181,8 +201529,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -128.4474, y: 64.14998} - m_SizeDelta: {x: 34.672688, y: 19.503386} + m_AnchoredPosition: {x: -128.70348, y: 64.14998} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &648783499 MonoBehaviour: @@ -195413,7 +201761,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 783582369} - m_RootOrder: 1 + 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} @@ -196125,8 +202473,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 783482368} - {fileID: 176584838} + - {fileID: 783482368} m_Father: {fileID: 473592951} m_RootOrder: 27 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -196723,12 +203071,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 820 @@ -196738,12 +203090,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 1033 @@ -196753,12 +203109,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 901 @@ -196768,12 +203128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 1107 @@ -196783,12 +203147,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 1492 @@ -196798,12 +203166,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 1559 @@ -196813,12 +203185,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 1320 @@ -196991,12 +203367,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 1820 @@ -197006,12 +203386,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 2033 @@ -197021,12 +203405,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 1901 @@ -197036,12 +203424,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 2107 @@ -197051,12 +203443,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 3492 @@ -197066,12 +203462,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 2559 @@ -197081,12 +203481,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 1920 @@ -199341,7 +205745,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 175.20001, y: -70.69999} - m_SizeDelta: {x: 28, y: 20} + m_SizeDelta: {x: 27.298578, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &661726148 MonoBehaviour: @@ -201573,7 +207977,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1409867903} - m_RootOrder: 1 + 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} @@ -204329,8 +210733,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 870579682} - {fileID: 2140343666} + - {fileID: 870579682} m_Father: {fileID: 473592951} m_RootOrder: 16 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -207107,12 +213511,16 @@ MonoBehaviour: m_Name: "\u76F4\u63A5\u8BBF\u95EE" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 335 @@ -207122,12 +213530,16 @@ MonoBehaviour: m_Name: "\u90AE\u4EF6\u8425\u9500" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 310 @@ -207137,12 +213549,16 @@ MonoBehaviour: m_Name: "\u8054\u76DF\u5E7F\u544A" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 234 @@ -207152,12 +213568,16 @@ MonoBehaviour: m_Name: "\u89C6\u9891\u5E7F\u544A" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 135 @@ -207167,12 +213587,16 @@ MonoBehaviour: m_Name: "\u641C\u7D22\u5F15\u64CE" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 1548 @@ -208623,8 +215047,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1082359632} - {fileID: 243566446} + - {fileID: 1082359632} m_Father: {fileID: 473592951} m_RootOrder: 80 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -210290,7 +216714,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 506769985} - m_RootOrder: 1 + 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} @@ -210596,7 +217020,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1251282783} - m_RootOrder: 1 + 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} @@ -211217,7 +217641,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 620555060} - m_RootOrder: 1 + 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} @@ -213196,8 +219620,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 2113337994} - {fileID: 876982798} + - {fileID: 2113337994} m_Father: {fileID: 473592951} m_RootOrder: 14 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -214631,7 +221055,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1051817787} - m_RootOrder: 0 + 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} @@ -215015,7 +221439,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 323781375} - m_RootOrder: 0 + 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} @@ -215896,7 +222320,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1362883122} - m_RootOrder: 1 + 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} @@ -216248,7 +222672,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 151961019} - m_RootOrder: 0 + 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} @@ -216702,7 +223126,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1121577498} - m_RootOrder: 0 + 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} @@ -217252,12 +223676,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 73 - 95 @@ -217267,12 +223695,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 37 @@ -217282,12 +223714,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 61 - 40 @@ -217297,12 +223733,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 55 - 86 @@ -217312,12 +223752,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 23 @@ -217327,12 +223771,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 74 - 29 @@ -217342,12 +223790,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 96 - 26 @@ -217357,12 +223809,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 95 - 93 @@ -217372,12 +223828,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 14 @@ -217387,12 +223847,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 83 - 78 @@ -218942,8 +225406,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 119.97522, y: -48.94001} - m_SizeDelta: {x: 47, y: 20} + m_AnchoredPosition: {x: 119.22403, y: -48.94001} + m_SizeDelta: {x: 45.49763, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &731950525 MonoBehaviour: @@ -219366,12 +225830,12 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1638043301} - m_RootOrder: 0 + 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: 58, y: 24} + m_SizeDelta: {x: 56.777252, y: 23.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &735682484 MonoBehaviour: @@ -220932,8 +227396,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -129.11105, y: -64.14999} - m_SizeDelta: {x: 36, y: 20} + m_AnchoredPosition: {x: -128.70348, y: -64.14999} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &742009665 MonoBehaviour: @@ -222396,12 +228860,12 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1676064384} - m_RootOrder: 0 + 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: 58, y: 24} + m_SizeDelta: {x: 56.777252, y: 23.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &749305805 MonoBehaviour: @@ -224747,8 +231211,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 37.37909, y: 35.419983} - m_SizeDelta: {x: 36, y: 20} + m_AnchoredPosition: {x: 37.786682, y: 35.419983} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &760564084 MonoBehaviour: @@ -225772,8 +232236,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 117.400024, y: 84.10359} - m_SizeDelta: {x: 38, y: 20} + m_AnchoredPosition: {x: 117.897644, y: 84.10359} + m_SizeDelta: {x: 37.004738, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &764130261 MonoBehaviour: @@ -227701,12 +234165,12 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1350915932} - m_RootOrder: 0 + 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: 94, y: 24} + m_SizeDelta: {x: 91.96208, y: 23.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &772474378 MonoBehaviour: @@ -228090,7 +234554,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 787925338} - m_RootOrder: 0 + 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} @@ -228569,8 +235033,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 88.99643, y: 55.699997} - m_SizeDelta: {x: 38, y: 20} + m_AnchoredPosition: {x: 89.49405, y: 55.699997} + m_SizeDelta: {x: 37.004738, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &777057779 MonoBehaviour: @@ -230343,12 +236807,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 820 @@ -230358,12 +236826,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 1250 @@ -230373,12 +236845,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 896.7 @@ -230388,12 +236864,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - -600 @@ -230403,12 +236883,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 1290 @@ -230418,12 +236902,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 1530 @@ -230433,12 +236921,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 903.2 @@ -231173,7 +237665,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 653499335} - m_RootOrder: 0 + 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} @@ -231249,8 +237741,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 882633578} - {fileID: 649738713} + - {fileID: 882633578} m_Father: {fileID: 473592951} m_RootOrder: 21 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -232221,8 +238713,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 775420406} - {fileID: 1794285726} + - {fileID: 775420406} m_Father: {fileID: 473592951} m_RootOrder: 54 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -234017,7 +240509,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1109375083} - m_RootOrder: 1 + 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} @@ -235113,7 +241605,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1807111091} - m_RootOrder: 1 + 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} @@ -235678,7 +242170,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 140824591} - m_RootOrder: 0 + 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} @@ -236923,8 +243415,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1519576789} - {fileID: 176511122} + - {fileID: 1519576789} m_Father: {fileID: 473592951} m_RootOrder: 12 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -240301,7 +246793,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 128.16} - m_SizeDelta: {x: 31, y: 20} + m_SizeDelta: {x: 30.331753, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &820594317 MonoBehaviour: @@ -241118,7 +247610,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 619062329} - m_RootOrder: 1 + 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} @@ -241377,7 +247869,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 896910835} - m_RootOrder: 1 + 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} @@ -241766,7 +248258,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1150241727} - m_RootOrder: 1 + 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} @@ -243505,8 +249997,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1730716605} - {fileID: 172618314} + - {fileID: 1730716605} m_Father: {fileID: 473592951} m_RootOrder: 50 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -244809,8 +251301,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 338368208} - {fileID: 523023245} + - {fileID: 338368208} m_Father: {fileID: 473592951} m_RootOrder: 46 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -245050,7 +251542,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 980408043} - m_RootOrder: 0 + 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} @@ -245778,8 +252270,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 2133412191} - {fileID: 66850235} + - {fileID: 2133412191} m_Father: {fileID: 473592951} m_RootOrder: 64 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -250088,8 +256580,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 224663554} - {fileID: 1695806682} + - {fileID: 224663554} m_Father: {fileID: 473592951} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -251044,7 +257536,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1285574511} - m_RootOrder: 0 + 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} @@ -252180,8 +258672,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 129.11105, y: 64.149994} - m_SizeDelta: {x: 36, y: 20} + m_AnchoredPosition: {x: 128.70346, y: 64.149994} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &866281860 MonoBehaviour: @@ -253105,8 +259597,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 78.600006, y: 16.90001} - m_SizeDelta: {x: 38, y: 20} + m_AnchoredPosition: {x: 79.097626, y: 16.90001} + m_SizeDelta: {x: 37.004738, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &869001955 MonoBehaviour: @@ -253798,7 +260290,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 677322788} - m_RootOrder: 0 + 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} @@ -255503,7 +261995,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 713322374} - m_RootOrder: 1 + 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} @@ -256560,8 +263052,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1777679215} - {fileID: 1344130212} + - {fileID: 1777679215} m_Father: {fileID: 473592951} m_RootOrder: 74 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -256641,8 +263133,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 127.993744, y: -64.15001} - m_SizeDelta: {x: 69.345375, y: 19.503386} + m_AnchoredPosition: {x: 128.50589, y: -64.15001} + m_SizeDelta: {x: 70.36967, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &881760596 MonoBehaviour: @@ -256869,7 +263361,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 783582369} - m_RootOrder: 0 + 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} @@ -257499,12 +263991,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 120 @@ -257514,12 +264010,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 50 - 200 @@ -257529,12 +264029,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 50 @@ -258076,7 +264580,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1750319886} - m_RootOrder: 0 + 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} @@ -259242,7 +265746,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2008804791} - m_RootOrder: 0 + 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} @@ -259554,8 +266058,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 130818928} - {fileID: 208165580} + - {fileID: 130818928} m_Father: {fileID: 473592951} m_RootOrder: 73 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -261735,8 +268239,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1342822923} - {fileID: 1845719917} + - {fileID: 1342822923} m_Father: {fileID: 473592951} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -261809,8 +268313,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1088487669} - {fileID: 823917007} + - {fileID: 1088487669} m_Father: {fileID: 473592951} m_RootOrder: 37 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -263454,7 +269958,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1003196578} - m_RootOrder: 1 + 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} @@ -263921,7 +270425,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 506769985} - m_RootOrder: 0 + 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} @@ -264191,8 +270695,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 973239333} - {fileID: 1752214317} + - {fileID: 973239333} m_Father: {fileID: 473592951} m_RootOrder: 78 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -264612,8 +271116,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 575532953} - {fileID: 1435262137} + - {fileID: 575532953} m_Father: {fileID: 473592951} m_RootOrder: 52 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -265772,7 +272276,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1799657881} - m_RootOrder: 1 + 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} @@ -266161,7 +272665,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1150241727} - m_RootOrder: 0 + 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} @@ -267436,7 +273940,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1694097421} - m_RootOrder: 0 + 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} @@ -267598,8 +274102,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 61.076324, y: 111.11105} - m_SizeDelta: {x: 34.672688, y: 19.503386} + m_AnchoredPosition: {x: 61.332397, y: 111.11105} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &916094507 MonoBehaviour: @@ -271047,12 +277551,16 @@ MonoBehaviour: m_Name: "\u9884\u7B97\u5206\u914D" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4300 - 10000 @@ -271067,12 +277575,16 @@ MonoBehaviour: m_Name: "\u5B9E\u9645\u5F00\u9500" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5000 - 14000 @@ -272477,12 +278989,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 120 @@ -272492,12 +279008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 132 @@ -272507,12 +279027,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 101 @@ -272522,12 +279046,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 134 @@ -272537,12 +279065,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 90 @@ -272552,12 +279084,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 230 @@ -272567,12 +279103,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 210 @@ -272745,12 +279285,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 220 @@ -272760,12 +279304,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 282 @@ -272775,12 +279323,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 201 @@ -272790,12 +279342,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 234 @@ -272805,12 +279361,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 290 @@ -272820,12 +279380,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 430 @@ -272835,12 +279399,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 410 @@ -273013,12 +279581,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 450 @@ -273028,12 +279600,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 432 @@ -273043,12 +279619,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 401 @@ -273058,12 +279638,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 454 @@ -273073,12 +279657,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 590 @@ -273088,12 +279676,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 530 @@ -273103,12 +279695,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 510 @@ -274203,7 +280799,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1293142452} - m_RootOrder: 1 + 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} @@ -274522,8 +281118,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -122.4874, y: -64.14999} - m_SizeDelta: {x: 34.672688, y: 19.503386} + m_AnchoredPosition: {x: -122.74347, y: -64.14999} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &936242090 MonoBehaviour: @@ -275267,12 +281863,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 140 @@ -275282,12 +281882,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 240 @@ -275297,12 +281901,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 180 @@ -275312,12 +281920,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 100 @@ -275327,12 +281939,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 90 @@ -275342,12 +281958,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 170 @@ -275357,12 +281977,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 180 @@ -275535,12 +282159,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 120 @@ -275550,12 +282178,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 200 @@ -275565,12 +282197,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 150 @@ -275580,12 +282216,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 80 @@ -275595,12 +282235,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 70 @@ -275610,12 +282254,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 110 @@ -275625,12 +282273,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 130 @@ -276256,8 +282908,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1578737083} - {fileID: 1462456011} + - {fileID: 1578737083} m_Father: {fileID: 473592951} m_RootOrder: 68 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -276407,7 +283059,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1661587548} - m_RootOrder: 1 + 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} @@ -277268,7 +283920,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1241641390} - m_RootOrder: 1 + 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} @@ -278569,12 +285221,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 300 @@ -278584,12 +285240,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 300 @@ -278599,12 +285259,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 300 @@ -278614,12 +285278,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 300 @@ -278629,12 +285297,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 300 @@ -278644,12 +285316,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 300 @@ -278659,12 +285335,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 300 @@ -278837,12 +285517,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 120 @@ -278852,12 +285536,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 250 @@ -278867,12 +285555,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 150 @@ -278882,12 +285574,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 120 @@ -278897,12 +285593,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 70 @@ -278912,12 +285612,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 110 @@ -278927,12 +285631,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 280 @@ -280446,8 +287154,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 147.11105, y: -64.15001} - m_SizeDelta: {x: 72, y: 20} + m_AnchoredPosition: {x: 146.2959, y: -64.15001} + m_SizeDelta: {x: 70.36967, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &953096503 MonoBehaviour: @@ -280522,7 +287230,7 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 4cbfef5a9a03149f6a1ddf4ebe502bf6, type: 3} m_Name: m_EditorClassIdentifier: - m_NowVersion: 1.0.3 (20191103) + m_NowVersion: 1.0.4 (20191105) m_NewVersion: 1.0.0 (20191022) --- !u!4 &953846993 Transform: @@ -281185,8 +287893,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 561432594} - {fileID: 396711625} + - {fileID: 561432594} m_Father: {fileID: 473592951} m_RootOrder: 49 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -285664,7 +292372,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 905836768} - m_RootOrder: 0 + 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} @@ -286025,7 +292733,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1207800333} - m_RootOrder: 0 + 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} @@ -286594,7 +293302,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 565597444} - m_RootOrder: 0 + 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} @@ -287452,8 +294160,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 838960003} - {fileID: 1494284335} + - {fileID: 838960003} m_Father: {fileID: 473592951} m_RootOrder: 85 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -288960,12 +295668,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 0 @@ -288976,12 +295688,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 1 @@ -288992,12 +295708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 2 @@ -289008,12 +295728,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 3 @@ -289024,12 +295748,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 4 @@ -289040,12 +295768,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 5 @@ -289056,12 +295788,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 6 @@ -289072,12 +295808,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 7 @@ -289088,12 +295828,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 8 @@ -289104,12 +295848,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 9 @@ -289120,12 +295868,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 10 @@ -289136,12 +295888,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 11 @@ -289152,12 +295908,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 12 @@ -289168,12 +295928,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 13 @@ -289184,12 +295948,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 14 @@ -289200,12 +295968,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 15 @@ -289216,12 +295988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 16 @@ -289232,12 +296008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 17 @@ -289248,12 +296028,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 18 @@ -289264,12 +296048,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 19 @@ -289280,12 +296068,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 20 @@ -289296,12 +296088,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 21 @@ -289312,12 +296108,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 0 @@ -289328,12 +296128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 1 @@ -289344,12 +296148,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 2 @@ -289360,12 +296168,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 3 @@ -289376,12 +296188,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 4 @@ -289392,12 +296208,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 5 @@ -289408,12 +296228,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 6 @@ -289424,12 +296248,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 7 @@ -289440,12 +296268,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 8 @@ -289456,12 +296288,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 9 @@ -289472,12 +296308,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 10 @@ -289488,12 +296328,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 11 @@ -289504,12 +296348,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 12 @@ -289520,12 +296368,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 13 @@ -289536,12 +296388,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 14 @@ -289552,12 +296408,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 15 @@ -289568,12 +296428,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 16 @@ -289584,12 +296448,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 17 @@ -289600,12 +296468,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 18 @@ -289616,12 +296488,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 19 @@ -289632,12 +296508,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 20 @@ -289648,12 +296528,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 21 @@ -289664,12 +296548,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 0 @@ -289680,12 +296568,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 1 @@ -289696,12 +296588,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 2 @@ -289712,12 +296608,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 3 @@ -289728,12 +296628,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 4 @@ -289744,12 +296648,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 5 @@ -289760,12 +296668,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 6 @@ -289776,12 +296688,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 7 @@ -289792,12 +296708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 8 @@ -289808,12 +296728,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 9 @@ -289824,12 +296748,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 10 @@ -289840,12 +296768,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 11 @@ -289856,12 +296788,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 12 @@ -289872,12 +296808,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 13 @@ -289888,12 +296828,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 14 @@ -289904,12 +296848,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 15 @@ -289920,12 +296868,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 16 @@ -289936,12 +296888,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 17 @@ -289952,12 +296908,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 18 @@ -289968,12 +296928,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 19 @@ -289984,12 +296948,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 20 @@ -290000,12 +296968,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 21 @@ -290016,12 +296988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 0 @@ -290032,12 +297008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 1 @@ -290048,12 +297028,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 2 @@ -290064,12 +297048,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 3 @@ -290080,12 +297068,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 4 @@ -290096,12 +297088,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 5 @@ -290112,12 +297108,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 6 @@ -290128,12 +297128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 7 @@ -290144,12 +297148,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 8 @@ -290160,12 +297168,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 9 @@ -290176,12 +297188,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 10 @@ -290192,12 +297208,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 11 @@ -290208,12 +297228,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 12 @@ -290224,12 +297248,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 13 @@ -290240,12 +297268,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 14 @@ -290256,12 +297288,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 15 @@ -290272,12 +297308,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 16 @@ -290288,12 +297328,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 17 @@ -290304,12 +297348,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 18 @@ -290320,12 +297368,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 19 @@ -290336,12 +297388,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 20 @@ -290352,12 +297408,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 21 @@ -290368,12 +297428,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 0 @@ -290384,12 +297448,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 1 @@ -290400,12 +297468,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 2 @@ -290416,12 +297488,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 3 @@ -290432,12 +297508,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 4 @@ -290448,12 +297528,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 5 @@ -290464,12 +297548,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 6 @@ -290480,12 +297568,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 7 @@ -290496,12 +297588,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 8 @@ -290512,12 +297608,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 9 @@ -290528,12 +297628,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 10 @@ -290544,12 +297648,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 11 @@ -290560,12 +297668,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 12 @@ -290576,12 +297688,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 13 @@ -290592,12 +297708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 14 @@ -290608,12 +297728,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 15 @@ -290624,12 +297748,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 16 @@ -290640,12 +297768,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 17 @@ -290656,12 +297788,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 18 @@ -290672,12 +297808,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 19 @@ -290688,12 +297828,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 20 @@ -290704,12 +297848,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 21 @@ -290720,12 +297868,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 0 @@ -290736,12 +297888,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 1 @@ -290752,12 +297908,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 2 @@ -290768,12 +297928,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 3 @@ -290784,12 +297948,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 4 @@ -290800,12 +297968,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 5 @@ -290816,12 +297988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 6 @@ -290832,12 +298008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 7 @@ -290848,12 +298028,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 8 @@ -290864,12 +298048,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 9 @@ -290880,12 +298068,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 10 @@ -290896,12 +298088,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 11 @@ -290912,12 +298108,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 12 @@ -290928,12 +298128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 13 @@ -290944,12 +298148,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 14 @@ -290960,12 +298168,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 15 @@ -290976,12 +298188,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 16 @@ -290992,12 +298208,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 17 @@ -291008,12 +298228,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 18 @@ -291024,12 +298248,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 19 @@ -291040,12 +298268,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 20 @@ -291056,12 +298288,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 21 @@ -291072,12 +298308,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 0 @@ -291088,12 +298328,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 1 @@ -291104,12 +298348,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 2 @@ -291120,12 +298368,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 3 @@ -291136,12 +298388,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 4 @@ -291152,12 +298408,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 5 @@ -291168,12 +298428,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 6 @@ -291184,12 +298448,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 7 @@ -291200,12 +298468,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 8 @@ -291216,12 +298488,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 9 @@ -291232,12 +298508,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 10 @@ -291248,12 +298528,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 11 @@ -291264,12 +298548,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 12 @@ -291280,12 +298568,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 13 @@ -291296,12 +298588,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 14 @@ -291312,12 +298608,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 15 @@ -291328,12 +298628,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 16 @@ -291344,12 +298648,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 17 @@ -291360,12 +298668,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 18 @@ -291376,12 +298688,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 19 @@ -291392,12 +298708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 20 @@ -291408,12 +298728,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 21 @@ -291424,12 +298748,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 0 @@ -291440,12 +298768,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 1 @@ -291456,12 +298788,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 2 @@ -291472,12 +298808,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 3 @@ -291488,12 +298828,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 4 @@ -291504,12 +298848,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 5 @@ -291520,12 +298868,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 6 @@ -291536,12 +298888,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 7 @@ -291552,12 +298908,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 8 @@ -291568,12 +298928,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 9 @@ -291584,12 +298948,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 10 @@ -291600,12 +298968,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 11 @@ -291616,12 +298988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 12 @@ -291632,12 +299008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 13 @@ -291648,12 +299028,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 14 @@ -291664,12 +299048,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 15 @@ -291680,12 +299068,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 16 @@ -291696,12 +299088,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 17 @@ -291712,12 +299108,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 18 @@ -291728,12 +299128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 19 @@ -291744,12 +299148,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 20 @@ -291760,12 +299168,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 21 @@ -291776,12 +299188,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 0 @@ -291792,12 +299208,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 1 @@ -291808,12 +299228,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 2 @@ -291824,12 +299248,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 3 @@ -291840,12 +299268,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 4 @@ -291856,12 +299288,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 5 @@ -291872,12 +299308,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 6 @@ -291888,12 +299328,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 7 @@ -291904,12 +299348,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 8 @@ -291920,12 +299368,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 9 @@ -291936,12 +299388,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 10 @@ -291952,12 +299408,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 11 @@ -291968,12 +299428,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 12 @@ -291984,12 +299448,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 13 @@ -292000,12 +299468,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 14 @@ -292016,12 +299488,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 15 @@ -292032,12 +299508,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 16 @@ -292048,12 +299528,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 17 @@ -292064,12 +299548,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 18 @@ -292080,12 +299568,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 19 @@ -292096,12 +299588,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 20 @@ -292112,12 +299608,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 21 @@ -292128,12 +299628,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 0 @@ -292144,12 +299648,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 1 @@ -292160,12 +299668,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 2 @@ -292176,12 +299688,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 3 @@ -292192,12 +299708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 4 @@ -292208,12 +299728,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 5 @@ -292224,12 +299748,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 6 @@ -292240,12 +299768,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 7 @@ -292256,12 +299788,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 8 @@ -292272,12 +299808,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 9 @@ -292288,12 +299828,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 10 @@ -292304,12 +299848,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 11 @@ -292320,12 +299868,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 12 @@ -292336,12 +299888,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 13 @@ -292352,12 +299908,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 14 @@ -292368,12 +299928,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 15 @@ -292384,12 +299948,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 16 @@ -292400,12 +299968,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 17 @@ -292416,12 +299988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 18 @@ -292432,12 +300008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 19 @@ -292448,12 +300028,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 20 @@ -292464,12 +300048,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 21 @@ -292480,12 +300068,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 0 @@ -292496,12 +300088,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 1 @@ -292512,12 +300108,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 2 @@ -292528,12 +300128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 3 @@ -292544,12 +300148,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 4 @@ -292560,12 +300168,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 5 @@ -292576,12 +300188,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 6 @@ -292592,12 +300208,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 7 @@ -292608,12 +300228,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 8 @@ -292624,12 +300248,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 9 @@ -292640,12 +300268,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 10 @@ -292656,12 +300288,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 11 @@ -292672,12 +300308,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 12 @@ -292688,12 +300328,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 13 @@ -292704,12 +300348,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 14 @@ -292720,12 +300368,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 15 @@ -292736,12 +300388,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 16 @@ -292752,12 +300408,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 17 @@ -292768,12 +300428,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 18 @@ -292784,12 +300448,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 19 @@ -292800,12 +300468,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 20 @@ -292816,12 +300488,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 21 @@ -292832,12 +300508,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 0 @@ -292848,12 +300528,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 1 @@ -292864,12 +300548,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 2 @@ -292880,12 +300568,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 3 @@ -292896,12 +300588,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 4 @@ -292912,12 +300608,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 5 @@ -292928,12 +300628,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 6 @@ -292944,12 +300648,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 7 @@ -292960,12 +300668,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 8 @@ -292976,12 +300688,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 9 @@ -292992,12 +300708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 10 @@ -293008,12 +300728,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 11 @@ -293024,12 +300748,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 12 @@ -293040,12 +300768,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 13 @@ -293056,12 +300788,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 14 @@ -293072,12 +300808,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 15 @@ -293088,12 +300828,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 16 @@ -293104,12 +300848,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 17 @@ -293120,12 +300868,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 18 @@ -293136,12 +300888,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 19 @@ -293152,12 +300908,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 20 @@ -293168,12 +300928,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 21 @@ -293184,12 +300948,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 0 @@ -293200,12 +300968,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 1 @@ -293216,12 +300988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 2 @@ -293232,12 +301008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 3 @@ -293248,12 +301028,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 4 @@ -293264,12 +301048,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 5 @@ -293280,12 +301068,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 6 @@ -293296,12 +301088,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 7 @@ -293312,12 +301108,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 8 @@ -293328,12 +301128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 9 @@ -293344,12 +301148,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 10 @@ -293360,12 +301168,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 11 @@ -293376,12 +301188,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 12 @@ -293392,12 +301208,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 13 @@ -293408,12 +301228,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 14 @@ -293424,12 +301248,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 15 @@ -293440,12 +301268,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 16 @@ -293456,12 +301288,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 17 @@ -293472,12 +301308,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 18 @@ -293488,12 +301328,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 19 @@ -293504,12 +301348,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 20 @@ -293520,12 +301368,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 21 @@ -293536,12 +301388,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 0 @@ -293552,12 +301408,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 1 @@ -293568,12 +301428,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 2 @@ -293584,12 +301448,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 3 @@ -293600,12 +301468,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 4 @@ -293616,12 +301488,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 5 @@ -293632,12 +301508,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 6 @@ -293648,12 +301528,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 7 @@ -293664,12 +301548,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 8 @@ -293680,12 +301568,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 9 @@ -293696,12 +301588,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 10 @@ -293712,12 +301608,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 11 @@ -293728,12 +301628,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 12 @@ -293744,12 +301648,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 13 @@ -293760,12 +301668,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 14 @@ -293776,12 +301688,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 15 @@ -293792,12 +301708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 16 @@ -293808,12 +301728,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 17 @@ -293824,12 +301748,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 18 @@ -293840,12 +301768,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 19 @@ -293856,12 +301788,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 20 @@ -293872,12 +301808,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 21 @@ -293888,12 +301828,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 0 @@ -293904,12 +301848,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 1 @@ -293920,12 +301868,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 2 @@ -293936,12 +301888,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 3 @@ -293952,12 +301908,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 4 @@ -293968,12 +301928,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 5 @@ -293984,12 +301948,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 6 @@ -294000,12 +301968,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 7 @@ -294016,12 +301988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 8 @@ -294032,12 +302008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 9 @@ -294048,12 +302028,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 10 @@ -294064,12 +302048,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 11 @@ -294080,12 +302068,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 12 @@ -294096,12 +302088,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 13 @@ -294112,12 +302108,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 14 @@ -294128,12 +302128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 15 @@ -294144,12 +302148,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 16 @@ -294160,12 +302168,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 17 @@ -294176,12 +302188,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 18 @@ -294192,12 +302208,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 19 @@ -294208,12 +302228,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 20 @@ -294224,12 +302248,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 21 @@ -294240,12 +302268,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 0 @@ -294256,12 +302288,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 1 @@ -294272,12 +302308,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 2 @@ -294288,12 +302328,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 3 @@ -294304,12 +302348,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 4 @@ -294320,12 +302368,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 5 @@ -294336,12 +302388,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 6 @@ -294352,12 +302408,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 7 @@ -294368,12 +302428,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 8 @@ -294384,12 +302448,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 9 @@ -294400,12 +302468,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 10 @@ -294416,12 +302488,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 11 @@ -294432,12 +302508,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 12 @@ -294448,12 +302528,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 13 @@ -294464,12 +302548,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 14 @@ -294480,12 +302568,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 15 @@ -294496,12 +302588,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 16 @@ -294512,12 +302608,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 17 @@ -294528,12 +302628,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 18 @@ -294544,12 +302648,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 19 @@ -294560,12 +302668,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 20 @@ -294576,12 +302688,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 21 @@ -294592,12 +302708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 0 @@ -294608,12 +302728,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 1 @@ -294624,12 +302748,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 2 @@ -294640,12 +302768,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 3 @@ -294656,12 +302788,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 4 @@ -294672,12 +302808,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 5 @@ -294688,12 +302828,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 6 @@ -294704,12 +302848,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 7 @@ -294720,12 +302868,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 8 @@ -294736,12 +302888,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 9 @@ -294752,12 +302908,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 10 @@ -294768,12 +302928,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 11 @@ -294784,12 +302948,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 12 @@ -294800,12 +302968,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 13 @@ -294816,12 +302988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 14 @@ -294832,12 +303008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 15 @@ -294848,12 +303028,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 16 @@ -294864,12 +303048,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 17 @@ -294880,12 +303068,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 18 @@ -294896,12 +303088,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 19 @@ -294912,12 +303108,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 20 @@ -294928,12 +303128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 21 @@ -294944,12 +303148,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 0 @@ -294960,12 +303168,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 1 @@ -294976,12 +303188,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 2 @@ -294992,12 +303208,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 3 @@ -295008,12 +303228,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 4 @@ -295024,12 +303248,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 5 @@ -295040,12 +303268,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 6 @@ -295056,12 +303288,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 7 @@ -295072,12 +303308,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 8 @@ -295088,12 +303328,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 9 @@ -295104,12 +303348,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 10 @@ -295120,12 +303368,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 11 @@ -295136,12 +303388,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 12 @@ -295152,12 +303408,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 13 @@ -295168,12 +303428,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 14 @@ -295184,12 +303448,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 15 @@ -295200,12 +303468,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 16 @@ -295216,12 +303488,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 17 @@ -295232,12 +303508,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 18 @@ -295248,12 +303528,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 19 @@ -295264,12 +303548,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 20 @@ -295280,12 +303568,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 21 @@ -295296,12 +303588,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 0 @@ -295312,12 +303608,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 1 @@ -295328,12 +303628,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 2 @@ -295344,12 +303648,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 3 @@ -295360,12 +303668,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 4 @@ -295376,12 +303688,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 5 @@ -295392,12 +303708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 6 @@ -295408,12 +303728,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 7 @@ -295424,12 +303748,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 8 @@ -295440,12 +303768,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 9 @@ -295456,12 +303788,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 10 @@ -295472,12 +303808,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 11 @@ -295488,12 +303828,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 12 @@ -295504,12 +303848,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 13 @@ -295520,12 +303868,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 14 @@ -295536,12 +303888,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 15 @@ -295552,12 +303908,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 16 @@ -295568,12 +303928,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 17 @@ -295584,12 +303948,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 18 @@ -295600,12 +303968,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 19 @@ -295616,12 +303988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 20 @@ -295632,12 +304008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 21 @@ -295648,12 +304028,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 0 @@ -295664,12 +304048,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 1 @@ -295680,12 +304068,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 2 @@ -295696,12 +304088,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 3 @@ -295712,12 +304108,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 4 @@ -295728,12 +304128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 5 @@ -295744,12 +304148,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 6 @@ -295760,12 +304168,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 7 @@ -295776,12 +304188,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 8 @@ -295792,12 +304208,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 9 @@ -295808,12 +304228,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 10 @@ -295824,12 +304248,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 11 @@ -295840,12 +304268,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 12 @@ -295856,12 +304288,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 13 @@ -295872,12 +304308,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 14 @@ -295888,12 +304328,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 15 @@ -295904,12 +304348,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 16 @@ -295920,12 +304368,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 17 @@ -295936,12 +304388,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 18 @@ -295952,12 +304408,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 19 @@ -295968,12 +304428,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 20 @@ -295984,12 +304448,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 21 @@ -296000,12 +304468,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 0 @@ -296016,12 +304488,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 1 @@ -296032,12 +304508,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 2 @@ -296048,12 +304528,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 3 @@ -296064,12 +304548,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 4 @@ -296080,12 +304568,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 5 @@ -296096,12 +304588,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 6 @@ -296112,12 +304608,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 7 @@ -296128,12 +304628,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 8 @@ -296144,12 +304648,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 9 @@ -296160,12 +304668,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 10 @@ -296176,12 +304688,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 11 @@ -296192,12 +304708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 12 @@ -296208,12 +304728,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 13 @@ -296224,12 +304748,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 14 @@ -296240,12 +304768,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 15 @@ -296256,12 +304788,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 16 @@ -296272,12 +304808,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 17 @@ -296288,12 +304828,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 18 @@ -296304,12 +304848,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 19 @@ -296320,12 +304868,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 20 @@ -296336,12 +304888,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 21 @@ -296352,12 +304908,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 0 @@ -296368,12 +304928,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 1 @@ -296384,12 +304948,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 2 @@ -296400,12 +304968,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 3 @@ -296416,12 +304988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 4 @@ -296432,12 +305008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 5 @@ -296448,12 +305028,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 6 @@ -296464,12 +305048,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 7 @@ -296480,12 +305068,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 8 @@ -296496,12 +305088,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 9 @@ -296512,12 +305108,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 10 @@ -296528,12 +305128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 11 @@ -296544,12 +305148,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 12 @@ -296560,12 +305168,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 13 @@ -296576,12 +305188,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 14 @@ -296592,12 +305208,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 15 @@ -296608,12 +305228,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 16 @@ -296624,12 +305248,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 17 @@ -296640,12 +305268,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 18 @@ -296656,12 +305288,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 19 @@ -296672,12 +305308,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 20 @@ -296688,12 +305328,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 21 @@ -296704,12 +305348,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 0 @@ -296720,12 +305368,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 1 @@ -296736,12 +305388,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 2 @@ -296752,12 +305408,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 3 @@ -296768,12 +305428,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 4 @@ -296784,12 +305448,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 5 @@ -296800,12 +305468,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 6 @@ -296816,12 +305488,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 7 @@ -296832,12 +305508,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 8 @@ -296848,12 +305528,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 9 @@ -296864,12 +305548,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 10 @@ -296880,12 +305568,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 11 @@ -296896,12 +305588,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 12 @@ -296912,12 +305608,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 13 @@ -296928,12 +305628,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 14 @@ -296944,12 +305648,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 15 @@ -296960,12 +305668,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 16 @@ -296976,12 +305688,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 17 @@ -296992,12 +305708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 18 @@ -297008,12 +305728,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 19 @@ -297024,12 +305748,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 20 @@ -297040,12 +305768,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 21 @@ -297056,12 +305788,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 0 @@ -297072,12 +305808,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 1 @@ -297088,12 +305828,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 2 @@ -297104,12 +305848,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 3 @@ -297120,12 +305868,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 4 @@ -297136,12 +305888,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 5 @@ -297152,12 +305908,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 6 @@ -297168,12 +305928,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 7 @@ -297184,12 +305948,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 8 @@ -297200,12 +305968,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 9 @@ -297216,12 +305988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 10 @@ -297232,12 +306008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 11 @@ -297248,12 +306028,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 12 @@ -297264,12 +306048,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 13 @@ -297280,12 +306068,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 14 @@ -297296,12 +306088,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 15 @@ -297312,12 +306108,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 16 @@ -297328,12 +306128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 17 @@ -297344,12 +306148,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 18 @@ -297360,12 +306168,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 19 @@ -297376,12 +306188,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 20 @@ -297392,12 +306208,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 21 @@ -297408,12 +306228,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 0 @@ -297424,12 +306248,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 1 @@ -297440,12 +306268,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 2 @@ -297456,12 +306288,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 3 @@ -297472,12 +306308,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 4 @@ -297488,12 +306328,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 5 @@ -297504,12 +306348,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 6 @@ -297520,12 +306368,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 7 @@ -297536,12 +306388,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 8 @@ -297552,12 +306408,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 9 @@ -297568,12 +306428,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 10 @@ -297584,12 +306448,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 11 @@ -297600,12 +306468,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 12 @@ -297616,12 +306488,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 13 @@ -297632,12 +306508,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 14 @@ -297648,12 +306528,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 15 @@ -297664,12 +306548,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 16 @@ -297680,12 +306568,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 17 @@ -297696,12 +306588,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 18 @@ -297712,12 +306608,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 19 @@ -297728,12 +306628,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 20 @@ -297744,12 +306648,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 21 @@ -297760,12 +306668,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 0 @@ -297776,12 +306688,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 1 @@ -297792,12 +306708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 2 @@ -297808,12 +306728,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 3 @@ -297824,12 +306748,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 4 @@ -297840,12 +306768,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 5 @@ -297856,12 +306788,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 6 @@ -297872,12 +306808,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 7 @@ -297888,12 +306828,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 8 @@ -297904,12 +306848,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 9 @@ -297920,12 +306868,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 10 @@ -297936,12 +306888,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 11 @@ -297952,12 +306908,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 12 @@ -297968,12 +306928,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 13 @@ -297984,12 +306948,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 14 @@ -298000,12 +306968,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 15 @@ -298016,12 +306988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 16 @@ -298032,12 +307008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 17 @@ -298048,12 +307028,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 18 @@ -298064,12 +307048,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 19 @@ -298080,12 +307068,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 20 @@ -298096,12 +307088,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 21 @@ -298112,12 +307108,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 0 @@ -298128,12 +307128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 1 @@ -298144,12 +307148,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 2 @@ -298160,12 +307168,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 3 @@ -298176,12 +307188,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 4 @@ -298192,12 +307208,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 5 @@ -298208,12 +307228,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 6 @@ -298224,12 +307248,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 7 @@ -298240,12 +307268,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 8 @@ -298256,12 +307288,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 9 @@ -298272,12 +307308,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 10 @@ -298288,12 +307328,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 11 @@ -298304,12 +307348,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 12 @@ -298320,12 +307368,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 13 @@ -298336,12 +307388,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 14 @@ -298352,12 +307408,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 15 @@ -298368,12 +307428,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 16 @@ -298384,12 +307448,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 17 @@ -298400,12 +307468,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 18 @@ -298416,12 +307488,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 19 @@ -298432,12 +307508,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 20 @@ -298448,12 +307528,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 21 @@ -298464,12 +307548,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 0 @@ -298480,12 +307568,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 1 @@ -298496,12 +307588,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 2 @@ -298512,12 +307608,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 3 @@ -298528,12 +307628,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 4 @@ -298544,12 +307648,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 5 @@ -298560,12 +307668,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 6 @@ -298576,12 +307688,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 7 @@ -298592,12 +307708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 8 @@ -298608,12 +307728,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 9 @@ -298624,12 +307748,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 10 @@ -298640,12 +307768,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 11 @@ -298656,12 +307788,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 12 @@ -298672,12 +307808,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 13 @@ -298688,12 +307828,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 14 @@ -298704,12 +307848,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 15 @@ -298720,12 +307868,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 16 @@ -298736,12 +307888,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 17 @@ -298752,12 +307908,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 18 @@ -298768,12 +307928,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 19 @@ -298784,12 +307948,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 20 @@ -298800,12 +307968,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 21 @@ -298816,12 +307988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 0 @@ -298832,12 +308008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 1 @@ -298848,12 +308028,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 2 @@ -298864,12 +308048,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 3 @@ -298880,12 +308068,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 4 @@ -298896,12 +308088,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 5 @@ -298912,12 +308108,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 6 @@ -298928,12 +308128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 7 @@ -298944,12 +308148,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 8 @@ -298960,12 +308168,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 9 @@ -298976,12 +308188,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 10 @@ -298992,12 +308208,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 11 @@ -299008,12 +308228,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 12 @@ -299024,12 +308248,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 13 @@ -299040,12 +308268,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 14 @@ -299056,12 +308288,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 15 @@ -299072,12 +308308,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 16 @@ -299088,12 +308328,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 17 @@ -299104,12 +308348,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 18 @@ -299120,12 +308368,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 19 @@ -299136,12 +308388,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 20 @@ -299152,12 +308408,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 21 @@ -299168,12 +308428,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 0 @@ -299184,12 +308448,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 1 @@ -299200,12 +308468,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 2 @@ -299216,12 +308488,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 3 @@ -299232,12 +308508,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 4 @@ -299248,12 +308528,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 5 @@ -299264,12 +308548,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 6 @@ -299280,12 +308568,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 7 @@ -299296,12 +308588,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 8 @@ -299312,12 +308608,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 9 @@ -299328,12 +308628,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 10 @@ -299344,12 +308648,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 11 @@ -299360,12 +308668,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 12 @@ -299376,12 +308688,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 13 @@ -299392,12 +308708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 14 @@ -299408,12 +308728,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 15 @@ -299424,12 +308748,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 16 @@ -299440,12 +308768,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 17 @@ -299456,12 +308788,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 18 @@ -299472,12 +308808,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 19 @@ -299488,12 +308828,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 20 @@ -299504,12 +308848,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 21 @@ -299520,12 +308868,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 0 @@ -299536,12 +308888,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 1 @@ -299552,12 +308908,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 2 @@ -299568,12 +308928,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 3 @@ -299584,12 +308948,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 4 @@ -299600,12 +308968,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 5 @@ -299616,12 +308988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 6 @@ -299632,12 +309008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 7 @@ -299648,12 +309028,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 8 @@ -299664,12 +309048,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 9 @@ -299680,12 +309068,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 10 @@ -299696,12 +309088,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 11 @@ -299712,12 +309108,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 12 @@ -299728,12 +309128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 13 @@ -299744,12 +309148,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 14 @@ -299760,12 +309168,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 15 @@ -299776,12 +309188,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 16 @@ -299792,12 +309208,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 17 @@ -299808,12 +309228,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 18 @@ -299824,12 +309248,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 19 @@ -299840,12 +309268,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 20 @@ -299856,12 +309288,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 21 @@ -299872,12 +309308,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 0 @@ -299888,12 +309328,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 1 @@ -299904,12 +309348,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 2 @@ -299920,12 +309368,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 3 @@ -299936,12 +309388,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 4 @@ -299952,12 +309408,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 5 @@ -299968,12 +309428,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 6 @@ -299984,12 +309448,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 7 @@ -300000,12 +309468,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 8 @@ -300016,12 +309488,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 9 @@ -300032,12 +309508,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 10 @@ -300048,12 +309528,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 11 @@ -300064,12 +309548,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 12 @@ -300080,12 +309568,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 13 @@ -300096,12 +309588,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 14 @@ -300112,12 +309608,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 15 @@ -300128,12 +309628,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 16 @@ -300144,12 +309648,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 17 @@ -300160,12 +309668,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 18 @@ -300176,12 +309688,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 19 @@ -300192,12 +309708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 20 @@ -300208,12 +309728,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 21 @@ -300224,12 +309748,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 0 @@ -300240,12 +309768,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 1 @@ -300256,12 +309788,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 2 @@ -300272,12 +309808,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 3 @@ -300288,12 +309828,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 4 @@ -300304,12 +309848,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 5 @@ -300320,12 +309868,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 6 @@ -300336,12 +309888,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 7 @@ -300352,12 +309908,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 8 @@ -300368,12 +309928,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 9 @@ -300384,12 +309948,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 10 @@ -300400,12 +309968,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 11 @@ -300416,12 +309988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 12 @@ -300432,12 +310008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 13 @@ -300448,12 +310028,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 14 @@ -300464,12 +310048,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 15 @@ -300480,12 +310068,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 16 @@ -300496,12 +310088,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 17 @@ -300512,12 +310108,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 18 @@ -300528,12 +310128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 19 @@ -300544,12 +310148,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 20 @@ -300560,12 +310168,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 21 @@ -300576,12 +310188,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 0 @@ -300592,12 +310208,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 1 @@ -300608,12 +310228,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 2 @@ -300624,12 +310248,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 3 @@ -300640,12 +310268,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 4 @@ -300656,12 +310288,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 5 @@ -300672,12 +310308,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 6 @@ -300688,12 +310328,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 7 @@ -300704,12 +310348,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 8 @@ -300720,12 +310368,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 9 @@ -300736,12 +310388,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 10 @@ -300752,12 +310408,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 11 @@ -300768,12 +310428,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 12 @@ -300784,12 +310448,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 13 @@ -300800,12 +310468,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 14 @@ -300816,12 +310488,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 15 @@ -300832,12 +310508,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 16 @@ -300848,12 +310528,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 17 @@ -300864,12 +310548,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 18 @@ -300880,12 +310568,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 19 @@ -300896,12 +310588,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 20 @@ -300912,12 +310608,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 21 @@ -300928,12 +310628,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 0 @@ -300944,12 +310648,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 1 @@ -300960,12 +310668,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 2 @@ -300976,12 +310688,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 3 @@ -300992,12 +310708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 4 @@ -301008,12 +310728,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 5 @@ -301024,12 +310748,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 6 @@ -301040,12 +310768,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 7 @@ -301056,12 +310788,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 8 @@ -301072,12 +310808,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 9 @@ -301088,12 +310828,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 10 @@ -301104,12 +310848,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 11 @@ -301120,12 +310868,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 12 @@ -301136,12 +310888,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 13 @@ -301152,12 +310908,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 14 @@ -301168,12 +310928,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 15 @@ -301184,12 +310948,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 16 @@ -301200,12 +310968,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 17 @@ -301216,12 +310988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 18 @@ -301232,12 +311008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 19 @@ -301248,12 +311028,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 20 @@ -301264,12 +311048,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 21 @@ -301280,12 +311068,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 0 @@ -301296,12 +311088,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 1 @@ -301312,12 +311108,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 2 @@ -301328,12 +311128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 3 @@ -301344,12 +311148,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 4 @@ -301360,12 +311168,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 5 @@ -301376,12 +311188,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 6 @@ -301392,12 +311208,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 7 @@ -301408,12 +311228,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 8 @@ -301424,12 +311248,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 9 @@ -301440,12 +311268,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 10 @@ -301456,12 +311288,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 11 @@ -301472,12 +311308,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 12 @@ -301488,12 +311328,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 13 @@ -301504,12 +311348,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 14 @@ -301520,12 +311368,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 15 @@ -301536,12 +311388,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 16 @@ -301552,12 +311408,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 17 @@ -301568,12 +311428,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 18 @@ -301584,12 +311448,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 19 @@ -301600,12 +311468,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 20 @@ -301616,12 +311488,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 21 @@ -301632,12 +311508,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 0 @@ -301648,12 +311528,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 1 @@ -301664,12 +311548,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 2 @@ -301680,12 +311568,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 3 @@ -301696,12 +311588,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 4 @@ -301712,12 +311608,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 5 @@ -301728,12 +311628,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 6 @@ -301744,12 +311648,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 7 @@ -301760,12 +311668,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 8 @@ -301776,12 +311688,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 9 @@ -301792,12 +311708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 10 @@ -301808,12 +311728,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 11 @@ -301824,12 +311748,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 12 @@ -301840,12 +311768,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 13 @@ -301856,12 +311788,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 14 @@ -301872,12 +311808,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 15 @@ -301888,12 +311828,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 16 @@ -301904,12 +311848,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 17 @@ -301920,12 +311868,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 18 @@ -301936,12 +311888,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 19 @@ -301952,12 +311908,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 20 @@ -301968,12 +311928,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 21 @@ -301984,12 +311948,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 0 @@ -302000,12 +311968,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 1 @@ -302016,12 +311988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 2 @@ -302032,12 +312008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 3 @@ -302048,12 +312028,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 4 @@ -302064,12 +312048,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 5 @@ -302080,12 +312068,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 6 @@ -302096,12 +312088,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 7 @@ -302112,12 +312108,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 8 @@ -302128,12 +312128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 9 @@ -302144,12 +312148,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 10 @@ -302160,12 +312168,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 11 @@ -302176,12 +312188,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 12 @@ -302192,12 +312208,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 13 @@ -302208,12 +312228,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 14 @@ -302224,12 +312248,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 15 @@ -302240,12 +312268,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 16 @@ -302256,12 +312288,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 17 @@ -302272,12 +312308,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 18 @@ -302288,12 +312328,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 19 @@ -302304,12 +312348,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 20 @@ -302320,12 +312368,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 21 @@ -302336,12 +312388,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 0 @@ -302352,12 +312408,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 1 @@ -302368,12 +312428,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 2 @@ -302384,12 +312448,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 3 @@ -302400,12 +312468,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 4 @@ -302416,12 +312488,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 5 @@ -302432,12 +312508,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 6 @@ -302448,12 +312528,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 7 @@ -302464,12 +312548,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 8 @@ -302480,12 +312568,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 9 @@ -302496,12 +312588,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 10 @@ -302512,12 +312608,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 11 @@ -302528,12 +312628,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 12 @@ -302544,12 +312648,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 13 @@ -302560,12 +312668,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 14 @@ -302576,12 +312688,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 15 @@ -302592,12 +312708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 16 @@ -302608,12 +312728,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 17 @@ -302624,12 +312748,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 18 @@ -302640,12 +312768,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 19 @@ -302656,12 +312788,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 20 @@ -302672,12 +312808,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 21 @@ -302688,12 +312828,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 0 @@ -302704,12 +312848,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 1 @@ -302720,12 +312868,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 2 @@ -302736,12 +312888,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 3 @@ -302752,12 +312908,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 4 @@ -302768,12 +312928,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 5 @@ -302784,12 +312948,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 6 @@ -302800,12 +312968,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 7 @@ -302816,12 +312988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 8 @@ -302832,12 +313008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 9 @@ -302848,12 +313028,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 10 @@ -302864,12 +313048,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 11 @@ -302880,12 +313068,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 12 @@ -302896,12 +313088,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 13 @@ -302912,12 +313108,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 14 @@ -302928,12 +313128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 15 @@ -302944,12 +313148,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 16 @@ -302960,12 +313168,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 17 @@ -302976,12 +313188,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 18 @@ -302992,12 +313208,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 19 @@ -303008,12 +313228,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 20 @@ -303024,12 +313248,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 21 @@ -303040,12 +313268,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 0 @@ -303056,12 +313288,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 1 @@ -303072,12 +313308,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 2 @@ -303088,12 +313328,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 3 @@ -303104,12 +313348,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 4 @@ -303120,12 +313368,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 5 @@ -303136,12 +313388,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 6 @@ -303152,12 +313408,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 7 @@ -303168,12 +313428,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 8 @@ -303184,12 +313448,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 9 @@ -303200,12 +313468,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 10 @@ -303216,12 +313488,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 11 @@ -303232,12 +313508,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 12 @@ -303248,12 +313528,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 13 @@ -303264,12 +313548,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 14 @@ -303280,12 +313568,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 15 @@ -303296,12 +313588,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 16 @@ -303312,12 +313608,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 17 @@ -303328,12 +313628,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 18 @@ -303344,12 +313648,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 19 @@ -303360,12 +313668,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 20 @@ -303376,12 +313688,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 21 @@ -303392,12 +313708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 0 @@ -303408,12 +313728,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 1 @@ -303424,12 +313748,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 2 @@ -303440,12 +313768,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 3 @@ -303456,12 +313788,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 4 @@ -303472,12 +313808,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 5 @@ -303488,12 +313828,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 6 @@ -303504,12 +313848,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 7 @@ -303520,12 +313868,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 8 @@ -303536,12 +313888,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 9 @@ -303552,12 +313908,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 10 @@ -303568,12 +313928,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 11 @@ -303584,12 +313948,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 12 @@ -303600,12 +313968,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 13 @@ -303616,12 +313988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 14 @@ -303632,12 +314008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 15 @@ -303648,12 +314028,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 16 @@ -303664,12 +314048,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 17 @@ -303680,12 +314068,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 18 @@ -303696,12 +314088,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 19 @@ -303712,12 +314108,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 20 @@ -303728,12 +314128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 21 @@ -306853,7 +317257,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 323781375} - m_RootOrder: 1 + 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} @@ -307943,12 +318347,16 @@ MonoBehaviour: m_Name: "\u76F4\u63A5\u8BBF\u95EE" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 335 @@ -307958,12 +318366,16 @@ MonoBehaviour: m_Name: "\u90AE\u4EF6\u8425\u9500" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 310 @@ -307973,12 +318385,16 @@ MonoBehaviour: m_Name: "\u8054\u76DF\u5E7F\u544A" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 243 @@ -307988,12 +318404,16 @@ MonoBehaviour: m_Name: "\u89C6\u9891\u5E7F\u544A" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 135 @@ -308003,12 +318423,16 @@ MonoBehaviour: m_Name: "\u641C\u7D22\u5F15\u64CE" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 1548 @@ -308153,12 +318577,12 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1912187377} - m_RootOrder: 0 + 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: 58, y: 24} + m_SizeDelta: {x: 56.777252, y: 23.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1002241102 MonoBehaviour: @@ -308377,8 +318801,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 317452493} - {fileID: 902523148} + - {fileID: 317452493} m_Father: {fileID: 583892134} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -312830,7 +323254,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1676064384} - m_RootOrder: 1 + 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} @@ -313403,7 +323827,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 140697332} - m_RootOrder: 1 + 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} @@ -314741,8 +325165,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 228, y: 84.10358} - m_SizeDelta: {x: 28, y: 20} + m_AnchoredPosition: {x: 227.64929, y: 84.10358} + m_SizeDelta: {x: 27.298578, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1028234203 MonoBehaviour: @@ -316499,8 +326923,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1402501331} - {fileID: 461429566} + - {fileID: 1402501331} m_Father: {fileID: 473592951} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -316766,7 +327190,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 94560412} - m_RootOrder: 1 + 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} @@ -316951,7 +327375,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 571090321} - m_RootOrder: 1 + 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} @@ -318010,7 +328434,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: -175.20001, y: -70.69999} - m_SizeDelta: {x: 54, y: 20} + m_SizeDelta: {x: 52.777252, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1045055316 MonoBehaviour: @@ -319410,8 +329834,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 161350629} - {fileID: 1212092184} + - {fileID: 161350629} m_Father: {fileID: 874471555} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -319685,8 +330109,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 720835361} - {fileID: 1059349634} + - {fileID: 720835361} m_Father: {fileID: 473592951} m_RootOrder: 33 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -321532,7 +331956,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1051817787} - m_RootOrder: 1 + 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} @@ -325445,8 +335869,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1109470070} - {fileID: 1807363506} + - {fileID: 1109470070} m_Father: {fileID: 583892134} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -325522,7 +335946,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1232096590} - m_RootOrder: 0 + 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} @@ -328107,7 +338531,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 694036232} - m_RootOrder: 0 + 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} @@ -330332,7 +340756,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 896910835} - m_RootOrder: 0 + 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} @@ -332255,8 +342679,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 328129653} - {fileID: 1300721093} + - {fileID: 328129653} m_Father: {fileID: 473592951} m_RootOrder: 47 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -332292,8 +342716,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 2080314767} - {fileID: 1330230650} + - {fileID: 2080314767} m_Father: {fileID: 473592951} m_RootOrder: 36 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -332329,8 +342753,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 606261310} - {fileID: 200409331} + - {fileID: 606261310} m_Father: {fileID: 473592951} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -332375,8 +342799,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 122.47525, y: 62.45999} - m_SizeDelta: {x: 52, y: 20} + m_AnchoredPosition: {x: 121.650604, y: 62.45999} + m_SizeDelta: {x: 50.35071, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1097327325 MonoBehaviour: @@ -334802,8 +345226,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -19.481445, y: 15.435532} - m_SizeDelta: {x: 54, y: 20} + m_AnchoredPosition: {x: -20.092834, y: 15.435532} + m_SizeDelta: {x: 52.777252, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1107207523 MonoBehaviour: @@ -335307,12 +345731,16 @@ MonoBehaviour: m_Name: "\u56FE\u4E00" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 100 - 8 @@ -335326,12 +345754,16 @@ MonoBehaviour: m_Name: "\u56FE\u4E8C" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 60 - 5 @@ -335508,12 +345940,16 @@ MonoBehaviour: m_Name: "\u5F20\u4E09" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 120 - 118 @@ -335528,12 +345964,16 @@ MonoBehaviour: m_Name: "\u674E\u56DB" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 90 - 113 @@ -336367,8 +346807,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1868166908} - {fileID: 795840887} + - {fileID: 1868166908} m_Father: {fileID: 473592951} m_RootOrder: 51 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -336486,12 +346926,12 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1072376770} - m_RootOrder: 0 + 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: 24} + m_SizeDelta: {x: 39.184834, y: 23.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1109470071 MonoBehaviour: @@ -338664,7 +349104,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 52940794} - m_RootOrder: 1 + 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} @@ -338775,8 +349215,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 605403230} - {fileID: 16279361} + - {fileID: 605403230} m_Father: {fileID: 473592951} m_RootOrder: 42 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -339327,8 +349767,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 728060562} - {fileID: 2013210389} + - {fileID: 728060562} m_Father: {fileID: 473592951} m_RootOrder: 55 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -339478,8 +349918,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 144864952} - {fileID: 193469410} + - {fileID: 144864952} m_Father: {fileID: 583892134} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -341012,12 +351452,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 180 @@ -341027,12 +351471,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 100 @@ -341042,12 +351490,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 50 @@ -341057,12 +351509,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 150 @@ -341072,12 +351528,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 90 @@ -342410,8 +352870,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 188092284} - {fileID: 195337870} + - {fileID: 188092284} m_Father: {fileID: 473592951} m_RootOrder: 79 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -344641,8 +355101,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -114.975235, y: -48.939995} - m_SizeDelta: {x: 37, y: 20} + m_AnchoredPosition: {x: -114.674286, y: -48.939995} + m_SizeDelta: {x: 36.398106, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1143388993 MonoBehaviour: @@ -347062,12 +357522,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 89 @@ -347077,12 +357541,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 132 @@ -347092,12 +357560,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 128 @@ -347107,12 +357579,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 149 @@ -347122,12 +357598,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 148 @@ -347137,12 +357617,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 86 @@ -347152,12 +357636,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 95 @@ -347167,12 +357655,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 78 @@ -347182,12 +357674,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 68 @@ -347197,12 +357693,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 138 @@ -347212,12 +357712,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 116 @@ -347227,12 +357731,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16 - 145 @@ -347242,12 +357750,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17 - 147 @@ -347257,12 +357769,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18 - 144 @@ -347272,12 +357788,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19 - 125 @@ -347287,12 +357807,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 101 @@ -347302,12 +357826,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21 - 100 @@ -347317,12 +357845,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22 - 137 @@ -347332,12 +357864,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23 - 122 @@ -347347,12 +357883,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24 - 114 @@ -347362,12 +357902,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 25 - 123 @@ -347377,12 +357921,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26 - 135 @@ -347392,12 +357940,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 27 - 108 @@ -347407,12 +357959,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28 - 82 @@ -347422,12 +357978,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29 - 82 @@ -347437,12 +357997,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 30 - 63 @@ -347452,12 +358016,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31 - 137 @@ -347467,12 +358035,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 32 - 118 @@ -347482,12 +358054,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 33 - 94 @@ -347497,12 +358073,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34 - 66 @@ -347512,12 +358092,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 35 - 141 @@ -347527,12 +358111,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36 - 86 @@ -347542,12 +358130,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37 - 143 @@ -347557,12 +358149,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38 - 67 @@ -347572,12 +358168,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 39 - 112 @@ -347587,12 +358187,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 40 - 85 @@ -347602,12 +358206,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 41 - 113 @@ -347617,12 +358225,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 42 - 141 @@ -347632,12 +358244,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 43 - 133 @@ -347647,12 +358263,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 44 - 136 @@ -347662,12 +358282,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 45 - 105 @@ -347677,12 +358301,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 46 - 146 @@ -347692,12 +358320,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 47 - 137 @@ -347707,12 +358339,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 48 - 60 @@ -347722,12 +358358,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 49 - 71 @@ -347737,12 +358377,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 50 - 110 @@ -347752,12 +358396,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 51 - 115 @@ -347767,12 +358415,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 52 - 138 @@ -347782,12 +358434,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 53 - 102 @@ -347797,12 +358453,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 54 - 116 @@ -347812,12 +358472,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 55 - 63 @@ -347827,12 +358491,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 56 - 73 @@ -347842,12 +358510,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 57 - 74 @@ -347857,12 +358529,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 58 - 143 @@ -347872,12 +358548,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 59 - 113 @@ -347887,12 +358567,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 60 - 61 @@ -347902,12 +358586,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 61 - 97 @@ -347917,12 +358605,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 62 - 111 @@ -347932,12 +358624,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 63 - 118 @@ -347947,12 +358643,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 64 - 102 @@ -347962,12 +358662,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 65 - 66 @@ -347977,12 +358681,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 66 - 135 @@ -347992,12 +358700,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 67 - 147 @@ -348007,12 +358719,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 68 - 117 @@ -348022,12 +358738,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 69 - 119 @@ -348037,12 +358757,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 70 - 119 @@ -348052,12 +358776,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 71 - 65 @@ -348067,12 +358795,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 72 - 145 @@ -348082,12 +358814,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 73 - 111 @@ -348097,12 +358833,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 74 - 101 @@ -348112,12 +358852,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 75 - 125 @@ -348127,12 +358871,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 76 - 89 @@ -348142,12 +358890,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 77 - 94 @@ -348157,12 +358909,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 78 - 95 @@ -348172,12 +358928,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 79 - 117 @@ -348187,12 +358947,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 80 - 62 @@ -348202,12 +358966,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 81 - 77 @@ -348217,12 +358985,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 82 - 129 @@ -348232,12 +359004,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 83 - 140 @@ -348247,12 +359023,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 84 - 99 @@ -348262,12 +359042,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 85 - 92 @@ -348277,12 +359061,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 86 - 125 @@ -348292,12 +359080,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 87 - 131 @@ -348307,12 +359099,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 88 - 91 @@ -348322,12 +359118,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 89 - 114 @@ -348337,12 +359137,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 90 - 65 @@ -348352,12 +359156,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 91 - 127 @@ -348367,12 +359175,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 92 - 132 @@ -348382,12 +359194,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 93 - 129 @@ -348397,12 +359213,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 94 - 132 @@ -348412,12 +359232,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 95 - 85 @@ -348427,12 +359251,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 96 - 78 @@ -348442,12 +359270,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 97 - 89 @@ -348457,12 +359289,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 98 - 94 @@ -348472,12 +359308,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 99 - 104 @@ -348487,12 +359327,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 100 - 114 @@ -348502,12 +359346,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 100 - 128 @@ -348517,12 +359365,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 100 - 115 @@ -348532,12 +359384,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 100 - 105 @@ -348547,12 +359403,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 100 - 103 @@ -348562,12 +359422,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 100 - 101 @@ -349045,8 +359909,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 911840403} - {fileID: 825281058} + - {fileID: 911840403} m_Father: {fileID: 473592951} m_RootOrder: 19 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -349924,7 +360788,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2039291740} - m_RootOrder: 1 + 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} @@ -350189,8 +361053,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1271316100} - {fileID: 1740340319} + - {fileID: 1271316100} m_Father: {fileID: 473592951} m_RootOrder: 22 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -351538,12 +362402,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 478.4 @@ -351553,12 +362421,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 100 @@ -351568,12 +362440,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 40 @@ -351583,12 +362459,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 50 @@ -351598,12 +362478,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 60 @@ -351776,12 +362660,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 1111 @@ -351791,12 +362679,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 76 @@ -351806,12 +362698,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 79 @@ -351821,12 +362717,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 24 @@ -351836,12 +362736,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 10 @@ -352014,12 +362918,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 111 @@ -352029,12 +362937,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 76 @@ -352044,12 +362956,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 79 @@ -352059,12 +362975,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 24 @@ -352074,12 +362994,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 10 @@ -355368,8 +366292,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 266.8, y: 16.90001} - m_SizeDelta: {x: 28, y: 20} + m_AnchoredPosition: {x: 266.44928, y: 16.90001} + m_SizeDelta: {x: 27.298578, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1175724541 MonoBehaviour: @@ -360630,7 +371554,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2146965009} - m_RootOrder: 1 + 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} @@ -362470,8 +373394,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 974865537} - {fileID: 1962693696} + - {fileID: 974865537} m_Father: {fileID: 473592951} m_RootOrder: 41 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -363206,7 +374130,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1050293135} - m_RootOrder: 1 + 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} @@ -363882,8 +374806,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 228, y: -50.30356} - m_SizeDelta: {x: 28, y: 20} + m_AnchoredPosition: {x: 227.64929, y: -50.30356} + m_SizeDelta: {x: 27.298578, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1214750944 MonoBehaviour: @@ -365847,8 +376771,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 256.40356, y: 55.700012} - m_SizeDelta: {x: 28, y: 20} + m_AnchoredPosition: {x: 256.05286, y: 55.700012} + m_SizeDelta: {x: 27.298578, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1222484814 MonoBehaviour: @@ -366721,8 +377645,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1315103292} - {fileID: 1272827320} + - {fileID: 1315103292} m_Father: {fileID: 473592951} m_RootOrder: 25 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -367493,8 +378417,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1493861929} - {fileID: 1892333957} + - {fileID: 1493861929} m_Father: {fileID: 1407588448} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -367910,8 +378834,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1264344104} - {fileID: 377508457} + - {fileID: 1264344104} m_Father: {fileID: 473592951} m_RootOrder: 23 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -368489,8 +379413,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1072655611} - {fileID: 1407621904} + - {fileID: 1072655611} m_Father: {fileID: 473592951} m_RootOrder: 59 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -369118,7 +380042,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1241641390} - m_RootOrder: 0 + 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} @@ -371002,8 +381926,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1234075275} - {fileID: 943687725} + - {fileID: 1234075275} m_Father: {fileID: 473592951} m_RootOrder: 63 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -372196,7 +383120,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 52940794} - m_RootOrder: 0 + 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} @@ -373045,8 +383969,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 378887394} - {fileID: 702630692} + - {fileID: 378887394} m_Father: {fileID: 473592951} m_RootOrder: 65 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -375281,8 +386205,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1881921006} - {fileID: 1585325409} + - {fileID: 1881921006} m_Father: {fileID: 473592951} m_RootOrder: 91 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -376534,7 +387458,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1229799098} - m_RootOrder: 0 + 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} @@ -378329,7 +389253,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1155123227} - m_RootOrder: 0 + 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} @@ -378760,7 +389684,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1225615089} - m_RootOrder: 1 + 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} @@ -381753,8 +392677,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 861860721} - {fileID: 1329485486} + - {fileID: 861860721} m_Father: {fileID: 473592951} m_RootOrder: 90 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -383009,8 +393933,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1311764669} - {fileID: 1652052636} + - {fileID: 1311764669} m_Father: {fileID: 473592951} m_RootOrder: 11 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -383236,8 +394160,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1453665981} - {fileID: 934733530} + - {fileID: 1453665981} m_Father: {fileID: 473592951} m_RootOrder: 26 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -384808,12 +395732,16 @@ MonoBehaviour: m_Name: "\u76F4\u63A5\u8BBF\u95EE" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 335 @@ -384823,12 +395751,16 @@ MonoBehaviour: m_Name: "\u90AE\u4EF6\u8425\u9500" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 310 @@ -384838,12 +395770,16 @@ MonoBehaviour: m_Name: "\u8054\u76DF\u5E7F\u544A" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 274 @@ -384853,12 +395789,16 @@ MonoBehaviour: m_Name: "\u89C6\u9891\u5E7F\u544A" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 235 @@ -384868,12 +395808,16 @@ MonoBehaviour: m_Name: "\u641C\u7D22\u5F15\u64CE" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 400 @@ -386374,7 +397318,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1096466782} - m_RootOrder: 1 + 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} @@ -388971,7 +399915,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1291833705} - m_RootOrder: 0 + 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} @@ -389131,7 +400075,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 138.29999} - m_SizeDelta: {x: 36, y: 20} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1312608028 MonoBehaviour: @@ -389281,7 +400225,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 576587771} - m_RootOrder: 0 + 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} @@ -389939,7 +400883,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1225615089} - m_RootOrder: 0 + 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} @@ -393837,7 +404781,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1285574511} - m_RootOrder: 1 + 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} @@ -394022,7 +404966,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1096716073} - m_RootOrder: 1 + 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} @@ -395955,7 +406899,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1395062955} - m_RootOrder: 0 + 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} @@ -398409,7 +409353,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 896399434} - m_RootOrder: 0 + 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} @@ -398789,7 +409733,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 881604660} - m_RootOrder: 1 + 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} @@ -400834,8 +411778,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 772474377} - {fileID: 153713020} + - {fileID: 772474377} m_Father: {fileID: 1115439235} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -403675,8 +414619,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 141916659} - {fileID: 725849891} + - {fileID: 141916659} m_Father: {fileID: 473592951} m_RootOrder: 56 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -405379,8 +416323,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1578504824} - {fileID: 86331129} + - {fileID: 1578504824} m_Father: {fileID: 874471555} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -406480,12 +417424,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 0 @@ -406495,12 +417443,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.017453292 - 0.017452406 @@ -406510,12 +417462,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.034906585 - 0.034899496 @@ -406525,12 +417481,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.05235988 - 0.05233596 @@ -406540,12 +417500,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.06981317 - 0.06975647 @@ -406555,12 +417519,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.08726646 - 0.08715574 @@ -406570,12 +417538,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.10471976 - 0.104528464 @@ -406585,12 +417557,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.12217305 - 0.12186935 @@ -406600,12 +417576,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.13962634 - 0.1391731 @@ -406615,12 +417595,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.15707964 - 0.15643448 @@ -406630,12 +417614,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.17453292 - 0.17364818 @@ -406645,12 +417633,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.19198622 - 0.190809 @@ -406660,12 +417652,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.20943952 - 0.2079117 @@ -406675,12 +417671,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.2268928 - 0.22495104 @@ -406690,12 +417690,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.2443461 - 0.2419219 @@ -406705,12 +417709,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.2617994 - 0.25881904 @@ -406720,12 +417728,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.27925268 - 0.27563736 @@ -406735,12 +417747,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.29670596 - 0.2923717 @@ -406750,12 +417766,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.31415927 - 0.309017 @@ -406765,12 +417785,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.33161256 - 0.32556814 @@ -406780,12 +417804,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.34906584 - 0.34202012 @@ -406795,12 +417823,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.36651915 - 0.35836795 @@ -406810,12 +417842,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.38397244 - 0.37460658 @@ -406825,12 +417861,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.40142572 - 0.39073113 @@ -406840,12 +417880,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.41887903 - 0.40673664 @@ -406855,12 +417899,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.43633232 - 0.42261827 @@ -406870,12 +417918,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.4537856 - 0.43837115 @@ -406885,12 +417937,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.47123888 - 0.4539905 @@ -406900,12 +417956,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.4886922 - 0.46947157 @@ -406915,12 +417975,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.5061455 - 0.4848096 @@ -406930,12 +417994,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.5235988 - 0.5 @@ -406945,12 +418013,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.54105204 - 0.5150381 @@ -406960,12 +418032,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.55850536 - 0.52991927 @@ -406975,12 +418051,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.57595867 - 0.54463905 @@ -406990,12 +418070,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.5934119 - 0.5591929 @@ -407005,12 +418089,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.61086524 - 0.57357645 @@ -407020,12 +418108,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.62831855 - 0.58778524 @@ -407035,12 +418127,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.6457718 - 0.601815 @@ -407050,12 +418146,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.6632251 - 0.6156615 @@ -407065,12 +418165,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.6806784 - 0.6293204 @@ -407080,12 +418184,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.6981317 - 0.6427876 @@ -407095,12 +418203,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.715585 - 0.656059 @@ -407110,12 +418222,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.7330383 - 0.6691306 @@ -407125,12 +418241,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.75049156 - 0.6819984 @@ -407140,12 +418260,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.7679449 - 0.6946584 @@ -407155,12 +418279,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.7853982 - 0.70710677 @@ -407170,12 +418298,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.80285144 - 0.7193398 @@ -407185,12 +418317,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.82030475 - 0.7313537 @@ -407200,12 +418336,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.83775806 - 0.74314487 @@ -407215,12 +418355,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.8552113 - 0.75470954 @@ -407230,12 +418374,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.87266463 - 0.76604444 @@ -407245,12 +418393,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.8901179 - 0.7771459 @@ -407260,12 +418412,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.9075712 - 0.7880107 @@ -407275,12 +418431,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.9250245 - 0.79863554 @@ -407290,12 +418450,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.94247776 - 0.809017 @@ -407305,12 +418469,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.9599311 - 0.81915206 @@ -407320,12 +418488,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.9773844 - 0.82903755 @@ -407335,12 +418507,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0.99483764 - 0.83867055 @@ -407350,12 +418526,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.012291 - 0.8480481 @@ -407365,12 +418545,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.0297443 - 0.8571673 @@ -407380,12 +418564,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.0471976 - 0.86602545 @@ -407395,12 +418583,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.0646509 - 0.8746197 @@ -407410,12 +418602,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.0821041 - 0.88294756 @@ -407425,12 +418621,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.0995574 - 0.8910065 @@ -407440,12 +418640,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.1170107 - 0.89879405 @@ -407455,12 +418659,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.134464 - 0.9063078 @@ -407470,12 +418678,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.1519173 - 0.9135455 @@ -407485,12 +418697,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.1693705 - 0.9205048 @@ -407500,12 +418716,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.1868238 - 0.92718387 @@ -407515,12 +418735,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.2042772 - 0.9335804 @@ -407530,12 +418754,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.2217305 - 0.9396926 @@ -407545,12 +418773,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.2391838 - 0.94551855 @@ -407560,12 +418792,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.2566371 - 0.95105654 @@ -407575,12 +418811,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.2740903 - 0.9563047 @@ -407590,12 +418830,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.2915436 - 0.9612617 @@ -407605,12 +418849,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.3089969 - 0.9659258 @@ -407620,12 +418868,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.3264502 - 0.9702957 @@ -407635,12 +418887,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.3439035 - 0.97437006 @@ -407650,12 +418906,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.3613569 - 0.9781476 @@ -407665,12 +418925,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.37881 - 0.98162717 @@ -407680,12 +418944,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.3962634 - 0.9848077 @@ -407695,12 +418963,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.4137167 - 0.98768836 @@ -407710,12 +418982,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.43117 - 0.99026805 @@ -407725,12 +419001,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.4486233 - 0.99254614 @@ -407740,12 +419020,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.4660766 - 0.9945219 @@ -407755,12 +419039,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.4835298 - 0.9961947 @@ -407770,12 +419058,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.5009831 - 0.9975641 @@ -407785,12 +419077,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.5184364 - 0.9986295 @@ -407800,12 +419096,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.5358897 - 0.99939084 @@ -407815,12 +419115,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.553343 - 0.9998477 @@ -407830,12 +419134,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.5707964 - 1 @@ -407845,12 +419153,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.5882496 - 0.9998477 @@ -407860,12 +419172,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.6057029 - 0.99939084 @@ -407875,12 +419191,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.6231562 - 0.9986295 @@ -407890,12 +419210,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.6406095 - 0.9975641 @@ -407905,12 +419229,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.6580628 - 0.9961947 @@ -407920,12 +419248,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.6755161 - 0.9945219 @@ -407935,12 +419267,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.6929693 - 0.99254614 @@ -407950,12 +419286,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.7104226 - 0.99026805 @@ -407965,12 +419305,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.727876 - 0.98768836 @@ -407980,12 +419324,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.7453293 - 0.9848077 @@ -407995,12 +419343,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.7627826 - 0.98162717 @@ -408010,12 +419362,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.7802358 - 0.9781476 @@ -408025,12 +419381,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.7976891 - 0.97437006 @@ -408040,12 +419400,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.8151424 - 0.9702957 @@ -408055,12 +419419,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.8325957 - 0.9659258 @@ -408070,12 +419438,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.850049 - 0.9612617 @@ -408085,12 +419457,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.8675023 - 0.9563047 @@ -408100,12 +419476,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.8849555 - 0.95105654 @@ -408115,12 +419495,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.9024088 - 0.9455186 @@ -408130,12 +419514,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.9198622 - 0.9396926 @@ -408145,12 +419533,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.9373155 - 0.93358046 @@ -408160,12 +419552,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.9547688 - 0.92718387 @@ -408175,12 +419571,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.9722221 - 0.92050487 @@ -408190,12 +419590,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1.9896753 - 0.9135455 @@ -408205,12 +419609,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.0071287 - 0.90630776 @@ -408220,12 +419628,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.024582 - 0.89879405 @@ -408235,12 +419647,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.042035 - 0.8910066 @@ -408250,12 +419666,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.0594885 - 0.88294756 @@ -408265,12 +419685,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.0769417 - 0.8746197 @@ -408280,12 +419704,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.0943952 - 0.8660254 @@ -408295,12 +419723,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.1118484 - 0.8571673 @@ -408310,12 +419742,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.1293018 - 0.84804803 @@ -408325,12 +419761,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.146755 - 0.83867055 @@ -408340,12 +419780,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.1642082 - 0.8290376 @@ -408355,12 +419799,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.1816616 - 0.819152 @@ -408370,12 +419818,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.1991148 - 0.809017 @@ -408385,12 +419837,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.2165682 - 0.7986355 @@ -408400,12 +419856,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.2340214 - 0.7880108 @@ -408415,12 +419875,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.2514746 - 0.77714604 @@ -408430,12 +419894,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.268928 - 0.76604444 @@ -408445,12 +419913,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.2863812 - 0.7547096 @@ -408460,12 +419932,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.3038347 - 0.7431448 @@ -408475,12 +419951,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.3212879 - 0.7313537 @@ -408490,12 +419970,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.338741 - 0.7193399 @@ -408505,12 +419989,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.3561945 - 0.70710677 @@ -408520,12 +420008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.3736477 - 0.69465846 @@ -408535,12 +420027,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.3911011 - 0.6819983 @@ -408550,12 +420046,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.4085543 - 0.6691306 @@ -408565,12 +420065,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.4260077 - 0.65605897 @@ -408580,12 +420084,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.443461 - 0.64278764 @@ -408595,12 +420103,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.4609141 - 0.6293205 @@ -408610,12 +420122,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.4783676 - 0.61566144 @@ -408625,12 +420141,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.4958208 - 0.6018151 @@ -408640,12 +420160,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.5132742 - 0.5877852 @@ -408655,12 +420179,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.5307274 - 0.57357645 @@ -408670,12 +420198,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.5481806 - 0.559193 @@ -408685,12 +420217,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.565634 - 0.54463905 @@ -408700,12 +420236,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.5830872 - 0.5299193 @@ -408715,12 +420255,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.6005406 - 0.515038 @@ -408730,12 +420274,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.6179938 - 0.50000006 @@ -408745,12 +420293,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.6354473 - 0.48480955 @@ -408760,12 +420312,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.6529005 - 0.46947157 @@ -408775,12 +420331,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.6703537 - 0.45399058 @@ -408790,12 +420350,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.687807 - 0.43837112 @@ -408805,12 +420369,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.7052603 - 0.42261833 @@ -408820,12 +420388,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.7227137 - 0.40673658 @@ -408835,12 +420407,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.740167 - 0.39073116 @@ -408850,12 +420426,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.75762 - 0.3746067 @@ -408865,12 +420445,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.7750735 - 0.35836792 @@ -408880,12 +420464,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.7925267 - 0.3420202 @@ -408895,12 +420483,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.8099802 - 0.3255681 @@ -408910,12 +420502,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.8274333 - 0.30901703 @@ -408925,12 +420521,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.8448865 - 0.29237184 @@ -408940,12 +420540,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.86234 - 0.27563736 @@ -408955,12 +420559,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.8797932 - 0.25881913 @@ -408970,12 +420578,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.8972466 - 0.24192186 @@ -408985,12 +420597,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.9146998 - 0.22495112 @@ -409000,12 +420616,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.9321532 - 0.20791161 @@ -409015,12 +420635,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.9496064 - 0.19080901 @@ -409030,12 +420654,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.9670596 - 0.1736483 @@ -409045,12 +420673,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.984513 - 0.15643445 @@ -409060,12 +420692,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.0019662 - 0.13917318 @@ -409075,12 +420711,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.0194197 - 0.12186928 @@ -409090,12 +420730,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.0368729 - 0.104528494 @@ -409105,12 +420749,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.054326 - 0.08715588 @@ -409120,12 +420768,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.0717795 - 0.06975647 @@ -409135,12 +420787,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.0892327 - 0.05233605 @@ -409150,12 +420806,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.106686 - 0.03489945 @@ -409165,12 +420825,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.1241393 - 0.017452458 @@ -409180,12 +420844,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.1415927 - -0.00000008742278 @@ -409195,12 +420863,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.159046 - -0.017452395 @@ -409210,12 +420882,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.1764991 - -0.034899388 @@ -409225,12 +420901,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.1939526 - -0.052335985 @@ -409240,12 +420920,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.2114058 - -0.0697564 @@ -409255,12 +420939,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.2288592 - -0.08715581 @@ -409270,12 +420958,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.2463124 - -0.104528435 @@ -409285,12 +420977,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.2637656 - -0.121869214 @@ -409300,12 +420996,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.281219 - -0.1391731 @@ -409315,12 +421015,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.2986722 - -0.15643437 @@ -409330,12 +421034,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.3161256 - -0.17364822 @@ -409345,12 +421053,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.3335788 - -0.19080895 @@ -409360,12 +421072,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.3510323 - -0.20791179 @@ -409375,12 +421091,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.3684855 - -0.22495104 @@ -409390,12 +421110,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.3859386 - -0.2419218 @@ -409405,12 +421129,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.403392 - -0.25881907 @@ -409420,12 +421148,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.4208453 - -0.2756373 @@ -409435,12 +421167,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.4382987 - -0.29237178 @@ -409450,12 +421186,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.455752 - -0.30901697 @@ -409465,12 +421205,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.473205 - -0.32556805 @@ -409480,12 +421224,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.4906585 - -0.34202015 @@ -409495,12 +421243,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.5081117 - -0.35836786 @@ -409510,12 +421262,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.5255651 - -0.37460664 @@ -409525,12 +421281,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.5430183 - -0.3907311 @@ -409540,12 +421300,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.5604715 - -0.40673652 @@ -409555,12 +421319,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.577925 - -0.42261827 @@ -409570,12 +421338,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.5953782 - -0.43837106 @@ -409585,12 +421357,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.6128316 - -0.45399055 @@ -409600,12 +421376,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.6302848 - -0.4694715 @@ -409615,12 +421395,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.6477382 - -0.4848097 @@ -409630,12 +421414,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.6651914 - -0.49999997 @@ -409645,12 +421433,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.6826446 - -0.51503795 @@ -409660,12 +421452,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.700098 - -0.52991927 @@ -409675,12 +421471,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.7175512 - -0.544639 @@ -409690,12 +421490,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.7350047 - -0.55919296 @@ -409705,12 +421509,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.7524579 - -0.5735764 @@ -409720,12 +421528,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.769911 - -0.5877851 @@ -409735,12 +421547,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.7873645 - -0.60181504 @@ -409750,12 +421566,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.8048177 - -0.6156614 @@ -409765,12 +421585,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.822271 - -0.62932044 @@ -409780,12 +421604,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.8397243 - -0.6427876 @@ -409795,12 +421623,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.8571777 - -0.6560591 @@ -409810,12 +421642,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.874631 - -0.6691306 @@ -409825,12 +421661,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.8920841 - -0.68199825 @@ -409840,12 +421680,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.9095376 - -0.6946584 @@ -409855,12 +421699,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.9269907 - -0.7071067 @@ -409870,12 +421718,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.9444442 - -0.71933985 @@ -409885,12 +421737,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.9618974 - -0.7313537 @@ -409900,12 +421756,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.9793506 - -0.74314475 @@ -409915,12 +421775,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3.996804 - -0.7547096 @@ -409930,12 +421794,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.0142574 - -0.76604456 @@ -409945,12 +421813,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.0317106 - -0.777146 @@ -409960,12 +421832,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.049164 - -0.7880107 @@ -409975,12 +421851,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.066617 - -0.7986354 @@ -409990,12 +421870,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.08407 - -0.8090168 @@ -410005,12 +421889,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.101524 - -0.8191521 @@ -410020,12 +421908,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.118977 - -0.8290376 @@ -410035,12 +421927,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.1364303 - -0.83867055 @@ -410050,12 +421946,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.1538835 - -0.84804803 @@ -410065,12 +421965,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.1713367 - -0.8571672 @@ -410080,12 +421984,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.1887903 - -0.86602545 @@ -410095,12 +422003,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.2062435 - -0.8746197 @@ -410110,12 +422022,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.2236967 - -0.88294756 @@ -410125,12 +422041,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.24115 - -0.89100647 @@ -410140,12 +422060,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.2586036 - -0.8987941 @@ -410155,12 +422079,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.276057 - -0.9063078 @@ -410170,12 +422098,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.29351 - -0.9135454 @@ -410185,12 +422117,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.310963 - -0.9205048 @@ -410200,12 +422136,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.3284163 - -0.9271838 @@ -410215,12 +422155,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.34587 - -0.9335805 @@ -410230,12 +422174,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.363323 - -0.9396927 @@ -410245,12 +422193,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.3807764 - -0.94551855 @@ -410260,12 +422212,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.3982296 - -0.9510565 @@ -410275,12 +422231,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.415683 - -0.95630467 @@ -410290,12 +422250,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.4331365 - -0.96126175 @@ -410305,12 +422269,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.4505897 - -0.9659259 @@ -410320,12 +422288,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.468043 - -0.9702957 @@ -410335,12 +422307,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.485496 - -0.97437006 @@ -410350,12 +422326,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.502949 - -0.97814757 @@ -410365,12 +422345,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.520403 - -0.9816272 @@ -410380,12 +422364,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.537856 - -0.9848078 @@ -410395,12 +422383,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.5553093 - -0.9876883 @@ -410410,12 +422402,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.5727625 - -0.99026805 @@ -410425,12 +422421,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.5902157 - -0.99254614 @@ -410440,12 +422440,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.6076694 - -0.9945219 @@ -410455,12 +422459,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.6251225 - -0.9961947 @@ -410470,12 +422478,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.6425757 - -0.997564 @@ -410485,12 +422497,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.660029 - -0.9986295 @@ -410500,12 +422516,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.677482 - -0.99939084 @@ -410515,12 +422535,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.694936 - -0.9998477 @@ -410530,12 +422554,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.712389 - -1 @@ -410545,12 +422573,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.729842 - -0.9998477 @@ -410560,12 +422592,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.7472954 - -0.99939084 @@ -410575,12 +422611,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.764749 - -0.9986295 @@ -410590,12 +422630,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.7822022 - -0.997564 @@ -410605,12 +422649,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.7996554 - -0.9961947 @@ -410620,12 +422668,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.8171086 - -0.9945219 @@ -410635,12 +422687,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.834562 - -0.9925462 @@ -410650,12 +422706,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.8520155 - -0.99026805 @@ -410665,12 +422725,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.8694687 - -0.9876883 @@ -410680,12 +422744,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.886922 - -0.9848077 @@ -410695,12 +422763,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.904375 - -0.9816272 @@ -410710,12 +422782,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.9218283 - -0.9781476 @@ -410725,12 +422801,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.939282 - -0.97437 @@ -410740,12 +422820,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.956735 - -0.9702957 @@ -410755,12 +422839,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.9741883 - -0.9659258 @@ -410770,12 +422858,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4.9916415 - -0.96126175 @@ -410785,12 +422877,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.0090947 - -0.95630485 @@ -410800,12 +422896,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.0265484 - -0.9510565 @@ -410815,12 +422915,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.0440016 - -0.94551855 @@ -410830,12 +422934,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.061455 - -0.9396926 @@ -410845,12 +422953,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.078908 - -0.93358046 @@ -410860,12 +422972,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.096361 - -0.9271839 @@ -410875,12 +422991,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.113815 - -0.9205048 @@ -410890,12 +423010,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.131268 - -0.9135454 @@ -410905,12 +423029,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.148721 - -0.9063078 @@ -410920,12 +423048,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.1661744 - -0.8987941 @@ -410935,12 +423067,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.1836276 - -0.89100665 @@ -410950,12 +423086,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.2010813 - -0.88294756 @@ -410965,12 +423105,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.2185345 - -0.8746197 @@ -410980,12 +423124,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.2359877 - -0.86602545 @@ -410995,12 +423143,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.253441 - -0.8571674 @@ -411010,12 +423162,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.2708945 - -0.848048 @@ -411025,12 +423181,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.2883477 - -0.8386705 @@ -411040,12 +423200,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.305801 - -0.8290376 @@ -411055,12 +423219,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.323254 - -0.8191521 @@ -411070,12 +423238,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.3407073 - -0.8090171 @@ -411085,12 +423257,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.358161 - -0.7986354 @@ -411100,12 +423276,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.375614 - -0.7880107 @@ -411115,12 +423295,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.3930674 - -0.777146 @@ -411130,12 +423314,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.4105206 - -0.7660445 @@ -411145,12 +423333,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.4279737 - -0.7547097 @@ -411160,12 +423352,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.4454274 - -0.74314475 @@ -411175,12 +423371,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.4628806 - -0.73135364 @@ -411190,12 +423390,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.480334 - -0.71933985 @@ -411205,12 +423409,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.497787 - -0.7071069 @@ -411220,12 +423428,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.51524 - -0.6946585 @@ -411235,12 +423447,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.532694 - -0.68199825 @@ -411250,12 +423466,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.550147 - -0.66913056 @@ -411265,12 +423485,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.5676003 - -0.6560591 @@ -411280,12 +423504,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.5850534 - -0.64278775 @@ -411295,12 +423523,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.6025066 - -0.6293206 @@ -411310,12 +423542,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.6199603 - -0.6156614 @@ -411325,12 +423561,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.6374135 - -0.601815 @@ -411340,12 +423580,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.6548667 - -0.5877853 @@ -411355,12 +423599,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.67232 - -0.57357657 @@ -411370,12 +423618,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.689773 - -0.55919313 @@ -411385,12 +423637,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.7072268 - -0.54463893 @@ -411400,12 +423656,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.72468 - -0.52991927 @@ -411415,12 +423675,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.742133 - -0.51503813 @@ -411430,12 +423694,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.7595863 - -0.5000002 @@ -411445,12 +423713,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.77704 - -0.48480946 @@ -411460,12 +423732,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.794493 - -0.46947148 @@ -411475,12 +423751,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.8119464 - -0.45399052 @@ -411490,12 +423770,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.8293996 - -0.43837124 @@ -411505,12 +423789,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.846853 - -0.42261845 @@ -411520,12 +423808,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.8643064 - -0.4067365 @@ -411535,12 +423827,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.8817596 - -0.39073107 @@ -411550,12 +423846,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.899213 - -0.37460664 @@ -411565,12 +423865,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.916666 - -0.35836807 @@ -411580,12 +423884,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.934119 - -0.34202036 @@ -411595,12 +423903,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.951573 - -0.32556802 @@ -411610,12 +423922,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.969026 - -0.30901694 @@ -411625,12 +423941,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5.9864793 - -0.29237175 @@ -411640,12 +423960,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.0039325 - -0.2756375 @@ -411655,12 +423979,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.0213857 - -0.25881928 @@ -411670,12 +423998,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.0388393 - -0.24192177 @@ -411685,12 +424017,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.0562925 - -0.22495103 @@ -411700,12 +424036,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.0737457 - -0.20791176 @@ -411715,12 +424055,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.091199 - -0.19080916 @@ -411730,12 +424074,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.108652 - -0.17364845 @@ -411745,12 +424093,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.126106 - -0.15643436 @@ -411760,12 +424112,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.143559 - -0.13917309 @@ -411775,12 +424131,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.161012 - -0.12186943 @@ -411790,12 +424150,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.1784654 - -0.10452865 @@ -411805,12 +424169,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.1959186 - -0.08715603 @@ -411820,12 +424188,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.213372 - -0.06975638 @@ -411835,12 +424207,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.2308254 - -0.052335963 @@ -411850,12 +424226,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.2482786 - -0.0348996 @@ -411865,12 +424245,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.265732 - -0.017452609 @@ -411880,12 +424264,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.2831855 - 0.00000017484555 @@ -411895,12 +424283,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.3006387 - 0.017452482 @@ -411910,12 +424302,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.318092 - 0.034899473 @@ -411925,12 +424321,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.335545 - 0.052335836 @@ -411940,12 +424340,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.3529983 - 0.069756255 @@ -411955,12 +424359,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.370452 - 0.0871559 @@ -411970,12 +424378,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.387905 - 0.104528524 @@ -411985,12 +424397,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.4053583 - 0.1218693 @@ -412000,12 +424416,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.4228115 - 0.13917296 @@ -412015,12 +424435,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.4402647 - 0.15643422 @@ -412030,12 +424454,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.4577184 - 0.17364831 @@ -412045,12 +424473,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.4751716 - 0.19080904 @@ -412060,12 +424492,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.4926248 - 0.20791164 @@ -412075,12 +424511,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.510078 - 0.2249509 @@ -412090,12 +424530,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.527531 - 0.24192165 @@ -412105,12 +424549,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.544985 - 0.25881916 @@ -412120,12 +424568,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.562438 - 0.2756374 @@ -412135,12 +424587,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.579891 - 0.29237163 @@ -412150,12 +424606,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.5973444 - 0.30901682 @@ -412165,12 +424625,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.6147976 - 0.3255679 @@ -412180,12 +424644,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.6322513 - 0.34202024 @@ -412195,12 +424663,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.6497045 - 0.35836795 @@ -412210,12 +424682,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.6671576 - 0.37460652 @@ -412225,12 +424701,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.684611 - 0.39073095 @@ -412240,12 +424720,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.7020645 - 0.40673682 @@ -412255,12 +424739,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.7195177 - 0.42261833 @@ -412270,12 +424758,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.736971 - 0.43837112 @@ -412285,12 +424777,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.754424 - 0.4539904 @@ -412300,12 +424796,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.7718773 - 0.46947137 @@ -412315,12 +424815,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.789331 - 0.48480976 @@ -412330,12 +424834,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.806784 - 0.50000006 @@ -412345,12 +424853,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.8242373 - 0.5150381 @@ -412360,12 +424872,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.8416905 - 0.52991915 @@ -412375,12 +424891,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.8591437 - 0.5446389 @@ -412390,12 +424910,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.8765974 - 0.559193 @@ -412405,12 +424929,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.8940506 - 0.57357645 @@ -412420,12 +424948,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.911504 - 0.58778524 @@ -412435,12 +424967,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.928957 - 0.6018149 @@ -412450,12 +424986,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.94641 - 0.61566126 @@ -412465,12 +425005,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.963864 - 0.6293205 @@ -412480,12 +425024,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.981317 - 0.64278764 @@ -412495,12 +425043,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6.99877 - 0.65605897 @@ -412510,12 +425062,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.0162234 - 0.6691305 @@ -412525,12 +425081,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.0336766 - 0.6819982 @@ -412540,12 +425100,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.0511303 - 0.69465846 @@ -412555,12 +425119,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.0685835 - 0.70710677 @@ -412570,12 +425138,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.0860367 - 0.7193397 @@ -412585,12 +425157,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.10349 - 0.7313536 @@ -412600,12 +425176,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.120943 - 0.74314463 @@ -412615,12 +425195,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.1383967 - 0.75470966 @@ -412630,12 +425214,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.15585 - 0.76604444 @@ -412645,12 +425233,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.173303 - 0.7771459 @@ -412660,12 +425252,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.1907563 - 0.78801066 @@ -412675,12 +425271,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.20821 - 0.7986356 @@ -412690,12 +425290,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.225663 - 0.80901706 @@ -412705,12 +425309,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.2431164 - 0.81915206 @@ -412720,12 +425328,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.2605696 - 0.8290375 @@ -412735,12 +425347,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.278023 - 0.83867043 @@ -412750,12 +425366,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.2954764 - 0.8480482 @@ -412765,12 +425385,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.3129296 - 0.85716736 @@ -412780,12 +425404,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.330383 - 0.8660254 @@ -412795,12 +425423,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.347836 - 0.87461966 @@ -412810,12 +425442,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.365289 - 0.8829475 @@ -412825,12 +425461,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.382743 - 0.8910066 @@ -412840,12 +425480,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.400196 - 0.89879405 @@ -412855,12 +425499,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.4176493 - 0.90630776 @@ -412870,12 +425518,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.4351025 - 0.91354537 @@ -412885,12 +425537,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.4525557 - 0.92050475 @@ -412900,12 +425556,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.4700093 - 0.9271839 @@ -412915,12 +425575,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.4874625 - 0.93358046 @@ -412930,12 +425594,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.5049157 - 0.9396926 @@ -412945,12 +425613,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.522369 - 0.9455185 @@ -412960,12 +425632,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.539822 - 0.9510564 @@ -412975,12 +425651,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.557276 - 0.9563048 @@ -412990,12 +425670,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.574729 - 0.9612617 @@ -413005,12 +425689,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.592182 - 0.9659258 @@ -413020,12 +425708,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.6096354 - 0.97029567 @@ -413035,12 +425727,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.6270885 - 0.97437 @@ -413050,12 +425746,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.644542 - 0.9781476 @@ -413065,12 +425765,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.6619954 - 0.98162717 @@ -413080,12 +425784,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.6794486 - 0.9848077 @@ -413095,12 +425803,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.696902 - 0.9876883 @@ -413110,12 +425822,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.7143555 - 0.9902681 @@ -413125,12 +425841,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.7318087 - 0.99254614 @@ -413140,12 +425860,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.749262 - 0.9945219 @@ -413155,12 +425879,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.766715 - 0.99619466 @@ -413170,12 +425898,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.7841682 - 0.997564 @@ -413185,12 +425917,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.801622 - 0.99862957 @@ -413200,12 +425936,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.819075 - 0.99939084 @@ -413215,12 +425955,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.8365283 - 0.9998477 @@ -413230,12 +425974,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.8539815 - 1 @@ -413245,12 +425993,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.8714347 - 0.9998477 @@ -413260,12 +426012,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.8888884 - 0.99939084 @@ -413275,12 +426031,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.9063416 - 0.9986295 @@ -413290,12 +426050,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.9237947 - 0.9975641 @@ -413305,12 +426069,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.941248 - 0.9961947 @@ -413320,12 +426088,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.958701 - 0.9945219 @@ -413335,12 +426107,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.976155 - 0.99254614 @@ -413350,12 +426126,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7.993608 - 0.99026805 @@ -413365,12 +426145,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.011062 - 0.9876883 @@ -413380,12 +426164,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.028515 - 0.9848077 @@ -413395,12 +426183,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.045968 - 0.98162717 @@ -413410,12 +426202,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.063421 - 0.97814757 @@ -413425,12 +426221,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.080874 - 0.97437006 @@ -413440,12 +426240,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.098328 - 0.9702957 @@ -413455,12 +426259,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.115781 - 0.9659259 @@ -413470,12 +426278,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.133234 - 0.96126175 @@ -413485,12 +426297,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.150687 - 0.95630485 @@ -413500,12 +426316,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.16814 - 0.95105666 @@ -413515,12 +426335,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.185595 - 0.94551843 @@ -413530,12 +426354,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.203048 - 0.93969256 @@ -413545,12 +426373,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.220501 - 0.93358034 @@ -413560,12 +426392,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.237954 - 0.9271838 @@ -413575,12 +426411,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.255407 - 0.92050487 @@ -413590,12 +426430,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.272861 - 0.9135455 @@ -413605,12 +426449,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.290314 - 0.9063079 @@ -413620,12 +426468,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.307767 - 0.8987942 @@ -413635,12 +426487,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.32522 - 0.8910067 @@ -413650,12 +426506,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.342673 - 0.88294786 @@ -413665,12 +426525,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.360127 - 0.87461954 @@ -413680,12 +426544,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.377581 - 0.86602527 @@ -413695,12 +426563,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.395034 - 0.85716724 @@ -413710,12 +426582,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.412487 - 0.8480481 @@ -413725,12 +426601,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.42994 - 0.8386706 @@ -413740,12 +426620,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.447393 - 0.82903767 @@ -413755,12 +426639,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.464847 - 0.8191522 @@ -413770,12 +426658,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.4823 - 0.8090172 @@ -413785,12 +426677,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.499753 - 0.7986358 @@ -413800,12 +426696,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.517207 - 0.78801054 @@ -413815,12 +426715,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.53466 - 0.7771458 @@ -413830,12 +426734,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.552114 - 0.7660443 @@ -413845,12 +426753,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.569567 - 0.75470954 @@ -413860,12 +426772,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.58702 - 0.7431448 @@ -413875,12 +426791,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.604473 - 0.73135376 @@ -413890,12 +426810,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.621926 - 0.71933997 @@ -413905,12 +426829,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.6393795 - 0.707107 @@ -413920,12 +426848,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.656833 - 0.69465864 @@ -413935,12 +426867,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.674286 - 0.6819987 @@ -413950,12 +426886,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.69174 - 0.6691303 @@ -413965,12 +426905,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.709193 - 0.65605885 @@ -413980,12 +426924,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.726646 - 0.64278746 @@ -413995,12 +426943,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.7441 - 0.6293203 @@ -414010,12 +426962,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.761553 - 0.6156615 @@ -414025,12 +426981,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.779006 - 0.6018151 @@ -414040,12 +427000,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.796459 - 0.5877854 @@ -414055,12 +427019,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.813912 - 0.5735767 @@ -414070,12 +427038,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.831366 - 0.55919325 @@ -414085,12 +427057,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.848819 - 0.54463947 @@ -414100,12 +427076,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.866273 - 0.52991897 @@ -414115,12 +427095,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.883726 - 0.5150379 @@ -414130,12 +427114,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.901179 - 0.49999988 @@ -414145,12 +427133,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.9186325 - 0.4848096 @@ -414160,12 +427152,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.936086 - 0.46947163 @@ -414175,12 +427171,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.953539 - 0.45399064 @@ -414190,12 +427190,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.970992 - 0.4383714 @@ -414205,12 +427209,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8.988445 - 0.4226186 @@ -414220,12 +427228,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.005898 - 0.40673706 @@ -414235,12 +427247,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.023353 - 0.39073077 @@ -414250,12 +427266,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.040806 - 0.3746063 @@ -414265,12 +427285,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.058259 - 0.35836777 @@ -414280,12 +427304,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.075712 - 0.34202006 @@ -414295,12 +427323,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.093165 - 0.32556817 @@ -414310,12 +427342,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.110619 - 0.3090171 @@ -414325,12 +427361,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.128072 - 0.2923719 @@ -414340,12 +427380,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.145525 - 0.27563766 @@ -414355,12 +427399,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.162978 - 0.25881943 @@ -414370,12 +427418,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.180431 - 0.24192238 @@ -414385,12 +427437,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.1978855 - 0.2249507 @@ -414400,12 +427456,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.215339 - 0.20791145 @@ -414415,12 +427475,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.232792 - 0.19080885 @@ -414430,12 +427494,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.250245 - 0.17364812 @@ -414445,12 +427513,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.267698 - 0.1564345 @@ -414460,12 +427532,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.2851515 - 0.13917324 @@ -414475,12 +427551,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.302605 - 0.12186958 @@ -414490,12 +427570,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.320058 - 0.1045288 @@ -414505,12 +427589,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.337511 - 0.08715618 @@ -414520,12 +427608,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.354964 - 0.06975701 @@ -414535,12 +427627,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.372418 - 0.052335635 @@ -414550,12 +427646,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.389872 - 0.034899276 @@ -414565,12 +427665,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.407325 - 0.017452283 @@ -414580,12 +427684,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.424778 - -0.000000023849761 @@ -414595,12 +427703,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.442231 - -0.017452331 @@ -414610,12 +427722,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.459684 - -0.034899324 @@ -414625,12 +427741,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.477138 - -0.052335683 @@ -414640,12 +427760,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.494591 - -0.069756106 @@ -414655,12 +427779,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.512044 - -0.087155275 @@ -414670,12 +427798,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.529498 - -0.104528844 @@ -414685,12 +427817,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.546951 - -0.12186962 @@ -414700,12 +427836,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.5644045 - -0.13917328 @@ -414715,12 +427855,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.581858 - -0.15643455 @@ -414730,12 +427874,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.599311 - -0.17364816 @@ -414745,12 +427893,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.616764 - -0.19080889 @@ -414760,12 +427912,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.634217 - -0.20791149 @@ -414775,12 +427931,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.65167 - -0.22495076 @@ -414790,12 +427950,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.669124 - -0.2419215 @@ -414805,12 +427969,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.686577 - -0.25881857 @@ -414820,12 +427988,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.704031 - -0.2756377 @@ -414835,12 +428007,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.721484 - -0.29237196 @@ -414850,12 +428026,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.738937 - -0.30901715 @@ -414865,12 +428045,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.756391 - -0.3255682 @@ -414880,12 +428064,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.773844 - -0.3420201 @@ -414895,12 +428083,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.791297 - -0.3583678 @@ -414910,12 +428102,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.80875 - -0.37460637 @@ -414925,12 +428121,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.826203 - -0.39073083 @@ -414940,12 +428140,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.843657 - -0.40673625 @@ -414955,12 +428159,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.86111 - -0.42261776 @@ -414970,12 +428178,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.878564 - -0.43837142 @@ -414985,12 +428197,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.896017 - -0.4539907 @@ -415000,12 +428216,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.91347 - -0.46947166 @@ -415015,12 +428235,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.930923 - -0.48480964 @@ -415030,12 +428254,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.948377 - -0.49999994 @@ -415045,12 +428273,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.96583 - -0.5150379 @@ -415060,12 +428292,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9.983283 - -0.529919 @@ -415075,12 +428311,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.000736 - -0.5446387 @@ -415090,12 +428330,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.018189 - -0.55919254 @@ -415105,12 +428349,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.035644 - -0.57357675 @@ -415120,12 +428368,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.053097 - -0.5877855 @@ -415135,12 +428387,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.07055 - -0.60181516 @@ -415150,12 +428406,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.088003 - -0.61566156 @@ -415165,12 +428425,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.105456 - -0.6293204 @@ -415180,12 +428444,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.12291 - -0.6427875 @@ -415195,12 +428463,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.140363 - -0.65605885 @@ -415210,12 +428482,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.157816 - -0.6691304 @@ -415225,12 +428501,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.175269 - -0.6819981 @@ -415240,12 +428520,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.192722 - -0.694658 @@ -415255,12 +428539,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.210176 - -0.707107 @@ -415270,12 +428558,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.22763 - -0.71933997 @@ -415285,12 +428577,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.245083 - -0.7313538 @@ -415300,12 +428596,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.262536 - -0.74314487 @@ -415315,12 +428615,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.279989 - -0.75470954 @@ -415330,12 +428634,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.297442 - -0.7660443 @@ -415345,12 +428653,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.314896 - -0.7771458 @@ -415360,12 +428672,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.332349 - -0.78801054 @@ -415375,12 +428691,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.349802 - -0.79863524 @@ -415390,12 +428710,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.367255 - -0.80901664 @@ -415405,12 +428729,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.384709 - -0.81915224 @@ -415420,12 +428748,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.402163 - -0.82903767 @@ -415435,12 +428767,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.419616 - -0.8386706 @@ -415450,12 +428786,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.437069 - -0.8480481 @@ -415465,12 +428805,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.454522 - -0.85716724 @@ -415480,12 +428824,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.471975 - -0.8660253 @@ -415495,12 +428843,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.4894285 - -0.87461954 @@ -415510,12 +428862,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.506882 - -0.8829474 @@ -415525,12 +428881,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.524335 - -0.8910063 @@ -415540,12 +428900,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.541789 - -0.89879423 @@ -415555,12 +428919,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.559242 - -0.9063079 @@ -415570,12 +428938,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.576695 - -0.91354555 @@ -415585,12 +428957,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.594149 - -0.92050487 @@ -415600,12 +428976,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.611602 - -0.92718387 @@ -415615,12 +428995,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.629055 - -0.9335804 @@ -415630,12 +429014,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.646508 - -0.93969256 @@ -415645,12 +429033,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.663961 - -0.9455185 @@ -415660,12 +429052,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.681415 - -0.95105636 @@ -415675,12 +429071,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.698868 - -0.9563046 @@ -415690,12 +429090,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.716322 - -0.9612618 @@ -415705,12 +429109,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.733775 - -0.9659259 @@ -415720,12 +429128,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.751228 - -0.9702958 @@ -415735,12 +429147,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.768682 - -0.97437006 @@ -415750,12 +429166,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.786135 - -0.97814757 @@ -415765,12 +429185,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.803588 - -0.98162717 @@ -415780,12 +429204,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.821041 - -0.9848077 @@ -415795,12 +429223,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.838494 - -0.9876883 @@ -415810,12 +429242,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.8559475 - -0.990268 @@ -415825,12 +429261,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.873401 - -0.9925461 @@ -415840,12 +429280,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.890855 - -0.9945219 @@ -415855,12 +429299,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.908308 - -0.9961947 @@ -415870,12 +429318,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.925761 - -0.9975641 @@ -415885,12 +429337,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.943214 - -0.9986295 @@ -415900,12 +429356,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.960668 - -0.99939084 @@ -415915,12 +429375,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.978121 - -0.9998477 @@ -415930,12 +429394,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10.995574 - -1 @@ -415945,12 +429413,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.013027 - -0.9998477 @@ -415960,12 +429432,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.03048 - -0.99939084 @@ -415975,12 +429451,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.047935 - -0.9986295 @@ -415990,12 +429470,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.065388 - -0.997564 @@ -416005,12 +429489,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.082841 - -0.99619466 @@ -416020,12 +429508,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.100294 - -0.9945219 @@ -416035,12 +429527,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.117747 - -0.99254614 @@ -416050,12 +429546,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.1352005 - -0.9902681 @@ -416065,12 +429565,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.152654 - -0.98768836 @@ -416080,12 +429584,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.170107 - -0.9848078 @@ -416095,12 +429603,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.18756 - -0.9816273 @@ -416110,12 +429622,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.205013 - -0.9781477 @@ -416125,12 +429641,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.222467 - -0.97437 @@ -416140,12 +429660,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.239921 - -0.97029567 @@ -416155,12 +429679,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.257374 - -0.9659258 @@ -416170,12 +429698,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.274827 - -0.9612617 @@ -416185,12 +429717,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.29228 - -0.9563048 @@ -416200,12 +429736,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.309733 - -0.95105654 @@ -416215,12 +429755,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.327187 - -0.9455187 @@ -416230,12 +429774,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.34464 - -0.93969274 @@ -416245,12 +429793,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.362093 - -0.9335806 @@ -416260,12 +429812,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.379546 - -0.92718405 @@ -416275,12 +429831,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.397 - -0.92050475 @@ -416290,12 +429850,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.4144535 - -0.91354537 @@ -416305,12 +429869,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.431907 - -0.90630776 @@ -416320,12 +429888,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.44936 - -0.89879405 @@ -416335,12 +429907,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.466813 - -0.8910066 @@ -416350,12 +429926,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.484266 - -0.8829477 @@ -416365,12 +429945,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.501719 - -0.87461984 @@ -416380,12 +429964,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.519173 - -0.8660256 @@ -416395,12 +429983,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.536626 - -0.85716754 @@ -416410,12 +430002,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.55408 - -0.8480479 @@ -416425,12 +430021,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.571533 - -0.83867043 @@ -416440,12 +430040,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.588986 - -0.8290375 @@ -416455,12 +430059,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.60644 - -0.819152 @@ -416470,12 +430078,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.623893 - -0.809017 @@ -416485,12 +430097,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.641346 - -0.7986356 @@ -416500,12 +430116,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.658799 - -0.7880109 @@ -416515,12 +430135,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.676252 - -0.77714616 @@ -416530,12 +430154,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.693706 - -0.76604474 @@ -416545,12 +430173,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.711159 - -0.7547099 @@ -416560,12 +430192,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.728613 - -0.74314463 @@ -416575,12 +430211,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.746066 - -0.7313535 @@ -416590,12 +430230,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.763519 - -0.7193397 @@ -416605,12 +430249,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.7809725 - -0.70710677 @@ -416620,12 +430268,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.798426 - -0.6946584 @@ -416635,12 +430287,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.815879 - -0.6819985 @@ -416650,12 +430306,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.833332 - -0.6691308 @@ -416665,12 +430325,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.850785 - -0.6560593 @@ -416680,12 +430344,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.868238 - -0.642788 @@ -416695,12 +430363,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.885692 - -0.6293208 @@ -416710,12 +430382,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.903146 - -0.61566126 @@ -416725,12 +430401,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.920599 - -0.60181487 @@ -416740,12 +430420,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.938052 - -0.5877852 @@ -416755,12 +430439,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.955505 - -0.57357645 @@ -416770,12 +430458,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.972959 - -0.559193 @@ -416785,12 +430477,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11.990412 - -0.5446392 @@ -416800,12 +430496,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.007865 - -0.5299195 @@ -416815,12 +430515,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.025318 - -0.51503843 @@ -416830,12 +430534,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.042771 - -0.5000004 @@ -416845,12 +430553,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.0602255 - -0.4848093 @@ -416860,12 +430572,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.077679 - -0.46947134 @@ -416875,12 +430591,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.095132 - -0.45399037 @@ -416890,12 +430610,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.112585 - -0.4383711 @@ -416905,12 +430629,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.130038 - -0.4226183 @@ -416920,12 +430648,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.147491 - -0.40673676 @@ -416935,12 +430667,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.164945 - -0.39073133 @@ -416950,12 +430686,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.182398 - -0.3746069 @@ -416965,12 +430705,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.199851 - -0.35836837 @@ -416980,12 +430724,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.217304 - -0.34202063 @@ -416995,12 +430743,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.234758 - -0.32556784 @@ -417010,12 +430762,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.252212 - -0.3090168 @@ -417025,12 +430781,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.269665 - -0.2923716 @@ -417040,12 +430800,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.287118 - -0.27563733 @@ -417055,12 +430819,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.304571 - -0.2588191 @@ -417070,12 +430838,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.322024 - -0.24192207 @@ -417085,12 +430857,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.339478 - -0.22495133 @@ -417100,12 +430876,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.356931 - -0.20791206 @@ -417115,12 +430895,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.374384 - -0.19080946 @@ -417130,12 +430914,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.391837 - -0.17364874 @@ -417145,12 +430933,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.409291 - -0.15643418 @@ -417160,12 +430952,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.426744 - -0.13917291 @@ -417175,12 +430971,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.444198 - -0.12186926 @@ -417190,12 +430990,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.461651 - -0.10452847 @@ -417205,12 +431009,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.479104 - -0.08715585 @@ -417220,12 +431028,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.496557 - -0.06975668 @@ -417235,12 +431047,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.51401 - -0.052336264 @@ -417250,12 +431066,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.531464 - -0.0348999 @@ -417265,12 +431085,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.548917 - -0.017452912 @@ -417280,12 +431104,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.566371 - 0.0000003496911 @@ -417295,12 +431123,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.583824 - 0.017452657 @@ -417310,12 +431142,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.601277 - 0.03489965 @@ -417325,12 +431161,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.618731 - 0.05233601 @@ -417340,12 +431180,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.636184 - 0.069756426 @@ -417355,12 +431199,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.653637 - 0.087155595 @@ -417370,12 +431218,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.67109 - 0.10452822 @@ -417385,12 +431237,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.688543 - 0.121869005 @@ -417400,12 +431256,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.7059965 - 0.13917266 @@ -417415,12 +431275,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.72345 - 0.15643393 @@ -417430,12 +431294,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.740904 - 0.17364849 @@ -417445,12 +431313,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.758357 - 0.1908092 @@ -417460,12 +431332,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.77581 - 0.2079118 @@ -417475,12 +431351,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.793263 - 0.22495107 @@ -417490,12 +431370,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.810717 - 0.24192181 @@ -417505,12 +431389,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.82817 - 0.25881886 @@ -417520,12 +431408,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.845623 - 0.2756371 @@ -417535,12 +431427,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.863076 - 0.29237133 @@ -417550,12 +431446,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.880529 - 0.30901656 @@ -417565,12 +431465,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.897983 - 0.3255676 @@ -417580,12 +431484,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.915437 - 0.3420204 @@ -417595,12 +431503,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.93289 - 0.35836813 @@ -417610,12 +431522,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.950343 - 0.37460667 @@ -417625,12 +431541,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.967796 - 0.39073113 @@ -417640,12 +431560,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12.9852495 - 0.40673652 @@ -417655,12 +431579,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.002703 - 0.42261806 @@ -417670,12 +431598,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.020156 - 0.43837085 @@ -417685,12 +431617,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.037609 - 0.45399013 @@ -417700,12 +431636,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.055062 - 0.4694711 @@ -417715,12 +431655,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.072516 - 0.48480994 @@ -417730,12 +431674,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.08997 - 0.50000024 @@ -417745,12 +431693,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.107423 - 0.5150382 @@ -417760,12 +431712,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.124876 - 0.5299193 @@ -417775,12 +431731,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.142329 - 0.544639 @@ -417790,12 +431750,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.159782 - 0.5591928 @@ -417805,12 +431769,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.177236 - 0.5735762 @@ -417820,12 +431788,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.194689 - 0.58778495 @@ -417835,12 +431807,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.212142 - 0.6018147 @@ -417850,12 +431826,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.229595 - 0.615661 @@ -417865,12 +431845,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.247049 - 0.6293206 @@ -417880,12 +431864,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.264503 - 0.64278775 @@ -417895,12 +431883,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.281956 - 0.6560591 @@ -417910,12 +431902,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.299409 - 0.6691306 @@ -417925,12 +431921,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.316862 - 0.6819983 @@ -417940,12 +431940,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.334315 - 0.6946582 @@ -417955,12 +431959,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.3517685 - 0.7071066 @@ -417970,12 +431978,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.369222 - 0.71933955 @@ -417985,12 +431997,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.386675 - 0.7313534 @@ -418000,12 +432016,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.404129 - 0.74314505 @@ -418015,12 +432035,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.421582 - 0.7547098 @@ -418030,12 +432054,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.439035 - 0.76604456 @@ -418045,12 +432073,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.456489 - 0.777146 @@ -418060,12 +432092,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.473942 - 0.7880107 @@ -418075,12 +432111,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.491395 - 0.7986354 @@ -418090,12 +432130,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.508848 - 0.8090169 @@ -418105,12 +432149,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.526301 - 0.8191519 @@ -418120,12 +432168,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.543755 - 0.82903737 @@ -418135,12 +432187,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.561208 - 0.8386703 @@ -418150,12 +432206,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.578662 - 0.84804827 @@ -418165,12 +432225,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.596115 - 0.8571674 @@ -418180,12 +432244,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.613568 - 0.86602545 @@ -418195,12 +432263,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.6310215 - 0.8746197 @@ -418210,12 +432282,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.648475 - 0.88294756 @@ -418225,12 +432301,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.665928 - 0.89100647 @@ -418240,12 +432320,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.683381 - 0.89879394 @@ -418255,12 +432339,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.700834 - 0.90630764 @@ -418270,12 +432358,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.718287 - 0.91354525 @@ -418285,12 +432377,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.735741 - 0.9205046 @@ -418300,12 +432396,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.753195 - 0.927184 @@ -418315,12 +432415,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.770648 - 0.9335805 @@ -418330,12 +432434,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.788101 - 0.9396927 @@ -418345,12 +432453,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.805554 - 0.94551855 @@ -418360,12 +432472,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.823008 - 0.9510565 @@ -418375,12 +432491,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.840461 - 0.9563047 @@ -418390,12 +432510,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.857914 - 0.96126163 @@ -418405,12 +432529,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.875367 - 0.96592575 @@ -418420,12 +432548,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.89282 - 0.9702956 @@ -418435,12 +432567,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.9102745 - 0.9743701 @@ -418450,12 +432586,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.927728 - 0.9781477 @@ -418465,12 +432605,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.945181 - 0.9816272 @@ -418480,12 +432624,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.962634 - 0.9848078 @@ -418495,12 +432643,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.980087 - 0.98768836 @@ -418510,12 +432662,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13.99754 - 0.99026805 @@ -418525,12 +432681,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.014994 - 0.99254614 @@ -418540,12 +432700,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.032447 - 0.99452186 @@ -418555,12 +432719,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.0499 - 0.99619466 @@ -418570,12 +432738,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.067353 - 0.997564 @@ -418585,12 +432757,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.084807 - 0.99862957 @@ -418600,12 +432776,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.102261 - 0.99939084 @@ -418615,12 +432795,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.119714 - 0.9998477 @@ -418630,12 +432814,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.137167 - 1 @@ -418645,12 +432833,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.15462 - 0.9998477 @@ -418660,12 +432852,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.172073 - 0.99939084 @@ -418675,12 +432871,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.189527 - 0.99862957 @@ -418690,12 +432890,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.20698 - 0.9975641 @@ -418705,12 +432909,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.224433 - 0.9961947 @@ -418720,12 +432928,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.241886 - 0.994522 @@ -418735,12 +432947,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.25934 - 0.99254614 @@ -418750,12 +432966,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.2767935 - 0.99026805 @@ -418765,12 +432985,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.294247 - 0.9876883 @@ -418780,12 +433004,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.3117 - 0.9848077 @@ -418795,12 +433023,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.329153 - 0.9816272 @@ -418810,12 +433042,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.346606 - 0.9781476 @@ -418825,12 +433061,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.364059 - 0.9743701 @@ -418840,12 +433080,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.381513 - 0.97029585 @@ -418855,12 +433099,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.398966 - 0.96592593 @@ -418870,12 +433118,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.41642 - 0.9612616 @@ -418885,12 +433137,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.433873 - 0.95630467 @@ -418900,12 +433156,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.451326 - 0.9510565 @@ -418915,12 +433175,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.46878 - 0.94551855 @@ -418930,12 +433194,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.486233 - 0.9396926 @@ -418945,12 +433213,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.503686 - 0.93358046 @@ -418960,12 +433232,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.521139 - 0.9271839 @@ -418975,12 +433251,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.538592 - 0.920505 @@ -418990,12 +433270,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.556046 - 0.9135456 @@ -419005,12 +433289,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.573499 - 0.906308 @@ -419020,12 +433308,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.590953 - 0.8987939 @@ -419035,12 +433327,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.608406 - 0.8910064 @@ -419050,12 +433346,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.625859 - 0.8829475 @@ -419065,12 +433365,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.643312 - 0.8746197 @@ -419080,12 +433384,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.660766 - 0.86602545 @@ -419095,12 +433403,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.678219 - 0.85716736 @@ -419110,12 +433422,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.695672 - 0.8480482 @@ -419125,12 +433441,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.713125 - 0.8386708 @@ -419140,12 +433460,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.730578 - 0.82903785 @@ -419155,12 +433479,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.748032 - 0.81915236 @@ -419170,12 +433498,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.765486 - 0.8090168 @@ -419185,12 +433517,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.782939 - 0.7986354 @@ -419200,12 +433536,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.800392 - 0.7880107 @@ -419215,12 +433555,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.817845 - 0.777146 @@ -419230,12 +433574,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.835299 - 0.7660445 @@ -419245,12 +433593,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.852752 - 0.7547097 @@ -419260,12 +433612,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.870205 - 0.74314505 @@ -419275,12 +433631,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.887658 - 0.731354 @@ -419290,12 +433650,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.905111 - 0.71934015 @@ -419305,12 +433669,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.922565 - 0.70710653 @@ -419320,12 +433688,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.940019 - 0.69465816 @@ -419335,12 +433707,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.957472 - 0.68199825 @@ -419350,12 +433726,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.974925 - 0.66913056 @@ -419365,12 +433745,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14.992378 - 0.6560591 @@ -419380,12 +433764,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.009831 - 0.6427877 @@ -419395,12 +433783,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.027285 - 0.62932056 @@ -419410,12 +433802,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.044738 - 0.61566174 @@ -419425,12 +433821,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.062191 - 0.60181534 @@ -419440,12 +433840,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.079644 - 0.58778566 @@ -419455,12 +433859,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.097098 - 0.57357615 @@ -419470,12 +433878,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.114552 - 0.5591927 @@ -419485,12 +433897,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.132005 - 0.54463893 @@ -419500,12 +433916,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.149458 - 0.52991927 @@ -419515,12 +433935,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.166911 - 0.51503813 @@ -419530,12 +433954,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.184364 - 0.5000002 @@ -419545,12 +433973,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.2018175 - 0.48480985 @@ -419560,12 +433992,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.219271 - 0.4694719 @@ -419575,12 +434011,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.236724 - 0.4539909 @@ -419590,12 +434030,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.254177 - 0.43837166 @@ -419605,12 +434049,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.271631 - 0.422618 @@ -419620,12 +434068,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.289084 - 0.40673646 @@ -419635,12 +434087,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.306538 - 0.39073104 @@ -419650,12 +434106,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.323991 - 0.3746066 @@ -419665,12 +434125,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.341444 - 0.35836804 @@ -419680,12 +434144,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.358897 - 0.34202033 @@ -419695,12 +434163,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.37635 - 0.32556844 @@ -419710,12 +434182,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.393804 - 0.3090174 @@ -419725,12 +434201,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.411257 - 0.2923722 @@ -419740,12 +434220,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.428711 - 0.27563703 @@ -419755,12 +434239,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.446164 - 0.2588188 @@ -419770,12 +434258,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.463617 - 0.24192175 @@ -419785,12 +434277,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.4810705 - 0.224951 @@ -419800,12 +434296,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.498524 - 0.20791173 @@ -419815,12 +434315,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.515977 - 0.19080913 @@ -419830,12 +434334,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.53343 - 0.17364842 @@ -419845,12 +434353,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.550883 - 0.1564348 @@ -419860,12 +434372,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.5683365 - 0.13917354 @@ -419875,12 +434391,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.58579 - 0.12186988 @@ -419890,12 +434410,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.603244 - 0.10452815 @@ -419905,12 +434429,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.620697 - 0.08715553 @@ -419920,12 +434448,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.63815 - 0.06975636 @@ -419935,12 +434467,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.655603 - 0.052335937 @@ -419950,12 +434486,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.673057 - 0.034899577 @@ -419965,12 +434505,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.69051 - 0.017452586 @@ -419980,12 +434524,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.707963 - 0.00000027814184 @@ -419995,12 +434543,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.725416 - -0.01745203 @@ -420010,12 +434562,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.742869 - -0.034899022 @@ -420025,12 +434581,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.760323 - -0.05233538 @@ -420040,12 +434600,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.777777 - -0.069756754 @@ -420055,12 +434619,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.79523 - -0.08715592 @@ -420070,12 +434638,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.812683 - -0.10452855 @@ -420085,12 +434657,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.830136 - -0.121869326 @@ -420100,12 +434676,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.8475895 - -0.13917299 @@ -420115,12 +434695,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.865043 - -0.15643425 @@ -420130,12 +434714,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.882496 - -0.17364787 @@ -420145,12 +434733,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.899949 - -0.1908086 @@ -420160,12 +434752,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.917402 - -0.2079112 @@ -420175,12 +434771,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.934856 - -0.22495139 @@ -420190,12 +434790,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.95231 - -0.24192214 @@ -420205,12 +434809,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.969763 - -0.2588192 @@ -420220,12 +434828,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15.987216 - -0.2756374 @@ -420235,12 +434847,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.00467 - -0.29237166 @@ -420250,12 +434866,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.022123 - -0.30901775 @@ -420265,12 +434885,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.039576 - -0.32556793 @@ -420280,12 +434904,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.05703 - -0.34202072 @@ -420295,12 +434923,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.074482 - -0.35836753 @@ -420310,12 +434942,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.091936 - -0.37460697 @@ -420325,12 +434961,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.109388 - -0.39073053 @@ -420340,12 +434980,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.126842 - -0.40673682 @@ -420355,12 +434999,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.144295 - -0.4226175 @@ -420370,12 +435018,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.161749 - -0.43837115 @@ -420385,12 +435037,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.179201 - -0.45398957 @@ -420400,12 +435056,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.196655 - -0.4694714 @@ -420415,12 +435075,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.21411 - -0.4848102 @@ -420430,12 +435094,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.231562 - -0.49999967 @@ -420445,12 +435113,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.249016 - -0.5150385 @@ -420460,12 +435132,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.266468 - -0.5299188 @@ -420475,12 +435151,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.283922 - -0.5446393 @@ -420490,12 +435170,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.301374 - -0.55919224 @@ -420505,12 +435189,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.318829 - -0.5735765 @@ -420520,12 +435208,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.33628 - -0.58778447 @@ -420535,12 +435227,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.353735 - -0.6018149 @@ -420550,12 +435246,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.37119 - -0.61566204 @@ -420565,12 +435265,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.388641 - -0.62932014 @@ -420580,12 +435284,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.406096 - -0.642788 @@ -420595,12 +435303,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.423548 - -0.6560586 @@ -420610,12 +435322,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.441002 - -0.66913086 @@ -420625,12 +435341,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.458454 - -0.68199784 @@ -420640,12 +435360,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.475908 - -0.69465846 @@ -420655,12 +435379,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.49336 - -0.7071061 @@ -420670,12 +435398,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.510815 - -0.7193398 @@ -420685,12 +435417,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.528269 - -0.73135424 @@ -420700,12 +435436,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.545721 - -0.74314463 @@ -420715,12 +435455,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.563175 - -0.75470996 @@ -420730,12 +435474,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.580627 - -0.76604414 @@ -420745,12 +435493,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.598082 - -0.7771462 @@ -420760,12 +435512,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.615534 - -0.78801036 @@ -420775,12 +435531,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.632988 - -0.79863566 @@ -420790,12 +435550,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.65044 - -0.8090165 @@ -420805,12 +435569,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.667894 - -0.81915206 @@ -420820,12 +435588,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.685347 - -0.829037 @@ -420835,12 +435607,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.7028 - -0.8386705 @@ -420850,12 +435626,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.720255 - -0.84804845 @@ -420865,12 +435645,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.737707 - -0.8571671 @@ -420880,12 +435664,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.755161 - -0.8660256 @@ -420895,12 +435683,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.772614 - -0.8746194 @@ -420910,12 +435702,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.790068 - -0.88294774 @@ -420925,12 +435721,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.80752 - -0.8910062 @@ -420940,12 +435740,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.824974 - -0.89879405 @@ -420955,12 +435759,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.842426 - -0.9063074 @@ -420970,12 +435778,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.85988 - -0.9135454 @@ -420985,12 +435797,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.877335 - -0.92050517 @@ -421000,12 +435816,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.894787 - -0.92718375 @@ -421015,12 +435835,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.912241 - -0.93358064 @@ -421030,12 +435854,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.929693 - -0.93969244 @@ -421045,12 +435873,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.947147 - -0.9455187 @@ -421060,12 +435892,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.9646 - -0.9510563 @@ -421075,12 +435911,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.982054 - -0.9563048 @@ -421090,12 +435930,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 16.999506 - -0.96126145 @@ -421105,12 +435949,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.01696 - -0.9659258 @@ -421120,12 +435968,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.034414 - -0.9702959 @@ -421135,12 +435987,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.051867 - -0.97437 @@ -421150,12 +436006,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.06932 - -0.97814775 @@ -421165,12 +436025,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.086773 - -0.9816271 @@ -421180,12 +436044,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.104227 - -0.98480785 @@ -421195,12 +436063,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.12168 - -0.98768824 @@ -421210,12 +436082,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.139133 - -0.9902681 @@ -421225,12 +436101,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.156586 - -0.992546 @@ -421240,12 +436120,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.17404 - -0.9945219 @@ -421255,12 +436139,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.191492 - -0.9961946 @@ -421270,12 +436158,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.208946 - -0.997564 @@ -421285,12 +436177,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.2264 - -0.99862957 @@ -421300,12 +436196,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.243853 - -0.99939084 @@ -421315,12 +436215,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.261307 - -0.9998477 @@ -421330,12 +436234,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.278759 - -1 @@ -421345,12 +436253,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.296213 - -0.9998477 @@ -421360,12 +436272,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.313665 - -0.99939084 @@ -421375,12 +436291,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.33112 - -0.9986295 @@ -421390,12 +436310,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.348572 - -0.99756414 @@ -421405,12 +436329,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.366026 - -0.9961947 @@ -421420,12 +436348,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.38348 - -0.9945218 @@ -421435,12 +436367,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.400932 - -0.9925462 @@ -421450,12 +436386,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.418386 - -0.990268 @@ -421465,12 +436405,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.435839 - -0.9876884 @@ -421480,12 +436424,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.453293 - -0.98480767 @@ -421495,12 +436443,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.470745 - -0.98162735 @@ -421510,12 +436462,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.4882 - -0.97814757 @@ -421525,12 +436481,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.505651 - -0.9743703 @@ -421540,12 +436500,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.523106 - -0.9702957 @@ -421555,12 +436519,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.54056 - -0.96592563 @@ -421570,12 +436538,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.558012 - -0.96126175 @@ -421585,12 +436557,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.575466 - -0.9563046 @@ -421600,12 +436576,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.592918 - -0.95105666 @@ -421615,12 +436595,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.610373 - -0.94551843 @@ -421630,12 +436614,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.627825 - -0.93969285 @@ -421645,12 +436633,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.645279 - -0.93358034 @@ -421660,12 +436652,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.662731 - -0.92718416 @@ -421675,12 +436671,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.680185 - -0.92050487 @@ -421690,12 +436690,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.697638 - -0.9135459 @@ -421705,12 +436709,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.715092 - -0.9063079 @@ -421720,12 +436728,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.732546 - -0.89879376 @@ -421735,12 +436747,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.749998 - -0.8910067 @@ -421750,12 +436766,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.767452 - -0.8829474 @@ -421765,12 +436785,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.784904 - -0.87462 @@ -421780,12 +436804,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.802359 - -0.86602527 @@ -421795,12 +436823,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.81981 - -0.8571677 @@ -421810,12 +436842,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.837265 - -0.8480481 @@ -421825,12 +436861,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.854717 - -0.8386711 @@ -421840,12 +436880,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.872171 - -0.82903767 @@ -421855,12 +436899,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.889626 - -0.81915164 @@ -421870,12 +436918,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.907078 - -0.8090172 @@ -421885,12 +436937,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.924532 - -0.7986352 @@ -421900,12 +436956,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.941984 - -0.7880111 @@ -421915,12 +436975,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.959438 - -0.77714574 @@ -421930,12 +436994,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.97689 - -0.7660449 @@ -421945,12 +437013,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 17.994345 - -0.7547095 @@ -421960,12 +437032,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.011797 - -0.74314547 @@ -421975,12 +437051,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.029251 - -0.73135376 @@ -421990,12 +437070,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.046705 - -0.71933925 @@ -422005,12 +437089,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.064157 - -0.70710695 @@ -422020,12 +437108,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.081612 - -0.6946579 @@ -422035,12 +437127,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.099064 - -0.6819987 @@ -422050,12 +437146,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.116518 - -0.6691303 @@ -422065,12 +437165,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.13397 - -0.6560595 @@ -422080,12 +437184,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.151424 - -0.64278746 @@ -422095,12 +437203,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.168877 - -0.62932104 @@ -422110,12 +437222,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.18633 - -0.6156615 @@ -422125,12 +437241,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.203783 - -0.6018159 @@ -422140,12 +437260,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.221237 - -0.5877854 @@ -422155,12 +437279,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.238691 - -0.5735759 @@ -422170,12 +437298,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.256144 - -0.55919325 @@ -422185,12 +437317,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.273598 - -0.54463863 @@ -422200,12 +437336,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.29105 - -0.5299198 @@ -422215,12 +437355,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.308504 - -0.51503783 @@ -422230,12 +437374,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.325956 - -0.5000007 @@ -422245,12 +437393,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.34341 - -0.48480958 @@ -422260,12 +437412,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.360863 - -0.46947244 @@ -422275,12 +437431,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.378317 - -0.45399064 @@ -422290,12 +437450,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.395771 - -0.4383705 @@ -422305,12 +437469,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.413223 - -0.42261857 @@ -422320,12 +437488,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.430677 - -0.40673617 @@ -422335,12 +437507,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.44813 - -0.39073163 @@ -422350,12 +437526,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.465584 - -0.3746063 @@ -422365,12 +437545,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.483036 - -0.35836864 @@ -422380,12 +437564,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.50049 - -0.34202003 @@ -422395,12 +437583,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.517942 - -0.32556903 @@ -422410,12 +437602,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.535397 - -0.30901706 @@ -422425,12 +437621,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.55285 - -0.29237098 @@ -422440,12 +437640,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.570303 - -0.27563763 @@ -422455,12 +437659,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.587757 - -0.25881848 @@ -422470,12 +437678,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.60521 - -0.24192236 @@ -422485,12 +437697,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.622663 - -0.22495069 @@ -422500,12 +437716,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.640116 - -0.20791236 @@ -422515,12 +437735,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.65757 - -0.19080882 @@ -422530,12 +437754,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.675022 - -0.17364904 @@ -422545,12 +437773,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.692476 - -0.15643448 @@ -422560,12 +437792,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.709929 - -0.13917416 @@ -422575,12 +437811,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.727383 - -0.12186956 @@ -422590,12 +437830,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.744837 - -0.10452782 @@ -422605,12 +437849,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.76229 - -0.087156154 @@ -422620,12 +437868,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.779743 - -0.06975603 @@ -422635,12 +437887,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.797195 - -0.052336566 @@ -422650,12 +437906,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.81465 - -0.03489925 @@ -422665,12 +437925,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.832102 - -0.017453214 @@ -422680,12 +437944,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.97173 - 0.12186965 @@ -422695,12 +437963,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 18.989182 - 0.13917236 @@ -422710,12 +437982,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.006636 - 0.15643458 @@ -422725,12 +438001,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.024088 - 0.17364725 @@ -422740,12 +438020,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.041542 - 0.1908089 @@ -422755,12 +438039,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.058996 - 0.20791245 @@ -422770,12 +438058,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.076448 - 0.22495078 @@ -422785,12 +438077,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.093903 - 0.24192245 @@ -422800,12 +438096,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.111355 - 0.25881857 @@ -422815,12 +438115,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.128809 - 0.27563772 @@ -422830,12 +438134,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.146261 - 0.29237106 @@ -422845,12 +438153,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.163715 - 0.30901715 @@ -422860,12 +438172,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.181168 - 0.32556733 @@ -422875,12 +438191,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.198622 - 0.34202012 @@ -422890,12 +438210,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.216074 - 0.35836694 @@ -422905,12 +438229,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.233528 - 0.3746064 @@ -422920,12 +438248,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.250982 - 0.39073172 @@ -422935,12 +438267,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.268435 - 0.40673625 @@ -422950,12 +438286,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.285889 - 0.42261866 @@ -422965,12 +438305,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.30334 - 0.4383706 @@ -422980,12 +438324,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.320795 - 0.45399073 @@ -422995,12 +438343,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.338247 - 0.46947086 @@ -423010,12 +438362,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.355701 - 0.48480967 @@ -423025,12 +438381,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.373154 - 0.49999914 @@ -423040,12 +438400,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.390608 - 0.51503795 @@ -423055,12 +438419,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.408062 - 0.52991986 @@ -423070,12 +438438,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.425514 - 0.54463875 @@ -423085,12 +438457,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.442968 - 0.5591933 @@ -423100,12 +438476,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.46042 - 0.573576 @@ -423115,12 +438495,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.477875 - 0.5877855 @@ -423130,12 +438514,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.495327 - 0.60181445 @@ -423145,12 +438533,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.512781 - 0.61566156 @@ -423160,12 +438552,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.530233 - 0.62931967 @@ -423175,12 +438571,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.547688 - 0.6427875 @@ -423190,12 +438590,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.565142 - 0.6560596 @@ -423205,12 +438609,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.582594 - 0.6691304 @@ -423220,12 +438628,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.600048 - 0.6819988 @@ -423235,12 +438647,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.6175 - 0.69465804 @@ -423250,12 +438666,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.634954 - 0.70710707 @@ -423265,12 +438685,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.652407 - 0.7193393 @@ -423280,12 +438704,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.66986 - 0.7313538 @@ -423295,12 +438723,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.687313 - 0.7431442 @@ -423310,12 +438742,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.704767 - 0.75470954 @@ -423325,12 +438761,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.72222 - 0.7660437 @@ -423340,12 +438780,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.739674 - 0.7771458 @@ -423355,12 +438799,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.757128 - 0.78801113 @@ -423370,12 +438818,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.77458 - 0.79863524 @@ -423385,12 +438837,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.792034 - 0.80901724 @@ -423400,12 +438856,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.809486 - 0.8191517 @@ -423415,12 +438875,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.82694 - 0.8290377 @@ -423430,12 +438894,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.844393 - 0.83867013 @@ -423445,12 +438913,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.861847 - 0.8480481 @@ -423460,12 +438932,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.8793 - 0.85716677 @@ -423475,12 +438951,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.896753 - 0.8660253 @@ -423490,12 +438970,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.914207 - 0.87462 @@ -423505,12 +438989,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.93166 - 0.88294744 @@ -423520,12 +439008,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.949114 - 0.89100677 @@ -423535,12 +439027,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.966566 - 0.8987938 @@ -423550,12 +439046,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19.98402 - 0.90630794 @@ -423565,12 +439065,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.001472 - 0.91354513 @@ -423580,12 +439084,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.018927 - 0.92050487 @@ -423595,12 +439103,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.036379 - 0.9271835 @@ -423610,12 +439122,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.053833 - 0.9335804 @@ -423625,12 +439141,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.071287 - 0.93969285 @@ -423640,12 +439160,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.08874 - 0.9455185 @@ -423655,12 +439179,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.106194 - 0.9510567 @@ -423670,12 +439198,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.123646 - 0.9563046 @@ -423685,12 +439217,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.1411 - 0.9612618 @@ -423700,12 +439236,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.158552 - 0.96592563 @@ -423715,12 +439255,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.176006 - 0.9702958 @@ -423730,12 +439274,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.193459 - 0.9743699 @@ -423745,12 +439293,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.210913 - 0.97814757 @@ -423760,12 +439312,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.228365 - 0.981627 @@ -423775,12 +439331,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.24582 - 0.9848077 @@ -423790,12 +439350,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.263273 - 0.9876884 @@ -423805,12 +439369,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.280725 - 0.990268 @@ -423820,12 +439388,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.29818 - 0.9925462 @@ -423835,12 +439407,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.315632 - 0.99452186 @@ -423850,12 +439426,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.333086 - 0.9961947 @@ -423865,12 +439445,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.350538 - 0.997564 @@ -423880,12 +439464,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.367992 - 0.9986295 @@ -423895,12 +439483,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.385445 - 0.9993908 @@ -423910,12 +439502,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.402899 - 0.9998477 @@ -423925,12 +439521,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.420353 - 1 @@ -423940,12 +439540,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.437805 - 0.9998477 @@ -423955,12 +439559,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.45526 - 0.9993908 @@ -423970,12 +439578,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.472712 - 0.99862957 @@ -423985,12 +439597,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.490166 - 0.997564 @@ -424000,12 +439616,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.507618 - 0.9961948 @@ -424015,12 +439635,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.525072 - 0.99452186 @@ -424030,12 +439654,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.542524 - 0.99254626 @@ -424045,12 +439673,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.559978 - 0.9902681 @@ -424060,12 +439692,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.577433 - 0.98768824 @@ -424075,12 +439711,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.594885 - 0.9848078 @@ -424090,12 +439730,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.612339 - 0.9816271 @@ -424105,12 +439749,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.629791 - 0.9781477 @@ -424120,12 +439768,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.647245 - 0.97437 @@ -424135,12 +439787,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.664698 - 0.9702959 @@ -424150,12 +439806,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.682152 - 0.9659258 @@ -424165,12 +439825,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.699604 - 0.9612619 @@ -424180,12 +439844,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.717058 - 0.9563048 @@ -424195,12 +439863,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.73451 - 0.95105684 @@ -424210,12 +439882,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.751965 - 0.9455187 @@ -424225,12 +439901,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.769419 - 0.93969244 @@ -424240,12 +439920,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.786871 - 0.9335806 @@ -424255,12 +439939,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.804325 - 0.9271837 @@ -424270,12 +439958,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.821777 - 0.9205051 @@ -424285,12 +439977,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.839231 - 0.91354537 @@ -424300,12 +439996,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.856684 - 0.9063081 @@ -424315,12 +440015,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.874138 - 0.89879405 @@ -424330,12 +440034,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.89159 - 0.891007 @@ -424345,12 +440053,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.909044 - 0.8829477 @@ -424360,12 +440072,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.926498 - 0.87461936 @@ -424375,12 +440091,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.94395 - 0.86602557 @@ -424390,12 +440110,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.961405 - 0.85716707 @@ -424405,12 +440129,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.978857 - 0.8480484 @@ -424420,12 +440148,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20.996311 - 0.83867043 @@ -424435,12 +440167,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.013763 - 0.829038 @@ -424450,12 +440186,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.031218 - 0.819152 @@ -424465,12 +440205,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.04867 - 0.80901754 @@ -424480,12 +440224,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.066124 - 0.7986356 @@ -424495,12 +440243,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.083578 - 0.7880103 @@ -424510,12 +440262,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.10103 - 0.77714616 @@ -424525,12 +440281,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.118484 - 0.7660441 @@ -424540,12 +440300,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.135937 - 0.7547099 @@ -424555,12 +440319,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.15339 - 0.7431446 @@ -424570,12 +440338,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.170843 - 0.7313542 @@ -424585,12 +440357,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.188297 - 0.71933967 @@ -424600,12 +440376,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.20575 - 0.7071074 @@ -424615,12 +440395,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.223204 - 0.6946584 @@ -424630,12 +440414,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.240656 - 0.68199915 @@ -424645,12 +440433,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.25811 - 0.6691308 @@ -424660,12 +440452,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.275564 - 0.65605855 @@ -424675,12 +440471,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.293016 - 0.64278793 @@ -424690,12 +440490,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.31047 - 0.6293201 @@ -424705,12 +440509,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.327923 - 0.615662 @@ -424720,12 +440528,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.345377 - 0.60181487 @@ -424735,12 +440547,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.36283 - 0.5877859 @@ -424750,12 +440566,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.380283 - 0.57357645 @@ -424765,12 +440585,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.397736 - 0.5591938 @@ -424780,12 +440604,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.41519 - 0.54463917 @@ -424795,12 +440623,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.432644 - 0.5299187 @@ -424810,12 +440642,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.450096 - 0.5150384 @@ -424825,12 +440661,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.46755 - 0.49999958 @@ -424840,12 +440680,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.485003 - 0.4848101 @@ -424855,12 +440699,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.502457 - 0.4694713 @@ -424870,12 +440718,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.519909 - 0.45399117 @@ -424885,12 +440737,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.537363 - 0.43837106 @@ -424900,12 +440756,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.554815 - 0.42261913 @@ -424915,12 +440775,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.57227 - 0.40673676 @@ -424930,12 +440794,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.589724 - 0.39073044 @@ -424945,12 +440813,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.607176 - 0.37460688 @@ -424960,12 +440832,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.62463 - 0.35836744 @@ -424975,12 +440851,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.642082 - 0.34202063 @@ -424990,12 +440870,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.659536 - 0.32556784 @@ -425005,12 +440889,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.676989 - 0.30901766 @@ -425020,12 +440908,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.694443 - 0.29237157 @@ -425035,12 +440927,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.711895 - 0.27563822 @@ -425050,12 +440946,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.72935 - 0.2588191 @@ -425065,12 +440965,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.746801 - 0.24192296 @@ -425080,12 +440984,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.764256 - 0.2249513 @@ -425095,12 +441003,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.78171 - 0.2079111 @@ -425110,12 +441022,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.799162 - 0.19080943 @@ -425125,12 +441041,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.816616 - 0.17364778 @@ -425140,12 +441060,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.834068 - 0.1564351 @@ -425155,12 +441079,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.851522 - 0.1391729 @@ -425170,12 +441098,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.868975 - 0.12187018 @@ -425185,12 +441117,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.886429 - 0.10452845 @@ -425200,12 +441136,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.903881 - 0.08715678 @@ -425215,12 +441155,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.921335 - 0.06975666 @@ -425230,12 +441174,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.93879 - 0.05233529 @@ -425245,12 +441193,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.956242 - 0.03489988 @@ -425260,12 +441212,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.973696 - 0.017451935 @@ -425275,12 +441231,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21.991148 - 0.0000005801334 @@ -425290,12 +441250,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.008602 - -0.017452681 @@ -425305,12 +441269,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.026054 - -0.03489872 @@ -425320,12 +441288,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.043509 - -0.052336033 @@ -425335,12 +441307,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.06096 - -0.0697555 @@ -425350,12 +441326,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.078415 - -0.087155625 @@ -425365,12 +441345,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.09587 - -0.104529195 @@ -425380,12 +441364,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.113321 - -0.12186903 @@ -425395,12 +441383,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.130775 - -0.13917363 @@ -425410,12 +441402,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.148228 - -0.15643395 @@ -425425,12 +441421,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.165682 - -0.1736485 @@ -425440,12 +441440,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.183134 - -0.1908083 @@ -425455,12 +441459,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.200588 - -0.20791183 @@ -425470,12 +441478,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.21804 - -0.22495016 @@ -425485,12 +441497,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.235495 - -0.24192184 @@ -425500,12 +441516,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.252947 - -0.25881797 @@ -425515,12 +441535,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.270401 - -0.27563712 @@ -425530,12 +441554,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.287855 - -0.2923723 @@ -425545,12 +441573,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.305307 - -0.30901656 @@ -425560,12 +441592,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.322762 - -0.32556853 @@ -425575,12 +441611,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.340214 - -0.34201953 @@ -425590,12 +441630,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.357668 - -0.35836813 @@ -425605,12 +441649,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.37512 - -0.3746058 @@ -425620,12 +441668,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.392574 - -0.39073113 @@ -425635,12 +441687,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.410027 - -0.4067357 @@ -425650,12 +441706,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 22.42748 - -0.4226181 @@ -426445,7 +442505,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: -138.29999} - m_SizeDelta: {x: 36, y: 20} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1371012460 MonoBehaviour: @@ -427913,7 +443973,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1459099944} - m_RootOrder: 1 + 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} @@ -427987,7 +444047,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1817849955} - m_RootOrder: 1 + 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} @@ -429711,8 +445771,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 2007041435} - {fileID: 1586495872} + - {fileID: 2007041435} m_Father: {fileID: 473592951} m_RootOrder: 58 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -429899,7 +445959,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1777407521} - m_RootOrder: 1 + 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} @@ -432655,8 +448715,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1337771334} - {fileID: 41185615} + - {fileID: 1337771334} m_Father: {fileID: 473592951} m_RootOrder: 48 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -433539,7 +449599,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1661587548} - m_RootOrder: 0 + 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} @@ -434051,8 +450111,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -91.80199, y: -67.28027} - m_SizeDelta: {x: 36, y: 20} + m_AnchoredPosition: {x: -91.39441, y: -67.28027} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1401735421 MonoBehaviour: @@ -434253,7 +450313,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1037277971} - m_RootOrder: 0 + 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} @@ -435711,7 +451771,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1232096590} - m_RootOrder: 1 + 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} @@ -436362,8 +452422,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 395951274} - {fileID: 667859454} + - {fileID: 395951274} m_Father: {fileID: 473592951} m_RootOrder: 9 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -437606,7 +453666,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1459099944} - m_RootOrder: 0 + 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} @@ -439859,8 +455919,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1830969570} - {fileID: 2080704655} + - {fileID: 1830969570} m_Father: {fileID: 473592951} m_RootOrder: 31 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -442089,8 +458149,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1826386219} - {fileID: 643848436} + - {fileID: 1826386219} m_Father: {fileID: 473592951} m_RootOrder: 66 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -443913,7 +459973,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 907726326} - m_RootOrder: 1 + 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} @@ -444265,7 +460325,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 620555060} - m_RootOrder: 0 + 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} @@ -448147,7 +464207,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1293142452} - m_RootOrder: 0 + 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} @@ -449384,8 +465444,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1414266894} - {fileID: 1376862729} + - {fileID: 1414266894} m_Father: {fileID: 473592951} m_RootOrder: 35 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -449651,7 +465711,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 938404465} - m_RootOrder: 1 + 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} @@ -450881,12 +466941,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 0 @@ -450898,12 +466962,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 1 @@ -450915,12 +466983,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 2 @@ -450932,12 +467004,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 3 @@ -450949,12 +467025,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 4 @@ -450966,12 +467046,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 5 @@ -450983,12 +467067,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 6 @@ -451000,12 +467088,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 7 @@ -451017,12 +467109,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 8 @@ -451034,12 +467130,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 9 @@ -451051,12 +467151,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 10 @@ -451067,12 +467171,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 11 @@ -451083,12 +467191,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 12 @@ -451099,12 +467211,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 13 @@ -451115,12 +467231,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 14 @@ -451131,12 +467251,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 15 @@ -451147,12 +467271,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 16 @@ -451163,12 +467291,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 17 @@ -451179,12 +467311,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 18 @@ -451195,12 +467331,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 19 @@ -451211,12 +467351,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 20 @@ -451227,12 +467371,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 21 @@ -451243,12 +467391,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 22 @@ -451259,12 +467411,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 23 @@ -451275,12 +467431,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 0 @@ -451291,12 +467451,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 1 @@ -451307,12 +467471,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 2 @@ -451323,12 +467491,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 3 @@ -451339,12 +467511,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 4 @@ -451355,12 +467531,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 5 @@ -451371,12 +467551,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 6 @@ -451387,12 +467571,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 7 @@ -451403,12 +467591,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 8 @@ -451419,12 +467611,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 9 @@ -451435,12 +467631,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 10 @@ -451451,12 +467651,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 11 @@ -451467,12 +467671,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 12 @@ -451483,12 +467691,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 13 @@ -451499,12 +467711,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 14 @@ -451515,12 +467731,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 15 @@ -451531,12 +467751,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 16 @@ -451547,12 +467771,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 17 @@ -451563,12 +467791,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 18 @@ -451579,12 +467811,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 19 @@ -451595,12 +467831,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 20 @@ -451611,12 +467851,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 21 @@ -451627,12 +467871,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 22 @@ -451643,12 +467891,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 23 @@ -451659,12 +467911,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 0 @@ -451675,12 +467931,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 1 @@ -451691,12 +467951,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 2 @@ -451707,12 +467971,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 3 @@ -451723,12 +467991,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 4 @@ -451739,12 +468011,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 5 @@ -451755,12 +468031,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 6 @@ -451771,12 +468051,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 7 @@ -451787,12 +468071,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 8 @@ -451803,12 +468091,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 9 @@ -451819,12 +468111,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 10 @@ -451835,12 +468131,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 11 @@ -451851,12 +468151,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 12 @@ -451867,12 +468171,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 13 @@ -451883,12 +468191,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 14 @@ -451899,12 +468211,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 15 @@ -451915,12 +468231,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 16 @@ -451931,12 +468251,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 17 @@ -451947,12 +468271,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 18 @@ -451963,12 +468291,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 19 @@ -451979,12 +468311,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 20 @@ -451995,12 +468331,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 21 @@ -452011,12 +468351,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 22 @@ -452027,12 +468371,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 23 @@ -452043,12 +468391,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 0 @@ -452059,12 +468411,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 1 @@ -452075,12 +468431,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 2 @@ -452091,12 +468451,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 3 @@ -452107,12 +468471,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 4 @@ -452123,12 +468491,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 5 @@ -452139,12 +468511,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 6 @@ -452155,12 +468531,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 7 @@ -452171,12 +468551,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 8 @@ -452187,12 +468571,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 9 @@ -452203,12 +468591,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 10 @@ -452219,12 +468611,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 11 @@ -452235,12 +468631,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 12 @@ -452251,12 +468651,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 13 @@ -452267,12 +468671,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 14 @@ -452283,12 +468691,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 15 @@ -452299,12 +468711,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 16 @@ -452315,12 +468731,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 17 @@ -452331,12 +468751,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 18 @@ -452347,12 +468771,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 19 @@ -452363,12 +468791,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 20 @@ -452379,12 +468811,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 21 @@ -452395,12 +468831,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 22 @@ -452411,12 +468851,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 23 @@ -452427,12 +468871,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 0 @@ -452443,12 +468891,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 1 @@ -452459,12 +468911,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 2 @@ -452475,12 +468931,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 3 @@ -452491,12 +468951,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 4 @@ -452507,12 +468971,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 5 @@ -452523,12 +468991,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 6 @@ -452539,12 +469011,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 7 @@ -452555,12 +469031,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 8 @@ -452571,12 +469051,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 9 @@ -452587,12 +469071,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 10 @@ -452603,12 +469091,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 11 @@ -452619,12 +469111,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 12 @@ -452635,12 +469131,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 13 @@ -452651,12 +469151,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 14 @@ -452667,12 +469171,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 15 @@ -452683,12 +469191,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 16 @@ -452699,12 +469211,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 17 @@ -452715,12 +469231,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 18 @@ -452731,12 +469251,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 19 @@ -452747,12 +469271,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 20 @@ -452763,12 +469291,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 21 @@ -452779,12 +469311,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 22 @@ -452795,12 +469331,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 23 @@ -452811,12 +469351,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 0 @@ -452827,12 +469371,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 1 @@ -452843,12 +469391,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 2 @@ -452859,12 +469411,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 3 @@ -452875,12 +469431,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 4 @@ -452891,12 +469451,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 5 @@ -452907,12 +469471,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 6 @@ -452923,12 +469491,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 7 @@ -452939,12 +469511,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 8 @@ -452955,12 +469531,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 9 @@ -452971,12 +469551,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 10 @@ -452987,12 +469571,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 11 @@ -453003,12 +469591,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 12 @@ -453019,12 +469611,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 13 @@ -453035,12 +469631,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 14 @@ -453051,12 +469651,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 15 @@ -453067,12 +469671,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 16 @@ -453083,12 +469691,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 17 @@ -453099,12 +469711,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 18 @@ -453115,12 +469731,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 19 @@ -453131,12 +469751,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 20 @@ -453147,12 +469771,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 21 @@ -453163,12 +469791,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 22 @@ -453179,12 +469811,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 23 @@ -453195,12 +469831,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 0 @@ -453211,12 +469851,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 1 @@ -453227,12 +469871,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 2 @@ -453243,12 +469891,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 3 @@ -453259,12 +469911,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 4 @@ -453275,12 +469931,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 5 @@ -453291,12 +469951,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 6 @@ -453307,12 +469971,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 7 @@ -453323,12 +469991,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 8 @@ -453339,12 +470011,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 9 @@ -453355,12 +470031,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 10 @@ -453371,12 +470051,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 11 @@ -453387,12 +470071,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 12 @@ -453403,12 +470091,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 13 @@ -453419,12 +470111,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 14 @@ -453435,12 +470131,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 15 @@ -453451,12 +470151,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 16 @@ -453467,12 +470171,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 17 @@ -453483,12 +470191,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 18 @@ -453499,12 +470211,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 19 @@ -453515,12 +470231,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 20 @@ -453531,12 +470251,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 21 @@ -453547,12 +470271,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 22 @@ -453563,12 +470291,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 23 @@ -456053,7 +472785,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 346119140} - m_RootOrder: 0 + 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} @@ -460799,12 +477531,12 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1228332530} - m_RootOrder: 0 + 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: 60, y: 18} + m_SizeDelta: {x: 59.810425, y: 19.77251} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1493861930 MonoBehaviour: @@ -461151,7 +477883,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 980408043} - m_RootOrder: 1 + 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} @@ -463053,12 +479785,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 10 @@ -463068,12 +479804,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 52 @@ -463083,12 +479823,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 200 @@ -463098,12 +479842,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 334 @@ -463113,12 +479861,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 390 @@ -463128,12 +479880,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 330 @@ -463143,12 +479899,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 220 @@ -464533,12 +481293,16 @@ MonoBehaviour: m_Name: '''Australia''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28604 - 77 @@ -464551,12 +481315,16 @@ MonoBehaviour: m_Name: '''Canada''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31163 - 77.4 @@ -464569,12 +481337,16 @@ MonoBehaviour: m_Name: '''China''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1516 - 68 @@ -464587,12 +481359,16 @@ MonoBehaviour: m_Name: '''Cuba''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13670 - 74.7 @@ -464605,12 +481381,16 @@ MonoBehaviour: m_Name: '''Finland''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28599 - 75 @@ -464623,12 +481403,16 @@ MonoBehaviour: m_Name: '''France''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29476 - 77.1 @@ -464641,12 +481425,16 @@ MonoBehaviour: m_Name: '''Germany''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 31476 - 75.4 @@ -464659,12 +481447,16 @@ MonoBehaviour: m_Name: '''Iceland''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 28666 - 78.1 @@ -464677,12 +481469,16 @@ MonoBehaviour: m_Name: '''India''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1777 - 57.7 @@ -464695,12 +481491,16 @@ MonoBehaviour: m_Name: '''Japan''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 29550 - 79.1 @@ -464713,12 +481513,16 @@ MonoBehaviour: m_Name: '''NorthKorea''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2076 - 67.9 @@ -464731,12 +481535,16 @@ MonoBehaviour: m_Name: '''SouthKorea''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12087 - 72 @@ -464749,12 +481557,16 @@ MonoBehaviour: m_Name: '''NewZealand''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24021 - 75.4 @@ -464767,12 +481579,16 @@ MonoBehaviour: m_Name: '''Norway''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 43296 - 76.8 @@ -464785,12 +481601,16 @@ MonoBehaviour: m_Name: '''Poland''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10088 - 70.8 @@ -464803,12 +481623,16 @@ MonoBehaviour: m_Name: '''Russia''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19349 - 69.6 @@ -464821,12 +481645,16 @@ MonoBehaviour: m_Name: '''Turkey''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10670 - 67.3 @@ -464839,12 +481667,16 @@ MonoBehaviour: m_Name: '''UnitedKingdom''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 26424 - 75.7 @@ -464857,12 +481689,16 @@ MonoBehaviour: m_Name: '''UnitedStates''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37062 - 75.4 @@ -465041,12 +481877,16 @@ MonoBehaviour: m_Name: '''Australia''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 44056 - 81.8 @@ -465059,12 +481899,16 @@ MonoBehaviour: m_Name: '''Canada''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 43294 - 81.7 @@ -465077,12 +481921,16 @@ MonoBehaviour: m_Name: '''China''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13334 - 76.9 @@ -465095,12 +481943,16 @@ MonoBehaviour: m_Name: '''Cuba''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 21291 - 78.5 @@ -465113,12 +481965,16 @@ MonoBehaviour: m_Name: '''Finland''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38923 - 80.8 @@ -465131,12 +481987,16 @@ MonoBehaviour: m_Name: '''France''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 37599 - 81.9 @@ -465149,12 +482009,16 @@ MonoBehaviour: m_Name: '''Germany''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 44053 - 81.1 @@ -465167,12 +482031,16 @@ MonoBehaviour: m_Name: '''Iceland''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 42182 - 82.8 @@ -465185,12 +482053,16 @@ MonoBehaviour: m_Name: '''India''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5903 - 66.8 @@ -465203,12 +482075,16 @@ MonoBehaviour: m_Name: '''Japan''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 36162 - 83.5 @@ -465221,12 +482097,16 @@ MonoBehaviour: m_Name: '''NorthKorea''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1390 - 71.4 @@ -465239,12 +482119,16 @@ MonoBehaviour: m_Name: '''SouthKorea''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34644 - 80.7 @@ -465257,12 +482141,16 @@ MonoBehaviour: m_Name: '''NewZealand''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 34186 - 80.6 @@ -465275,12 +482163,16 @@ MonoBehaviour: m_Name: '''Norway''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 64304 - 81.6 @@ -465293,12 +482185,16 @@ MonoBehaviour: m_Name: '''Poland''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 24787 - 77.3 @@ -465311,12 +482207,16 @@ MonoBehaviour: m_Name: '''Russia''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 23038 - 73.13 @@ -465329,12 +482229,16 @@ MonoBehaviour: m_Name: '''Turkey''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 19360 - 76.5 @@ -465347,12 +482251,16 @@ MonoBehaviour: m_Name: '''UnitedKingdom''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 38225 - 81.4 @@ -465365,12 +482273,16 @@ MonoBehaviour: m_Name: '''UnitedStates''' m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 53354 - 79.1 @@ -465790,7 +482702,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1912187377} - m_RootOrder: 1 + 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} @@ -466290,7 +483202,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 477355252} - m_RootOrder: 0 + 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} @@ -469783,7 +486695,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 808565888} - m_RootOrder: 0 + 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} @@ -470453,12 +487365,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 120 @@ -470468,12 +487384,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 132 @@ -470483,12 +487403,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 101 @@ -470498,12 +487422,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 134 @@ -470513,12 +487441,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 90 @@ -470528,12 +487460,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 230 @@ -470543,12 +487479,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 210 @@ -470721,12 +487661,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 220 @@ -470736,12 +487680,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 182 @@ -470751,12 +487699,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 191 @@ -470766,12 +487718,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 234 @@ -470781,12 +487737,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 290 @@ -470796,12 +487756,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 330 @@ -470811,12 +487775,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 310 @@ -470989,12 +487957,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 150 @@ -471004,12 +487976,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 232 @@ -471019,12 +487995,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 201 @@ -471034,12 +488014,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 154 @@ -471049,12 +488033,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 190 @@ -471064,12 +488052,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 330 @@ -471079,12 +488071,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 410 @@ -471257,12 +488253,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 320 @@ -471272,12 +488272,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 332 @@ -471287,12 +488291,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 301 @@ -471302,12 +488310,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 334 @@ -471317,12 +488329,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 390 @@ -471332,12 +488348,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 330 @@ -471347,12 +488367,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 320 @@ -471525,12 +488549,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 820 @@ -471540,12 +488568,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 932 @@ -471555,12 +488587,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 901 @@ -471570,12 +488606,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 934 @@ -471585,12 +488625,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 1290 @@ -471600,12 +488644,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 1330 @@ -471615,12 +488663,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 1320 @@ -472899,8 +489951,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1607124890} - {fileID: 1890516122} + - {fileID: 1607124890} m_Father: {fileID: 473592951} m_RootOrder: 60 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -473407,7 +490459,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 301792271} - m_RootOrder: 1 + 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} @@ -474208,7 +491260,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 482321553} - m_RootOrder: 1 + 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} @@ -475756,7 +492808,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1860695676} - m_RootOrder: 1 + 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} @@ -477567,8 +494619,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 251948435} - {fileID: 630358072} + - {fileID: 251948435} m_Father: {fileID: 473592951} m_RootOrder: 28 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -478074,7 +495126,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2018827222} - m_RootOrder: 0 + 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} @@ -479226,8 +496278,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1740861767} - {fileID: 515697646} + - {fileID: 1740861767} m_Father: {fileID: 473592951} m_RootOrder: 29 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -480088,7 +497140,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1694097421} - m_RootOrder: 1 + 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} @@ -481367,7 +498419,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 178318363} - m_RootOrder: 0 + 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} @@ -482610,7 +499662,7 @@ RectTransform: 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: -30} + m_AnchoredPosition: {x: 0, y: -30} m_SizeDelta: {x: 584, y: 14} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1562416262 @@ -483181,7 +500233,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 438326143} - m_RootOrder: 1 + 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} @@ -483261,8 +500313,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -57.494156, y: -101.55556} - m_SizeDelta: {x: 54, y: 20} + m_AnchoredPosition: {x: -58.10553, y: -101.55556} + m_SizeDelta: {x: 52.777252, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1563749978 MonoBehaviour: @@ -485051,7 +502103,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2039291740} - m_RootOrder: 0 + 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} @@ -485921,8 +502973,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -114.475235, y: 62.45999} - m_SizeDelta: {x: 36, y: 20} + m_AnchoredPosition: {x: -114.06766, y: 62.45999} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1574371189 MonoBehaviour: @@ -487117,12 +504169,12 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1366633068} - m_RootOrder: 0 + 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: 60, y: 20} + m_SizeDelta: {x: 59.810425, y: 19.77251} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1578504825 MonoBehaviour: @@ -487307,7 +504359,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 938404465} - m_RootOrder: 0 + 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} @@ -487864,8 +504916,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 256.40356, y: -21.899994} - m_SizeDelta: {x: 28, y: 20} + m_AnchoredPosition: {x: 256.05286, y: -21.899994} + m_SizeDelta: {x: 27.298578, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1581140274 MonoBehaviour: @@ -489415,7 +506467,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1259593130} - m_RootOrder: 1 + 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} @@ -489730,7 +506782,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1383117115} - m_RootOrder: 1 + 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} @@ -491864,7 +508916,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 438326143} - m_RootOrder: 0 + 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} @@ -493315,8 +510367,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -129.11105, y: 64.14998} - m_SizeDelta: {x: 36, y: 20} + m_AnchoredPosition: {x: -128.70348, y: 64.14998} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1602577151 MonoBehaviour: @@ -494537,7 +511589,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1523658564} - m_RootOrder: 0 + 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} @@ -495886,7 +512938,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 619062329} - m_RootOrder: 0 + 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} @@ -498640,7 +515692,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 432869039} - m_RootOrder: 0 + 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} @@ -499669,8 +516721,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 2078763022} - {fileID: 134694770} + - {fileID: 2078763022} m_Father: {fileID: 473592951} m_RootOrder: 44 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -499973,7 +517025,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 178318363} - m_RootOrder: 1 + 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} @@ -501165,8 +518217,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 735682483} - {fileID: 2037915768} + - {fileID: 735682483} m_Father: {fileID: 1115439235} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -501976,12 +519028,16 @@ MonoBehaviour: m_Name: "\u9884\u7B97\u5206\u914D" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4300 - 10000 @@ -501996,12 +519052,16 @@ MonoBehaviour: m_Name: "\u5B9E\u9645\u5F00\u9500" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5000 - 14000 @@ -505088,7 +522148,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1852989354} - m_RootOrder: 1 + 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} @@ -505162,7 +522222,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1291833705} - m_RootOrder: 1 + 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} @@ -507664,8 +524724,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1398743504} - {fileID: 939995343} + - {fileID: 1398743504} m_Father: {fileID: 473592951} m_RootOrder: 20 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -509095,8 +526155,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -79.600006, y: 16.90001} - m_SizeDelta: {x: 36, y: 20} + m_AnchoredPosition: {x: -80.00758, y: 16.90001} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1667040880 MonoBehaviour: @@ -509803,7 +526863,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 535380637} - m_RootOrder: 1 + 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} @@ -510579,8 +527639,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 749305804} - {fileID: 1021060475} + - {fileID: 749305804} m_Father: {fileID: 1115439235} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -513394,7 +530454,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 291477418} - m_RootOrder: 0 + 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} @@ -514917,12 +531977,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 63 @@ -514932,12 +531996,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 45 @@ -514947,12 +532015,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 19 @@ -514962,12 +532034,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 65 @@ -514977,12 +532053,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 42 @@ -515491,8 +532571,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 915526320} - {fileID: 1552477420} + - {fileID: 915526320} m_Father: {fileID: 473592951} m_RootOrder: 75 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -515614,7 +532694,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 138292120} - m_RootOrder: 0 + 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} @@ -515809,7 +532889,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 860141505} - m_RootOrder: 1 + 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} @@ -520793,8 +537873,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 446573318} - {fileID: 516913255} + - {fileID: 446573318} m_Father: {fileID: 473592951} m_RootOrder: 61 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -524006,8 +541086,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -132.29634, y: 0} - m_SizeDelta: {x: 34.672688, y: 19.503386} + m_AnchoredPosition: {x: -132.55241, y: 0} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1730498763 MonoBehaviour: @@ -524081,7 +541161,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 832351922} - m_RootOrder: 0 + 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} @@ -526041,12 +543121,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 820 @@ -526056,12 +543140,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 1081.1 @@ -526071,12 +543159,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 901 @@ -526086,12 +543178,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 1019.7 @@ -526101,12 +543197,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 492 @@ -526116,12 +543216,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 1511.6 @@ -526131,12 +543235,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 1320 @@ -526309,12 +543417,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 820 @@ -526324,12 +543436,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 1081.1 @@ -526339,12 +543455,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 901 @@ -526354,12 +543474,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 1019.7 @@ -526369,12 +543493,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 492 @@ -526384,12 +543512,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 1511.6 @@ -526399,12 +543531,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 1320 @@ -527226,7 +544362,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1155123227} - m_RootOrder: 1 + 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} @@ -527379,7 +544515,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1548447441} - m_RootOrder: 0 + 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} @@ -529626,8 +546762,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 884750382} - {fileID: 102819813} + - {fileID: 884750382} m_Father: {fileID: 473592951} m_RootOrder: 53 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -530044,7 +547180,7 @@ MonoBehaviour: m_GameObject: {fileID: 1752182473} m_Enabled: 1 m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 85bc0178fe453471fb2706bf81a09235, type: 3} + m_Script: {fileID: 11500000, guid: f81ca580204024b8db33b4646c549c4f, type: 3} m_Name: m_EditorClassIdentifier: m_ButtonNormalColor: {r: 0.16078432, g: 0.23529412, b: 0.33333334, a: 1} @@ -530069,7 +547205,7 @@ MonoBehaviour: m_Panel: {fileID: 665512901} - m_Name: "\u96F7\u8FBE\u56FE" m_Title: "\u96F7\u8FBE\u56FE RadarChart" - m_Selected: 1 + m_Selected: 0 m_Panel: {fileID: 37761822} - m_Name: "\u6563\u70B9\u56FE" m_Title: "\u6563\u70B9\u56FE ScatterChart" @@ -530113,7 +547249,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 905836768} - m_RootOrder: 1 + 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} @@ -530263,8 +547399,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 641164108} - {fileID: 2060140432} + - {fileID: 641164108} m_Father: {fileID: 1050794689} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -536364,8 +553500,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 430226130} - {fileID: 1383925619} + - {fileID: 430226130} m_Father: {fileID: 473592951} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -536518,7 +553654,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 881604660} - m_RootOrder: 0 + 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} @@ -540162,12 +557298,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 4000 @@ -540340,12 +557480,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 7000 @@ -540518,12 +557662,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 5000 @@ -540696,12 +557844,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 4000 @@ -541624,7 +558776,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 787925338} - m_RootOrder: 1 + 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} @@ -541920,7 +559072,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 346119140} - m_RootOrder: 1 + 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} @@ -543272,8 +560424,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1983837400} - {fileID: 911371838} + - {fileID: 1983837400} m_Father: {fileID: 1115439235} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -543626,7 +560778,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 571090321} - m_RootOrder: 0 + 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} @@ -544801,8 +561953,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 557638515} - {fileID: 799556040} + - {fileID: 557638515} m_Father: {fileID: 473592951} m_RootOrder: 83 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -544841,7 +561993,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1072376770} - m_RootOrder: 1 + 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} @@ -547357,8 +564509,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 559285483} - {fileID: 1377125611} + - {fileID: 559285483} m_Father: {fileID: 1407588448} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -547401,8 +564553,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 128.5174, y: 72.979996} - m_SizeDelta: {x: 34.672688, y: 19.503386} + m_AnchoredPosition: {x: 128.77347, y: 72.979996} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1817958410 MonoBehaviour: @@ -548897,7 +566049,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1429263363} - m_RootOrder: 0 + 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} @@ -549782,7 +566934,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1420872850} - m_RootOrder: 0 + 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} @@ -551230,12 +568382,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 1116.8 @@ -551245,12 +568401,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 671.4 @@ -551260,12 +568420,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 1239.7 @@ -551275,12 +568439,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 670 @@ -551290,12 +568458,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 1290 @@ -551305,12 +568477,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 1513.81 @@ -551320,12 +568496,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 1320 @@ -551498,12 +568678,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 2227.1 @@ -551513,12 +568697,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 1671.4 @@ -551528,12 +568716,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 2239.7 @@ -551543,12 +568735,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 1670 @@ -551558,12 +568754,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 2290 @@ -551573,12 +568773,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 2513.81 @@ -551588,12 +568792,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 2320 @@ -553363,8 +570571,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 502851844} - {fileID: 2088796496} + - {fileID: 502851844} m_Father: {fileID: 473592951} m_RootOrder: 86 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -554131,8 +571339,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 352105915} - {fileID: 84028339} + - {fileID: 352105915} m_Father: {fileID: 473592951} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -554171,7 +571379,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 127743410} - m_RootOrder: 0 + 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} @@ -554359,7 +571567,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 896399434} - m_RootOrder: 1 + 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} @@ -554555,8 +571763,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 37.37909, y: -69.22} - m_SizeDelta: {x: 36, y: 20} + m_AnchoredPosition: {x: 37.786682, y: -69.22} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1846413635 MonoBehaviour: @@ -555580,8 +572788,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1992809423} - {fileID: 1651889298} + - {fileID: 1992809423} m_Father: {fileID: 473592951} m_RootOrder: 88 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -556444,7 +573652,7 @@ RectTransform: 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_AnchoredPosition: {x: 0, y: -24} m_SizeDelta: {x: 584, y: 14} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1855971604 @@ -557330,8 +574538,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 474096143} - {fileID: 1536994164} + - {fileID: 474096143} m_Father: {fileID: 473592951} m_RootOrder: 38 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -558512,12 +575720,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 8.04 @@ -558527,12 +575739,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 6.95 @@ -558542,12 +575758,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 13 - 7.58 @@ -558557,12 +575777,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 8.81 @@ -558572,12 +575796,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 11 - 8.33 @@ -558587,12 +575815,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 14 - 9.96 @@ -558602,12 +575834,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 7.24 @@ -558617,12 +575853,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 4.26 @@ -558632,12 +575872,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 12 - 10.84 @@ -558647,12 +575891,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 4.82 @@ -558662,12 +575910,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 5.68 @@ -558843,12 +576095,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 3 @@ -558859,12 +576115,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 3.5 @@ -558875,12 +576135,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 4 @@ -558891,12 +576155,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 4.5 @@ -558907,12 +576175,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 5 @@ -558923,12 +576195,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 5.5 @@ -558939,12 +576215,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 6 @@ -558955,12 +576235,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 6.5 @@ -558971,12 +576255,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 8 - 7 @@ -558987,12 +576275,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 9 - 7.5 @@ -559003,12 +576295,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 10 - 8 @@ -559019,12 +576315,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 15 - 10.5 @@ -559035,12 +576335,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 20 - 13 @@ -560128,12 +577432,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 62 @@ -560143,12 +577451,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 55 @@ -560158,12 +577470,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 30 @@ -560173,12 +577489,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 78 @@ -560188,12 +577508,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 50 @@ -560366,12 +577690,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 55 @@ -560381,12 +577709,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 40 @@ -560396,12 +577728,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 21 @@ -560411,12 +577747,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 48 @@ -560426,12 +577766,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 30 @@ -560810,7 +578154,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1109375083} - m_RootOrder: 0 + 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} @@ -563270,7 +580614,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1259593130} - m_RootOrder: 0 + 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} @@ -563862,8 +581206,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -71.15637, y: -105.00104} - m_SizeDelta: {x: 34.672688, y: 19.503386} + m_AnchoredPosition: {x: -71.412445, y: -105.00104} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1884850782 MonoBehaviour: @@ -564711,7 +582055,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1523658564} - m_RootOrder: 1 + 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} @@ -564984,7 +582328,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1228332530} - m_RootOrder: 1 + 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} @@ -569906,12 +587250,16 @@ MonoBehaviour: m_Name: "\u9884\u7B97\u5206\u914D" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4300 - 10000 @@ -569926,12 +587274,16 @@ MonoBehaviour: m_Name: "\u5B9E\u9645\u5F00\u9500" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5000 - 14000 @@ -570234,8 +587586,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1002241101} - {fileID: 1504453949} + - {fileID: 1002241101} m_Father: {fileID: 1115439235} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -570746,8 +588098,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -66.536316, y: 111.111084} - m_SizeDelta: {x: 34.672688, y: 19.503386} + m_AnchoredPosition: {x: -66.79239, y: 111.111084} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1913985793 MonoBehaviour: @@ -572064,8 +589416,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 2038789038} - {fileID: 1918464389} + - {fileID: 2038789038} m_Father: {fileID: 473592951} m_RootOrder: 24 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -572409,7 +589761,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1917294756} - m_RootOrder: 1 + 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} @@ -576782,7 +594134,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 565597444} - m_RootOrder: 1 + 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} @@ -579905,7 +597257,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 301792271} - m_RootOrder: 0 + 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} @@ -582226,8 +599578,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -272.51855, y: 15.435547} - m_SizeDelta: {x: 54, y: 20} + m_AnchoredPosition: {x: -271.90717, y: 15.435547} + m_SizeDelta: {x: 52.777252, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1961484285 MonoBehaviour: @@ -582303,7 +599655,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 291477418} - m_RootOrder: 1 + 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} @@ -582377,7 +599729,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1207800333} - m_RootOrder: 1 + 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} @@ -582993,7 +600345,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 138.29999} - m_SizeDelta: {x: 34.672688, y: 19.503386} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1967047107 MonoBehaviour: @@ -586792,12 +604144,12 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1799657881} - m_RootOrder: 0 + 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: 94, y: 24} + m_SizeDelta: {x: 91.96208, y: 23.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1983837401 MonoBehaviour: @@ -588614,7 +605966,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 140697332} - m_RootOrder: 0 + 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} @@ -588846,7 +606198,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1852989354} - m_RootOrder: 0 + 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} @@ -592325,7 +609677,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1383117115} - m_RootOrder: 0 + 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} @@ -593299,8 +610651,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 887459241} - {fileID: 500640554} + - {fileID: 887459241} m_Father: {fileID: 473592951} m_RootOrder: 45 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -593997,7 +611349,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1121577498} - m_RootOrder: 1 + 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} @@ -595400,8 +612752,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1545130704} - {fileID: 566207729} + - {fileID: 1545130704} m_Father: {fileID: 473592951} m_RootOrder: 30 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -598395,7 +615747,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 94560412} - m_RootOrder: 0 + 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} @@ -599292,7 +616644,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 477355252} - m_RootOrder: 1 + 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} @@ -600701,7 +618053,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1638043301} - m_RootOrder: 1 + 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} @@ -601048,7 +618400,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1917294756} - m_RootOrder: 0 + 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} @@ -601286,8 +618638,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 1571310873} - {fileID: 1153943808} + - {fileID: 1571310873} m_Father: {fileID: 473592951} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -601986,7 +619338,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 243749875} - m_RootOrder: 1 + 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} @@ -605279,7 +622631,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 535380637} - m_RootOrder: 0 + 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} @@ -606236,12 +623588,16 @@ MonoBehaviour: m_Name: "\u67D0\u8F6F\u4EF6" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 60 - 73 @@ -606418,12 +623774,16 @@ MonoBehaviour: m_Name: "\u67D0\u4E3B\u98DF\u624B\u673A" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 85 - 90 @@ -606438,12 +623798,16 @@ MonoBehaviour: m_Name: "\u67D0\u6C34\u679C\u624B\u673A" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 95 - 80 @@ -606622,12 +623986,16 @@ MonoBehaviour: m_Name: "\u964D\u6C34\u91CF" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2.6 - 5.9 @@ -606647,12 +624015,16 @@ MonoBehaviour: m_Name: "\u84B8\u53D1\u91CF" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 4.9 @@ -607719,12 +625091,16 @@ MonoBehaviour: m_Name: "\u76F4\u8FBE" m_Selected: 1 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 335 @@ -607734,12 +625110,16 @@ MonoBehaviour: m_Name: "\u8425\u9500\u5E7F\u544A" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 679 @@ -607749,12 +625129,16 @@ MonoBehaviour: m_Name: "\u641C\u7D22\u5F15\u64CE" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 1548 @@ -607932,12 +625316,16 @@ MonoBehaviour: m_Name: "\u76F4\u8FBE" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 335 @@ -607947,12 +625335,16 @@ MonoBehaviour: m_Name: "\u90AE\u4EF6\u8425\u9500" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 310 @@ -607962,12 +625354,16 @@ MonoBehaviour: m_Name: "\u8054\u76DF\u5E7F\u544A" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 234 @@ -607977,12 +625373,16 @@ MonoBehaviour: m_Name: "\u89C6\u9891\u5E7F\u544A" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 135 @@ -607992,12 +625392,16 @@ MonoBehaviour: m_Name: "\u767E\u5EA6" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 1048 @@ -608007,12 +625411,16 @@ MonoBehaviour: m_Name: "\u8C37\u6B4C" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 251 @@ -608022,12 +625430,16 @@ MonoBehaviour: m_Name: "\u5FC5\u5E94" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 6 - 147 @@ -608037,12 +625449,16 @@ MonoBehaviour: m_Name: "\u5176\u4ED6" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 7 - 102 @@ -608319,7 +625735,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1752609155} - m_RootOrder: 1 + 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} @@ -610183,8 +627599,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 465849017} - {fileID: 487301577} + - {fileID: 465849017} m_Father: {fileID: 473592951} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -611657,8 +629073,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 531635506} - {fileID: 314385316} + - {fileID: 531635506} m_Father: {fileID: 583892134} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -612356,7 +629772,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: -146, y: 97.73999} - m_SizeDelta: {x: 54, y: 20} + m_SizeDelta: {x: 52.777252, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2077408420 MonoBehaviour: @@ -612640,7 +630056,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1633069331} - m_RootOrder: 0 + 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} @@ -612872,7 +630288,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1096716073} - m_RootOrder: 0 + 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} @@ -613104,7 +630520,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1420872850} - m_RootOrder: 1 + 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} @@ -615320,12 +632736,16 @@ MonoBehaviour: m_Name: "\u76F4\u63A5\u8BBF\u95EE" m_Selected: 1 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 335 @@ -615335,12 +632755,16 @@ MonoBehaviour: m_Name: "\u90AE\u4EF6\u8425\u9500" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 310 @@ -615350,12 +632774,16 @@ MonoBehaviour: m_Name: "\u8054\u76DF\u5E7F\u544A" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 234 @@ -615365,12 +632793,16 @@ MonoBehaviour: m_Name: "\u89C6\u9891\u5E7F\u544A" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 135 @@ -615380,12 +632812,16 @@ MonoBehaviour: m_Name: "\u641C\u7D22\u5F15\u64CE" m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 1548 @@ -616264,7 +633700,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1839790638} - m_RootOrder: 1 + 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} @@ -617669,8 +635105,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 254.62091, y: -69.22002} - m_SizeDelta: {x: 36, y: 20} + m_AnchoredPosition: {x: 254.21332, y: -69.22002} + m_SizeDelta: {x: 35.184834, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2095901327 MonoBehaviour: @@ -621230,7 +638666,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 713322374} - m_RootOrder: 0 + 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} @@ -622649,8 +640085,8 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 93.99643, y: -21.899979} - m_SizeDelta: {x: 28, y: 20} + m_AnchoredPosition: {x: 94.34714, y: -21.899979} + m_SizeDelta: {x: 27.298578, y: 19.412323} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2118287788 MonoBehaviour: @@ -625983,12 +643419,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 0 @@ -625998,12 +643438,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 1700 @@ -626013,12 +643457,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 1400 @@ -626028,12 +643476,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 1200 @@ -626043,12 +643495,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 300 @@ -626058,12 +643514,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 0 @@ -626236,12 +643696,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 0 - 2900 @@ -626251,12 +643715,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 1 - 1200 @@ -626266,12 +643734,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 2 - 300 @@ -626281,12 +643753,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 3 - 200 @@ -626296,12 +643772,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 4 - 900 @@ -626311,12 +643791,16 @@ MonoBehaviour: m_Name: m_Selected: 0 m_Radius: 0 - m_ShowIcon: 0 - m_IconImage: {fileID: 0} - m_IconColor: {r: 1, g: 1, b: 1, a: 1} - m_IconWidth: 40 - m_IconHeight: 40 - m_IconOffset: {x: 0, y: 0, z: 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_Data: - 5 - 300 @@ -627225,7 +644709,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 840966508} - m_RootOrder: 0 + 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} @@ -628175,7 +645659,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 677322788} - m_RootOrder: 1 + 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} @@ -629513,7 +646997,7 @@ RectTransform: m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 482321553} - m_RootOrder: 0 + 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} @@ -630292,8 +647776,8 @@ RectTransform: m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: - - {fileID: 371938726} - {fileID: 1203253995} + - {fileID: 371938726} m_Father: {fileID: 473592951} m_RootOrder: 17 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} diff --git a/ProjectSettings/EditorBuildSettings.asset b/ProjectSettings/EditorBuildSettings.asset index 01acec09..248d0eb4 100644 --- a/ProjectSettings/EditorBuildSettings.asset +++ b/ProjectSettings/EditorBuildSettings.asset @@ -6,5 +6,6 @@ EditorBuildSettings: serializedVersion: 2 m_Scenes: - enabled: 1 - path: Assets/XCharts/Demo/demo_xchart.unity + path: Assets/XChartsDemo/demo_xchart.unity guid: 5adbd6df9174d6943b7eb8d23651ffd1 + m_configObjects: {} From 6503ac2e240732fcad78dfe5605993844235a7ee Mon Sep 17 00:00:00 2001 From: monitor1394 Date: Tue, 12 Nov 2019 07:59:46 +0800 Subject: [PATCH 24/27] =?UTF-8?q?=E4=BF=AE=E5=A4=8D2018.3=E4=BB=A5?= =?UTF-8?q?=E4=B8=8B=E7=89=88=E6=9C=AC=E6=89=93=E5=BC=80=E6=8A=A5=E9=94=99?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Packages/manifest.json | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Packages/manifest.json b/Packages/manifest.json index 8392bea1..5966e700 100644 --- a/Packages/manifest.json +++ b/Packages/manifest.json @@ -1,11 +1,6 @@ { "dependencies": { - "com.unity.ads": "2.0.8", - "com.unity.analytics": "3.2.2", - "com.unity.collab-proxy": "1.2.15", "com.unity.package-manager-ui": "2.0.7", - "com.unity.purchasing": "2.0.3", - "com.unity.textmeshpro": "1.3.0", "com.unity.modules.ai": "1.0.0", "com.unity.modules.animation": "1.0.0", "com.unity.modules.assetbundle": "1.0.0", From 837658ddcc38612313ad0bad1130809bf421bfa5 Mon Sep 17 00:00:00 2001 From: monitor1394 Date: Tue, 12 Nov 2019 08:00:36 +0800 Subject: [PATCH 25/27] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=BF=BD=E7=95=A5?= =?UTF-8?q?=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 289b734e..a7426974 100644 --- a/.gitignore +++ b/.gitignore @@ -11,10 +11,10 @@ /Assets/Package /Assets/Package.meta -/Assets/XCharts/Demo/demo_test.unity -/Assets/XCharts/Demo/demo_test.unity.meta -/Assets/XCharts/Demo/empty.unity -/Assets/XCharts/Demo/empty.unity.meta +/Assets/XChartsDemo/demo_test.unity +/Assets/XChartsDemo/demo_test.unity.meta +/Assets/XChartsDemo/empty.unity +/Assets/XChartsDemo/empty.unity.meta *.sln *.csproj From 668aa4ef0fa6b6e35fd7499ed765c47840800730 Mon Sep 17 00:00:00 2001 From: monitor1394 Date: Tue, 12 Nov 2019 08:00:47 +0800 Subject: [PATCH 26/27] =?UTF-8?q?=E4=BF=AE=E5=A4=8D`2018.3`=E4=BB=A5?= =?UTF-8?q?=E4=B8=8B=E7=89=88=E6=9C=AC=E6=89=93=E5=BC=80=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E6=8A=A5=E9=94=99=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/XCharts/CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Assets/XCharts/CHANGELOG.md b/Assets/XCharts/CHANGELOG.md index 15f7ff60..700c7317 100644 --- a/Assets/XCharts/CHANGELOG.md +++ b/Assets/XCharts/CHANGELOG.md @@ -1,6 +1,11 @@ # 更新日志 +* (2019.11.12) 修复`2018.3`以下版本打开项目报错的问题 +* (2019.11.12) 增加`IconStyle`子组件,优化`SerieData`的图标配置 +* (2019.11.11) 修复`Serie`的图标显示在上层遮挡`Label`的问题 +* (2019.11.11) 修复饼图当数据过小时视觉引导线会穿透的的问题 +* (2019.11.09) 修复饼图添加数据时`Label`异常的问题 * (2019.11.09) 优化结构,分离为`XCharts`和`XChartsDemo`两部分 * (2019.11.05) 发布`v1.0.4`版本 * (2019.11.05) 增加`Radar`雷达组件文本样式参数配置支持 From bd75f43b2a79692cc3bd0707a9cff615e768c4f8 Mon Sep 17 00:00:00 2001 From: monitor1394 Date: Tue, 12 Nov 2019 09:49:25 +0800 Subject: [PATCH 27/27] =?UTF-8?q?=E4=BF=AE=E5=A4=8DLabel=E5=9D=90=E6=A0=87?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E5=BC=82=E5=B8=B8=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Assets/XCharts/Runtime/Internal/BaseChart.cs | 23 +- .../Runtime/Internal/CoordinateChart.cs | 2 + Assets/XChartsDemo/demo_xchart.unity | 41540 +++++++++++++++- 3 files changed, 40558 insertions(+), 1007 deletions(-) diff --git a/Assets/XCharts/Runtime/Internal/BaseChart.cs b/Assets/XCharts/Runtime/Internal/BaseChart.cs index f4161c28..0679b554 100644 --- a/Assets/XCharts/Runtime/Internal/BaseChart.cs +++ b/Assets/XCharts/Runtime/Internal/BaseChart.cs @@ -54,12 +54,15 @@ namespace XCharts [NonSerialized] private Legend m_CheckLegend = Legend.defaultLegend; [NonSerialized] private float m_CheckWidth = 0; [NonSerialized] private float m_CheckHeight = 0; + [NonSerialized] private Vector2 m_CheckMinAnchor; + [NonSerialized] private Vector2 m_CheckMaxAnchor; + [NonSerialized] private float m_CheckSerieCount = 0; [NonSerialized] private List m_CheckSerieName = new List(); - [NonSerialized] private bool m_RefreshChart = false; - [NonSerialized] private bool m_RefreshLabel = false; - [NonSerialized] private bool m_ReinitLabel = false; - [NonSerialized] private bool m_CheckAnimation = false; + [NonSerialized] protected bool m_RefreshChart = false; + [NonSerialized] protected bool m_RefreshLabel = false; + [NonSerialized] protected bool m_ReinitLabel = false; + [NonSerialized] protected bool m_CheckAnimation = false; [NonSerialized] protected List m_LegendRealShowName = new List(); protected Vector2 chartAnchorMax { get { return rectTransform.anchorMax; } } @@ -287,8 +290,8 @@ namespace XCharts private void InitSerieLabel() { - var labelObject = ChartHelper.AddObject(s_SerieLabelObjectName, transform, chartAnchorMin, - chartAnchorMax, chartPivot, new Vector2(chartWidth, chartHeight)); + var labelObject = ChartHelper.AddObject(s_SerieLabelObjectName, transform, Vector2.zero, + Vector2.zero, Vector2.zero, new Vector2(chartWidth, chartHeight)); SerieLabelPool.ReleaseAll(labelObject.transform); int count = 0; for (int i = 0; i < m_Series.Count; i++) @@ -358,6 +361,13 @@ namespace XCharts { SetSize(sizeDelta.x, sizeDelta.y); } + + if (m_CheckMinAnchor != rectTransform.anchorMin || m_CheckMaxAnchor != rectTransform.anchorMax) + { + m_CheckMaxAnchor = rectTransform.anchorMax; + m_CheckMinAnchor = rectTransform.anchorMin; + m_ReinitLabel = true; + } } private void CheckTheme() @@ -523,6 +533,7 @@ namespace XCharts InitTitle(); InitLegend(); InitTooltip(); + InitSerieLabel(); } protected virtual void OnThemeChanged() diff --git a/Assets/XCharts/Runtime/Internal/CoordinateChart.cs b/Assets/XCharts/Runtime/Internal/CoordinateChart.cs index f33ec5f1..561555c3 100644 --- a/Assets/XCharts/Runtime/Internal/CoordinateChart.cs +++ b/Assets/XCharts/Runtime/Internal/CoordinateChart.cs @@ -1348,6 +1348,7 @@ namespace XCharts } break; } + m_RefreshLabel = true; serieData.labelPosition = pos; if (serie.label.show) DrawLabelBackground(vh, serie, serieData); } @@ -1372,6 +1373,7 @@ namespace XCharts if (j >= serie.dataPoints.Count) break; var serieData = serie.data[j]; var pos = serie.dataPoints[j]; + serieData.SetGameObjectPosition(serieData.labelPosition); serieData.UpdateIcon(); if (serie.show && serie.label.show && serieData.canShowLabel) diff --git a/Assets/XChartsDemo/demo_xchart.unity b/Assets/XChartsDemo/demo_xchart.unity index d45a8766..a1a330ef 100644 --- a/Assets/XChartsDemo/demo_xchart.unity +++ b/Assets/XChartsDemo/demo_xchart.unity @@ -418,6 +418,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 444138} m_CullTransparentMesh: 0 +--- !u!1 &617688 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 617689} + - component: {fileID: 617691} + - component: {fileID: 617690} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &617689 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 617688} + m_LocalRotation: {x: -0, 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: 560649424} + 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 &617690 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 617688} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &617691 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 617688} + m_CullTransparentMesh: 0 --- !u!1 &1022830 GameObject: m_ObjectHideFlags: 0 @@ -526,7 +600,7 @@ RectTransform: m_GameObject: {fileID: 1185842} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1107243629} m_RootOrder: 11 @@ -534,7 +608,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 146, y: -131.54001} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1185844 MonoBehaviour: @@ -686,7 +760,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} @@ -696,9 +770,9 @@ RectTransform: m_Father: {fileID: 1520897807} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} --- !u!1 &2408609 @@ -1154,7 +1228,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 4071275} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -1284,6 +1358,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 4425516} m_CullTransparentMesh: 0 +--- !u!1 &4499477 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4499478} + - component: {fileID: 4499480} + - component: {fileID: 4499479} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4499478 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4499477} + m_LocalRotation: {x: 0, 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: 1785100649} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &4499479 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4499477} + m_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: +--- !u!222 &4499480 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4499477} + m_CullTransparentMesh: 0 --- !u!1 &5003999 GameObject: m_ObjectHideFlags: 0 @@ -1404,6 +1557,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 5214052} m_CullTransparentMesh: 0 +--- !u!1 &5332503 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5332504} + 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 &5332504 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5332503} + m_LocalRotation: {x: 0, 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: 1807572604} + - {fileID: 1830558711} + m_Father: {fileID: 1009125081} + 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 &5735390 GameObject: m_ObjectHideFlags: 0 @@ -2150,7 +2340,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} @@ -2199,6 +2389,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &11567881 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 11567882} + 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 &11567882 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 11567881} + m_LocalRotation: {x: 0, 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: 152660590} + - {fileID: 1484679477} + m_Father: {fileID: 801884283} + m_RootOrder: 45 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &11775400 GameObject: m_ObjectHideFlags: 0 @@ -3046,7 +3273,7 @@ RectTransform: m_GameObject: {fileID: 15348119} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1479697891} - {fileID: 1993541218} @@ -3774,7 +4001,7 @@ RectTransform: m_GameObject: {fileID: 17633935} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1790660117} - {fileID: 1045354203} @@ -3860,6 +4087,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 17679858} m_CullTransparentMesh: 0 +--- !u!1 &17952618 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 17952619} + - component: {fileID: 17952621} + - component: {fileID: 17952620} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &17952619 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 17952618} + m_LocalRotation: {x: 0, 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: 906710900} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &17952620 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 17952618} + m_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 &17952621 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 17952618} + m_CullTransparentMesh: 0 --- !u!1 &18367961 GameObject: m_ObjectHideFlags: 0 @@ -3885,7 +4191,7 @@ RectTransform: m_GameObject: {fileID: 18367961} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 2082052933} - {fileID: 379844623} @@ -4639,6 +4945,85 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &23017196 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 23017197} + - component: {fileID: 23017199} + - component: {fileID: 23017198} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &23017197 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 23017196} + m_LocalRotation: {x: 0, 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: 780211314} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &23017198 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 23017196} + m_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 &23017199 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 23017196} + m_CullTransparentMesh: 0 --- !u!1 &23308856 GameObject: m_ObjectHideFlags: 0 @@ -4934,7 +5319,7 @@ RectTransform: m_GameObject: {fileID: 25144897} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 619988135} - {fileID: 2027231614} @@ -5112,6 +5497,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 25817692} m_CullTransparentMesh: 0 +--- !u!1 &26153549 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 26153550} + - component: {fileID: 26153552} + - component: {fileID: 26153551} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &26153550 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 26153549} + m_LocalRotation: {x: -0, 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: 1533327009} + 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 &26153551 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 26153549} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &26153552 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 26153549} + m_CullTransparentMesh: 0 --- !u!1 &26400934 GameObject: m_ObjectHideFlags: 0 @@ -5348,6 +5807,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 26785957} m_CullTransparentMesh: 0 +--- !u!1 &27612435 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 27612436} + 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 &27612436 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 27612435} + m_LocalRotation: {x: 0, 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: 1219078615} + - {fileID: 72499868} + m_Father: {fileID: 1130359736} + 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 &27757632 GameObject: m_ObjectHideFlags: 0 @@ -6172,6 +6668,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 30451639} m_CullTransparentMesh: 0 +--- !u!1 &30770544 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 30770545} + m_Layer: 0 + m_Name: label_3_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &30770545 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 30770544} + m_LocalRotation: {x: 0, 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: 788254301} + - {fileID: 1735094971} + m_Father: {fileID: 763052335} + m_RootOrder: 56 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &31380558 GameObject: m_ObjectHideFlags: 0 @@ -6320,6 +6853,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 31529850} m_CullTransparentMesh: 0 +--- !u!1 &31610153 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 31610154} + - component: {fileID: 31610156} + - component: {fileID: 31610155} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &31610154 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 31610153} + m_LocalRotation: {x: 0, 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: 1276839334} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &31610155 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 31610153} + m_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: +--- !u!222 &31610156 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 31610153} + m_CullTransparentMesh: 0 --- !u!1 &31797250 GameObject: m_ObjectHideFlags: 0 @@ -6471,6 +7083,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 31797250} m_CullTransparentMesh: 0 +--- !u!1 &32764302 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 32764303} + - component: {fileID: 32764305} + - component: {fileID: 32764304} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &32764303 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 32764302} + m_LocalRotation: {x: -0, 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: 134421250} + 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 &32764304 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 32764302} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &32764305 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 32764302} + m_CullTransparentMesh: 0 --- !u!1 &33001291 GameObject: m_ObjectHideFlags: 0 @@ -6588,10 +7274,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: -1824} - 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: 0} --- !u!114 &33516771 MonoBehaviour: @@ -8534,7 +9220,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 34428880} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -8879,7 +9565,7 @@ RectTransform: m_GameObject: {fileID: 35905492} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 960022312} - {fileID: 1604215694} @@ -9028,7 +9714,7 @@ GameObject: m_Icon: {fileID: 0} m_NavMeshLayer: 0 m_StaticEditorFlags: 0 - m_IsActive: 1 + m_IsActive: 0 --- !u!224 &37761823 RectTransform: m_ObjectHideFlags: 0 @@ -9052,7 +9738,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -0.000036569832} + m_AnchoredPosition: {x: 0, y: 0.000024124613} m_SizeDelta: {x: 1180, y: 400} m_Pivot: {x: 0, y: 1} --- !u!114 &37761824 @@ -9181,7 +9867,7 @@ RectTransform: m_GameObject: {fileID: 38397380} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1821401945} - {fileID: 1930672469} @@ -9612,7 +10298,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 40115654} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -9693,7 +10379,7 @@ RectTransform: m_GameObject: {fileID: 40822003} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1772001149} - {fileID: 1982951127} @@ -10043,7 +10729,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 41737317} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -10624,7 +11310,7 @@ RectTransform: m_GameObject: {fileID: 43343762} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 29315985} - {fileID: 1698355204} @@ -10636,6 +11322,80 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &43484390 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 43484391} + - component: {fileID: 43484393} + - component: {fileID: 43484392} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &43484391 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 43484390} + m_LocalRotation: {x: -0, 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: 1780232632} + 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 &43484392 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 43484390} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &43484393 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 43484390} + m_CullTransparentMesh: 0 --- !u!1 &43538751 GameObject: m_ObjectHideFlags: 0 @@ -11652,7 +12412,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 48540311} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -13194,7 +13954,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 59.810425, y: 19.77251} + m_SizeDelta: {x: 59.02559, y: 19.06653} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &51612973 MonoBehaviour: @@ -13470,6 +14230,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 52969751} m_CullTransparentMesh: 0 +--- !u!1 &53917585 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 53917586} + - component: {fileID: 53917588} + - component: {fileID: 53917587} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &53917586 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 53917585} + m_LocalRotation: {x: 0, 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: 1619029778} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &53917587 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 53917585} + m_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: +--- !u!222 &53917588 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 53917585} + m_CullTransparentMesh: 0 --- !u!1 &55155510 GameObject: m_ObjectHideFlags: 0 @@ -13761,7 +14600,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} @@ -15310,7 +16149,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} @@ -15320,9 +16159,9 @@ RectTransform: m_Father: {fileID: 517131343} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} --- !u!1 &63094374 @@ -16546,7 +17385,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} @@ -16556,9 +17395,9 @@ RectTransform: m_Father: {fileID: 517131343} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} --- !u!1 &68684016 @@ -16677,6 +17516,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &69002324 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 69002325} + - component: {fileID: 69002327} + - component: {fileID: 69002326} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &69002325 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 69002324} + m_LocalRotation: {x: 0, 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: 604972136} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &69002326 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 69002324} + m_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 &69002327 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 69002324} + m_CullTransparentMesh: 0 --- !u!1 &69202622 GameObject: m_ObjectHideFlags: 0 @@ -17347,6 +18265,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 72499463} m_CullTransparentMesh: 0 +--- !u!1 &72499867 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 72499868} + - component: {fileID: 72499870} + - component: {fileID: 72499869} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &72499868 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 72499867} + m_LocalRotation: {x: 0, 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: 27612436} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &72499869 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 72499867} + m_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 &72499870 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 72499867} + m_CullTransparentMesh: 0 --- !u!1 &72664250 GameObject: m_ObjectHideFlags: 0 @@ -17838,7 +18835,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 74820279} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -18951,6 +19948,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 79572234} m_CullTransparentMesh: 0 +--- !u!1 &79758964 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 79758965} + - component: {fileID: 79758967} + - component: {fileID: 79758966} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &79758965 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 79758964} + m_LocalRotation: {x: -0, 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: 109840320} + 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 &79758966 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 79758964} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &79758967 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 79758964} + m_CullTransparentMesh: 0 --- !u!1 &79889726 GameObject: m_ObjectHideFlags: 0 @@ -19225,6 +20296,80 @@ RectTransform: m_AnchoredPosition: {x: 212.1, y: -25.364288} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &80425682 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 80425683} + - component: {fileID: 80425685} + - component: {fileID: 80425684} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &80425683 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 80425682} + m_LocalRotation: {x: -0, 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: 1110407662} + 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 &80425684 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 80425682} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &80425685 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 80425682} + m_CullTransparentMesh: 0 --- !u!1 &80725824 GameObject: m_ObjectHideFlags: 0 @@ -19444,7 +20589,7 @@ RectTransform: m_GameObject: {fileID: 81168750} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 860252070} - {fileID: 808920092} @@ -19456,6 +20601,85 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &81238171 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 81238172} + - component: {fileID: 81238174} + - component: {fileID: 81238173} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &81238172 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 81238171} + m_LocalRotation: {x: 0, 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: 1221988589} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &81238173 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 81238171} + m_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: +--- !u!222 &81238174 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 81238171} + m_CullTransparentMesh: 0 --- !u!1 &81356512 GameObject: m_ObjectHideFlags: 0 @@ -19823,7 +21047,7 @@ RectTransform: m_GameObject: {fileID: 82336146} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1560490126} - {fileID: 1413434495} @@ -20551,7 +21775,7 @@ RectTransform: m_GameObject: {fileID: 85609062} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 272559654} - {fileID: 2065987574} @@ -20753,6 +21977,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 86331128} m_CullTransparentMesh: 0 +--- !u!1 &86476823 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 86476824} + - component: {fileID: 86476826} + - component: {fileID: 86476825} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &86476824 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 86476823} + m_LocalRotation: {x: -0, 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: 1103308593} + 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 &86476825 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 86476823} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &86476826 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 86476823} + m_CullTransparentMesh: 0 --- !u!1 &86985157 GameObject: m_ObjectHideFlags: 0 @@ -21785,6 +23083,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 87068264} m_CullTransparentMesh: 0 +--- !u!1 &87088379 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 87088380} + - component: {fileID: 87088382} + - component: {fileID: 87088381} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &87088380 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 87088379} + m_LocalRotation: {x: -0, 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: 1012505106} + 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 &87088381 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 87088379} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &87088382 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 87088379} + m_CullTransparentMesh: 0 --- !u!1 &87302834 GameObject: m_ObjectHideFlags: 0 @@ -21810,7 +23182,7 @@ RectTransform: m_GameObject: {fileID: 87302834} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 556957088} - {fileID: 1364919002} @@ -21847,7 +23219,7 @@ RectTransform: m_GameObject: {fileID: 87366226} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1970833982} - {fileID: 218914482} @@ -21938,6 +23310,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 87403654} m_CullTransparentMesh: 0 +--- !u!1 &87416865 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 87416866} + - component: {fileID: 87416868} + - component: {fileID: 87416867} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &87416866 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 87416865} + m_LocalRotation: {x: 0, 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: 973520233} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &87416867 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 87416865} + m_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 &87416868 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 87416865} + m_CullTransparentMesh: 0 --- !u!1 &87536178 GameObject: m_ObjectHideFlags: 0 @@ -22086,6 +23537,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 87623198} m_CullTransparentMesh: 0 +--- !u!1 &87923514 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 87923515} + - component: {fileID: 87923517} + - component: {fileID: 87923516} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &87923515 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 87923514} + m_LocalRotation: {x: -0, 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: 1366083740} + 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 &87923516 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 87923514} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &87923517 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 87923514} + m_CullTransparentMesh: 0 --- !u!1 &88042305 GameObject: m_ObjectHideFlags: 0 @@ -22859,6 +24384,43 @@ RectTransform: m_AnchoredPosition: {x: -187.1, y: -86.54065} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &91839341 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 91839342} + 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 &91839342 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 91839341} + m_LocalRotation: {x: 0, 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: 360887773} + - {fileID: 474061707} + m_Father: {fileID: 1009125081} + 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 &91931491 GameObject: m_ObjectHideFlags: 0 @@ -23386,7 +24948,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} @@ -23667,6 +25229,85 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &94698320 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 94698321} + - component: {fileID: 94698323} + - component: {fileID: 94698322} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &94698321 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 94698320} + m_LocalRotation: {x: 0, 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: 170914617} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &94698322 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 94698320} + m_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 &94698323 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 94698320} + m_CullTransparentMesh: 0 --- !u!1 &95170955 GameObject: m_ObjectHideFlags: 0 @@ -24547,7 +26188,7 @@ RectTransform: m_GameObject: {fileID: 98168650} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1704181249} m_Father: {fileID: 1640796314} @@ -24622,7 +26263,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 98548947} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -25201,7 +26842,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 100125545} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -26137,6 +27778,117 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &105774001 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 105774002} + 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 &105774002 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 105774001} + m_LocalRotation: {x: 0, 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: 288828534} + - {fileID: 1039948139} + m_Father: {fileID: 488529639} + 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 &106017226 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 106017227} + - component: {fileID: 106017229} + - component: {fileID: 106017228} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &106017227 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 106017226} + m_LocalRotation: {x: -0, 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: 1454489188} + 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 &106017228 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 106017226} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &106017229 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 106017226} + m_CullTransparentMesh: 0 --- !u!1 &106087268 GameObject: m_ObjectHideFlags: 0 @@ -27893,6 +29645,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 109650648} m_CullTransparentMesh: 0 +--- !u!1 &109840319 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 109840320} + 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 &109840320 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 109840319} + m_LocalRotation: {x: 0, 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: 79758965} + - {fileID: 1898958409} + m_Father: {fileID: 1130359736} + 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 &110000039 GameObject: m_ObjectHideFlags: 0 @@ -27992,7 +29781,7 @@ RectTransform: m_GameObject: {fileID: 110266015} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1755233103} - {fileID: 765341450} @@ -28070,7 +29859,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 110451024} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -32821,6 +34610,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 111995681} m_CullTransparentMesh: 0 +--- !u!1 &112438341 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 112438342} + - component: {fileID: 112438344} + - component: {fileID: 112438343} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &112438342 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 112438341} + m_LocalRotation: {x: -0, 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: 1351243774} + 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 &112438343 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 112438341} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &112438344 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 112438341} + m_CullTransparentMesh: 0 --- !u!1 &112447619 GameObject: m_ObjectHideFlags: 0 @@ -33080,7 +34943,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} @@ -33245,6 +35108,85 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &115172235 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 115172236} + - component: {fileID: 115172238} + - component: {fileID: 115172237} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &115172236 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 115172235} + m_LocalRotation: {x: 0, 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: 885240254} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &115172237 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 115172235} + m_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 &115172238 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 115172235} + m_CullTransparentMesh: 0 --- !u!1 &116302209 GameObject: m_ObjectHideFlags: 0 @@ -33398,6 +35340,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 116785541} m_CullTransparentMesh: 0 +--- !u!1 &116993038 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 116993039} + - component: {fileID: 116993041} + - component: {fileID: 116993040} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &116993039 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 116993038} + m_LocalRotation: {x: 0, 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: 855330697} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &116993040 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 116993038} + m_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 &116993041 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 116993038} + m_CullTransparentMesh: 0 --- !u!1 &117640413 GameObject: m_ObjectHideFlags: 0 @@ -33649,7 +35670,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} @@ -33992,7 +36013,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} @@ -34641,7 +36662,7 @@ RectTransform: m_GameObject: {fileID: 124161771} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 791319365} - {fileID: 839823492} @@ -35054,10 +37075,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: -1216} - 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: 0} --- !u!114 &124833370 MonoBehaviour: @@ -37145,7 +39166,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: -0, y: -30} + m_AnchoredPosition: {x: 0, y: -30} m_SizeDelta: {x: 584, y: 14} m_Pivot: {x: 0, y: 1} --- !u!114 &124999430 @@ -37264,6 +39285,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 125278822} m_CullTransparentMesh: 0 +--- !u!1 &125371667 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 125371668} + - component: {fileID: 125371670} + - component: {fileID: 125371669} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &125371668 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 125371667} + m_LocalRotation: {x: 0, 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: 1503812678} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &125371669 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 125371667} + m_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: +--- !u!222 &125371670 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 125371667} + m_CullTransparentMesh: 0 --- !u!1 &125495974 GameObject: m_ObjectHideFlags: 0 @@ -37449,7 +39549,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} @@ -38097,7 +40197,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} @@ -38136,7 +40236,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} @@ -39507,6 +41607,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &134421249 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 134421250} + 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 &134421250 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 134421249} + m_LocalRotation: {x: 0, 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: 32764303} + - {fileID: 348307796} + m_Father: {fileID: 300972851} + m_RootOrder: 38 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &134496873 GameObject: m_ObjectHideFlags: 0 @@ -39917,7 +42054,7 @@ RectTransform: m_GameObject: {fileID: 136914608} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1203289464} - {fileID: 157560928} @@ -39954,7 +42091,7 @@ RectTransform: m_GameObject: {fileID: 136943892} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1240097166} - {fileID: 661615094} @@ -39991,7 +42128,7 @@ RectTransform: m_GameObject: {fileID: 137049803} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1534957263} - {fileID: 1829260532} @@ -41712,6 +43849,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 139278994} m_CullTransparentMesh: 0 +--- !u!1 &139353691 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 139353692} + 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 &139353692 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 139353691} + m_LocalRotation: {x: 0, 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: 1801507420} + - {fileID: 510880941} + m_Father: {fileID: 801884283} + m_RootOrder: 37 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &139438518 GameObject: m_ObjectHideFlags: 0 @@ -41892,7 +44066,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 139779009} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -42509,7 +44683,7 @@ RectTransform: m_GameObject: {fileID: 142666173} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 112470793} - {fileID: 267136968} @@ -42548,7 +44722,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 143973649} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -42683,6 +44857,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 144023555} m_CullTransparentMesh: 0 +--- !u!1 &144070673 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 144070674} + - component: {fileID: 144070676} + - component: {fileID: 144070675} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &144070674 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 144070673} + m_LocalRotation: {x: 0, 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: 1302657967} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &144070675 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 144070673} + m_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 &144070676 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 144070673} + m_CullTransparentMesh: 0 --- !u!1 &144092752 GameObject: m_ObjectHideFlags: 0 @@ -43066,7 +45319,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 39.184834, y: 23.412323} + m_SizeDelta: {x: 39.373592, y: 23.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &144864953 MonoBehaviour: @@ -43110,6 +45363,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 144864951} m_CullTransparentMesh: 0 +--- !u!1 &144893055 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 144893056} + - component: {fileID: 144893058} + - component: {fileID: 144893057} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &144893056 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 144893055} + m_LocalRotation: {x: -0, 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: 1724292368} + 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 &144893057 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 144893055} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &144893058 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 144893055} + m_CullTransparentMesh: 0 --- !u!1 &145516170 GameObject: m_ObjectHideFlags: 0 @@ -43342,6 +45669,122 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 145790889} m_CullTransparentMesh: 0 +--- !u!1 &145795802 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 145795803} + 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 &145795803 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 145795802} + m_LocalRotation: {x: 0, 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: 757158256} + - {fileID: 2082527620} + m_Father: {fileID: 763052335} + m_RootOrder: 53 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &146071837 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 146071838} + - component: {fileID: 146071840} + - component: {fileID: 146071839} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &146071838 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 146071837} + m_LocalRotation: {x: 0, 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: 1274318534} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &146071839 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 146071837} + m_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: +--- !u!222 &146071840 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 146071837} + m_CullTransparentMesh: 0 --- !u!1 &146287064 GameObject: m_ObjectHideFlags: 0 @@ -45333,6 +47776,154 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &152593960 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 152593961} + - component: {fileID: 152593963} + - component: {fileID: 152593962} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &152593961 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 152593960} + m_LocalRotation: {x: -0, 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: 1302657967} + 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 &152593962 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 152593960} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &152593963 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 152593960} + m_CullTransparentMesh: 0 +--- !u!1 &152660589 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 152660590} + - component: {fileID: 152660592} + - component: {fileID: 152660591} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &152660590 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 152660589} + m_LocalRotation: {x: -0, 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: 11567882} + 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 &152660591 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 152660589} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &152660592 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 152660589} + m_CullTransparentMesh: 0 --- !u!1 &152688552 GameObject: m_ObjectHideFlags: 0 @@ -46037,6 +48628,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 155419542} m_CullTransparentMesh: 0 +--- !u!1 &155839407 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 155839408} + - component: {fileID: 155839410} + - component: {fileID: 155839409} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &155839408 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 155839407} + m_LocalRotation: {x: 0, 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: 1220765878} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &155839409 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 155839407} + m_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 &155839410 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 155839407} + m_CullTransparentMesh: 0 --- !u!1 &155978594 GameObject: m_ObjectHideFlags: 0 @@ -46278,6 +48948,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 156807357} m_CullTransparentMesh: 0 +--- !u!1 &157176022 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 157176023} + m_Layer: 0 + m_Name: label_4_6 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &157176023 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 157176022} + m_LocalRotation: {x: 0, 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: 431363211} + - {fileID: 270101325} + m_Father: {fileID: 763052335} + m_RootOrder: 69 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &157289660 GameObject: m_ObjectHideFlags: 0 @@ -46389,6 +49096,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 157560927} m_CullTransparentMesh: 0 +--- !u!1 &157585052 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 157585053} + 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 &157585053 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 157585052} + m_LocalRotation: {x: 0, 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: 1640268488} + - {fileID: 1629318833} + m_Father: {fileID: 1357367415} + 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 &157630434 GameObject: m_ObjectHideFlags: 0 @@ -46800,7 +49544,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 158171015} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -47572,7 +50316,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 159841278} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -47738,7 +50482,7 @@ RectTransform: m_GameObject: {fileID: 160947392} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 870148265} m_Father: {fileID: 449267886} @@ -47784,7 +50528,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 59.810425, y: 19.77251} + m_SizeDelta: {x: 59.02559, y: 19.06653} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &161350630 MonoBehaviour: @@ -47865,6 +50609,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: -5} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0.5, y: 1} +--- !u!1 &161502971 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 161502972} + - component: {fileID: 161502974} + - component: {fileID: 161502973} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &161502972 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 161502971} + m_LocalRotation: {x: -0, 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: 1796907728} + 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 &161502973 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 161502971} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &161502974 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 161502971} + m_CullTransparentMesh: 0 --- !u!1 &161688035 GameObject: m_ObjectHideFlags: 0 @@ -47892,7 +50710,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 161688035} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -48369,6 +51187,159 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 162891845} m_CullTransparentMesh: 0 +--- !u!1 &163468073 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 163468074} + - component: {fileID: 163468076} + - component: {fileID: 163468075} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &163468074 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 163468073} + m_LocalRotation: {x: 0, 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: 1523078661} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &163468075 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 163468073} + m_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 &163468076 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 163468073} + m_CullTransparentMesh: 0 +--- !u!1 &164258640 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 164258641} + - component: {fileID: 164258643} + - component: {fileID: 164258642} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &164258641 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 164258640} + m_LocalRotation: {x: -0, 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: 956256037} + 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 &164258642 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 164258640} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &164258643 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 164258640} + m_CullTransparentMesh: 0 --- !u!1 &164624583 GameObject: m_ObjectHideFlags: 0 @@ -48480,6 +51451,43 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &164720601 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 164720602} + 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 &164720602 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 164720601} + m_LocalRotation: {x: 0, 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: 1645781302} + - {fileID: 887798344} + m_Father: {fileID: 488529639} + 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 &164738145 GameObject: m_ObjectHideFlags: 0 @@ -48961,7 +51969,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} @@ -49310,7 +52318,7 @@ RectTransform: m_GameObject: {fileID: 170053273} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 710735257} m_Father: {fileID: 1107243629} @@ -49573,7 +52581,7 @@ RectTransform: m_GameObject: {fileID: 170737718} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 680603129} - {fileID: 1222226352} @@ -49751,6 +52759,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 170901770} m_CullTransparentMesh: 0 +--- !u!1 &170914616 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 170914617} + 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 &170914617 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 170914616} + m_LocalRotation: {x: 0, 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: 2109602121} + - {fileID: 94698321} + m_Father: {fileID: 1130359736} + 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 &171047110 GameObject: m_ObjectHideFlags: 0 @@ -50024,6 +53069,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &171713157 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 171713158} + 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 &171713158 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 171713157} + m_LocalRotation: {x: 0, 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: 1130465658} + - {fileID: 1798363580} + m_Father: {fileID: 801884283} + m_RootOrder: 40 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &171791859 GameObject: m_ObjectHideFlags: 0 @@ -50214,6 +53296,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 172618313} m_CullTransparentMesh: 0 +--- !u!1 &173071928 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 173071929} + 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 &173071929 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 173071928} + m_LocalRotation: {x: 0, 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: 271537758} + - {fileID: 1275468953} + m_Father: {fileID: 488529639} + 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 &173209208 GameObject: m_ObjectHideFlags: 0 @@ -50649,6 +53768,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 174415780} m_CullTransparentMesh: 0 +--- !u!1 &174629686 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 174629687} + 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 &174629687 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 174629686} + m_LocalRotation: {x: 0, 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: 468728563} + - {fileID: 1657502335} + m_Father: {fileID: 1640097154} + 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 &175238673 GameObject: m_ObjectHideFlags: 0 @@ -50728,6 +53884,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 175238673} m_CullTransparentMesh: 0 +--- !u!1 &175437862 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 175437863} + - component: {fileID: 175437865} + - component: {fileID: 175437864} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &175437863 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 175437862} + m_LocalRotation: {x: 0, 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: 287643018} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &175437864 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 175437862} + m_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.83137256, g: 0.50980395, b: 0.39607844, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &175437865 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 175437862} + m_CullTransparentMesh: 0 --- !u!1 &175659637 GameObject: m_ObjectHideFlags: 0 @@ -50913,7 +54148,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 175981293} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -51457,7 +54692,7 @@ RectTransform: m_GameObject: {fileID: 177177286} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1809003380} - {fileID: 1431385024} @@ -51816,6 +55051,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &179605650 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 179605651} + - component: {fileID: 179605653} + - component: {fileID: 179605652} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &179605651 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 179605650} + m_LocalRotation: {x: -0, 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: 2012493818} + 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 &179605652 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 179605650} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &179605653 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 179605650} + m_CullTransparentMesh: 0 --- !u!1 &180589781 GameObject: m_ObjectHideFlags: 0 @@ -51991,7 +55300,7 @@ RectTransform: m_GameObject: {fileID: 180937099} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1013202007} m_Father: {fileID: 2057043785} @@ -52002,6 +55311,159 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} +--- !u!1 &181032397 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 181032398} + - component: {fileID: 181032400} + - component: {fileID: 181032399} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &181032398 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 181032397} + m_LocalRotation: {x: -0, 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: 539364323} + 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 &181032399 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 181032397} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &181032400 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 181032397} + m_CullTransparentMesh: 0 +--- !u!1 &181217827 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 181217828} + - component: {fileID: 181217830} + - component: {fileID: 181217829} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &181217828 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 181217827} + m_LocalRotation: {x: 0, 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: 1784815927} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &181217829 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 181217827} + m_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.83137256, g: 0.50980395, b: 0.39607844, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &181217830 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 181217827} + m_CullTransparentMesh: 0 --- !u!1 &181266364 GameObject: m_ObjectHideFlags: 0 @@ -52261,7 +55723,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} @@ -52380,7 +55842,7 @@ RectTransform: m_GameObject: {fileID: 182922123} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1250925717} - {fileID: 840453138} @@ -52419,7 +55881,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 183475946} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -52500,7 +55962,7 @@ RectTransform: m_GameObject: {fileID: 183498519} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1774844013} - {fileID: 1029570996} @@ -52818,6 +56280,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 185835293} m_CullTransparentMesh: 0 +--- !u!1 &185987066 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 185987067} + - component: {fileID: 185987069} + - component: {fileID: 185987068} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &185987067 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 185987066} + m_LocalRotation: {x: 0, 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: 1620858134} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &185987068 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 185987066} + m_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 &185987069 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 185987066} + m_CullTransparentMesh: 0 --- !u!1 &186107646 GameObject: m_ObjectHideFlags: 0 @@ -53509,6 +57050,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 188092283} m_CullTransparentMesh: 0 +--- !u!1 &188641381 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 188641382} + 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 &188641382 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 188641381} + m_LocalRotation: {x: 0, 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: 2091374228} + - {fileID: 1381202254} + m_Father: {fileID: 1338692539} + 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 &188705121 GameObject: m_ObjectHideFlags: 0 @@ -53546,6 +57124,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &188951380 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 188951381} + 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 &188951381 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 188951380} + m_LocalRotation: {x: 0, 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: 1766213174} + - {fileID: 1762044490} + m_Father: {fileID: 1009125081} + 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 &189301634 GameObject: m_ObjectHideFlags: 0 @@ -53958,7 +57573,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} @@ -53968,9 +57583,9 @@ RectTransform: m_Father: {fileID: 1835109743} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} --- !u!1 &190087397 @@ -54275,7 +57890,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 @@ -55618,7 +59233,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 196886483} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -56160,6 +59775,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 197945015} m_CullTransparentMesh: 0 +--- !u!1 &198133120 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 198133121} + - component: {fileID: 198133123} + - component: {fileID: 198133122} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &198133121 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 198133120} + m_LocalRotation: {x: -0, 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: 555302430} + 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 &198133122 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 198133120} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &198133123 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 198133120} + m_CullTransparentMesh: 0 --- !u!1 &198659799 GameObject: m_ObjectHideFlags: 0 @@ -56674,6 +60363,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 200409330} m_CullTransparentMesh: 0 +--- !u!1 &200575468 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 200575469} + 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 &200575469 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 200575468} + m_LocalRotation: {x: 0, 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: 1078737829} + - {fileID: 1008407608} + m_Father: {fileID: 1338692539} + 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 &201715316 GameObject: m_ObjectHideFlags: 0 @@ -57179,6 +60905,154 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 204383675} m_CullTransparentMesh: 0 +--- !u!1 &204617404 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 204617405} + - component: {fileID: 204617407} + - component: {fileID: 204617406} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &204617405 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 204617404} + m_LocalRotation: {x: -0, 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: 2146476318} + 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 &204617406 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 204617404} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &204617407 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 204617404} + m_CullTransparentMesh: 0 +--- !u!1 &204717441 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 204717442} + - component: {fileID: 204717444} + - component: {fileID: 204717443} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &204717442 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 204717441} + m_LocalRotation: {x: -0, 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: 757200163} + 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 &204717443 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 204717441} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &204717444 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 204717441} + m_CullTransparentMesh: 0 --- !u!1 &205299939 GameObject: m_ObjectHideFlags: 0 @@ -57398,7 +61272,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 207326804} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -57553,7 +61427,7 @@ RectTransform: m_GameObject: {fileID: 207774783} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1343070715} - {fileID: 1697400533} @@ -57945,6 +61819,43 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &208947312 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 208947313} + m_Layer: 0 + m_Name: label_3_4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &208947313 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 208947312} + m_LocalRotation: {x: 0, 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: 1016998315} + - {fileID: 1586807765} + m_Father: {fileID: 763052335} + m_RootOrder: 60 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &209150702 GameObject: m_ObjectHideFlags: 0 @@ -58510,7 +62421,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 211432316} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -58797,6 +62708,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 211691294} m_CullTransparentMesh: 0 +--- !u!1 &211883670 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 211883671} + 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 &211883671 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 211883670} + m_LocalRotation: {x: 0, 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: 1874301320} + - {fileID: 367460852} + m_Father: {fileID: 1009125081} + 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 &212008389 GameObject: m_ObjectHideFlags: 0 @@ -59481,7 +63429,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 214677401} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -59562,7 +63510,7 @@ RectTransform: m_GameObject: {fileID: 215166020} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1996685049} - {fileID: 2101095338} @@ -59738,6 +63686,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 215727887} m_CullTransparentMesh: 0 +--- !u!1 &216002661 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 216002662} + - component: {fileID: 216002664} + - component: {fileID: 216002663} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &216002662 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 216002661} + m_LocalRotation: {x: 0, 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: 1284620107} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &216002663 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 216002661} + m_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.83137256, g: 0.50980395, b: 0.39607844, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &216002664 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 216002661} + m_CullTransparentMesh: 0 --- !u!1 &216201888 GameObject: m_ObjectHideFlags: 0 @@ -59974,6 +64001,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 217822611} m_CullTransparentMesh: 0 +--- !u!1 &218197854 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 218197855} + - component: {fileID: 218197857} + - component: {fileID: 218197856} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &218197855 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 218197854} + m_LocalRotation: {x: -0, 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: 1491558723} + 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 &218197856 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 218197854} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &218197857 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 218197854} + m_CullTransparentMesh: 0 --- !u!1 &218412776 GameObject: m_ObjectHideFlags: 0 @@ -60020,6 +64121,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} +--- !u!1 &218433526 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 218433527} + - component: {fileID: 218433529} + - component: {fileID: 218433528} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &218433527 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 218433526} + m_LocalRotation: {x: -0, 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: 383951541} + 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 &218433528 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 218433526} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &218433529 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 218433526} + m_CullTransparentMesh: 0 --- !u!1 &218835079 GameObject: m_ObjectHideFlags: 0 @@ -60195,7 +64370,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 218926990} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -60251,6 +64426,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 218926990} m_CullTransparentMesh: 0 +--- !u!1 &219503729 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 219503730} + - component: {fileID: 219503732} + - component: {fileID: 219503731} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &219503730 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 219503729} + m_LocalRotation: {x: -0, 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: 841024191} + 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 &219503731 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 219503729} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &219503732 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 219503729} + m_CullTransparentMesh: 0 --- !u!1 &219663640 GameObject: m_ObjectHideFlags: 0 @@ -60481,7 +64730,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 219953557} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -60863,7 +65112,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} @@ -61067,7 +65316,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 223719142} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -61535,6 +65784,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 225524132} m_CullTransparentMesh: 0 +--- !u!1 &225720845 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 225720846} + - component: {fileID: 225720848} + - component: {fileID: 225720847} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &225720846 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 225720845} + m_LocalRotation: {x: -0, 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: 1620858134} + 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 &225720847 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 225720845} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &225720848 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 225720845} + m_CullTransparentMesh: 0 --- !u!1 &225731672 GameObject: m_ObjectHideFlags: 0 @@ -62876,6 +67199,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 229564082} m_CullTransparentMesh: 0 +--- !u!1 &229878760 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 229878761} + - component: {fileID: 229878763} + - component: {fileID: 229878762} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &229878761 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 229878760} + m_LocalRotation: {x: 0, 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: 797385103} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &229878762 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 229878760} + m_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.83137256, g: 0.50980395, b: 0.39607844, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &229878763 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 229878760} + m_CullTransparentMesh: 0 --- !u!1 &229981077 GameObject: m_ObjectHideFlags: 0 @@ -63186,6 +67588,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 230918743} m_CullTransparentMesh: 0 +--- !u!1 &231192042 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 231192043} + 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 &231192043 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 231192042} + m_LocalRotation: {x: 0, 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: 421185839} + - {fileID: 550485419} + m_Father: {fileID: 300972851} + m_RootOrder: 48 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &231273679 GameObject: m_ObjectHideFlags: 0 @@ -64748,7 +69187,7 @@ RectTransform: m_GameObject: {fileID: 237129603} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 680320864} - {fileID: 292222043} @@ -64903,7 +69342,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 237853427} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -65259,15 +69698,15 @@ RectTransform: m_GameObject: {fileID: 239771764} m_LocalRotation: {x: 0, y: 0, z: -0.70090926, w: 0.71325046} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 926932800} m_RootOrder: 10 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 131.29239, y: 0} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_AnchoredPosition: {x: 131.38678, y: 0} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &239771766 MonoBehaviour: @@ -65419,15 +69858,15 @@ RectTransform: m_GameObject: {fileID: 240114079} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1107243629} m_RootOrder: 9 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 254.21332, y: 35.419983} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_AnchoredPosition: {x: 254.30768, y: 35.419983} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &240114081 MonoBehaviour: @@ -65823,7 +70262,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} @@ -66197,6 +70636,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 241014581} m_CullTransparentMesh: 0 +--- !u!1 &241281037 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 241281038} + - component: {fileID: 241281040} + - component: {fileID: 241281039} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &241281038 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 241281037} + m_LocalRotation: {x: 0, 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: 1306825820} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &241281039 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 241281037} + m_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 &241281040 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 241281037} + m_CullTransparentMesh: 0 --- !u!1 &241909979 GameObject: m_ObjectHideFlags: 0 @@ -66424,6 +70942,43 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &242649645 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 242649646} + 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 &242649646 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 242649645} + m_LocalRotation: {x: 0, 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: 859252395} + - {fileID: 814983706} + m_Father: {fileID: 488529639} + 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 &242809490 GameObject: m_ObjectHideFlags: 0 @@ -66530,7 +71085,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 242863299} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -67335,7 +71890,7 @@ RectTransform: m_GameObject: {fileID: 245234001} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 872272765} - {fileID: 1327469838} @@ -67496,7 +72051,7 @@ RectTransform: m_GameObject: {fileID: 245728541} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2057043785} m_RootOrder: 3 @@ -67504,7 +72059,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: -175.2, y: 104.5} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &245728543 MonoBehaviour: @@ -67579,15 +72134,15 @@ RectTransform: m_GameObject: {fileID: 245866650} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2057043785} m_RootOrder: 27 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 122.7507, y: -50.30355} - m_SizeDelta: {x: 27.298578, y: 19.412323} + m_AnchoredPosition: {x: 122.643585, y: -50.30355} + m_SizeDelta: {x: 27.512794, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &245866652 MonoBehaviour: @@ -69618,7 +74173,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} @@ -69627,6 +74182,13 @@ RectTransform: - {fileID: 509860694} - {fileID: 263201333} - {fileID: 1343397591} + - {fileID: 1802085458} + - {fileID: 2003254391} + - {fileID: 1937547575} + - {fileID: 499828581} + - {fileID: 1563878933} + - {fileID: 360292239} + - {fileID: 1102366520} m_Father: {fileID: 782651941} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -69856,7 +74418,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 254547559} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -70445,6 +75007,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 256043670} m_CullTransparentMesh: 0 +--- !u!1 &256290631 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 256290632} + - component: {fileID: 256290634} + - component: {fileID: 256290633} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &256290632 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 256290631} + m_LocalRotation: {x: 0, 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: 467981844} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &256290633 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 256290631} + m_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.83137256, g: 0.50980395, b: 0.39607844, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &256290634 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 256290631} + m_CullTransparentMesh: 0 --- !u!1 &256643583 GameObject: m_ObjectHideFlags: 0 @@ -70699,7 +75340,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} @@ -70775,7 +75416,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 258014176} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -71580,7 +76221,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 261104070} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -72942,7 +77583,7 @@ RectTransform: m_GameObject: {fileID: 261819545} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1836350806} - {fileID: 361443240} @@ -73480,7 +78121,7 @@ RectTransform: m_GameObject: {fileID: 263201332} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 952098735} - {fileID: 269575664} @@ -73519,7 +78160,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 263272391} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -74734,15 +79375,15 @@ RectTransform: m_GameObject: {fileID: 269036020} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1107243629} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -233.89449, y: -101.55554} - m_SizeDelta: {x: 52.777252, y: 19.412323} + m_AnchoredPosition: {x: -234.03606, y: -101.55554} + m_SizeDelta: {x: 53.06039, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &269036022 MonoBehaviour: @@ -75205,7 +79846,7 @@ RectTransform: m_GameObject: {fileID: 269847830} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1107243629} m_RootOrder: 8 @@ -75213,7 +79854,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 146, y: 97.73999} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &269847832 MonoBehaviour: @@ -75333,6 +79974,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 269900404} m_CullTransparentMesh: 0 +--- !u!1 &270101324 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 270101325} + - component: {fileID: 270101327} + - component: {fileID: 270101326} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &270101325 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270101324} + m_LocalRotation: {x: 0, 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: 157176023} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &270101326 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270101324} + m_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.5686275, g: 0.78039217, b: 0.68235296, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &270101327 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 270101324} + m_CullTransparentMesh: 0 --- !u!1 &270293626 GameObject: m_ObjectHideFlags: 0 @@ -75763,6 +80483,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &271537757 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 271537758} + - component: {fileID: 271537760} + - component: {fileID: 271537759} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &271537758 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 271537757} + m_LocalRotation: {x: -0, 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: 173071929} + 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 &271537759 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 271537757} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &271537760 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 271537757} + m_CullTransparentMesh: 0 --- !u!1 &271614951 GameObject: m_ObjectHideFlags: 0 @@ -75842,6 +80636,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 271614951} m_CullTransparentMesh: 0 +--- !u!1 &271758697 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 271758698} + - component: {fileID: 271758700} + - component: {fileID: 271758699} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &271758698 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 271758697} + m_LocalRotation: {x: -0, 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: 1595246154} + 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 &271758699 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 271758697} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &271758700 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 271758697} + m_CullTransparentMesh: 0 --- !u!1 &271778111 GameObject: m_ObjectHideFlags: 0 @@ -75921,6 +80789,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 271778111} m_CullTransparentMesh: 0 +--- !u!1 &271817803 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 271817804} + - component: {fileID: 271817806} + - component: {fileID: 271817805} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &271817804 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 271817803} + m_LocalRotation: {x: 0, 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: 1102366520} + 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: 20} + m_SizeDelta: {x: 39.373592, y: 19.06653} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &271817805 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 271817803} + m_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.16911763, g: 0.17409168, b: 0.17409168, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+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: 903.2 +--- !u!222 &271817806 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 271817803} + m_CullTransparentMesh: 0 --- !u!1 &271877732 GameObject: m_ObjectHideFlags: 0 @@ -76529,7 +81476,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 273457145} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -76810,6 +81757,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 273880626} m_CullTransparentMesh: 0 +--- !u!1 &274095384 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 274095385} + 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 &274095385 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 274095384} + m_LocalRotation: {x: 0, 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: 1764977761} + - {fileID: 1671024926} + m_Father: {fileID: 763052335} + m_RootOrder: 41 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &274405926 GameObject: m_ObjectHideFlags: 0 @@ -76963,6 +81947,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 274538808} m_CullTransparentMesh: 0 +--- !u!1 &274983935 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 274983936} + - component: {fileID: 274983938} + - component: {fileID: 274983937} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &274983936 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 274983935} + m_LocalRotation: {x: -0, 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: 1612797219} + 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 &274983937 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 274983935} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &274983938 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 274983935} + m_CullTransparentMesh: 0 --- !u!1 &275628718 GameObject: m_ObjectHideFlags: 0 @@ -77347,7 +82405,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} @@ -78390,7 +83448,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 280813312} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -78589,7 +83647,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 @@ -78673,6 +83731,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 281991932} m_CullTransparentMesh: 0 +--- !u!1 &282092732 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 282092733} + - component: {fileID: 282092735} + - component: {fileID: 282092734} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &282092733 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 282092732} + m_LocalRotation: {x: 0, 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: 842733557} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &282092734 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 282092732} + m_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 &282092735 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 282092732} + m_CullTransparentMesh: 0 --- !u!1 &282303925 GameObject: m_ObjectHideFlags: 0 @@ -79361,7 +84498,7 @@ RectTransform: m_GameObject: {fileID: 284494525} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1793372784} - {fileID: 2126672699} @@ -79555,7 +84692,7 @@ RectTransform: m_GameObject: {fileID: 285206201} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1997428883} - {fileID: 1371925982} @@ -79594,7 +84731,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} @@ -79860,7 +84997,7 @@ RectTransform: m_GameObject: {fileID: 286405257} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2057043785} m_RootOrder: 14 @@ -79868,7 +85005,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 175.20001, y: 104.5} - m_SizeDelta: {x: 27.298578, y: 19.412323} + m_SizeDelta: {x: 27.512794, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &286405259 MonoBehaviour: @@ -80188,6 +85325,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 287586719} m_CullTransparentMesh: 0 +--- !u!1 &287643017 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 287643018} + m_Layer: 0 + m_Name: label_3_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &287643018 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 287643017} + m_LocalRotation: {x: 0, 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: 1238471928} + - {fileID: 175437863} + m_Father: {fileID: 801884283} + m_RootOrder: 49 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &287650344 GameObject: m_ObjectHideFlags: 0 @@ -80382,6 +85556,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 288011891} m_CullTransparentMesh: 0 +--- !u!1 &288828533 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 288828534} + - component: {fileID: 288828536} + - component: {fileID: 288828535} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &288828534 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 288828533} + m_LocalRotation: {x: -0, 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: 105774002} + 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 &288828535 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 288828533} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &288828536 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 288828533} + m_CullTransparentMesh: 0 --- !u!1 &288864003 GameObject: m_ObjectHideFlags: 0 @@ -80923,7 +86171,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 290855966} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -81732,7 +86980,7 @@ RectTransform: m_GameObject: {fileID: 293051388} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 625482153} - {fileID: 1457863966} @@ -82401,6 +87649,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 295802381} m_CullTransparentMesh: 0 +--- !u!1 &296350094 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 296350095} + - component: {fileID: 296350097} + - component: {fileID: 296350096} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &296350095 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 296350094} + m_LocalRotation: {x: -0, 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: 1195076735} + 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 &296350096 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 296350094} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &296350097 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 296350094} + m_CullTransparentMesh: 0 --- !u!1 &296622314 GameObject: m_ObjectHideFlags: 0 @@ -82968,7 +88290,7 @@ RectTransform: m_GameObject: {fileID: 298777737} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1431076976} - {fileID: 141542571} @@ -83463,7 +88785,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} @@ -83500,6 +88822,41 @@ RectTransform: - {fileID: 358756470} - {fileID: 293051389} - {fileID: 1695769197} + - {fileID: 2007285223} + - {fileID: 2005591126} + - {fileID: 1840582334} + - {fileID: 134421250} + - {fileID: 1589485497} + - {fileID: 730880176} + - {fileID: 369829356} + - {fileID: 604972136} + - {fileID: 973520233} + - {fileID: 1272487951} + - {fileID: 1366083740} + - {fileID: 1687006357} + - {fileID: 350984470} + - {fileID: 231192043} + - {fileID: 1503812678} + - {fileID: 1859717776} + - {fileID: 1441763265} + - {fileID: 335520325} + - {fileID: 588302154} + - {fileID: 1785100649} + - {fileID: 1110407662} + - {fileID: 1034515773} + - {fileID: 1399565311} + - {fileID: 1493577799} + - {fileID: 1427821039} + - {fileID: 508172791} + - {fileID: 1789400402} + - {fileID: 1784815927} + - {fileID: 1643050264} + - {fileID: 1266534950} + - {fileID: 688073009} + - {fileID: 1420980323} + - {fileID: 829871821} + - {fileID: 560649424} + - {fileID: 846890714} m_Father: {fileID: 1520897807} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -83799,7 +89156,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} @@ -83999,6 +89356,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 302673396} m_CullTransparentMesh: 0 +--- !u!1 &303076028 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 303076029} + - component: {fileID: 303076031} + - component: {fileID: 303076030} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &303076029 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 303076028} + m_LocalRotation: {x: 0, 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: 1903167407} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &303076030 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 303076028} + m_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 &303076031 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 303076028} + m_CullTransparentMesh: 0 --- !u!1 &303096519 GameObject: m_ObjectHideFlags: 0 @@ -84424,6 +89860,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &305863579 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 305863580} + 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 &305863580 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 305863579} + m_LocalRotation: {x: 0, 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: 2040488034} + - {fileID: 644859972} + m_Father: {fileID: 763052335} + m_RootOrder: 37 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &306271809 GameObject: m_ObjectHideFlags: 0 @@ -84449,7 +89922,7 @@ RectTransform: m_GameObject: {fileID: 306271809} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1363093205} - {fileID: 428452671} @@ -84975,6 +90448,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 308315243} m_CullTransparentMesh: 0 +--- !u!1 &309341386 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 309341387} + - component: {fileID: 309341389} + - component: {fileID: 309341388} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &309341387 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 309341386} + m_LocalRotation: {x: -0, 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: 1643050264} + 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 &309341388 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 309341386} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &309341389 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 309341386} + m_CullTransparentMesh: 0 --- !u!1 &309434405 GameObject: m_ObjectHideFlags: 0 @@ -85308,7 +90855,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 310691116} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -85650,7 +91197,7 @@ RectTransform: m_GameObject: {fileID: 311953651} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 693276066} - {fileID: 236339273} @@ -85951,7 +91498,7 @@ RectTransform: m_GameObject: {fileID: 313147660} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1423436671} - {fileID: 74807160} @@ -86699,7 +92246,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 39.184834, y: 23.412323} + m_SizeDelta: {x: 39.373592, y: 23.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &317452494 MonoBehaviour: @@ -87415,7 +92962,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 318470312} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -87609,7 +93156,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 318950414} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -87849,7 +93396,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 320101540} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -87930,7 +93477,7 @@ RectTransform: m_GameObject: {fileID: 320153913} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1799475454} - {fileID: 811374634} @@ -88779,6 +94326,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &324289294 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 324289295} + - component: {fileID: 324289297} + - component: {fileID: 324289296} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &324289295 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 324289294} + m_LocalRotation: {x: -0, 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: 1253473296} + 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 &324289296 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 324289294} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &324289297 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 324289294} + m_CullTransparentMesh: 0 --- !u!1 &324340684 GameObject: m_ObjectHideFlags: 0 @@ -89311,7 +94932,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 326271154} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -89394,7 +95015,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 326592255} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -91003,6 +96624,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 332429382} m_CullTransparentMesh: 0 +--- !u!1 &332900444 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 332900445} + 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 &332900445 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 332900444} + m_LocalRotation: {x: 0, 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: 678954634} + - {fileID: 1769296479} + m_Father: {fileID: 1130359736} + 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 &333218577 GameObject: m_ObjectHideFlags: 0 @@ -91378,7 +97036,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 334941096} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -91513,6 +97171,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 335449607} m_CullTransparentMesh: 0 +--- !u!1 &335520324 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 335520325} + 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 &335520325 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 335520324} + m_LocalRotation: {x: 0, 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: 1298643412} + - {fileID: 1582540189} + m_Father: {fileID: 300972851} + m_RootOrder: 52 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &335521283 GameObject: m_ObjectHideFlags: 0 @@ -92013,7 +97708,7 @@ RectTransform: m_GameObject: {fileID: 336613864} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 742405782} - {fileID: 47019278} @@ -92104,6 +97799,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 336926824} m_CullTransparentMesh: 0 +--- !u!1 &337111525 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 337111526} + m_Layer: 0 + m_Name: label_3_5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &337111526 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 337111525} + m_LocalRotation: {x: 0, 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: 1605634113} + - {fileID: 917032268} + m_Father: {fileID: 763052335} + m_RootOrder: 61 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &337567501 GameObject: m_ObjectHideFlags: 0 @@ -93094,7 +98826,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 341620150} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -93938,6 +99670,30 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - eventID: 2 callback: m_PersistentCalls: @@ -94567,7 +100323,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 345967361} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -94971,6 +100727,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 348157760} m_CullTransparentMesh: 0 +--- !u!1 &348307795 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 348307796} + - component: {fileID: 348307798} + - component: {fileID: 348307797} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &348307796 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 348307795} + m_LocalRotation: {x: 0, 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: 134421250} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &348307797 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 348307795} + m_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 &348307798 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 348307795} + m_CullTransparentMesh: 0 --- !u!1 &348498606 GameObject: m_ObjectHideFlags: 0 @@ -95415,7 +101250,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 350683202} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -95471,6 +101306,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 350683202} m_CullTransparentMesh: 0 +--- !u!1 &350906173 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 350906174} + - component: {fileID: 350906176} + - component: {fileID: 350906175} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &350906174 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 350906173} + m_LocalRotation: {x: -0, 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: 1737151524} + 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 &350906175 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 350906173} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &350906176 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 350906173} + m_CullTransparentMesh: 0 --- !u!1 &350968230 GameObject: m_ObjectHideFlags: 0 @@ -95550,6 +101459,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 350968230} m_CullTransparentMesh: 0 +--- !u!1 &350984469 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 350984470} + 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 &350984470 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 350984469} + m_LocalRotation: {x: 0, 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: 1021047410} + - {fileID: 531460098} + m_Father: {fileID: 300972851} + m_RootOrder: 47 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &351018056 GameObject: m_ObjectHideFlags: 0 @@ -95730,7 +101676,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 351458201} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -97368,7 +103314,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} @@ -97640,7 +103586,7 @@ RectTransform: m_GameObject: {fileID: 358756469} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1987854046} - {fileID: 533723607} @@ -97920,6 +103866,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 359339207} m_CullTransparentMesh: 0 +--- !u!1 &359374701 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 359374702} + - component: {fileID: 359374704} + - component: {fileID: 359374703} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &359374702 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 359374701} + m_LocalRotation: {x: 0, 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: 1937547575} + 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: 20} + m_SizeDelta: {x: 39.373592, y: 19.06653} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &359374703 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 359374701} + m_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.16911763, g: 0.17409168, b: 0.17409168, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+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: 896.7 +--- !u!222 &359374704 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 359374701} + m_CullTransparentMesh: 0 --- !u!1 &359459804 GameObject: m_ObjectHideFlags: 0 @@ -98219,6 +104244,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 359841971} m_CullTransparentMesh: 0 +--- !u!1 &360292238 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 360292239} + 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 &360292239 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 360292238} + m_LocalRotation: {x: 0, 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: 665815388} + - {fileID: 1140275476} + m_Father: {fileID: 252393583} + 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: 154, y: 66.23334} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &360562468 GameObject: m_ObjectHideFlags: 0 @@ -98335,6 +104397,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 360802220} m_CullTransparentMesh: 0 +--- !u!1 &360887772 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 360887773} + - component: {fileID: 360887775} + - component: {fileID: 360887774} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &360887773 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 360887772} + m_LocalRotation: {x: -0, 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: 91839342} + 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 &360887774 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 360887772} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &360887775 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 360887772} + m_CullTransparentMesh: 0 --- !u!1 &361005084 GameObject: m_ObjectHideFlags: 0 @@ -98571,6 +104707,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &361248151 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 361248152} + - component: {fileID: 361248154} + - component: {fileID: 361248153} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &361248152 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 361248151} + m_LocalRotation: {x: 0, 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: 1012505106} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &361248153 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 361248151} + m_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: +--- !u!222 &361248154 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 361248151} + m_CullTransparentMesh: 0 --- !u!1 &361443239 GameObject: m_ObjectHideFlags: 0 @@ -98992,6 +105207,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &363006047 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 363006048} + - component: {fileID: 363006050} + - component: {fileID: 363006049} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &363006048 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 363006047} + m_LocalRotation: {x: 0, 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: 2146476318} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &363006049 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 363006047} + m_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.5686275, g: 0.78039217, b: 0.68235296, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &363006050 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 363006047} + m_CullTransparentMesh: 0 --- !u!1 &363091310 GameObject: m_ObjectHideFlags: 0 @@ -99696,6 +105990,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 366341146} m_CullTransparentMesh: 0 +--- !u!1 &366434690 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 366434691} + - component: {fileID: 366434693} + - component: {fileID: 366434692} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &366434691 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 366434690} + m_LocalRotation: {x: -0, 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: 1697490975} + 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 &366434692 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 366434690} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &366434693 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 366434690} + m_CullTransparentMesh: 0 --- !u!1 &367077069 GameObject: m_ObjectHideFlags: 0 @@ -99802,15 +106170,15 @@ RectTransform: m_GameObject: {fileID: 367237726} m_LocalRotation: {x: 0, y: 0, z: 0.24386892, w: 0.9698082} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 926932800} m_RootOrder: 11 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 73.79483, y: -111.11105} - m_SizeDelta: {x: 70.36967, y: 19.412323} + m_AnchoredPosition: {x: 73.98358, y: -111.11105} + m_SizeDelta: {x: 70.747185, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &367237728 MonoBehaviour: @@ -99928,6 +106296,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 367404205} m_CullTransparentMesh: 0 +--- !u!1 &367460851 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 367460852} + - component: {fileID: 367460854} + - component: {fileID: 367460853} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &367460852 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 367460851} + m_LocalRotation: {x: 0, 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: 211883671} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &367460853 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 367460851} + m_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 &367460854 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 367460851} + m_CullTransparentMesh: 0 --- !u!1 &367866059 GameObject: m_ObjectHideFlags: 0 @@ -100165,6 +106612,122 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} +--- !u!1 &369666477 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 369666478} + - component: {fileID: 369666480} + - component: {fileID: 369666479} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &369666478 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 369666477} + m_LocalRotation: {x: 0, 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: 508172791} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &369666479 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 369666477} + m_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.83137256, g: 0.50980395, b: 0.39607844, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &369666480 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 369666477} + m_CullTransparentMesh: 0 +--- !u!1 &369829355 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 369829356} + 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 &369829356 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 369829355} + m_LocalRotation: {x: 0, 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: 862133749} + - {fileID: 992046859} + m_Father: {fileID: 300972851} + m_RootOrder: 41 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &370066838 GameObject: m_ObjectHideFlags: 0 @@ -100814,7 +107377,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 372869200} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -100870,6 +107433,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 372869200} m_CullTransparentMesh: 0 +--- !u!1 &373124436 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 373124437} + 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 &373124437 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 373124436} + m_LocalRotation: {x: 0, 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: 1012974095} + - {fileID: 1707515328} + m_Father: {fileID: 1009125081} + 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 &373484615 GameObject: m_ObjectHideFlags: 0 @@ -101166,7 +107766,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 374234538} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -101296,6 +107896,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 374411634} m_CullTransparentMesh: 0 +--- !u!1 &374783943 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 374783944} + - component: {fileID: 374783946} + - component: {fileID: 374783945} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &374783944 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 374783943} + m_LocalRotation: {x: 0, 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: 439402837} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &374783945 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 374783943} + m_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 &374783946 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 374783943} + m_CullTransparentMesh: 0 --- !u!1 &374909094 GameObject: m_ObjectHideFlags: 0 @@ -102963,6 +109642,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 383396638} m_CullTransparentMesh: 0 +--- !u!1 &383951540 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 383951541} + 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 &383951541 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 383951540} + m_LocalRotation: {x: 0, 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: 218433527} + - {fileID: 608471921} + m_Father: {fileID: 763052335} + m_RootOrder: 46 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &384209399 GameObject: m_ObjectHideFlags: 0 @@ -102988,7 +109704,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 384209399} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -103646,7 +110362,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} @@ -103656,9 +110372,9 @@ RectTransform: m_Father: {fileID: 124833369} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} --- !u!1 &387067231 @@ -103818,6 +110534,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 387116459} m_CullTransparentMesh: 0 +--- !u!1 &387208781 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 387208782} + - component: {fileID: 387208784} + - component: {fileID: 387208783} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &387208782 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 387208781} + m_LocalRotation: {x: -0, 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: 1427821039} + 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 &387208783 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 387208781} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &387208784 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 387208781} + m_CullTransparentMesh: 0 --- !u!1 &387425470 GameObject: m_ObjectHideFlags: 0 @@ -104591,7 +111381,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: 634370462} - {fileID: 31797251} @@ -104684,6 +111474,80 @@ RectTransform: m_AnchoredPosition: {x: -34.087708, y: -26.57705} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &391029283 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 391029284} + - component: {fileID: 391029286} + - component: {fileID: 391029285} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &391029284 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 391029283} + m_LocalRotation: {x: -0, 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: 856220972} + 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 &391029285 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 391029283} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &391029286 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 391029283} + m_CullTransparentMesh: 0 --- !u!1 &391041652 GameObject: m_ObjectHideFlags: 0 @@ -104709,7 +111573,7 @@ RectTransform: m_GameObject: {fileID: 391041652} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1610470302} - {fileID: 1063342272} @@ -104896,7 +111760,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 391548199} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -105381,7 +112245,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} @@ -105512,6 +112376,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 394528205} m_CullTransparentMesh: 0 +--- !u!1 &394564915 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 394564916} + - component: {fileID: 394564918} + - component: {fileID: 394564917} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &394564916 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 394564915} + m_LocalRotation: {x: 0, 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: 829871821} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &394564917 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 394564915} + m_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.5686275, g: 0.78039217, b: 0.68235296, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &394564918 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 394564915} + m_CullTransparentMesh: 0 --- !u!1 &394885440 GameObject: m_ObjectHideFlags: 0 @@ -105996,7 +112939,7 @@ RectTransform: m_GameObject: {fileID: 396608989} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 846999460} - {fileID: 1070233763} @@ -106968,7 +113911,7 @@ RectTransform: m_GameObject: {fileID: 401163385} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2057043785} m_RootOrder: 8 @@ -106976,7 +113919,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: -3.6600037} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &401163387 MonoBehaviour: @@ -108012,7 +114955,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 @@ -108616,10 +115559,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: -1520} - 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: 0} --- !u!114 &408536199 MonoBehaviour: @@ -109846,7 +116789,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 409912941} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -110309,7 +117252,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 411036142} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -110392,7 +117335,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 411491550} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: -0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -110401,7 +117344,7 @@ RectTransform: 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: -30} + m_AnchoredPosition: {x: -0, y: -30} m_SizeDelta: {x: 584, y: 14} m_Pivot: {x: 0.5, y: 1} --- !u!114 &411491552 @@ -110473,7 +117416,7 @@ RectTransform: m_GameObject: {fileID: 411668114} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 840542184} - {fileID: 1663073348} @@ -110589,7 +117532,7 @@ RectTransform: m_GameObject: {fileID: 412155299} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 2003337841} - {fileID: 2017263622} @@ -111008,7 +117951,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 413081933} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -111282,7 +118225,7 @@ RectTransform: m_GameObject: {fileID: 413827793} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1344713368} - {fileID: 30229953} @@ -111890,7 +118833,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 416400480} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -111973,7 +118916,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 416475781} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -112029,6 +118972,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 416475781} m_CullTransparentMesh: 0 +--- !u!1 &416535272 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 416535273} + - component: {fileID: 416535275} + - component: {fileID: 416535274} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &416535273 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 416535272} + m_LocalRotation: {x: -0, 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: 1903167407} + 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 &416535274 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 416535272} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &416535275 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 416535272} + m_CullTransparentMesh: 0 --- !u!1 &416577224 GameObject: m_ObjectHideFlags: 0 @@ -112056,7 +119073,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 416577224} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -112450,6 +119467,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 &417887564 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 417887565} + - component: {fileID: 417887567} + - component: {fileID: 417887566} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &417887565 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 417887564} + m_LocalRotation: {x: -0, 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: 1350765120} + 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 &417887566 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 417887564} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &417887567 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 417887564} + m_CullTransparentMesh: 0 --- !u!1 &417982185 GameObject: m_ObjectHideFlags: 0 @@ -112566,6 +119657,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 417987258} m_CullTransparentMesh: 0 +--- !u!1 &419187804 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 419187805} + 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 &419187805 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 419187804} + m_LocalRotation: {x: 0, 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: 606513333} + - {fileID: 1715030979} + m_Father: {fileID: 1130359736} + 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 &419367649 GameObject: m_ObjectHideFlags: 0 @@ -113201,6 +120329,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 420917258} m_CullTransparentMesh: 0 +--- !u!1 &421185838 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 421185839} + - component: {fileID: 421185841} + - component: {fileID: 421185840} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &421185839 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 421185838} + m_LocalRotation: {x: -0, 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: 231192043} + 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 &421185840 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 421185838} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &421185841 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 421185838} + m_CullTransparentMesh: 0 --- !u!1 &421578711 GameObject: m_ObjectHideFlags: 0 @@ -113263,7 +120465,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 421973956} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -113346,7 +120548,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 422319710} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -114460,7 +121662,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 426337373} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -115161,7 +122363,7 @@ RectTransform: m_GameObject: {fileID: 426876013} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1910686491} m_RootOrder: 12 @@ -115169,7 +122371,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: -138.29999} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &426876015 MonoBehaviour: @@ -115403,6 +122605,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 427224706} m_CullTransparentMesh: 0 +--- !u!1 &427252398 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 427252399} + - component: {fileID: 427252401} + - component: {fileID: 427252400} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &427252399 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 427252398} + m_LocalRotation: {x: -0, 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: 534247077} + 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 &427252400 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 427252398} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &427252401 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 427252398} + m_CullTransparentMesh: 0 --- !u!1 &428014463 GameObject: m_ObjectHideFlags: 0 @@ -116144,6 +123420,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} +--- !u!1 &431363210 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 431363211} + - component: {fileID: 431363213} + - component: {fileID: 431363212} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &431363211 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431363210} + m_LocalRotation: {x: -0, 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: 157176023} + 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 &431363212 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431363210} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &431363213 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 431363210} + m_CullTransparentMesh: 0 --- !u!1 &431842694 GameObject: m_ObjectHideFlags: 0 @@ -116603,6 +123953,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &435468970 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 435468971} + - component: {fileID: 435468973} + - component: {fileID: 435468972} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &435468971 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 435468970} + m_LocalRotation: {x: -0, 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: 2112926837} + 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 &435468972 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 435468970} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &435468973 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 435468970} + m_CullTransparentMesh: 0 --- !u!1 &435507178 GameObject: m_ObjectHideFlags: 0 @@ -116978,7 +124402,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 437068740} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -117108,6 +124532,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 437107806} m_CullTransparentMesh: 0 +--- !u!1 &437439327 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 437439328} + - component: {fileID: 437439330} + - component: {fileID: 437439329} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &437439328 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 437439327} + m_LocalRotation: {x: 0, 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: 540982088} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &437439329 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 437439327} + m_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 &437439330 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 437439327} + m_CullTransparentMesh: 0 --- !u!1 &437444426 GameObject: m_ObjectHideFlags: 0 @@ -117441,7 +124944,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 438301748} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -117576,6 +125079,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} +--- !u!1 &439402836 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 439402837} + 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 &439402837 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 439402836} + m_LocalRotation: {x: 0, 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: 1218796716} + - {fileID: 374783944} + m_Father: {fileID: 2097019616} + 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 &439573998 GameObject: m_ObjectHideFlags: 0 @@ -118382,6 +125922,122 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 441909701} m_CullTransparentMesh: 0 +--- !u!1 &441920078 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 441920079} + 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 &441920079 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441920078} + m_LocalRotation: {x: 0, 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: 2086854651} + - {fileID: 1853288422} + m_Father: {fileID: 1357367415} + m_RootOrder: 40 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &441946792 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 441946793} + - component: {fileID: 441946795} + - component: {fileID: 441946794} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &441946793 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441946792} + m_LocalRotation: {x: 0, 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: 1724292368} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &441946794 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441946792} + m_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 &441946795 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 441946792} + m_CullTransparentMesh: 0 --- !u!1 &442808207 GameObject: m_ObjectHideFlags: 0 @@ -119545,6 +127201,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 447373136} m_CullTransparentMesh: 0 +--- !u!1 &447583373 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 447583374} + - component: {fileID: 447583376} + - component: {fileID: 447583375} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &447583374 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 447583373} + m_LocalRotation: {x: 0, 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: 694753515} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &447583375 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 447583373} + m_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 &447583376 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 447583373} + m_CullTransparentMesh: 0 --- !u!1 &447687226 GameObject: m_ObjectHideFlags: 0 @@ -119836,6 +127571,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 448261859} m_CullTransparentMesh: 0 +--- !u!1 &448719665 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 448719666} + - component: {fileID: 448719668} + - component: {fileID: 448719667} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &448719666 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 448719665} + m_LocalRotation: {x: -0, 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: 654654531} + 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 &448719667 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 448719665} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &448719668 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 448719665} + m_CullTransparentMesh: 0 --- !u!1 &449132772 GameObject: m_ObjectHideFlags: 0 @@ -119863,7 +127672,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} @@ -119905,7 +127714,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 449244530} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: -0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -119914,7 +127723,7 @@ RectTransform: 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: -30} + m_AnchoredPosition: {x: -0, y: -30} m_SizeDelta: {x: 584, y: 14} m_Pivot: {x: 0.5, y: 1} --- !u!114 &449244532 @@ -120005,10 +127814,10 @@ RectTransform: m_Father: {fileID: 37761823} m_RootOrder: 1 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 590, y: -340} + m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} --- !u!114 &449267887 MonoBehaviour: @@ -125233,7 +133042,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 @@ -125354,6 +133163,85 @@ RectTransform: m_AnchoredPosition: {x: -209.25, y: 0} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &460077335 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 460077336} + - component: {fileID: 460077338} + - component: {fileID: 460077337} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &460077336 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 460077335} + m_LocalRotation: {x: 0, 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: 684755772} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &460077337 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 460077335} + m_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 &460077338 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 460077335} + m_CullTransparentMesh: 0 --- !u!1 &460785674 GameObject: m_ObjectHideFlags: 0 @@ -125979,6 +133867,154 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 462650473} m_CullTransparentMesh: 0 +--- !u!1 &462836735 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 462836736} + - component: {fileID: 462836738} + - component: {fileID: 462836737} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &462836736 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 462836735} + m_LocalRotation: {x: -0, 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: 1142719707} + 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 &462836737 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 462836735} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &462836738 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 462836735} + m_CullTransparentMesh: 0 +--- !u!1 &462844495 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 462844496} + - component: {fileID: 462844498} + - component: {fileID: 462844497} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &462844496 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 462844495} + m_LocalRotation: {x: -0, 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: 831339249} + 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 &462844497 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 462844495} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &462844498 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 462844495} + m_CullTransparentMesh: 0 --- !u!1 &462905774 GameObject: m_ObjectHideFlags: 0 @@ -126130,6 +134166,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 462905774} m_CullTransparentMesh: 0 +--- !u!1 &462958586 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 462958587} + - component: {fileID: 462958589} + - component: {fileID: 462958588} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &462958587 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 462958586} + m_LocalRotation: {x: -0, 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: 1102366520} + 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 &462958588 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 462958586} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &462958589 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 462958586} + m_CullTransparentMesh: 0 --- !u!1 &462969798 GameObject: m_ObjectHideFlags: 0 @@ -126734,7 +134844,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} @@ -126744,9 +134854,9 @@ RectTransform: m_Father: {fileID: 654135076} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} --- !u!1 &464273791 @@ -126776,7 +134886,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 464273791} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -127216,6 +135326,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 465849016} m_CullTransparentMesh: 0 +--- !u!1 &466066090 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 466066091} + - component: {fileID: 466066093} + - component: {fileID: 466066092} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &466066091 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 466066090} + m_LocalRotation: {x: 0, 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: 2007285223} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &466066092 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 466066090} + m_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 &466066093 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 466066090} + m_CullTransparentMesh: 0 --- !u!1 &466104598 GameObject: m_ObjectHideFlags: 0 @@ -127290,6 +135479,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 466104598} m_CullTransparentMesh: 0 +--- !u!1 &466354474 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 466354475} + - component: {fileID: 466354477} + - component: {fileID: 466354476} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &466354475 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 466354474} + m_LocalRotation: {x: -0, 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: 1220765878} + 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 &466354476 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 466354474} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &466354477 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 466354474} + m_CullTransparentMesh: 0 --- !u!1 &466917106 GameObject: m_ObjectHideFlags: 0 @@ -127317,7 +135580,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 466917106} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -127877,7 +136140,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 467892645} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -128012,6 +136275,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 467957493} m_CullTransparentMesh: 0 +--- !u!1 &467981843 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 467981844} + m_Layer: 0 + m_Name: label_3_4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &467981844 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 467981843} + m_LocalRotation: {x: 0, 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: 937965346} + - {fileID: 256290632} + m_Father: {fileID: 801884283} + m_RootOrder: 53 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &468002535 GameObject: m_ObjectHideFlags: 0 @@ -128207,6 +136507,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 468541899} m_CullTransparentMesh: 0 +--- !u!1 &468728562 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 468728563} + - component: {fileID: 468728565} + - component: {fileID: 468728564} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &468728563 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 468728562} + m_LocalRotation: {x: -0, 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: 174629687} + 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 &468728564 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 468728562} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &468728565 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 468728562} + m_CullTransparentMesh: 0 --- !u!1 &468863443 GameObject: m_ObjectHideFlags: 0 @@ -128770,6 +137144,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 471417123} m_CullTransparentMesh: 0 +--- !u!1 &471808038 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 471808039} + - component: {fileID: 471808041} + - component: {fileID: 471808040} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &471808039 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 471808038} + m_LocalRotation: {x: 0, 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: 476813756} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &471808040 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 471808038} + m_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.5686275, g: 0.78039217, b: 0.68235296, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &471808041 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 471808038} + m_CullTransparentMesh: 0 --- !u!1 &472043524 GameObject: m_ObjectHideFlags: 0 @@ -130143,7 +138596,7 @@ RectTransform: m_GameObject: {fileID: 473592950} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1777407521} - {fileID: 1842937535} @@ -130246,6 +138699,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} +--- !u!1 &474061706 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 474061707} + - component: {fileID: 474061709} + - component: {fileID: 474061708} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &474061707 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 474061706} + m_LocalRotation: {x: 0, 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: 91839342} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &474061708 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 474061706} + m_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 &474061709 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 474061706} + m_CullTransparentMesh: 0 --- !u!1 &474096142 GameObject: m_ObjectHideFlags: 0 @@ -130478,6 +139010,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 474952064} m_CullTransparentMesh: 0 +--- !u!1 &474969282 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 474969283} + - component: {fileID: 474969285} + - component: {fileID: 474969284} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &474969283 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 474969282} + m_LocalRotation: {x: 0, 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: 588302154} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &474969284 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 474969282} + m_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: +--- !u!222 &474969285 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 474969282} + m_CullTransparentMesh: 0 --- !u!1 &474978117 GameObject: m_ObjectHideFlags: 0 @@ -130540,7 +139151,7 @@ RectTransform: m_GameObject: {fileID: 475733245} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1104831773} - {fileID: 1454336833} @@ -130932,6 +139543,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 476681824} m_CullTransparentMesh: 0 +--- !u!1 &476813755 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 476813756} + m_Layer: 0 + m_Name: label_4_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &476813756 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 476813755} + m_LocalRotation: {x: 0, 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: 1323186118} + - {fileID: 471808039} + m_Father: {fileID: 763052335} + m_RootOrder: 63 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &477094785 GameObject: m_ObjectHideFlags: 0 @@ -131144,7 +139792,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 477455441} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -131432,6 +140080,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &479319078 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 479319079} + 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 &479319079 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 479319078} + m_LocalRotation: {x: 0, 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: 1058202553} + - {fileID: 1232804600} + m_Father: {fileID: 1640097154} + 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 &479505549 GameObject: m_ObjectHideFlags: 0 @@ -131706,6 +140391,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 480607150} m_CullTransparentMesh: 0 +--- !u!1 &480929928 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 480929929} + 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 &480929929 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 480929928} + m_LocalRotation: {x: 0, 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: 532939679} + - {fileID: 757673680} + m_Father: {fileID: 1357367415} + m_RootOrder: 35 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &481198427 GameObject: m_ObjectHideFlags: 0 @@ -131807,7 +140529,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 481622161} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -132709,7 +141431,7 @@ RectTransform: m_GameObject: {fileID: 484836155} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 449267886} m_RootOrder: 6 @@ -132717,7 +141439,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: -114.64001} - m_SizeDelta: {x: 26.691942, y: 19.412323} + m_SizeDelta: {x: 26.857729, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &484836157 MonoBehaviour: @@ -132763,6 +141485,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 484836155} m_CullTransparentMesh: 0 +--- !u!1 &484863882 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 484863883} + - component: {fileID: 484863885} + - component: {fileID: 484863884} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &484863883 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 484863882} + m_LocalRotation: {x: -0, 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: 842733557} + 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 &484863884 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 484863882} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &484863885 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 484863882} + m_CullTransparentMesh: 0 --- !u!1 &485143126 GameObject: m_ObjectHideFlags: 0 @@ -133519,7 +142315,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} @@ -133535,6 +142331,20 @@ RectTransform: - {fileID: 515131227} - {fileID: 1157725514} - {fileID: 1040076283} + - {fileID: 2123864762} + - {fileID: 173071929} + - {fileID: 1386648358} + - {fileID: 694753515} + - {fileID: 1022852103} + - {fileID: 105774002} + - {fileID: 164720602} + - {fileID: 1620858134} + - {fileID: 1398167600} + - {fileID: 856220972} + - {fileID: 1061918617} + - {fileID: 242649646} + - {fileID: 1062123299} + - {fileID: 1977016205} m_Father: {fileID: 408536198} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -133884,7 +142694,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 489452204} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -134357,7 +143167,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} @@ -134710,7 +143520,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 494657975} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -134803,6 +143613,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &495435042 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 495435043} + - component: {fileID: 495435045} + - component: {fileID: 495435044} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &495435043 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 495435042} + m_LocalRotation: {x: 0, 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: 1067931213} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &495435044 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 495435042} + m_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.5686275, g: 0.78039217, b: 0.68235296, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &495435045 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 495435042} + m_CullTransparentMesh: 0 --- !u!1 &495665918 GameObject: m_ObjectHideFlags: 0 @@ -135066,7 +143955,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 498351080} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -135706,6 +144595,122 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 499596561} m_CullTransparentMesh: 0 +--- !u!1 &499777047 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 499777048} + - component: {fileID: 499777050} + - component: {fileID: 499777049} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &499777048 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499777047} + m_LocalRotation: {x: 0, 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: 1420980323} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &499777049 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499777047} + m_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.5686275, g: 0.78039217, b: 0.68235296, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &499777050 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499777047} + m_CullTransparentMesh: 0 +--- !u!1 &499828580 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 499828581} + 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 &499828581 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 499828580} + m_LocalRotation: {x: 0, 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: 760607474} + - {fileID: 1739162986} + m_Father: {fileID: 252393583} + 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: 10, y: -89.96667} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &500428355 GameObject: m_ObjectHideFlags: 0 @@ -136286,6 +145291,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 502415573} m_CullTransparentMesh: 0 +--- !u!1 &502819591 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 502819592} + - component: {fileID: 502819594} + - component: {fileID: 502819593} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &502819592 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 502819591} + m_LocalRotation: {x: 0, 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: 1865611419} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &502819593 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 502819591} + m_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: +--- !u!222 &502819594 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 502819591} + m_CullTransparentMesh: 0 --- !u!1 &502851843 GameObject: m_ObjectHideFlags: 0 @@ -136448,6 +145532,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 502927718} m_CullTransparentMesh: 0 +--- !u!1 &503352553 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 503352554} + - component: {fileID: 503352556} + - component: {fileID: 503352555} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &503352554 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 503352553} + m_LocalRotation: {x: -0, 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: 855330697} + 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 &503352555 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 503352553} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &503352556 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 503352553} + m_CullTransparentMesh: 0 --- !u!1 &503419440 GameObject: m_ObjectHideFlags: 0 @@ -137233,7 +146391,7 @@ RectTransform: m_GameObject: {fileID: 506948584} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 274405927} - {fileID: 353745683} @@ -137324,6 +146482,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 507265765} m_CullTransparentMesh: 0 +--- !u!1 &508172790 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 508172791} + m_Layer: 0 + m_Name: label_3_4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &508172791 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 508172790} + m_LocalRotation: {x: 0, 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: 1408206784} + - {fileID: 369666478} + m_Father: {fileID: 300972851} + m_RootOrder: 60 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &508654489 GameObject: m_ObjectHideFlags: 0 @@ -137507,7 +146702,7 @@ RectTransform: m_GameObject: {fileID: 509860693} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 2137373853} - {fileID: 1308173516} @@ -137759,6 +146954,85 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &510880940 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 510880941} + - component: {fileID: 510880943} + - component: {fileID: 510880942} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &510880941 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 510880940} + m_LocalRotation: {x: 0, 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: 139353692} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &510880942 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 510880940} + m_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 &510880943 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 510880940} + m_CullTransparentMesh: 0 --- !u!1 &511043965 GameObject: m_ObjectHideFlags: 0 @@ -137865,7 +147139,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} @@ -138126,7 +147400,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 514386663} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -138401,7 +147675,7 @@ RectTransform: m_GameObject: {fileID: 515131226} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1837004236} - {fileID: 2060987429} @@ -138983,10 +148257,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: -304} - 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: 0} --- !u!114 &517131344 MonoBehaviour: @@ -140311,6 +149585,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 520232346} m_CullTransparentMesh: 0 +--- !u!1 &520299389 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 520299390} + - component: {fileID: 520299392} + - component: {fileID: 520299391} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &520299390 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 520299389} + m_LocalRotation: {x: 0, 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: 846890714} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &520299391 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 520299389} + m_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.5686275, g: 0.78039217, b: 0.68235296, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &520299392 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 520299389} + m_CullTransparentMesh: 0 --- !u!1 &520352441 GameObject: m_ObjectHideFlags: 0 @@ -140582,7 +149935,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 521588883} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -141010,7 +150363,7 @@ RectTransform: m_GameObject: {fileID: 523155187} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1576230839} - {fileID: 706875063} @@ -141202,7 +150555,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 523668823} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -141322,7 +150675,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 524134088} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -141415,6 +150768,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &524351217 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 524351218} + m_Layer: 0 + m_Name: label_3_1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &524351218 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 524351217} + m_LocalRotation: {x: 0, 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: 1873894517} + - {fileID: 1611342768} + m_Father: {fileID: 801884283} + m_RootOrder: 50 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &524380411 GameObject: m_ObjectHideFlags: 0 @@ -143490,7 +152880,7 @@ RectTransform: m_GameObject: {fileID: 531201324} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1633840331} - {fileID: 1350210399} @@ -143581,6 +152971,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 531425609} m_CullTransparentMesh: 0 +--- !u!1 &531460097 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 531460098} + - component: {fileID: 531460100} + - component: {fileID: 531460099} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &531460098 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 531460097} + m_LocalRotation: {x: 0, 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: 350984470} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &531460099 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 531460097} + m_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 &531460100 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 531460097} + m_CullTransparentMesh: 0 --- !u!1 &531609292 GameObject: m_ObjectHideFlags: 0 @@ -143695,7 +153164,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 39.184834, y: 23.412323} + m_SizeDelta: {x: 39.373592, y: 23.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &531635507 MonoBehaviour: @@ -143764,7 +153233,7 @@ RectTransform: m_GameObject: {fileID: 531967386} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1175404524} - {fileID: 2021824589} @@ -144054,6 +153523,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 532716544} m_CullTransparentMesh: 0 +--- !u!1 &532939678 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 532939679} + - component: {fileID: 532939681} + - component: {fileID: 532939680} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &532939679 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 532939678} + m_LocalRotation: {x: -0, 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: 480929929} + 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 &532939680 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 532939678} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &532939681 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 532939678} + m_CullTransparentMesh: 0 --- !u!1 &532949805 GameObject: m_ObjectHideFlags: 0 @@ -144312,7 +153855,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 534095398} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -144368,6 +153911,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 534095398} m_CullTransparentMesh: 0 +--- !u!1 &534247076 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 534247077} + m_Layer: 0 + m_Name: label_3_1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &534247077 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 534247076} + m_LocalRotation: {x: 0, 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: 427252399} + - {fileID: 1769790833} + m_Father: {fileID: 763052335} + m_RootOrder: 57 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &535311839 GameObject: m_ObjectHideFlags: 0 @@ -144793,6 +154373,43 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &536800578 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 536800579} + 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 &536800579 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 536800578} + m_LocalRotation: {x: 0, 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: 1169936341} + - {fileID: 998699815} + m_Father: {fileID: 1009125081} + 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 &536808716 GameObject: m_ObjectHideFlags: 0 @@ -144941,6 +154558,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 537326641} m_CullTransparentMesh: 0 +--- !u!1 &538333499 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 538333500} + - component: {fileID: 538333502} + - component: {fileID: 538333501} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &538333500 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 538333499} + m_LocalRotation: {x: 0, 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: 1017642353} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &538333501 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 538333499} + m_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 &538333502 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 538333499} + m_CullTransparentMesh: 0 --- !u!1 &538753261 GameObject: m_ObjectHideFlags: 0 @@ -145168,6 +154864,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 539298998} m_CullTransparentMesh: 0 +--- !u!1 &539364322 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 539364323} + 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 &539364323 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 539364322} + m_LocalRotation: {x: 0, 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: 181032398} + - {fileID: 1722457165} + m_Father: {fileID: 1130359736} + 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 &539727346 GameObject: m_ObjectHideFlags: 0 @@ -145554,6 +155287,43 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &540982087 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 540982088} + 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 &540982088 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 540982087} + m_LocalRotation: {x: 0, 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: 639698169} + - {fileID: 437439328} + m_Father: {fileID: 1357367415} + 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 &541000018 GameObject: m_ObjectHideFlags: 0 @@ -146008,6 +155778,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 544248642} m_CullTransparentMesh: 0 +--- !u!1 &544294776 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 544294777} + - component: {fileID: 544294779} + - component: {fileID: 544294778} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &544294777 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 544294776} + m_LocalRotation: {x: 0, 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: 2123864762} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &544294778 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 544294776} + m_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 &544294779 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 544294776} + m_CullTransparentMesh: 0 --- !u!1 &544362237 GameObject: m_ObjectHideFlags: 0 @@ -146278,15 +156127,15 @@ RectTransform: m_GameObject: {fileID: 547193114} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2057043785} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -270.39243, y: 16.90001} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_AnchoredPosition: {x: -270.4868, y: 16.90001} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &547193116 MonoBehaviour: @@ -146837,6 +156686,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 550201078} m_CullTransparentMesh: 0 +--- !u!1 &550485418 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 550485419} + - component: {fileID: 550485421} + - component: {fileID: 550485420} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &550485419 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 550485418} + m_LocalRotation: {x: 0, 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: 231192043} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &550485420 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 550485418} + m_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 &550485421 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 550485418} + m_CullTransparentMesh: 0 --- !u!1 &550535470 GameObject: m_ObjectHideFlags: 0 @@ -146938,7 +156866,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 @@ -147263,6 +157191,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 551440927} m_CullTransparentMesh: 0 +--- !u!1 &551571286 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 551571287} + - component: {fileID: 551571289} + - component: {fileID: 551571288} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &551571287 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 551571286} + m_LocalRotation: {x: 0, 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: 1859717776} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &551571288 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 551571286} + m_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: +--- !u!222 &551571289 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 551571286} + m_CullTransparentMesh: 0 --- !u!1 &551574443 GameObject: m_ObjectHideFlags: 0 @@ -148435,6 +158442,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 554711197} m_CullTransparentMesh: 0 +--- !u!1 &555302429 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 555302430} + m_Layer: 0 + m_Name: label_4_2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &555302430 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 555302429} + m_LocalRotation: {x: 0, 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: 198133121} + - {fileID: 1388151850} + m_Father: {fileID: 763052335} + m_RootOrder: 65 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &555346835 GameObject: m_ObjectHideFlags: 0 @@ -149281,7 +159325,7 @@ RectTransform: m_GameObject: {fileID: 558488761} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 106087269} - {fileID: 176743813} @@ -149477,7 +159521,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 558751525} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -149605,7 +159649,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 59.810425, y: 19.77251} + m_SizeDelta: {x: 59.02559, y: 19.06653} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &559285484 MonoBehaviour: @@ -149732,6 +159776,117 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 560159861} m_CullTransparentMesh: 0 +--- !u!1 &560276871 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 560276872} + - component: {fileID: 560276874} + - component: {fileID: 560276873} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &560276872 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 560276871} + m_LocalRotation: {x: -0, 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: 1159458720} + 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 &560276873 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 560276871} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &560276874 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 560276871} + m_CullTransparentMesh: 0 +--- !u!1 &560649423 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 560649424} + m_Layer: 0 + m_Name: label_4_5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &560649424 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 560649423} + m_LocalRotation: {x: 0, 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: 617689} + - {fileID: 1892572331} + m_Father: {fileID: 300972851} + m_RootOrder: 68 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &561250077 GameObject: m_ObjectHideFlags: 0 @@ -149875,7 +160030,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} @@ -149885,9 +160040,9 @@ RectTransform: m_Father: {fileID: 782651941} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} --- !u!1 &561432593 @@ -150363,6 +160518,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 562006723} m_CullTransparentMesh: 0 +--- !u!1 &562186459 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 562186460} + 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 &562186460 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 562186459} + m_LocalRotation: {x: 0, 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: 1517111744} + - {fileID: 2140726922} + m_Father: {fileID: 801884283} + 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 &562557414 GameObject: m_ObjectHideFlags: 0 @@ -150390,7 +160582,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 562557414} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -150473,7 +160665,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 562859457} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -152343,7 +162535,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 569806140} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -152732,7 +162924,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 570807778} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -153052,6 +163244,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 571449193} m_CullTransparentMesh: 0 +--- !u!1 &572096906 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 572096907} + 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 &572096907 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 572096906} + m_LocalRotation: {x: 0, 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: 756011631} + - {fileID: 2134430155} + m_Father: {fileID: 2097019616} + 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 &572570155 GameObject: m_ObjectHideFlags: 0 @@ -153153,7 +163382,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 572587407} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -153236,7 +163465,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 573037254} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -153880,6 +164109,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 574673108} m_CullTransparentMesh: 0 +--- !u!1 &574745962 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 574745963} + - component: {fileID: 574745965} + - component: {fileID: 574745964} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &574745963 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 574745962} + m_LocalRotation: {x: 0, 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: 2012493818} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &574745964 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 574745962} + m_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 &574745965 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 574745962} + m_CullTransparentMesh: 0 --- !u!1 &574821601 GameObject: m_ObjectHideFlags: 0 @@ -161519,7 +171827,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 576636877} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -161715,15 +172023,15 @@ RectTransform: m_GameObject: {fileID: 577564334} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2057043785} m_RootOrder: 10 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 63.20453, y: -154.03972} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_AnchoredPosition: {x: 63.29892, y: -154.03972} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &577564336 MonoBehaviour: @@ -162187,7 +172495,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 579945759} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -162457,15 +172765,15 @@ RectTransform: m_GameObject: {fileID: 580361152} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2057043785} m_RootOrder: 9 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 91.39438, y: -67.28029} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_AnchoredPosition: {x: 91.48877, y: -67.28029} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &580361154 MonoBehaviour: @@ -163205,7 +173513,7 @@ RectTransform: m_GameObject: {fileID: 583892133} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1072376770} - {fileID: 1122289577} @@ -163784,15 +174092,15 @@ RectTransform: m_GameObject: {fileID: 585766400} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2057043785} m_RootOrder: 11 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -63.20456, y: -154.03972} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_AnchoredPosition: {x: -63.298935, y: -154.03972} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &585766402 MonoBehaviour: @@ -183750,6 +194058,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &588302153 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 588302154} + 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 &588302154 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 588302153} + m_LocalRotation: {x: 0, 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: 825020745} + - {fileID: 474969283} + m_Father: {fileID: 300972851} + m_RootOrder: 53 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &588316920 GameObject: m_ObjectHideFlags: 0 @@ -183868,6 +194213,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 588396800} m_CullTransparentMesh: 0 +--- !u!1 &588552823 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 588552824} + - component: {fileID: 588552826} + - component: {fileID: 588552825} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &588552824 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 588552823} + m_LocalRotation: {x: 0, 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: 757200163} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &588552825 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 588552823} + m_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 &588552826 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 588552823} + m_CullTransparentMesh: 0 --- !u!1 &588740995 GameObject: m_ObjectHideFlags: 0 @@ -183905,6 +194329,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &589067195 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 589067196} + - component: {fileID: 589067198} + - component: {fileID: 589067197} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &589067196 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 589067195} + m_LocalRotation: {x: 0, 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: 2005591126} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &589067197 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 589067195} + m_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 &589067198 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 589067195} + m_CullTransparentMesh: 0 --- !u!1 &589519113 GameObject: m_ObjectHideFlags: 0 @@ -184053,6 +194556,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 589649190} m_CullTransparentMesh: 0 +--- !u!1 &590229650 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 590229651} + - component: {fileID: 590229653} + - component: {fileID: 590229652} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &590229651 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 590229650} + m_LocalRotation: {x: 0, 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: 1820809129} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &590229652 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 590229650} + m_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 &590229653 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 590229650} + m_CullTransparentMesh: 0 --- !u!1 &590804123 GameObject: m_ObjectHideFlags: 0 @@ -184638,7 +195220,7 @@ RectTransform: m_GameObject: {fileID: 594226271} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 2019252840} - {fileID: 602157826} @@ -185408,7 +195990,7 @@ RectTransform: m_GameObject: {fileID: 597943268} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1353533899} - {fileID: 250903074} @@ -185862,7 +196444,7 @@ RectTransform: m_GameObject: {fileID: 598801603} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 500428356} - {fileID: 1577320587} @@ -187135,6 +197717,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 603513117} m_CullTransparentMesh: 0 +--- !u!1 &603551814 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 603551815} + - component: {fileID: 603551817} + - component: {fileID: 603551816} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &603551815 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 603551814} + m_LocalRotation: {x: -0, 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: 1045837744} + 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 &603551816 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 603551814} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &603551817 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 603551814} + m_CullTransparentMesh: 0 --- !u!1 &603839632 GameObject: m_ObjectHideFlags: 0 @@ -187308,7 +197964,7 @@ RectTransform: m_GameObject: {fileID: 604484012} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1358236226} - {fileID: 448261860} @@ -187394,6 +198050,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 604563919} m_CullTransparentMesh: 0 +--- !u!1 &604972135 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 604972136} + 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 &604972136 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 604972135} + m_LocalRotation: {x: 0, 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: 1479055467} + - {fileID: 69002325} + m_Father: {fileID: 300972851} + m_RootOrder: 42 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &605028092 GameObject: m_ObjectHideFlags: 0 @@ -187578,7 +198271,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 605078389} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -187796,6 +198489,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 605403229} m_CullTransparentMesh: 0 +--- !u!1 &605405548 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 605405549} + 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 &605405549 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 605405548} + m_LocalRotation: {x: 0, 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: 1362663347} + - {fileID: 2036531057} + m_Father: {fileID: 2097019616} + 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 &606118113 GameObject: m_ObjectHideFlags: 0 @@ -187912,6 +198642,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 606261309} m_CullTransparentMesh: 0 +--- !u!1 &606513332 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 606513333} + - component: {fileID: 606513335} + - component: {fileID: 606513334} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &606513333 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 606513332} + m_LocalRotation: {x: -0, 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: 419187805} + 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 &606513334 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 606513332} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &606513335 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 606513332} + m_CullTransparentMesh: 0 --- !u!1 &607263968 GameObject: m_ObjectHideFlags: 0 @@ -188537,6 +199341,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 608221686} m_CullTransparentMesh: 0 +--- !u!1 &608471920 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 608471921} + - component: {fileID: 608471923} + - component: {fileID: 608471922} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &608471921 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608471920} + m_LocalRotation: {x: 0, 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: 383951541} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &608471922 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608471920} + m_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 &608471923 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 608471920} + m_CullTransparentMesh: 0 --- !u!1 &609420230 GameObject: m_ObjectHideFlags: 0 @@ -189353,6 +200236,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &612183296 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 612183297} + - component: {fileID: 612183299} + - component: {fileID: 612183298} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &612183297 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 612183296} + m_LocalRotation: {x: 0, 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: 1491558723} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &612183298 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 612183296} + m_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 &612183299 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 612183296} + m_CullTransparentMesh: 0 --- !u!1 &612313900 GameObject: m_ObjectHideFlags: 0 @@ -189854,7 +200816,7 @@ RectTransform: m_GameObject: {fileID: 613753663} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 371798679} - {fileID: 1664607292} @@ -190700,7 +201662,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 618274480} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: -0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -190709,7 +201671,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -30} + m_AnchoredPosition: {x: -0, y: -30} m_SizeDelta: {x: 584, y: 14} m_Pivot: {x: 0, y: 1} --- !u!114 &618274482 @@ -191325,7 +202287,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 619990626} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -191997,6 +202959,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &621330589 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 621330590} + - component: {fileID: 621330592} + - component: {fileID: 621330591} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &621330590 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 621330589} + m_LocalRotation: {x: -0, 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: 1386648358} + 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 &621330591 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 621330589} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &621330592 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 621330589} + m_CullTransparentMesh: 0 --- !u!1 &621427117 GameObject: m_ObjectHideFlags: 0 @@ -192691,7 +203727,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 623352126} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -193173,6 +204209,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &625420304 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 625420305} + - component: {fileID: 625420307} + - component: {fileID: 625420306} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &625420305 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 625420304} + m_LocalRotation: {x: 0, 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: 1549319335} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &625420306 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 625420304} + m_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 &625420307 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 625420304} + m_CullTransparentMesh: 0 --- !u!1 &625482152 GameObject: m_ObjectHideFlags: 0 @@ -193835,6 +204950,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 627493228} m_CullTransparentMesh: 0 +--- !u!1 &627594213 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 627594214} + - component: {fileID: 627594216} + - component: {fileID: 627594215} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &627594214 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 627594213} + m_LocalRotation: {x: -0, 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: 750263439} + 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 &627594215 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 627594213} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &627594216 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 627594213} + m_CullTransparentMesh: 0 --- !u!1 &627657702 GameObject: m_ObjectHideFlags: 0 @@ -193952,10 +205141,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: -912} - 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: 0} --- !u!114 &627765468 MonoBehaviour: @@ -195203,6 +206392,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 628069792} m_CullTransparentMesh: 0 +--- !u!1 &628183106 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 628183107} + - component: {fileID: 628183109} + - component: {fileID: 628183108} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &628183107 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 628183106} + m_LocalRotation: {x: 0, 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: 1563878933} + 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: 20} + m_SizeDelta: {x: 35.443195, y: 19.06653} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &628183108 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 628183106} + m_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.16911763, g: 0.17409168, b: 0.17409168, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+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: 1290 +--- !u!222 &628183109 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 628183106} + m_CullTransparentMesh: 0 --- !u!1 &628297391 GameObject: m_ObjectHideFlags: 0 @@ -195560,6 +206828,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 628878368} m_CullTransparentMesh: 0 +--- !u!1 &628953492 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 628953493} + - component: {fileID: 628953495} + - component: {fileID: 628953494} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &628953493 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 628953492} + m_LocalRotation: {x: 0, 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: 2019801671} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &628953494 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 628953492} + m_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 &628953495 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 628953492} + m_CullTransparentMesh: 0 --- !u!1 &629470635 GameObject: m_ObjectHideFlags: 0 @@ -196684,6 +208031,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 633949964} m_CullTransparentMesh: 0 +--- !u!1 &634028869 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 634028870} + 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 &634028870 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 634028869} + m_LocalRotation: {x: 0, 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: 927132394} + - {fileID: 714407492} + m_Father: {fileID: 801884283} + m_RootOrder: 36 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &634370461 GameObject: m_ObjectHideFlags: 0 @@ -198683,6 +210067,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 639339595} m_CullTransparentMesh: 0 +--- !u!1 &639698168 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 639698169} + - component: {fileID: 639698171} + - component: {fileID: 639698170} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &639698169 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 639698168} + m_LocalRotation: {x: -0, 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: 540982088} + 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 &639698170 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 639698168} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &639698171 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 639698168} + m_CullTransparentMesh: 0 --- !u!1 &639928797 GameObject: m_ObjectHideFlags: 0 @@ -199186,7 +210644,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 59.810425, y: 19.77251} + m_SizeDelta: {x: 59.02559, y: 19.06653} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &641164109 MonoBehaviour: @@ -199304,6 +210762,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 641217845} m_CullTransparentMesh: 0 +--- !u!1 &641429099 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 641429100} + - component: {fileID: 641429102} + - component: {fileID: 641429101} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &641429100 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 641429099} + m_LocalRotation: {x: -0, 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: 1619029778} + 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 &641429101 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 641429099} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &641429102 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 641429099} + m_CullTransparentMesh: 0 --- !u!1 &641432731 GameObject: m_ObjectHideFlags: 0 @@ -200022,6 +211554,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &644859971 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 644859972} + - component: {fileID: 644859974} + - component: {fileID: 644859973} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &644859972 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 644859971} + m_LocalRotation: {x: 0, 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: 305863580} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &644859973 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 644859971} + m_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 &644859974 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 644859971} + m_CullTransparentMesh: 0 --- !u!1 &644960926 GameObject: m_ObjectHideFlags: 0 @@ -200177,6 +211788,43 @@ RectTransform: m_AnchoredPosition: {x: 117.0285, y: 71.87683} m_SizeDelta: {x: 50, y: 18} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &645971033 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 645971034} + 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 &645971034 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 645971033} + m_LocalRotation: {x: 0, 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: 1318996655} + - {fileID: 1635909871} + m_Father: {fileID: 1357367415} + 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 &646028450 GameObject: m_ObjectHideFlags: 0 @@ -200204,7 +211852,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 646028450} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -200754,7 +212402,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 647753165} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -201522,15 +213170,15 @@ RectTransform: m_GameObject: {fileID: 648783497} m_LocalRotation: {x: 0, y: 0, z: 0.53383595, w: 0.8455881} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1910686491} m_RootOrder: 14 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -128.70348, y: 64.14998} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_AnchoredPosition: {x: -128.79785, y: 64.14998} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &648783499 MonoBehaviour: @@ -201601,7 +213249,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 649142116} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -201731,6 +213379,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 649420008} m_CullTransparentMesh: 0 +--- !u!1 &649665206 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 649665207} + - component: {fileID: 649665209} + - component: {fileID: 649665208} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &649665207 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 649665206} + m_LocalRotation: {x: 0, 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: 1028598728} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &649665208 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 649665206} + m_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 &649665209 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 649665206} + m_CullTransparentMesh: 0 --- !u!1 &649738712 GameObject: m_ObjectHideFlags: 0 @@ -202126,7 +213853,7 @@ RectTransform: m_GameObject: {fileID: 651869146} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1652710589} - {fileID: 1259431208} @@ -202688,10 +214415,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: -608} - 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: 0} --- !u!114 &654135077 MonoBehaviour: @@ -203879,7 +215606,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} @@ -203896,6 +215623,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} +--- !u!1 &654654530 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 654654531} + 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 &654654531 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 654654530} + m_LocalRotation: {x: 0, 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: 448719666} + - {fileID: 873459709} + m_Father: {fileID: 763052335} + m_RootOrder: 55 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &654698308 GameObject: m_ObjectHideFlags: 0 @@ -203921,7 +215685,7 @@ RectTransform: m_GameObject: {fileID: 654698308} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 181266365} - {fileID: 1957864707} @@ -205737,7 +217501,7 @@ RectTransform: m_GameObject: {fileID: 661726146} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2057043785} m_RootOrder: 26 @@ -205745,7 +217509,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 175.20001, y: -70.69999} - m_SizeDelta: {x: 27.298578, y: 19.412323} + m_SizeDelta: {x: 27.512794, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &661726148 MonoBehaviour: @@ -206799,6 +218563,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 663403081} m_CullTransparentMesh: 0 +--- !u!1 &663444874 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 663444875} + - component: {fileID: 663444877} + - component: {fileID: 663444876} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &663444875 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 663444874} + m_LocalRotation: {x: 0, 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: 1773487218} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &663444876 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 663444874} + m_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 &663444877 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 663444874} + m_CullTransparentMesh: 0 --- !u!1 &663665038 GameObject: m_ObjectHideFlags: 0 @@ -207410,6 +219253,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 665730180} m_CullTransparentMesh: 0 +--- !u!1 &665815387 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 665815388} + - component: {fileID: 665815390} + - component: {fileID: 665815389} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &665815388 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 665815387} + m_LocalRotation: {x: -0, 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: 360292239} + 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 &665815389 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 665815387} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &665815390 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 665815387} + m_CullTransparentMesh: 0 --- !u!1 &665862302 GameObject: m_ObjectHideFlags: 0 @@ -208275,7 +220192,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 668114685} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -208937,7 +220854,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} @@ -208947,9 +220864,9 @@ RectTransform: m_Father: {fileID: 1737585331} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} --- !u!1 &670648061 @@ -209401,6 +221318,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 671868283} m_CullTransparentMesh: 0 +--- !u!1 &672199289 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 672199290} + 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 &672199290 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 672199289} + m_LocalRotation: {x: 0, 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: 2006822766} + - {fileID: 1213059437} + m_Father: {fileID: 801884283} + 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 &672221559 GameObject: m_ObjectHideFlags: 0 @@ -209997,7 +221951,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 674158734} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -211322,6 +223276,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 678742509} m_CullTransparentMesh: 0 +--- !u!1 &678954633 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 678954634} + - component: {fileID: 678954636} + - component: {fileID: 678954635} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &678954634 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 678954633} + m_LocalRotation: {x: -0, 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: 332900445} + 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 &678954635 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 678954633} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &678954636 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 678954633} + m_CullTransparentMesh: 0 --- !u!1 &679077176 GameObject: m_ObjectHideFlags: 0 @@ -211964,7 +223992,7 @@ RectTransform: m_GameObject: {fileID: 680774057} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1350250095} - {fileID: 1232195506} @@ -212124,6 +224152,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 682735872} m_CullTransparentMesh: 0 +--- !u!1 &682737780 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 682737781} + - component: {fileID: 682737783} + - component: {fileID: 682737782} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &682737781 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 682737780} + m_LocalRotation: {x: -0, 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: 1715736501} + 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 &682737782 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 682737780} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &682737783 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 682737780} + m_CullTransparentMesh: 0 --- !u!1 &683021490 GameObject: m_ObjectHideFlags: 0 @@ -212186,7 +224288,7 @@ RectTransform: m_GameObject: {fileID: 684249752} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1724876779} - {fileID: 887048193} @@ -212326,6 +224428,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} +--- !u!1 &684755771 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 684755772} + 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 &684755772 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 684755771} + m_LocalRotation: {x: 0, 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: 736662058} + - {fileID: 460077336} + m_Father: {fileID: 1009125081} + 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 &684892774 GameObject: m_ObjectHideFlags: 0 @@ -212882,6 +225021,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 688000106} m_CullTransparentMesh: 0 +--- !u!1 &688073008 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 688073009} + m_Layer: 0 + m_Name: label_4_2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &688073009 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 688073008} + m_LocalRotation: {x: 0, 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: 1639717418} + - {fileID: 1755462482} + m_Father: {fileID: 300972851} + m_RootOrder: 65 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &688350009 GameObject: m_ObjectHideFlags: 0 @@ -212909,7 +225085,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} @@ -213028,7 +225204,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 688999535} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -213729,7 +225905,7 @@ RectTransform: m_GameObject: {fileID: 689745886} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1701616437} - {fileID: 2114137890} @@ -213840,7 +226016,7 @@ RectTransform: m_GameObject: {fileID: 689963236} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 607325657} - {fileID: 1071129431} @@ -214005,6 +226181,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 690008312} m_CullTransparentMesh: 0 +--- !u!1 &690804787 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 690804788} + - component: {fileID: 690804790} + - component: {fileID: 690804789} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &690804788 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 690804787} + m_LocalRotation: {x: -0, 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: 1044290086} + 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 &690804789 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 690804787} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &690804790 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 690804787} + m_CullTransparentMesh: 0 --- !u!1 &691273189 GameObject: m_ObjectHideFlags: 0 @@ -215057,6 +227307,43 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &694099501 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 694099502} + 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 &694099502 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 694099501} + m_LocalRotation: {x: 0, 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: 1468845318} + - {fileID: 1970388649} + m_Father: {fileID: 1640097154} + 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 &694285921 GameObject: m_ObjectHideFlags: 0 @@ -215173,6 +227460,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 694375907} m_CullTransparentMesh: 0 +--- !u!1 &694575128 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 694575129} + - component: {fileID: 694575131} + - component: {fileID: 694575130} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &694575129 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 694575128} + m_LocalRotation: {x: 0, 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: 1715736501} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &694575130 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 694575128} + m_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 &694575131 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 694575128} + m_CullTransparentMesh: 0 --- !u!1 &694716173 GameObject: m_ObjectHideFlags: 0 @@ -215326,6 +227692,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 694740032} m_CullTransparentMesh: 0 +--- !u!1 &694753514 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 694753515} + 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 &694753515 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 694753514} + m_LocalRotation: {x: 0, 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: 734871881} + - {fileID: 447583374} + m_Father: {fileID: 488529639} + 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 &694786471 GameObject: m_ObjectHideFlags: 0 @@ -216043,7 +228446,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 697395919} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -216397,7 +228800,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 700069308} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -217217,6 +229620,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 703079178} m_CullTransparentMesh: 0 +--- !u!1 &703265127 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 703265128} + - component: {fileID: 703265130} + - component: {fileID: 703265129} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &703265128 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 703265127} + m_LocalRotation: {x: 0, 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: 732841202} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &703265129 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 703265127} + m_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 &703265130 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 703265127} + m_CullTransparentMesh: 0 --- !u!1 &703286837 GameObject: m_ObjectHideFlags: 0 @@ -217712,7 +230194,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 705275819} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -218162,6 +230644,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 706599890} m_CullTransparentMesh: 0 +--- !u!1 &706675496 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 706675497} + - component: {fileID: 706675499} + - component: {fileID: 706675498} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &706675497 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 706675496} + m_LocalRotation: {x: 0, 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: 1840582334} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &706675498 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 706675496} + m_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 &706675499 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 706675496} + m_CullTransparentMesh: 0 --- !u!1 &706764596 GameObject: m_ObjectHideFlags: 0 @@ -218439,6 +231000,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 707028457} m_CullTransparentMesh: 0 +--- !u!1 &707098347 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 707098348} + 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 &707098348 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 707098347} + m_LocalRotation: {x: 0, 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: 1347296376} + - {fileID: 1229972744} + m_Father: {fileID: 1640097154} + 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 &707129291 GameObject: m_ObjectHideFlags: 0 @@ -219435,6 +232033,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 711807025} m_CullTransparentMesh: 0 +--- !u!1 &712022429 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 712022430} + - component: {fileID: 712022432} + - component: {fileID: 712022431} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &712022430 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 712022429} + m_LocalRotation: {x: 0, 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: 1169806581} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &712022431 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 712022429} + m_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.83137256, g: 0.50980395, b: 0.39607844, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &712022432 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 712022429} + m_CullTransparentMesh: 0 --- !u!1 &712112737 GameObject: m_ObjectHideFlags: 0 @@ -219819,7 +232496,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 713565271} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -219949,6 +232626,159 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 714360467} m_CullTransparentMesh: 0 +--- !u!1 &714407491 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 714407492} + - component: {fileID: 714407494} + - component: {fileID: 714407493} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &714407492 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 714407491} + m_LocalRotation: {x: 0, 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: 634028870} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &714407493 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 714407491} + m_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 &714407494 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 714407491} + m_CullTransparentMesh: 0 +--- !u!1 &714607373 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 714607374} + - component: {fileID: 714607376} + - component: {fileID: 714607375} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &714607374 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 714607373} + m_LocalRotation: {x: -0, 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: 1859717776} + 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 &714607375 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 714607373} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &714607376 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 714607373} + m_CullTransparentMesh: 0 --- !u!1 &715101261 GameObject: m_ObjectHideFlags: 0 @@ -220538,7 +233368,7 @@ RectTransform: m_GameObject: {fileID: 717820658} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1917116463} - {fileID: 1971772263} @@ -220577,7 +233407,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 718229900} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -220816,7 +233646,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 719893413} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -220872,6 +233702,117 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 719893413} m_CullTransparentMesh: 0 +--- !u!1 &720141827 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 720141828} + 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 &720141828 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 720141827} + m_LocalRotation: {x: 0, 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: 1420436078} + - {fileID: 1320469482} + m_Father: {fileID: 801884283} + 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 &720237911 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 720237912} + - component: {fileID: 720237914} + - component: {fileID: 720237913} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &720237912 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 720237911} + m_LocalRotation: {x: -0, 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: 1865611419} + 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 &720237913 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 720237911} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &720237914 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 720237911} + m_CullTransparentMesh: 0 --- !u!1 &720375755 GameObject: m_ObjectHideFlags: 0 @@ -222869,6 +235810,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 726877938} m_CullTransparentMesh: 0 +--- !u!1 &726906467 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 726906468} + - component: {fileID: 726906470} + - component: {fileID: 726906469} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &726906468 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 726906467} + m_LocalRotation: {x: -0, 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: 1389377723} + 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 &726906469 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 726906467} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &726906470 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 726906467} + m_CullTransparentMesh: 0 --- !u!1 &726991299 GameObject: m_ObjectHideFlags: 0 @@ -222894,7 +235909,7 @@ RectTransform: m_GameObject: {fileID: 726991299} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1662432907} - {fileID: 1315744039} @@ -222906,6 +235921,80 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &727164333 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 727164334} + - component: {fileID: 727164336} + - component: {fileID: 727164335} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &727164334 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 727164333} + m_LocalRotation: {x: -0, 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: 1266534950} + 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 &727164335 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 727164333} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &727164336 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 727164333} + m_CullTransparentMesh: 0 --- !u!1 &727387704 GameObject: m_ObjectHideFlags: 0 @@ -224551,7 +237640,7 @@ RectTransform: m_GameObject: {fileID: 729072094} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 483676020} - {fileID: 73798670} @@ -225027,6 +238116,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 730806771} m_CullTransparentMesh: 0 +--- !u!1 &730880175 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 730880176} + 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 &730880176 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 730880175} + m_LocalRotation: {x: 0, 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: 969277845} + - {fileID: 1120129867} + m_Father: {fileID: 300972851} + m_RootOrder: 40 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &730888332 GameObject: m_ObjectHideFlags: 0 @@ -225399,15 +238525,15 @@ RectTransform: m_GameObject: {fileID: 731950523} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 449267886} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 119.22403, y: -48.94001} - m_SizeDelta: {x: 45.49763, y: 19.412323} + m_AnchoredPosition: {x: 119.40256, y: -48.94001} + m_SizeDelta: {x: 45.85466, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &731950525 MonoBehaviour: @@ -225610,6 +238736,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 732428606} m_CullTransparentMesh: 0 +--- !u!1 &732841201 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 732841202} + 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 &732841202 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 732841201} + m_LocalRotation: {x: 0, 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: 1582205225} + - {fileID: 703265128} + m_Father: {fileID: 763052335} + m_RootOrder: 36 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &733038770 GameObject: m_ObjectHideFlags: 0 @@ -225635,7 +238798,7 @@ RectTransform: m_GameObject: {fileID: 733038770} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 293159957} - {fileID: 1824682136} @@ -225800,6 +238963,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 733683960} m_CullTransparentMesh: 0 +--- !u!1 &734871880 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 734871881} + - component: {fileID: 734871883} + - component: {fileID: 734871882} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &734871881 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 734871880} + m_LocalRotation: {x: -0, 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: 694753515} + 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 &734871882 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 734871880} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &734871883 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 734871880} + m_CullTransparentMesh: 0 --- !u!1 &735682482 GameObject: m_ObjectHideFlags: 0 @@ -225835,7 +239072,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 56.777252, y: 23.412323} + m_SizeDelta: {x: 57.06039, y: 23.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &735682484 MonoBehaviour: @@ -225941,7 +239178,7 @@ RectTransform: m_GameObject: {fileID: 735988687} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 978463283} - {fileID: 1403221849} @@ -225980,7 +239217,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} @@ -226102,7 +239339,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} @@ -226193,6 +239430,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 736279383} m_CullTransparentMesh: 0 +--- !u!1 &736662057 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 736662058} + - component: {fileID: 736662060} + - component: {fileID: 736662059} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &736662058 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 736662057} + m_LocalRotation: {x: -0, 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: 684755772} + 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 &736662059 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 736662057} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &736662060 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 736662057} + m_CullTransparentMesh: 0 --- !u!1 &737244559 GameObject: m_ObjectHideFlags: 0 @@ -226494,7 +239805,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 738162335} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -226841,7 +240152,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 740504294} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -226922,7 +240233,7 @@ RectTransform: m_GameObject: {fileID: 741091328} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 292062631} - {fileID: 976931284} @@ -227035,7 +240346,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 741190819} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -227389,15 +240700,15 @@ RectTransform: m_GameObject: {fileID: 742009663} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1640796314} m_RootOrder: 13 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -128.70348, y: -64.14999} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_AnchoredPosition: {x: -128.79785, y: -64.14999} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &742009665 MonoBehaviour: @@ -228331,6 +241642,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &746864362 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 746864363} + - component: {fileID: 746864365} + - component: {fileID: 746864364} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &746864363 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 746864362} + m_LocalRotation: {x: -0, 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: 1339760283} + 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 &746864364 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 746864362} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &746864365 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 746864362} + m_CullTransparentMesh: 0 --- !u!1 &747240774 GameObject: m_ObjectHideFlags: 0 @@ -228405,6 +241790,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 747240774} m_CullTransparentMesh: 0 +--- !u!1 &747286753 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 747286754} + - component: {fileID: 747286756} + - component: {fileID: 747286755} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &747286754 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 747286753} + m_LocalRotation: {x: 0, 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: 1386648358} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &747286755 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 747286753} + m_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 &747286756 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 747286753} + m_CullTransparentMesh: 0 --- !u!1 &747552767 GameObject: m_ObjectHideFlags: 0 @@ -228432,11 +241896,14 @@ 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} - {fileID: 1592088895} + - {fileID: 1018054037} + - {fileID: 1737151524} + - {fileID: 1045837744} m_Father: {fileID: 883296608} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -228865,7 +242332,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 56.777252, y: 23.412323} + m_SizeDelta: {x: 57.06039, y: 23.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &749305805 MonoBehaviour: @@ -229160,7 +242627,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 749929283} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -229216,6 +242683,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 749929283} m_CullTransparentMesh: 0 +--- !u!1 &750263438 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 750263439} + 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 &750263439 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 750263438} + m_LocalRotation: {x: 0, 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: 627594214} + - {fileID: 1471154605} + m_Father: {fileID: 1338692539} + 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 &750697738 GameObject: m_ObjectHideFlags: 0 @@ -229645,7 +243149,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 753281851} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -229701,6 +243205,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 753281851} m_CullTransparentMesh: 0 +--- !u!1 &753383927 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 753383928} + - component: {fileID: 753383930} + - component: {fileID: 753383929} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &753383928 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 753383927} + m_LocalRotation: {x: 0, 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: 1643050264} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &753383929 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 753383927} + m_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.5686275, g: 0.78039217, b: 0.68235296, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &753383930 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 753383927} + m_CullTransparentMesh: 0 --- !u!1 &753727382 GameObject: m_ObjectHideFlags: 0 @@ -230095,6 +243678,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 754509016} m_CullTransparentMesh: 0 +--- !u!1 &755039820 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 755039821} + - component: {fileID: 755039823} + - component: {fileID: 755039822} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &755039821 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 755039820} + m_LocalRotation: {x: 0, 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: 1844484198} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &755039822 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 755039820} + m_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 &755039823 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 755039820} + m_CullTransparentMesh: 0 --- !u!1 &755225233 GameObject: m_ObjectHideFlags: 0 @@ -230327,6 +243989,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 755824119} m_CullTransparentMesh: 0 +--- !u!1 &756011630 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 756011631} + - component: {fileID: 756011633} + - component: {fileID: 756011632} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &756011631 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 756011630} + m_LocalRotation: {x: -0, 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: 572096907} + 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 &756011632 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 756011630} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &756011633 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 756011630} + m_CullTransparentMesh: 0 --- !u!1 &756708563 GameObject: m_ObjectHideFlags: 0 @@ -230401,6 +244137,117 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 756708563} m_CullTransparentMesh: 0 +--- !u!1 &757158255 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 757158256} + - component: {fileID: 757158258} + - component: {fileID: 757158257} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &757158256 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 757158255} + m_LocalRotation: {x: -0, 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: 145795803} + 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 &757158257 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 757158255} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &757158258 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 757158255} + m_CullTransparentMesh: 0 +--- !u!1 &757200162 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 757200163} + 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 &757200163 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 757200162} + m_LocalRotation: {x: 0, 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: 204717442} + - {fileID: 588552824} + m_Father: {fileID: 1130359736} + 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 &757584212 GameObject: m_ObjectHideFlags: 0 @@ -230475,6 +244322,122 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 757584212} m_CullTransparentMesh: 0 +--- !u!1 &757673679 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 757673680} + - component: {fileID: 757673682} + - component: {fileID: 757673681} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &757673680 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 757673679} + m_LocalRotation: {x: 0, 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: 480929929} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &757673681 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 757673679} + m_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: +--- !u!222 &757673682 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 757673679} + m_CullTransparentMesh: 0 +--- !u!1 &758082990 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 758082991} + 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 &758082991 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 758082990} + m_LocalRotation: {x: 0, 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: 781428352} + - {fileID: 2018166852} + m_Father: {fileID: 1357367415} + 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 &758201090 GameObject: m_ObjectHideFlags: 0 @@ -231204,15 +245167,15 @@ RectTransform: m_GameObject: {fileID: 760564082} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1107243629} m_RootOrder: 13 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 37.786682, y: 35.419983} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_AnchoredPosition: {x: 37.69229, y: 35.419983} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &760564084 MonoBehaviour: @@ -231258,6 +245221,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 760564082} m_CullTransparentMesh: 0 +--- !u!1 &760607473 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 760607474} + - component: {fileID: 760607476} + - component: {fileID: 760607475} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &760607474 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 760607473} + m_LocalRotation: {x: -0, 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: 499828581} + 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 &760607475 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 760607473} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &760607476 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 760607473} + m_CullTransparentMesh: 0 --- !u!1 &760669225 GameObject: m_ObjectHideFlags: 0 @@ -231283,7 +245320,7 @@ RectTransform: m_GameObject: {fileID: 760669225} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 425525370} - {fileID: 703642820} @@ -231374,6 +245411,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 760754072} m_CullTransparentMesh: 0 +--- !u!1 &761660698 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 761660699} + - component: {fileID: 761660701} + - component: {fileID: 761660700} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &761660699 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 761660698} + m_LocalRotation: {x: -0, 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: 2123864762} + 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 &761660700 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 761660698} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &761660701 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 761660698} + m_CullTransparentMesh: 0 --- !u!1 &761734139 GameObject: m_ObjectHideFlags: 0 @@ -231718,7 +245829,7 @@ RectTransform: m_GameObject: {fileID: 762122835} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1675652050} - {fileID: 244870986} @@ -231730,6 +245841,80 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &762199336 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 762199337} + - component: {fileID: 762199339} + - component: {fileID: 762199338} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &762199337 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 762199336} + m_LocalRotation: {x: -0, 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: 1017642353} + 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 &762199338 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 762199336} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &762199339 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 762199336} + m_CullTransparentMesh: 0 --- !u!1 &762650550 GameObject: m_ObjectHideFlags: 0 @@ -231915,7 +246100,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} @@ -231952,6 +246137,41 @@ RectTransform: - {fileID: 968676956} - {fileID: 781408761} - {fileID: 843774604} + - {fileID: 1302657967} + - {fileID: 732841202} + - {fileID: 305863580} + - {fileID: 1522332194} + - {fileID: 1612797219} + - {fileID: 780211314} + - {fileID: 274095385} + - {fileID: 885240254} + - {fileID: 1284153696} + - {fileID: 763616753} + - {fileID: 1253473296} + - {fileID: 383951541} + - {fileID: 864401649} + - {fileID: 1491558723} + - {fileID: 1865611419} + - {fileID: 1812214064} + - {fileID: 1159458720} + - {fileID: 888853008} + - {fileID: 145795803} + - {fileID: 1012505106} + - {fileID: 654654531} + - {fileID: 30770545} + - {fileID: 534247077} + - {fileID: 797385103} + - {fileID: 1816971754} + - {fileID: 208947313} + - {fileID: 337111526} + - {fileID: 1103308593} + - {fileID: 476813756} + - {fileID: 2112926837} + - {fileID: 555302430} + - {fileID: 1454489188} + - {fileID: 1067931213} + - {fileID: 2146476318} + - {fileID: 157176023} m_Father: {fileID: 124833369} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -232034,6 +246254,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 763127856} m_CullTransparentMesh: 0 +--- !u!1 &763616752 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 763616753} + 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 &763616753 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 763616752} + m_LocalRotation: {x: 0, 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: 1996666697} + - {fileID: 1859866745} + m_Father: {fileID: 763052335} + m_RootOrder: 44 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &763735820 GameObject: m_ObjectHideFlags: 0 @@ -232200,6 +246457,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 763887548} m_CullTransparentMesh: 0 +--- !u!1 &764035423 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 764035424} + - component: {fileID: 764035426} + - component: {fileID: 764035425} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &764035424 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 764035423} + m_LocalRotation: {x: -0, 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: 797385103} + 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 &764035425 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 764035423} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &764035426 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 764035423} + m_CullTransparentMesh: 0 --- !u!1 &764130259 GameObject: m_ObjectHideFlags: 0 @@ -232229,15 +246560,15 @@ RectTransform: m_GameObject: {fileID: 764130259} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2057043785} m_RootOrder: 31 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 117.897644, y: 84.10359} - m_SizeDelta: {x: 37.004738, y: 19.412323} + m_AnchoredPosition: {x: 117.73062, y: 84.10359} + m_SizeDelta: {x: 37.338795, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &764130261 MonoBehaviour: @@ -233195,7 +247526,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} @@ -233206,9 +247537,9 @@ RectTransform: m_Father: {fileID: 627765467} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} --- !u!1 &767678097 @@ -233321,7 +247652,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} @@ -234170,7 +248501,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 91.96208, y: 23.412323} + m_SizeDelta: {x: 92.43398, y: 23.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &772474378 MonoBehaviour: @@ -234325,6 +248656,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &773238843 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 773238844} + - component: {fileID: 773238846} + - component: {fileID: 773238845} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &773238844 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 773238843} + m_LocalRotation: {x: 0, 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: 1061918617} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &773238845 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 773238843} + m_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 &773238846 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 773238843} + m_CullTransparentMesh: 0 --- !u!1 &773429716 GameObject: m_ObjectHideFlags: 0 @@ -235026,15 +249436,15 @@ RectTransform: m_GameObject: {fileID: 777057777} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2057043785} m_RootOrder: 30 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 89.49405, y: 55.699997} - m_SizeDelta: {x: 37.004738, y: 19.412323} + m_AnchoredPosition: {x: 89.32703, y: 55.699997} + m_SizeDelta: {x: 37.338795, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &777057779 MonoBehaviour: @@ -235626,6 +250036,43 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &780211313 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 780211314} + 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 &780211314 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 780211313} + m_LocalRotation: {x: 0, 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: 1305680977} + - {fileID: 23017197} + m_Father: {fileID: 763052335} + m_RootOrder: 40 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &780230530 GameObject: m_ObjectHideFlags: 0 @@ -236123,7 +250570,7 @@ RectTransform: m_GameObject: {fileID: 781408760} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 663177071} - {fileID: 821779310} @@ -236135,6 +250582,80 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &781428351 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 781428352} + - component: {fileID: 781428354} + - component: {fileID: 781428353} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &781428352 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 781428351} + m_LocalRotation: {x: -0, 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: 758082991} + 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 &781428353 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 781428351} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &781428354 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 781428351} + m_CullTransparentMesh: 0 --- !u!1 &781719931 GameObject: m_ObjectHideFlags: 0 @@ -236423,10 +250944,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: -304} - 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: 0} --- !u!114 &782651942 MonoBehaviour: @@ -237317,7 +251838,7 @@ RectTransform: m_GameObject: {fileID: 782862162} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1033915032} - {fileID: 815481612} @@ -237561,6 +252082,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &783401888 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 783401889} + - component: {fileID: 783401891} + - component: {fileID: 783401890} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &783401889 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 783401888} + m_LocalRotation: {x: 0, 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: 1284153696} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &783401890 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 783401888} + m_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 &783401891 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 783401888} + m_CullTransparentMesh: 0 --- !u!1 &783441185 GameObject: m_ObjectHideFlags: 0 @@ -237857,7 +252457,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 784778749} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -238060,7 +252660,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 785713739} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -238806,6 +253406,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 787942017} m_CullTransparentMesh: 0 +--- !u!1 &788254300 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 788254301} + - component: {fileID: 788254303} + - component: {fileID: 788254302} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &788254301 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 788254300} + m_LocalRotation: {x: -0, 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: 30770545} + 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 &788254302 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 788254300} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &788254303 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 788254300} + m_CullTransparentMesh: 0 --- !u!1 &789080480 GameObject: m_ObjectHideFlags: 0 @@ -239886,6 +254560,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 793066511} m_CullTransparentMesh: 0 +--- !u!1 &793737914 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 793737915} + - component: {fileID: 793737917} + - component: {fileID: 793737916} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &793737915 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 793737914} + m_LocalRotation: {x: 0, 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: 848766828} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &793737916 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 793737914} + m_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: +--- !u!222 &793737917 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 793737914} + m_CullTransparentMesh: 0 --- !u!1 &793854895 GameObject: m_ObjectHideFlags: 0 @@ -240467,7 +255220,7 @@ RectTransform: m_GameObject: {fileID: 795497804} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1637519420} - {fileID: 362127290} @@ -240590,6 +255343,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &795899782 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 795899783} + - component: {fileID: 795899785} + - component: {fileID: 795899784} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &795899783 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 795899782} + m_LocalRotation: {x: 0, 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: 1339760283} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &795899784 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 795899782} + m_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 &795899785 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 795899782} + m_CullTransparentMesh: 0 --- !u!1 &795958832 GameObject: m_ObjectHideFlags: 0 @@ -241057,6 +255889,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &797385102 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 797385103} + m_Layer: 0 + m_Name: label_3_2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &797385103 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 797385102} + m_LocalRotation: {x: 0, 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: 764035424} + - {fileID: 229878761} + m_Father: {fileID: 763052335} + m_RootOrder: 58 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &797408713 GameObject: m_ObjectHideFlags: 0 @@ -241084,7 +255953,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 797408713} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -241519,7 +256388,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 799270921} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -241802,6 +256671,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 800892342} m_CullTransparentMesh: 0 +--- !u!1 &801469167 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 801469168} + - component: {fileID: 801469170} + - component: {fileID: 801469169} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &801469168 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 801469167} + m_LocalRotation: {x: 0, 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: 1044290086} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &801469169 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 801469167} + m_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 &801469170 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 801469167} + m_CullTransparentMesh: 0 --- !u!1 &801826404 GameObject: m_ObjectHideFlags: 0 @@ -241827,7 +256775,7 @@ RectTransform: m_GameObject: {fileID: 801826404} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 232777188} - {fileID: 1090095992} @@ -241866,7 +256814,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} @@ -241896,6 +256844,34 @@ RectTransform: - {fileID: 898892667} - {fileID: 1153620592} - {fileID: 1610004042} + - {fileID: 1549872109} + - {fileID: 1523078661} + - {fileID: 1796907728} + - {fileID: 720141828} + - {fileID: 1202256474} + - {fileID: 562186460} + - {fileID: 672199290} + - {fileID: 847743055} + - {fileID: 634028870} + - {fileID: 139353692} + - {fileID: 1261985956} + - {fileID: 981331743} + - {fileID: 171713158} + - {fileID: 1351243774} + - {fileID: 1619029778} + - {fileID: 848766828} + - {fileID: 1221988589} + - {fileID: 11567882} + - {fileID: 1276839334} + - {fileID: 1921096791} + - {fileID: 1142719707} + - {fileID: 287643018} + - {fileID: 524351218} + - {fileID: 1284620107} + - {fileID: 2031621732} + - {fileID: 467981844} + - {fileID: 1169806581} + - {fileID: 1977431411} m_Father: {fileID: 33516770} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -242409,6 +257385,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 &803341094 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 803341095} + - component: {fileID: 803341097} + - component: {fileID: 803341096} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &803341095 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 803341094} + m_LocalRotation: {x: -0, 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: 836193998} + 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 &803341096 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 803341094} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &803341097 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 803341094} + m_CullTransparentMesh: 0 --- !u!1 &804056303 GameObject: m_ObjectHideFlags: 0 @@ -242436,7 +257486,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} @@ -242601,6 +257651,80 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &804634913 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 804634914} + - component: {fileID: 804634916} + - component: {fileID: 804634915} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &804634914 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 804634913} + m_LocalRotation: {x: -0, 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: 1738689071} + 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 &804634915 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 804634913} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &804634916 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 804634913} + m_CullTransparentMesh: 0 --- !u!1 &804882846 GameObject: m_ObjectHideFlags: 0 @@ -242628,7 +257752,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 804882846} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -243031,6 +258155,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 806694123} m_CullTransparentMesh: 0 +--- !u!1 &807036143 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 807036144} + - component: {fileID: 807036146} + - component: {fileID: 807036145} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &807036144 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 807036143} + m_LocalRotation: {x: -0, 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: 1785100649} + 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 &807036145 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 807036143} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &807036146 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 807036143} + m_CullTransparentMesh: 0 --- !u!1 &807509738 GameObject: m_ObjectHideFlags: 0 @@ -243603,7 +258801,7 @@ RectTransform: m_GameObject: {fileID: 809719143} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1938816002} - {fileID: 1917889068} @@ -243814,6 +259012,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 810292880} m_CullTransparentMesh: 0 +--- !u!1 &810474512 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 810474513} + - component: {fileID: 810474515} + - component: {fileID: 810474514} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &810474513 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 810474512} + m_LocalRotation: {x: 0, 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: 1780232632} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &810474514 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 810474512} + m_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 &810474515 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 810474512} + m_CullTransparentMesh: 0 --- !u!1 &810598945 GameObject: m_ObjectHideFlags: 0 @@ -243841,7 +259118,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 810598945} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -244124,6 +259401,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0, y: 0} +--- !u!1 &812173396 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 812173397} + - component: {fileID: 812173399} + - component: {fileID: 812173398} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &812173397 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 812173396} + m_LocalRotation: {x: 0, 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: 1737151524} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &812173398 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 812173396} + m_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 &812173399 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 812173396} + m_CullTransparentMesh: 0 --- !u!1 &812428294 GameObject: m_ObjectHideFlags: 0 @@ -245098,6 +260454,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 814226691} m_CullTransparentMesh: 0 +--- !u!1 &814983705 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 814983706} + - component: {fileID: 814983708} + - component: {fileID: 814983707} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &814983706 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 814983705} + m_LocalRotation: {x: 0, 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: 242649646} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &814983707 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 814983705} + m_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 &814983708 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 814983705} + m_CullTransparentMesh: 0 --- !u!1 &815004350 GameObject: m_ObjectHideFlags: 0 @@ -245315,7 +260750,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 815872041} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -246785,7 +262220,7 @@ RectTransform: m_GameObject: {fileID: 820594315} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 449267886} m_RootOrder: 3 @@ -246793,7 +262228,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 128.16} - m_SizeDelta: {x: 30.331753, y: 19.412323} + m_SizeDelta: {x: 30.788128, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &820594317 MonoBehaviour: @@ -246864,7 +262299,7 @@ RectTransform: m_GameObject: {fileID: 820711622} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1793744139} - {fileID: 1273562610} @@ -248172,7 +263607,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 824936421} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -248228,6 +263663,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 824936421} m_CullTransparentMesh: 0 +--- !u!1 &825020744 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 825020745} + - component: {fileID: 825020747} + - component: {fileID: 825020746} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &825020745 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 825020744} + m_LocalRotation: {x: -0, 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: 588302154} + 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 &825020746 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 825020744} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &825020747 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 825020744} + m_CullTransparentMesh: 0 --- !u!1 &825281057 GameObject: m_ObjectHideFlags: 0 @@ -248793,7 +264302,7 @@ RectTransform: m_GameObject: {fileID: 827078666} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1618338826} - {fileID: 8488348} @@ -249236,6 +264745,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 828812007} m_CullTransparentMesh: 0 +--- !u!1 &829871820 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 829871821} + m_Layer: 0 + m_Name: label_4_4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &829871821 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 829871820} + m_LocalRotation: {x: 0, 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: 1559819831} + - {fileID: 394564916} + m_Father: {fileID: 300972851} + m_RootOrder: 67 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &829943492 GameObject: m_ObjectHideFlags: 0 @@ -249561,7 +265107,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 831013492} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: -0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -249570,7 +265116,7 @@ RectTransform: 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: -30} + m_AnchoredPosition: {x: -0, y: -30} m_SizeDelta: {x: 584, y: 14} m_Pivot: {x: 0.5, y: 1} --- !u!114 &831013494 @@ -249696,6 +265242,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 831060492} m_CullTransparentMesh: 0 +--- !u!1 &831339248 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 831339249} + 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 &831339249 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 831339248} + m_LocalRotation: {x: 0, 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: 462844496} + - {fileID: 1543026009} + m_Father: {fileID: 2097019616} + 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 &831798777 GameObject: m_ObjectHideFlags: 0 @@ -250649,6 +266232,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 836173494} m_CullTransparentMesh: 0 +--- !u!1 &836193997 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 836193998} + 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 &836193998 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 836193997} + m_LocalRotation: {x: 0, 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: 803341095} + - {fileID: 1912969427} + m_Father: {fileID: 1338692539} + 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 &836226033 GameObject: m_ObjectHideFlags: 0 @@ -251262,7 +266882,7 @@ RectTransform: m_GameObject: {fileID: 837968232} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 2009499870} - {fileID: 181721366} @@ -251690,7 +267310,7 @@ RectTransform: m_GameObject: {fileID: 839225789} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 643303509} - {fileID: 619428164} @@ -252048,6 +267668,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 840453137} m_CullTransparentMesh: 0 +--- !u!1 &840487096 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 840487097} + 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 &840487097 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 840487096} + m_LocalRotation: {x: 0, 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: 1590463521} + - {fileID: 1568972441} + m_Father: {fileID: 1009125081} + 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 &840542183 GameObject: m_ObjectHideFlags: 0 @@ -252280,6 +267937,43 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &841024190 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 841024191} + 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 &841024191 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 841024190} + m_LocalRotation: {x: 0, 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: 219503730} + - {fileID: 1179475135} + m_Father: {fileID: 1357367415} + 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 &841181174 GameObject: m_ObjectHideFlags: 0 @@ -252428,6 +268122,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 842063969} m_CullTransparentMesh: 0 +--- !u!1 &842733556 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 842733557} + 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 &842733557 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 842733556} + m_LocalRotation: {x: 0, 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: 484863883} + - {fileID: 282092733} + m_Father: {fileID: 1357367415} + 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 &843095826 GameObject: m_ObjectHideFlags: 0 @@ -252763,7 +268494,7 @@ RectTransform: m_GameObject: {fileID: 843774603} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 653489429} - {fileID: 1683507981} @@ -253424,7 +269155,7 @@ RectTransform: m_GameObject: {fileID: 845968878} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1614181015} - {fileID: 1307514753} @@ -253700,6 +269431,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &846890713 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 846890714} + m_Layer: 0 + m_Name: label_4_6 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &846890714 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 846890713} + m_LocalRotation: {x: 0, 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: 863283854} + - {fileID: 520299390} + m_Father: {fileID: 300972851} + m_RootOrder: 69 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &846920304 GameObject: m_ObjectHideFlags: 0 @@ -253927,6 +269695,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 847130478} m_CullTransparentMesh: 0 +--- !u!1 &847743054 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 847743055} + 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 &847743055 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 847743054} + m_LocalRotation: {x: 0, 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: 1061898030} + - {fileID: 1851525256} + m_Father: {fileID: 801884283} + m_RootOrder: 35 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &847878302 GameObject: m_ObjectHideFlags: 0 @@ -254325,6 +270130,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 848450091} m_CullTransparentMesh: 0 +--- !u!1 &848766827 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 848766828} + 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 &848766828 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 848766827} + m_LocalRotation: {x: 0, 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: 1307103555} + - {fileID: 793737915} + m_Father: {fileID: 801884283} + m_RootOrder: 43 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &848781418 GameObject: m_ObjectHideFlags: 0 @@ -254352,7 +270194,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 848781418} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -254741,7 +270583,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 @@ -255277,7 +271119,7 @@ RectTransform: m_GameObject: {fileID: 851216510} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 2035178323} - {fileID: 139278995} @@ -255316,7 +271158,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 851683731} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -255844,6 +271686,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 853139263} m_CullTransparentMesh: 0 +--- !u!1 &855330696 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 855330697} + 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 &855330697 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 855330696} + m_LocalRotation: {x: 0, 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: 503352554} + - {fileID: 116993039} + m_Father: {fileID: 1357367415} + 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 &855354098 GameObject: m_ObjectHideFlags: 0 @@ -255918,6 +271797,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 855354098} m_CullTransparentMesh: 0 +--- !u!1 &856220971 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 856220972} + 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 &856220972 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 856220971} + m_LocalRotation: {x: 0, 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: 391029284} + - {fileID: 1801474109} + m_Father: {fileID: 488529639} + 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 &856735372 GameObject: m_ObjectHideFlags: 0 @@ -255945,7 +271861,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 856735372} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -256391,6 +272307,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 858924316} m_CullTransparentMesh: 0 +--- !u!1 &859252394 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 859252395} + - component: {fileID: 859252397} + - component: {fileID: 859252396} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &859252395 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 859252394} + m_LocalRotation: {x: -0, 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: 242649646} + 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 &859252396 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 859252394} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &859252397 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 859252394} + m_CullTransparentMesh: 0 --- !u!1 &859358884 GameObject: m_ObjectHideFlags: 0 @@ -257689,7 +273679,7 @@ RectTransform: m_GameObject: {fileID: 862078822} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 2104191366} - {fileID: 2056613939} @@ -257701,6 +273691,80 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &862133748 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 862133749} + - component: {fileID: 862133751} + - component: {fileID: 862133750} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &862133749 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 862133748} + m_LocalRotation: {x: -0, 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: 369829356} + 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 &862133750 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 862133748} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &862133751 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 862133748} + m_CullTransparentMesh: 0 --- !u!1 &862184381 GameObject: m_ObjectHideFlags: 0 @@ -257942,6 +274006,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 863083387} m_CullTransparentMesh: 0 +--- !u!1 &863283853 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 863283854} + - component: {fileID: 863283856} + - component: {fileID: 863283855} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &863283854 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 863283853} + m_LocalRotation: {x: -0, 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: 846890714} + 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 &863283855 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 863283853} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &863283856 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 863283853} + m_CullTransparentMesh: 0 --- !u!1 &863359372 GameObject: m_ObjectHideFlags: 0 @@ -258253,6 +274391,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 864315238} m_CullTransparentMesh: 0 +--- !u!1 &864401648 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 864401649} + 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 &864401649 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 864401648} + m_LocalRotation: {x: 0, 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: 1516723480} + - {fileID: 1449600535} + m_Father: {fileID: 763052335} + m_RootOrder: 47 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &864693422 GameObject: m_ObjectHideFlags: 0 @@ -258636,6 +274811,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 865379639} m_CullTransparentMesh: 0 +--- !u!1 &865504206 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 865504207} + 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 &865504207 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 865504206} + m_LocalRotation: {x: 0, 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: 1303030196} + - {fileID: 1407683094} + m_Father: {fileID: 1357367415} + 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 &866281858 GameObject: m_ObjectHideFlags: 0 @@ -258665,15 +274877,15 @@ RectTransform: m_GameObject: {fileID: 866281858} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1640796314} m_RootOrder: 10 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 128.70346, y: 64.149994} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_AnchoredPosition: {x: 128.79785, y: 64.149994} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &866281860 MonoBehaviour: @@ -259008,7 +275220,7 @@ RectTransform: m_GameObject: {fileID: 867047259} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1777975710} - {fileID: 1100848783} @@ -259355,7 +275567,7 @@ RectTransform: m_GameObject: {fileID: 868288800} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 309516741} - {fileID: 1391473933} @@ -259590,15 +275802,15 @@ RectTransform: m_GameObject: {fileID: 869001953} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2057043785} m_RootOrder: 29 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 79.097626, y: 16.90001} - m_SizeDelta: {x: 37.004738, y: 19.412323} + m_AnchoredPosition: {x: 78.9306, y: 16.90001} + m_SizeDelta: {x: 37.338795, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &869001955 MonoBehaviour: @@ -261344,6 +277556,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 873350815} m_CullTransparentMesh: 0 +--- !u!1 &873459708 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 873459709} + - component: {fileID: 873459711} + - component: {fileID: 873459710} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &873459709 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 873459708} + m_LocalRotation: {x: 0, 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: 654654531} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &873459710 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 873459708} + m_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: +--- !u!222 &873459711 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 873459708} + m_CullTransparentMesh: 0 --- !u!1 &874379579 GameObject: m_ObjectHideFlags: 0 @@ -261489,7 +277780,7 @@ RectTransform: m_GameObject: {fileID: 874471554} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1050293135} - {fileID: 1366633068} @@ -261580,6 +277871,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 874875296} m_CullTransparentMesh: 0 +--- !u!1 &874928640 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 874928641} + - component: {fileID: 874928643} + - component: {fileID: 874928642} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &874928641 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 874928640} + m_LocalRotation: {x: 0, 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: 981331743} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &874928642 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 874928640} + m_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 &874928643 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 874928640} + m_CullTransparentMesh: 0 --- !u!1 &875238702 GameObject: m_ObjectHideFlags: 0 @@ -262293,7 +278663,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 878433487} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -262724,6 +279094,159 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &879793627 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 879793628} + - component: {fileID: 879793630} + - component: {fileID: 879793629} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &879793628 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 879793627} + m_LocalRotation: {x: 0, 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: 888853008} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &879793629 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 879793627} + m_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: +--- !u!222 &879793630 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 879793627} + m_CullTransparentMesh: 0 +--- !u!1 &880204354 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 880204355} + - component: {fileID: 880204357} + - component: {fileID: 880204356} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &880204355 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 880204354} + m_LocalRotation: {x: -0, 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: 1389271525} + 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 &880204356 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 880204354} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &880204357 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 880204354} + m_CullTransparentMesh: 0 --- !u!1 &880327633 GameObject: m_ObjectHideFlags: 0 @@ -263126,15 +279649,15 @@ RectTransform: m_GameObject: {fileID: 881760594} m_LocalRotation: {x: 0, y: 0, z: 0.54068094, w: 0.8412278} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1910686491} m_RootOrder: 11 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 128.50589, y: -64.15001} - m_SizeDelta: {x: 70.36967, y: 19.412323} + m_AnchoredPosition: {x: 128.69464, y: -64.15001} + m_SizeDelta: {x: 70.747185, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &881760596 MonoBehaviour: @@ -263437,7 +279960,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} @@ -263447,9 +279970,9 @@ RectTransform: m_Father: {fileID: 930446419} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} --- !u!1 &883067954 @@ -263606,10 +280129,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: -1520} - 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: 0} --- !u!114 &883296609 MonoBehaviour: @@ -264427,7 +280950,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} @@ -264786,6 +281309,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 884951378} m_CullTransparentMesh: 0 +--- !u!1 &885240253 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 885240254} + 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 &885240254 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 885240253} + m_LocalRotation: {x: 0, 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: 1166346571} + - {fileID: 115172236} + m_Father: {fileID: 763052335} + m_RootOrder: 42 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &885482967 GameObject: m_ObjectHideFlags: 0 @@ -264980,6 +281540,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 885709529} m_CullTransparentMesh: 0 +--- !u!1 &885986486 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 885986487} + - component: {fileID: 885986489} + - component: {fileID: 885986488} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &885986487 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 885986486} + m_LocalRotation: {x: -0, 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: 2031621732} + 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 &885986488 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 885986486} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &885986489 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 885986486} + m_CullTransparentMesh: 0 --- !u!1 &886060953 GameObject: m_ObjectHideFlags: 0 @@ -265577,7 +282211,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 887380771} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -265874,6 +282508,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 887571003} m_CullTransparentMesh: 0 +--- !u!1 &887798343 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 887798344} + - component: {fileID: 887798346} + - component: {fileID: 887798345} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &887798344 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 887798343} + m_LocalRotation: {x: 0, 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: 164720602} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &887798345 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 887798343} + m_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 &887798346 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 887798343} + m_CullTransparentMesh: 0 --- !u!1 &887969936 GameObject: m_ObjectHideFlags: 0 @@ -266188,6 +282901,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &888853007 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 888853008} + 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 &888853008 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 888853007} + m_LocalRotation: {x: 0, 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: 2134179980} + - {fileID: 879793628} + m_Father: {fileID: 763052335} + m_RootOrder: 52 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &889009676 GameObject: m_ObjectHideFlags: 0 @@ -266267,6 +283017,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 889009676} m_CullTransparentMesh: 0 +--- !u!1 &889134645 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 889134646} + - component: {fileID: 889134648} + - component: {fileID: 889134647} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &889134646 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 889134645} + m_LocalRotation: {x: 0, 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: 893527414} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &889134647 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 889134645} + m_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 &889134648 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 889134645} + m_CullTransparentMesh: 0 --- !u!1 &889550921 GameObject: m_ObjectHideFlags: 0 @@ -267346,6 +284175,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 893504874} m_CullTransparentMesh: 0 +--- !u!1 &893527413 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 893527414} + 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 &893527414 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 893527413} + m_LocalRotation: {x: 0, 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: 1241552985} + - {fileID: 889134646} + m_Father: {fileID: 1009125081} + 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 &894011654 GameObject: m_ObjectHideFlags: 0 @@ -268156,7 +285022,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 896259668} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -268649,7 +285515,7 @@ RectTransform: m_GameObject: {fileID: 898892666} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1102420370} - {fileID: 1534243501} @@ -269416,7 +286282,7 @@ RectTransform: m_GameObject: {fileID: 900378130} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 917444665} - {fileID: 184998168} @@ -270242,6 +287108,159 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 903512713} m_CullTransparentMesh: 0 +--- !u!1 &904027001 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 904027002} + - component: {fileID: 904027004} + - component: {fileID: 904027003} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &904027002 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 904027001} + m_LocalRotation: {x: 0, 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: 2112926837} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &904027003 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 904027001} + m_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.5686275, g: 0.78039217, b: 0.68235296, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &904027004 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 904027001} + m_CullTransparentMesh: 0 +--- !u!1 &904057371 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 904057372} + - component: {fileID: 904057374} + - component: {fileID: 904057373} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &904057372 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 904057371} + m_LocalRotation: {x: -0, 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: 1445288285} + 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 &904057373 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 904057371} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &904057374 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 904057371} + m_CullTransparentMesh: 0 --- !u!1 &904081044 GameObject: m_ObjectHideFlags: 0 @@ -270395,6 +287414,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 904226665} m_CullTransparentMesh: 0 +--- !u!1 &905056424 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 905056425} + - component: {fileID: 905056427} + - component: {fileID: 905056426} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &905056425 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 905056424} + m_LocalRotation: {x: -0, 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: 1523078661} + 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 &905056426 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 905056424} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &905056427 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 905056424} + m_CullTransparentMesh: 0 --- !u!1 &905111504 GameObject: m_ObjectHideFlags: 0 @@ -270730,7 +287823,7 @@ RectTransform: m_GameObject: {fileID: 905875567} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 2143188637} - {fileID: 1204209563} @@ -270816,6 +287909,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 906689767} m_CullTransparentMesh: 0 +--- !u!1 &906710899 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 906710900} + 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 &906710900 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 906710899} + m_LocalRotation: {x: 0, 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: 2117352402} + - {fileID: 17952619} + m_Father: {fileID: 2097019616} + 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 &906727074 GameObject: m_ObjectHideFlags: 0 @@ -271954,7 +289084,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} @@ -271994,7 +289124,7 @@ RectTransform: m_GameObject: {fileID: 910233285} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 511043966} - {fileID: 869326045} @@ -272190,7 +289320,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 910749564} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -273122,7 +290252,7 @@ RectTransform: m_GameObject: {fileID: 913393818} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1280737926} - {fileID: 1589967466} @@ -273553,7 +290683,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} @@ -274095,15 +291225,15 @@ RectTransform: m_GameObject: {fileID: 916094505} m_LocalRotation: {x: 0, y: 0, z: -0.23259673, w: 0.9725733} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 926932800} m_RootOrder: 9 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 61.332397, y: 111.11105} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_AnchoredPosition: {x: 61.42679, y: 111.11105} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &916094507 MonoBehaviour: @@ -274226,6 +291356,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 917003875} m_CullTransparentMesh: 0 +--- !u!1 &917032267 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 917032268} + - component: {fileID: 917032270} + - component: {fileID: 917032269} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &917032268 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 917032267} + m_LocalRotation: {x: 0, 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: 337111526} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &917032269 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 917032267} + m_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.83137256, g: 0.50980395, b: 0.39607844, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &917032270 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 917032267} + m_CullTransparentMesh: 0 --- !u!1 &917159410 GameObject: m_ObjectHideFlags: 0 @@ -274406,7 +291615,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 917629831} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -275169,7 +292378,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 920129649} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -275683,6 +292892,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &922350122 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 922350123} + - component: {fileID: 922350125} + - component: {fileID: 922350124} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &922350123 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 922350122} + m_LocalRotation: {x: -0, 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: 1773487218} + 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 &922350124 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 922350122} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &922350125 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 922350122} + m_CullTransparentMesh: 0 --- !u!1 &922518959 GameObject: m_ObjectHideFlags: 0 @@ -275762,6 +293045,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 922518959} m_CullTransparentMesh: 0 +--- !u!1 &922556113 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 922556114} + - component: {fileID: 922556116} + - component: {fileID: 922556115} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &922556114 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 922556113} + m_LocalRotation: {x: -0, 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: 1284620107} + 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 &922556115 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 922556113} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &922556116 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 922556113} + m_CullTransparentMesh: 0 --- !u!1 &922693717 GameObject: m_ObjectHideFlags: 0 @@ -276136,7 +293493,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 923731094} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -276601,7 +293958,7 @@ RectTransform: m_GameObject: {fileID: 925486926} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1210514592} m_Father: {fileID: 1910686491} @@ -277166,10 +294523,10 @@ RectTransform: m_Father: {fileID: 37761823} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 590, y: -1024} + m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} --- !u!114 &926932801 MonoBehaviour: @@ -277744,6 +295101,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} +--- !u!1 &927132393 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 927132394} + - component: {fileID: 927132396} + - component: {fileID: 927132395} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &927132394 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 927132393} + m_LocalRotation: {x: -0, 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: 634028870} + 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 &927132395 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 927132393} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &927132396 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 927132393} + m_CullTransparentMesh: 0 --- !u!1 &927295139 GameObject: m_ObjectHideFlags: 0 @@ -277771,7 +295202,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} @@ -278083,7 +295514,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 928225615} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -278606,10 +296037,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: -912} - 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: 0} --- !u!114 &930446420 MonoBehaviour: @@ -280256,6 +297687,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &932358525 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 932358526} + - component: {fileID: 932358528} + - component: {fileID: 932358527} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &932358526 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 932358525} + m_LocalRotation: {x: 0, 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: 1533327009} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &932358527 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 932358525} + m_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 &932358528 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 932358525} + m_CullTransparentMesh: 0 --- !u!1 &932657596 GameObject: m_ObjectHideFlags: 0 @@ -281111,15 +298621,15 @@ RectTransform: m_GameObject: {fileID: 936242088} m_LocalRotation: {x: 0, y: 0, z: 0.84689, w: 0.53176814} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1910686491} m_RootOrder: 13 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -122.74347, y: -64.14999} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_AnchoredPosition: {x: -122.837845, y: -64.14999} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &936242090 MonoBehaviour: @@ -282881,6 +300391,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 937363606} m_CullTransparentMesh: 0 +--- !u!1 &937965345 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 937965346} + - component: {fileID: 937965348} + - component: {fileID: 937965347} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &937965346 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 937965345} + m_LocalRotation: {x: -0, 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: 467981844} + 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 &937965347 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 937965345} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &937965348 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 937965345} + m_CullTransparentMesh: 0 --- !u!1 &938404464 GameObject: m_ObjectHideFlags: 0 @@ -282943,7 +300527,7 @@ RectTransform: m_GameObject: {fileID: 938443889} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 524948414} - {fileID: 1670529945} @@ -283797,7 +301381,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 943410417} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -283853,6 +301437,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 943410417} m_CullTransparentMesh: 0 +--- !u!1 &943483653 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 943483654} + 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 &943483654 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 943483653} + m_LocalRotation: {x: 0, 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: 1585188424} + - {fileID: 1979336719} + m_Father: {fileID: 1357367415} + 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 &943658257 GameObject: m_ObjectHideFlags: 0 @@ -287106,7 +304727,7 @@ RectTransform: m_GameObject: {fileID: 952473452} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1152822789} - {fileID: 1837529241} @@ -287147,15 +304768,15 @@ RectTransform: m_GameObject: {fileID: 953096501} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1640796314} m_RootOrder: 11 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 146.2959, y: -64.15001} - m_SizeDelta: {x: 70.36967, y: 19.412323} + m_AnchoredPosition: {x: 146.48465, y: -64.15001} + m_SizeDelta: {x: 70.747185, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &953096503 MonoBehaviour: @@ -287903,6 +305524,43 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &956256036 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 956256037} + 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 &956256037 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 956256036} + m_LocalRotation: {x: 0, 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: 164258641} + - {fileID: 1420337270} + m_Father: {fileID: 2097019616} + 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 &956283407 GameObject: m_ObjectHideFlags: 0 @@ -288431,7 +306089,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 958569640} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -290557,7 +308215,7 @@ RectTransform: m_GameObject: {fileID: 967408011} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1342280426} - {fileID: 2116112229} @@ -290752,7 +308410,7 @@ RectTransform: m_GameObject: {fileID: 968676955} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 685352717} - {fileID: 318214435} @@ -290870,7 +308528,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 969116168} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -290926,6 +308584,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 969116168} m_CullTransparentMesh: 0 +--- !u!1 &969277844 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 969277845} + - component: {fileID: 969277847} + - component: {fileID: 969277846} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &969277845 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 969277844} + m_LocalRotation: {x: -0, 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: 730880176} + 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 &969277846 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 969277844} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &969277847 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 969277844} + m_CullTransparentMesh: 0 --- !u!1 &969906842 GameObject: m_ObjectHideFlags: 0 @@ -291853,7 +309585,7 @@ RectTransform: m_GameObject: {fileID: 971520526} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1637596140} - {fileID: 1507105569} @@ -292421,6 +310153,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 973239332} m_CullTransparentMesh: 0 +--- !u!1 &973520232 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 973520233} + 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 &973520233 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 973520232} + m_LocalRotation: {x: 0, 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: 986911060} + - {fileID: 87416866} + m_Father: {fileID: 300972851} + m_RootOrder: 43 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &973548030 GameObject: m_ObjectHideFlags: 0 @@ -292610,7 +310379,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 973737773} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -293003,7 +310772,7 @@ RectTransform: 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: -30} + m_AnchoredPosition: {x: 0, y: -30} m_SizeDelta: {x: 584, y: 14} m_Pivot: {x: 0.5, y: 1} --- !u!114 &975725359 @@ -294170,6 +311939,43 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &981331742 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 981331743} + 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 &981331743 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 981331742} + m_LocalRotation: {x: 0, 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: 1591656545} + - {fileID: 874928641} + m_Father: {fileID: 801884283} + m_RootOrder: 39 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &982486398 GameObject: m_ObjectHideFlags: 0 @@ -294791,6 +312597,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 985150141} m_CullTransparentMesh: 0 +--- !u!1 &985278120 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 985278121} + - component: {fileID: 985278123} + - component: {fileID: 985278122} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &985278121 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 985278120} + m_LocalRotation: {x: 0, 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: 1982412280} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &985278122 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 985278120} + m_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 &985278123 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 985278120} + m_CullTransparentMesh: 0 --- !u!1 &986201797 GameObject: m_ObjectHideFlags: 0 @@ -294953,6 +312838,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 986660359} m_CullTransparentMesh: 0 +--- !u!1 &986911059 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 986911060} + - component: {fileID: 986911062} + - component: {fileID: 986911061} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &986911060 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 986911059} + m_LocalRotation: {x: -0, 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: 973520233} + 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 &986911061 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 986911059} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &986911062 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 986911059} + m_CullTransparentMesh: 0 --- !u!1 &986961456 GameObject: m_ObjectHideFlags: 0 @@ -314590,7 +332549,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 988527048} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -314789,7 +332748,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} @@ -314806,6 +332765,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} +--- !u!1 &988878004 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 988878005} + 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 &988878005 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 988878004} + m_LocalRotation: {x: 0, 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: 1149664598} + - {fileID: 1574608356} + m_Father: {fileID: 1130359736} + 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 &989234060 GameObject: m_ObjectHideFlags: 0 @@ -315065,7 +333061,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 990348286} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -315528,7 +333524,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} @@ -315619,6 +333615,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 991873288} m_CullTransparentMesh: 0 +--- !u!1 &992046858 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 992046859} + - component: {fileID: 992046861} + - component: {fileID: 992046860} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &992046859 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 992046858} + m_LocalRotation: {x: 0, 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: 369829356} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &992046860 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 992046858} + m_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 &992046861 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 992046858} + m_CullTransparentMesh: 0 --- !u!1 &992217368 GameObject: m_ObjectHideFlags: 0 @@ -315725,7 +333800,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} @@ -315735,9 +333810,9 @@ RectTransform: m_Father: {fileID: 883296608} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} --- !u!1 &992638302 @@ -315777,6 +333852,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &993600582 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 993600583} + - component: {fileID: 993600585} + - component: {fileID: 993600584} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &993600583 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 993600582} + m_LocalRotation: {x: 0, 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: 2031621732} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &993600584 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 993600582} + m_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.83137256, g: 0.50980395, b: 0.39607844, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &993600585 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 993600582} + m_CullTransparentMesh: 0 --- !u!1 &994115990 GameObject: m_ObjectHideFlags: 0 @@ -316731,6 +334885,122 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 996802837} m_CullTransparentMesh: 0 +--- !u!1 &997112250 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 997112251} + - component: {fileID: 997112253} + - component: {fileID: 997112252} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &997112251 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 997112250} + m_LocalRotation: {x: 0, 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: 1816971754} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &997112252 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 997112250} + m_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.83137256, g: 0.50980395, b: 0.39607844, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &997112253 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 997112250} + m_CullTransparentMesh: 0 +--- !u!1 &997134933 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 997134934} + 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 &997134934 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 997134933} + m_LocalRotation: {x: 0, 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: 1058203851} + - {fileID: 1877710057} + m_Father: {fileID: 2097019616} + 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 &997158503 GameObject: m_ObjectHideFlags: 0 @@ -317215,7 +335485,7 @@ RectTransform: m_GameObject: {fileID: 997958855} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 2087589424} - {fileID: 1526771686} @@ -317301,6 +335571,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 998426440} m_CullTransparentMesh: 0 +--- !u!1 &998699814 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 998699815} + - component: {fileID: 998699817} + - component: {fileID: 998699816} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &998699815 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 998699814} + m_LocalRotation: {x: 0, 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: 536800579} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &998699816 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 998699814} + m_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 &998699817 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 998699814} + m_CullTransparentMesh: 0 --- !u!1 &999760137 GameObject: m_ObjectHideFlags: 0 @@ -317850,7 +336199,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1000781634} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -318547,6 +336896,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1001374049} m_CullTransparentMesh: 0 +--- !u!1 &1001670840 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1001670841} + 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 &1001670841 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1001670840} + m_LocalRotation: {x: 0, 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: 1285430557} + - {fileID: 1550942590} + m_Father: {fileID: 1357367415} + 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 &1002241100 GameObject: m_ObjectHideFlags: 0 @@ -318582,7 +336968,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 56.777252, y: 23.412323} + m_SizeDelta: {x: 57.06039, y: 23.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1002241102 MonoBehaviour: @@ -318853,6 +337239,80 @@ RectTransform: m_AnchoredPosition: {x: 3, y: -3} m_SizeDelta: {x: 389, y: 300} m_Pivot: {x: 0, y: 1} +--- !u!1 &1003576893 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1003576894} + - component: {fileID: 1003576896} + - component: {fileID: 1003576895} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1003576894 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1003576893} + m_LocalRotation: {x: -0, 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: 1306825820} + 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 &1003576895 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1003576893} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1003576896 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1003576893} + m_CullTransparentMesh: 0 --- !u!1 &1003720261 GameObject: m_ObjectHideFlags: 0 @@ -319194,7 +337654,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1004405784} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -319275,7 +337735,7 @@ RectTransform: m_GameObject: {fileID: 1004806153} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 824125097} - {fileID: 1808456368} @@ -319391,7 +337851,7 @@ RectTransform: m_GameObject: {fileID: 1005324645} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1910686491} m_RootOrder: 1 @@ -319701,7 +338161,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1006329596} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -319865,7 +338325,7 @@ RectTransform: m_GameObject: {fileID: 1006730745} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1916318149} - {fileID: 1100241058} @@ -319930,6 +338390,30 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - eventID: 2 callback: m_PersistentCalls: @@ -320339,6 +338823,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1008009178} m_CullTransparentMesh: 0 +--- !u!1 &1008407607 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1008407608} + - component: {fileID: 1008407610} + - component: {fileID: 1008407609} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1008407608 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1008407607} + m_LocalRotation: {x: 0, 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: 200575469} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1008407609 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1008407607} + m_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 &1008407610 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1008407607} + m_CullTransparentMesh: 0 --- !u!1 &1008491813 GameObject: m_ObjectHideFlags: 0 @@ -320708,7 +339271,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} @@ -320724,6 +339287,20 @@ RectTransform: - {fileID: 2089658403} - {fileID: 837968233} - {fileID: 1468153196} + - {fileID: 684755772} + - {fileID: 840487097} + - {fileID: 373124437} + - {fileID: 893527414} + - {fileID: 5332504} + - {fileID: 1724292368} + - {fileID: 536800579} + - {fileID: 1533327009} + - {fileID: 1044290086} + - {fileID: 211883671} + - {fileID: 91839342} + - {fileID: 1903167407} + - {fileID: 1555222915} + - {fileID: 188951381} m_Father: {fileID: 1835109743} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -320993,7 +339570,7 @@ RectTransform: m_GameObject: {fileID: 1012231626} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1926601729} - {fileID: 1902362304} @@ -321162,6 +339739,117 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1012422755} m_CullTransparentMesh: 0 +--- !u!1 &1012505105 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1012505106} + 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 &1012505106 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1012505105} + m_LocalRotation: {x: 0, 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: 87088380} + - {fileID: 361248152} + m_Father: {fileID: 763052335} + m_RootOrder: 54 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1012974094 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1012974095} + - component: {fileID: 1012974097} + - component: {fileID: 1012974096} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1012974095 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1012974094} + m_LocalRotation: {x: -0, 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: 373124437} + 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 &1012974096 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1012974094} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1012974097 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1012974094} + m_CullTransparentMesh: 0 --- !u!1 &1013179001 GameObject: m_ObjectHideFlags: 0 @@ -321382,7 +340070,7 @@ RectTransform: m_GameObject: {fileID: 1013934063} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 2024806223} - {fileID: 1745547523} @@ -322363,6 +341051,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 &1016998314 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1016998315} + - component: {fileID: 1016998317} + - component: {fileID: 1016998316} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1016998315 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1016998314} + m_LocalRotation: {x: -0, 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: 208947313} + 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 &1016998316 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1016998314} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1016998317 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1016998314} + m_CullTransparentMesh: 0 --- !u!1 &1017078272 GameObject: m_ObjectHideFlags: 0 @@ -322446,6 +341208,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1017078272} m_CullTransparentMesh: 0 +--- !u!1 &1017642352 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1017642353} + 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 &1017642353 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1017642352} + m_LocalRotation: {x: 0, 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: 762199337} + - {fileID: 538333500} + m_Father: {fileID: 1130359736} + 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 &1017871193 GameObject: m_ObjectHideFlags: 0 @@ -322483,6 +341282,43 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1018054036 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1018054037} + 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 &1018054037 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1018054036} + m_LocalRotation: {x: 0, 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: 1504745070} + - {fileID: 1299754530} + m_Father: {fileID: 747552768} + 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 &1018085102 GameObject: m_ObjectHideFlags: 0 @@ -323224,6 +342060,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1020629954} m_CullTransparentMesh: 0 +--- !u!1 &1021047409 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1021047410} + - component: {fileID: 1021047412} + - component: {fileID: 1021047411} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1021047410 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1021047409} + m_LocalRotation: {x: -0, 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: 350984470} + 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 &1021047411 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1021047409} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1021047412 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1021047409} + m_CullTransparentMesh: 0 --- !u!1 &1021060474 GameObject: m_ObjectHideFlags: 0 @@ -323323,7 +342233,7 @@ RectTransform: m_GameObject: {fileID: 1021097038} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 29311516} - {fileID: 1177913764} @@ -323797,6 +342707,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1022711645} m_CullTransparentMesh: 0 +--- !u!1 &1022852102 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1022852103} + 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 &1022852103 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1022852102} + m_LocalRotation: {x: 0, 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: 1913044286} + - {fileID: 1826258068} + m_Father: {fileID: 488529639} + 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 &1022959329 GameObject: m_ObjectHideFlags: 0 @@ -323979,7 +342926,7 @@ RectTransform: m_GameObject: {fileID: 1023437145} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1830191927} - {fileID: 1087048943} @@ -324541,7 +343488,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1025727822} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -325158,15 +344105,15 @@ RectTransform: m_GameObject: {fileID: 1028234201} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2057043785} m_RootOrder: 15 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 227.64929, y: 84.10358} - m_SizeDelta: {x: 27.298578, y: 19.412323} + m_AnchoredPosition: {x: 227.75641, y: 84.10358} + m_SizeDelta: {x: 27.512794, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1028234203 MonoBehaviour: @@ -325212,6 +344159,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1028234201} m_CullTransparentMesh: 0 +--- !u!1 &1028598727 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1028598728} + 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 &1028598728 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1028598727} + m_LocalRotation: {x: 0, 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: 1742639146} + - {fileID: 649665207} + m_Father: {fileID: 1130359736} + 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 &1029217442 GameObject: m_ObjectHideFlags: 0 @@ -325239,7 +344223,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1029217442} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -325596,6 +344580,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1030033514} m_CullTransparentMesh: 0 +--- !u!1 &1030175757 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1030175758} + - component: {fileID: 1030175760} + - component: {fileID: 1030175759} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1030175758 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1030175757} + m_LocalRotation: {x: 0, 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: 1093771582} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1030175759 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1030175757} + m_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 &1030175760 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1030175757} + m_CullTransparentMesh: 0 --- !u!1 &1030720761 GameObject: m_ObjectHideFlags: 0 @@ -326476,6 +345539,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1034472362} m_CullTransparentMesh: 0 +--- !u!1 &1034515772 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1034515773} + m_Layer: 0 + m_Name: label_3_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1034515773 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1034515772} + m_LocalRotation: {x: 0, 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: 1715858338} + - {fileID: 1602739394} + m_Father: {fileID: 300972851} + m_RootOrder: 56 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1034570335 GameObject: m_ObjectHideFlags: 0 @@ -327081,6 +346181,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1038299089} m_CullTransparentMesh: 0 +--- !u!1 &1038846649 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1038846650} + - component: {fileID: 1038846652} + - component: {fileID: 1038846651} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1038846650 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1038846649} + m_LocalRotation: {x: -0, 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: 1378682813} + 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 &1038846651 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1038846649} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1038846652 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1038846649} + m_CullTransparentMesh: 0 --- !u!1 &1038931374 GameObject: m_ObjectHideFlags: 0 @@ -327308,6 +346482,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1039813147} m_CullTransparentMesh: 0 +--- !u!1 &1039948138 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1039948139} + - component: {fileID: 1039948141} + - component: {fileID: 1039948140} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1039948139 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1039948138} + m_LocalRotation: {x: 0, 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: 105774002} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1039948140 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1039948138} + m_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 &1039948141 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1039948138} + m_CullTransparentMesh: 0 --- !u!1 &1040076282 GameObject: m_ObjectHideFlags: 0 @@ -327333,7 +346586,7 @@ RectTransform: m_GameObject: {fileID: 1040076282} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1430398110} - {fileID: 1780345303} @@ -327446,7 +346699,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1040623708} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -328119,6 +347372,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1043255180} m_CullTransparentMesh: 0 +--- !u!1 &1044290085 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1044290086} + 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 &1044290086 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1044290085} + m_LocalRotation: {x: 0, 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: 690804788} + - {fileID: 801469168} + m_Father: {fileID: 1009125081} + 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 &1044460141 GameObject: m_ObjectHideFlags: 0 @@ -328426,7 +347716,7 @@ RectTransform: m_GameObject: {fileID: 1045055314} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2057043785} m_RootOrder: 5 @@ -328434,7 +347724,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: -175.20001, y: -70.69999} - m_SizeDelta: {x: 52.777252, y: 19.412323} + m_SizeDelta: {x: 53.06039, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1045055316 MonoBehaviour: @@ -328507,7 +347797,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1045067724} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -328637,6 +347927,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1045354202} m_CullTransparentMesh: 0 +--- !u!1 &1045837743 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1045837744} + 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 &1045837744 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1045837743} + m_LocalRotation: {x: 0, 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: 603551815} + - {fileID: 1150964035} + m_Father: {fileID: 747552768} + 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 &1046060950 GameObject: m_ObjectHideFlags: 0 @@ -328738,7 +348065,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1046176295} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -329076,6 +348403,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1047443849} m_CullTransparentMesh: 0 +--- !u!1 &1047469455 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1047469456} + - component: {fileID: 1047469458} + - component: {fileID: 1047469457} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1047469456 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1047469455} + m_LocalRotation: {x: 0, 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: 1103308593} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1047469457 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1047469455} + m_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.83137256, g: 0.50980395, b: 0.39607844, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &1047469458 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1047469455} + m_CullTransparentMesh: 0 --- !u!1 &1047729083 GameObject: m_ObjectHideFlags: 0 @@ -329399,7 +348805,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1048776942} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -329751,7 +349157,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1050238290} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -329950,7 +349356,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1050579053} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -330033,7 +349439,7 @@ RectTransform: m_GameObject: {fileID: 1050794688} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 513008813} - {fileID: 1752609155} @@ -330652,6 +350058,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1054052227} m_CullTransparentMesh: 0 +--- !u!1 &1054098739 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1054098740} + - component: {fileID: 1054098742} + - component: {fileID: 1054098741} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1054098740 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1054098739} + m_LocalRotation: {x: 0, 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: 1589485497} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1054098741 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1054098739} + m_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 &1054098742 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1054098739} + m_CullTransparentMesh: 0 --- !u!1 &1054114672 GameObject: m_ObjectHideFlags: 0 @@ -331778,6 +351263,154 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1057661026} m_CullTransparentMesh: 0 +--- !u!1 &1058202552 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1058202553} + - component: {fileID: 1058202555} + - component: {fileID: 1058202554} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1058202553 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1058202552} + m_LocalRotation: {x: -0, 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: 479319079} + 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 &1058202554 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1058202552} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1058202555 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1058202552} + m_CullTransparentMesh: 0 +--- !u!1 &1058203850 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1058203851} + - component: {fileID: 1058203853} + - component: {fileID: 1058203852} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1058203851 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1058203850} + m_LocalRotation: {x: -0, 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: 997134934} + 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 &1058203852 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1058203850} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1058203853 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1058203850} + m_CullTransparentMesh: 0 --- !u!1 &1058276172 GameObject: m_ObjectHideFlags: 0 @@ -332602,7 +352235,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} @@ -332612,9 +352245,9 @@ RectTransform: m_Father: {fileID: 124833369} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} --- !u!1 &1061726579 @@ -332770,6 +352403,154 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1061851455} m_CullTransparentMesh: 0 +--- !u!1 &1061898029 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1061898030} + - component: {fileID: 1061898032} + - component: {fileID: 1061898031} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1061898030 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1061898029} + m_LocalRotation: {x: -0, 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: 847743055} + 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 &1061898031 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1061898029} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1061898032 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1061898029} + m_CullTransparentMesh: 0 +--- !u!1 &1061918616 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1061918617} + 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 &1061918617 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1061918616} + m_LocalRotation: {x: 0, 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: 1988661015} + - {fileID: 773238844} + m_Father: {fileID: 488529639} + 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 &1062123298 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1062123299} + 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 &1062123299 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1062123298} + m_LocalRotation: {x: 0, 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: 1369657560} + - {fileID: 1486738351} + m_Father: {fileID: 488529639} + 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 &1062192036 GameObject: m_ObjectHideFlags: 0 @@ -332918,6 +352699,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 &1062624405 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1062624406} + - component: {fileID: 1062624408} + - component: {fileID: 1062624407} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1062624406 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1062624405} + m_LocalRotation: {x: -0, 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: 1209658534} + 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 &1062624407 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1062624405} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1062624408 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1062624405} + m_CullTransparentMesh: 0 --- !u!1 &1062692234 GameObject: m_ObjectHideFlags: 0 @@ -333673,7 +353528,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1065554967} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -334416,7 +354271,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1067119519} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -334551,6 +354406,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1067384716} m_CullTransparentMesh: 0 +--- !u!1 &1067931212 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1067931213} + m_Layer: 0 + m_Name: label_4_4 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1067931213 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1067931212} + m_LocalRotation: {x: 0, 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: 1895416671} + - {fileID: 495435043} + m_Father: {fileID: 763052335} + m_RootOrder: 67 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1068188586 GameObject: m_ObjectHideFlags: 0 @@ -335106,7 +354998,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1070182536} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -336099,7 +355991,7 @@ RectTransform: m_GameObject: {fileID: 1073251069} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1043094594} - {fileID: 2059544310} @@ -337371,6 +357263,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1078460897} m_CullTransparentMesh: 0 +--- !u!1 &1078737828 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1078737829} + - component: {fileID: 1078737831} + - component: {fileID: 1078737830} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1078737829 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1078737828} + m_LocalRotation: {x: -0, 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: 200575469} + 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 &1078737830 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1078737828} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1078737831 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1078737828} + m_CullTransparentMesh: 0 --- !u!1 &1078921041 GameObject: m_ObjectHideFlags: 0 @@ -337703,7 +357669,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1079810209} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -339036,7 +359002,7 @@ RectTransform: m_GameObject: {fileID: 1083696921} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 849210528} - {fileID: 327201502} @@ -341287,7 +361253,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} @@ -341297,9 +361263,9 @@ RectTransform: m_Father: {fileID: 654135076} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} --- !u!1 &1091681229 @@ -341871,6 +361837,122 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1093771581 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1093771582} + 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 &1093771582 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1093771581} + m_LocalRotation: {x: 0, 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: 1101934550} + - {fileID: 1030175758} + m_Father: {fileID: 1338692539} + 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 &1093972199 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1093972200} + - component: {fileID: 1093972202} + - component: {fileID: 1093972201} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1093972200 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1093972199} + m_LocalRotation: {x: 0, 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: 1378682813} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1093972201 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1093972199} + m_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 &1093972202 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1093972199} + m_CullTransparentMesh: 0 --- !u!1 &1094247940 GameObject: m_ObjectHideFlags: 0 @@ -341898,7 +361980,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1094247940} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -342064,7 +362146,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1094353746} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: -0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -342073,7 +362155,7 @@ RectTransform: 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: -30} + m_AnchoredPosition: {x: -0, y: -30} m_SizeDelta: {x: 584, y: 14} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1094353748 @@ -342792,15 +362874,15 @@ RectTransform: m_GameObject: {fileID: 1097327323} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 449267886} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 121.650604, y: 62.45999} - m_SizeDelta: {x: 50.35071, y: 19.412323} + m_AnchoredPosition: {x: 122.02286, y: 62.45999} + m_SizeDelta: {x: 51.095192, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1097327325 MonoBehaviour: @@ -343660,7 +363742,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1100816332} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -344100,6 +364182,117 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1101785666} m_CullTransparentMesh: 0 +--- !u!1 &1101934549 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1101934550} + - component: {fileID: 1101934552} + - component: {fileID: 1101934551} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1101934550 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1101934549} + m_LocalRotation: {x: -0, 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: 1093771582} + 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 &1101934551 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1101934549} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1101934552 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1101934549} + m_CullTransparentMesh: 0 +--- !u!1 &1102366519 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1102366520} + 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 &1102366520 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1102366519} + m_LocalRotation: {x: 0, 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: 462958587} + - {fileID: 271817804} + m_Father: {fileID: 252393583} + 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: 226, y: 20.268005} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1102420369 GameObject: m_ObjectHideFlags: 0 @@ -344258,6 +364451,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1102980699} m_CullTransparentMesh: 0 +--- !u!1 &1103308592 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1103308593} + m_Layer: 0 + m_Name: label_3_6 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1103308593 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1103308592} + m_LocalRotation: {x: 0, 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: 86476824} + - {fileID: 1047469456} + m_Father: {fileID: 763052335} + m_RootOrder: 62 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1103764282 GameObject: m_ObjectHideFlags: 0 @@ -344285,7 +364515,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1103764282} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -345219,15 +365449,15 @@ RectTransform: m_GameObject: {fileID: 1107207521} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1107243629} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -20.092834, y: 15.435532} - m_SizeDelta: {x: 52.777252, y: 19.412323} + m_AnchoredPosition: {x: -19.951263, y: 15.435532} + m_SizeDelta: {x: 53.06039, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1107207523 MonoBehaviour: @@ -345322,10 +365552,10 @@ RectTransform: m_Father: {fileID: 37761823} m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 2, y: -682} + m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} --- !u!114 &1107243630 MonoBehaviour: @@ -346648,7 +366878,7 @@ RectTransform: m_GameObject: {fileID: 1108707927} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 693746959} - {fileID: 566402842} @@ -346931,7 +367161,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 39.184834, y: 23.412323} + m_SizeDelta: {x: 39.373592, y: 23.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1109470071 MonoBehaviour: @@ -347354,6 +367584,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1110115310} m_CullTransparentMesh: 0 +--- !u!1 &1110407661 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1110407662} + 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 &1110407662 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1110407661} + m_LocalRotation: {x: 0, 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: 80425683} + - {fileID: 1625029281} + m_Father: {fileID: 300972851} + m_RootOrder: 55 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1110572453 GameObject: m_ObjectHideFlags: 0 @@ -347507,6 +367774,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1111724945 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1111724946} + - component: {fileID: 1111724948} + - component: {fileID: 1111724947} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1111724946 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1111724945} + m_LocalRotation: {x: 0, 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: 1389377723} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1111724947 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1111724945} + m_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 &1111724948 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1111724945} + m_CullTransparentMesh: 0 --- !u!1 &1112008861 GameObject: m_ObjectHideFlags: 0 @@ -347645,7 +367991,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} @@ -348275,7 +368621,7 @@ RectTransform: m_GameObject: {fileID: 1115439234} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1676064384} - {fileID: 1799657881} @@ -348290,6 +368636,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} +--- !u!1 &1115533891 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1115533892} + - component: {fileID: 1115533894} + - component: {fileID: 1115533893} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1115533892 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1115533891} + m_LocalRotation: {x: 0, 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: 1493577799} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1115533893 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1115533891} + m_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.83137256, g: 0.50980395, b: 0.39607844, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &1115533894 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1115533891} + m_CullTransparentMesh: 0 --- !u!1 &1115692351 GameObject: m_ObjectHideFlags: 0 @@ -348505,7 +368930,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1116593442} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -348660,7 +369085,7 @@ RectTransform: m_GameObject: {fileID: 1117287344} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 79962791} - {fileID: 265167985} @@ -348736,7 +369161,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1118490750} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -349225,6 +369650,85 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1120129866 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1120129867} + - component: {fileID: 1120129869} + - component: {fileID: 1120129868} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1120129867 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1120129866} + m_LocalRotation: {x: 0, 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: 730880176} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1120129868 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1120129866} + m_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 &1120129869 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1120129866} + m_CullTransparentMesh: 0 --- !u!1 &1120662738 GameObject: m_ObjectHideFlags: 0 @@ -349562,7 +370066,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1121096861} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -349645,7 +370149,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} @@ -349657,6 +370161,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: -5} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0.5, y: 1} +--- !u!1 &1121398009 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1121398010} + - component: {fileID: 1121398012} + - component: {fileID: 1121398011} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1121398010 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1121398009} + m_LocalRotation: {x: -0, 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: 2019801671} + 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 &1121398011 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1121398009} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1121398012 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1121398009} + m_CullTransparentMesh: 0 --- !u!1 &1121413829 GameObject: m_ObjectHideFlags: 0 @@ -349684,7 +370262,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1121413829} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -350645,7 +371223,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1125984855} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -352032,7 +372610,7 @@ RectTransform: m_GameObject: {fileID: 1129112165} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1338185511} - {fileID: 2119633611} @@ -352233,7 +372811,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} @@ -352249,6 +372827,20 @@ RectTransform: - {fileID: 867047260} - {fileID: 1004806154} - {fileID: 284494526} + - {fileID: 757200163} + - {fileID: 2019801671} + - {fileID: 539364323} + - {fileID: 988878005} + - {fileID: 109840320} + - {fileID: 419187805} + - {fileID: 170914617} + - {fileID: 1028598728} + - {fileID: 1549319335} + - {fileID: 1017642353} + - {fileID: 1350765120} + - {fileID: 332900445} + - {fileID: 1954892195} + - {fileID: 27612436} m_Father: {fileID: 654135076} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -352257,6 +372849,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} +--- !u!1 &1130465657 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1130465658} + - component: {fileID: 1130465660} + - component: {fileID: 1130465659} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1130465658 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1130465657} + m_LocalRotation: {x: -0, 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: 171713158} + 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 &1130465659 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1130465657} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1130465660 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1130465657} + m_CullTransparentMesh: 0 --- !u!1 &1131240628 GameObject: m_ObjectHideFlags: 0 @@ -352514,7 +373180,7 @@ RectTransform: m_GameObject: {fileID: 1131565722} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1268673640} - {fileID: 319462543} @@ -353227,7 +373893,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} @@ -353237,9 +373903,9 @@ RectTransform: m_Father: {fileID: 1835109743} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} --- !u!1 &1134061796 @@ -353607,7 +374273,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} @@ -354471,6 +375137,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1140213523} m_CullTransparentMesh: 0 +--- !u!1 &1140275475 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1140275476} + - component: {fileID: 1140275478} + - component: {fileID: 1140275477} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1140275476 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1140275475} + m_LocalRotation: {x: 0, 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: 360292239} + 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: 20} + m_SizeDelta: {x: 35.443195, y: 19.06653} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1140275477 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1140275475} + m_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.16911763, g: 0.17409168, b: 0.17409168, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+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: 1530 +--- !u!222 &1140275478 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1140275475} + m_CullTransparentMesh: 0 --- !u!1 &1140510916 GameObject: m_ObjectHideFlags: 0 @@ -354693,7 +375438,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1141747708} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -354942,7 +375687,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: -0, y: -30} + m_AnchoredPosition: {x: 0, y: -30} m_SizeDelta: {x: 584, y: 14} m_Pivot: {x: 0, y: 1} --- !u!114 &1142467466 @@ -354989,6 +375734,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1142467464} m_CullTransparentMesh: 0 +--- !u!1 &1142719706 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1142719707} + 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 &1142719707 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1142719706} + m_LocalRotation: {x: 0, 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: 462836736} + - {fileID: 1966321751} + m_Father: {fileID: 801884283} + m_RootOrder: 48 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1143098516 GameObject: m_ObjectHideFlags: 0 @@ -355094,15 +375876,15 @@ RectTransform: m_GameObject: {fileID: 1143388991} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 449267886} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -114.674286, y: -48.939995} - m_SizeDelta: {x: 36.398106, y: 19.412323} + m_AnchoredPosition: {x: -114.81709, y: -48.939995} + m_SizeDelta: {x: 36.683727, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1143388993 MonoBehaviour: @@ -355441,7 +376223,7 @@ RectTransform: m_GameObject: {fileID: 1144303624} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 106357663} - {fileID: 1030033515} @@ -356981,6 +377763,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1149632952} m_CullTransparentMesh: 0 +--- !u!1 &1149664597 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1149664598} + - component: {fileID: 1149664600} + - component: {fileID: 1149664599} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1149664598 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1149664597} + m_LocalRotation: {x: -0, 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: 988878005} + 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 &1149664599 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1149664597} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1149664600 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1149664597} + m_CullTransparentMesh: 0 --- !u!1 &1149741063 GameObject: m_ObjectHideFlags: 0 @@ -360114,6 +380970,85 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1150964034 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1150964035} + - component: {fileID: 1150964037} + - component: {fileID: 1150964036} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1150964035 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1150964034} + m_LocalRotation: {x: 0, 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: 1045837744} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1150964036 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1150964034} + m_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 &1150964037 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1150964034} + m_CullTransparentMesh: 0 --- !u!1 &1151328190 GameObject: m_ObjectHideFlags: 0 @@ -360176,7 +381111,7 @@ RectTransform: m_GameObject: {fileID: 1151365733} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1894741523} - {fileID: 1897570656} @@ -360672,7 +381607,7 @@ RectTransform: m_GameObject: {fileID: 1153620591} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1055589366} - {fileID: 1349401884} @@ -361701,7 +382636,7 @@ MonoBehaviour: m_Script: {fileID: 1367256648, guid: f70555f144d8491a825f0804e09c671c, type: 3} m_Name: m_EditorClassIdentifier: - m_Content: {fileID: 37761823} + m_Content: {fileID: 191364310} m_Horizontal: 0 m_Vertical: 1 m_MovementType: 1 @@ -361746,7 +382681,7 @@ RectTransform: m_GameObject: {fileID: 1157725513} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 348498607} - {fileID: 558514868} @@ -361795,6 +382730,117 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1159458719 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1159458720} + 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 &1159458720 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1159458719} + m_LocalRotation: {x: 0, 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: 560276872} + - {fileID: 1700230264} + m_Father: {fileID: 763052335} + m_RootOrder: 51 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1159628488 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1159628489} + - component: {fileID: 1159628491} + - component: {fileID: 1159628490} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1159628489 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1159628488} + m_LocalRotation: {x: -0, 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: 1802085458} + 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 &1159628490 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1159628488} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1159628491 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1159628488} + m_CullTransparentMesh: 0 --- !u!1 &1159662542 GameObject: m_ObjectHideFlags: 0 @@ -364586,6 +385632,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1165987656} m_CullTransparentMesh: 0 +--- !u!1 &1166346570 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1166346571} + - component: {fileID: 1166346573} + - component: {fileID: 1166346572} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1166346571 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1166346570} + m_LocalRotation: {x: -0, 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: 885240254} + 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 &1166346572 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1166346570} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1166346573 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1166346570} + m_CullTransparentMesh: 0 --- !u!1 &1167287925 GameObject: m_ObjectHideFlags: 0 @@ -365091,6 +386211,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1169633312} m_CullTransparentMesh: 0 +--- !u!1 &1169806580 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1169806581} + m_Layer: 0 + m_Name: label_3_5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1169806581 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1169806580} + m_LocalRotation: {x: 0, 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: 1574400271} + - {fileID: 712022430} + m_Father: {fileID: 801884283} + m_RootOrder: 54 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1169808742 GameObject: m_ObjectHideFlags: 0 @@ -365170,6 +386327,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1169808742} m_CullTransparentMesh: 0 +--- !u!1 &1169936340 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1169936341} + - component: {fileID: 1169936343} + - component: {fileID: 1169936342} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1169936341 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1169936340} + m_LocalRotation: {x: -0, 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: 536800579} + 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 &1169936342 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1169936340} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1169936343 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1169936340} + m_CullTransparentMesh: 0 --- !u!1 &1170207917 GameObject: m_ObjectHideFlags: 0 @@ -365195,7 +386426,7 @@ RectTransform: m_GameObject: {fileID: 1170207917} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 748874338} - {fileID: 2061913733} @@ -365896,7 +387127,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1175034616} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -366158,6 +387389,30 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - eventID: 2 callback: m_PersistentCalls: @@ -366285,15 +387540,15 @@ RectTransform: m_GameObject: {fileID: 1175724539} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2057043785} m_RootOrder: 17 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 266.44928, y: 16.90001} - m_SizeDelta: {x: 27.298578, y: 19.412323} + m_AnchoredPosition: {x: 266.5564, y: 16.90001} + m_SizeDelta: {x: 27.512794, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1175724541 MonoBehaviour: @@ -366873,7 +388128,7 @@ RectTransform: m_GameObject: {fileID: 1178879083} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 457714496} - {fileID: 1347753907} @@ -366964,6 +388219,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1179151315} m_CullTransparentMesh: 0 +--- !u!1 &1179475134 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1179475135} + - component: {fileID: 1179475137} + - component: {fileID: 1179475136} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1179475135 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1179475134} + m_LocalRotation: {x: 0, 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: 841024191} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1179475136 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1179475134} + m_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 &1179475137 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1179475134} + m_CullTransparentMesh: 0 --- !u!1 &1180936589 GameObject: m_ObjectHideFlags: 0 @@ -367730,6 +389064,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1185498916} m_CullTransparentMesh: 0 +--- !u!1 &1185820066 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1185820067} + - component: {fileID: 1185820069} + - component: {fileID: 1185820068} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1185820067 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1185820066} + m_LocalRotation: {x: 0, 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: 1209658534} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1185820068 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1185820066} + m_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 &1185820069 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1185820066} + m_CullTransparentMesh: 0 --- !u!1 &1186027362 GameObject: m_ObjectHideFlags: 0 @@ -368119,6 +389532,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1187269210} m_CullTransparentMesh: 0 +--- !u!1 &1187508033 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1187508034} + - component: {fileID: 1187508036} + - component: {fileID: 1187508035} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1187508034 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1187508033} + m_LocalRotation: {x: -0, 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: 1399565311} + 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 &1187508035 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1187508033} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1187508036 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1187508033} + m_CullTransparentMesh: 0 --- !u!1 &1187657216 GameObject: m_ObjectHideFlags: 0 @@ -368146,7 +389633,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1187657216} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -368996,7 +390483,7 @@ RectTransform: m_GameObject: {fileID: 1191552889} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 845822404} - {fileID: 1123863813} @@ -369286,6 +390773,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1192119767} m_CullTransparentMesh: 0 +--- !u!1 &1192459176 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1192459177} + - component: {fileID: 1192459179} + - component: {fileID: 1192459178} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1192459177 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1192459176} + m_LocalRotation: {x: 0, 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: 1637523679} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1192459178 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1192459176} + m_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 &1192459179 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1192459176} + m_CullTransparentMesh: 0 --- !u!1 &1192585594 GameObject: m_ObjectHideFlags: 0 @@ -369459,7 +391025,7 @@ RectTransform: m_GameObject: {fileID: 1193385420} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 822409973} - {fileID: 921312750} @@ -370026,7 +391592,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1194548752} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -370082,6 +391648,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1194548752} m_CullTransparentMesh: 0 +--- !u!1 &1195076734 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1195076735} + 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 &1195076735 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1195076734} + m_LocalRotation: {x: 0, 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: 296350095} + - {fileID: 1309952666} + m_Father: {fileID: 1357367415} + m_RootOrder: 39 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1195683371 GameObject: m_ObjectHideFlags: 0 @@ -370269,7 +391872,7 @@ RectTransform: m_GameObject: {fileID: 1196060581} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 852959448} - {fileID: 1568960590} @@ -371127,7 +392730,7 @@ RectTransform: m_GameObject: {fileID: 1200128852} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 895518470} - {fileID: 1345668294} @@ -371371,6 +392974,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1201732123} m_CullTransparentMesh: 0 +--- !u!1 &1202256473 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1202256474} + 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 &1202256474 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1202256473} + m_LocalRotation: {x: 0, 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: 1935612741} + - {fileID: 1801173783} + m_Father: {fileID: 801884283} + 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 &1202343831 GameObject: m_ObjectHideFlags: 0 @@ -372716,7 +394356,7 @@ RectTransform: m_GameObject: {fileID: 1206020263} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 440311205} - {fileID: 473389965} @@ -372781,6 +394421,30 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - eventID: 2 callback: m_PersistentCalls: @@ -373026,7 +394690,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} @@ -373149,7 +394813,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1206859034} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -373232,7 +394896,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1206906058} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -373663,7 +395327,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1209022008} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -373719,6 +395383,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1209022008} m_CullTransparentMesh: 0 +--- !u!1 &1209658533 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1209658534} + 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 &1209658534 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1209658533} + m_LocalRotation: {x: 0, 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: 1062624406} + - {fileID: 1185820067} + m_Father: {fileID: 1357367415} + 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 &1209881134 GameObject: m_ObjectHideFlags: 0 @@ -373862,7 +395563,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} @@ -373872,9 +395573,9 @@ RectTransform: m_Father: {fileID: 408536198} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} --- !u!1 &1210514591 @@ -374284,7 +395985,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1212813931} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -374414,6 +396115,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1212885646} m_CullTransparentMesh: 0 +--- !u!1 &1213059436 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1213059437} + - component: {fileID: 1213059439} + - component: {fileID: 1213059438} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1213059437 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1213059436} + m_LocalRotation: {x: 0, 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: 672199290} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1213059438 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1213059436} + m_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 &1213059439 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1213059436} + m_CullTransparentMesh: 0 --- !u!1 &1213465111 GameObject: m_ObjectHideFlags: 0 @@ -374488,6 +396268,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1213950652 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1213950653} + - component: {fileID: 1213950655} + - component: {fileID: 1213950654} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1213950653 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1213950652} + m_LocalRotation: {x: -0, 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: 1221988589} + 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 &1213950654 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1213950652} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1213950655 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1213950652} + m_CullTransparentMesh: 0 --- !u!1 &1213968473 GameObject: m_ObjectHideFlags: 0 @@ -374515,7 +396369,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1213968473} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -374723,7 +396577,7 @@ MonoBehaviour: m_HorizontalOverflow: 0 m_VerticalOverflow: 0 m_LineSpacing: 1 - m_Text: "\u96F7\u8FBE\u56FE RadarChart" + m_Text: "\u6298\u7EBF\u56FE LineChart" --- !u!222 &1214602855 CanvasRenderer: m_ObjectHideFlags: 0 @@ -374760,7 +396614,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 @@ -374799,15 +396653,15 @@ RectTransform: m_GameObject: {fileID: 1214750942} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2057043785} m_RootOrder: 19 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 227.64929, y: -50.30356} - m_SizeDelta: {x: 27.298578, y: 19.412323} + m_AnchoredPosition: {x: 227.75641, y: -50.30356} + m_SizeDelta: {x: 27.512794, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1214750944 MonoBehaviour: @@ -374853,6 +396707,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1214750942} m_CullTransparentMesh: 0 +--- !u!1 &1215124138 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1215124139} + - component: {fileID: 1215124141} + - component: {fileID: 1215124140} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1215124139 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1215124138} + m_LocalRotation: {x: 0, 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: 1261985956} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1215124140 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1215124138} + m_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 &1215124141 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1215124138} + m_CullTransparentMesh: 0 --- !u!1 &1215396463 GameObject: m_ObjectHideFlags: 0 @@ -374878,7 +396811,7 @@ RectTransform: m_GameObject: {fileID: 1215396463} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1516064199} - {fileID: 1770708485} @@ -375538,7 +397471,7 @@ RectTransform: m_GameObject: {fileID: 1218605508} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1565590316} - {fileID: 1382083673} @@ -375624,6 +397557,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1218651759} m_CullTransparentMesh: 0 +--- !u!1 &1218796715 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1218796716} + - component: {fileID: 1218796718} + - component: {fileID: 1218796717} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1218796716 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1218796715} + m_LocalRotation: {x: -0, 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: 439402837} + 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 &1218796717 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1218796715} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1218796718 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1218796715} + m_CullTransparentMesh: 0 --- !u!1 &1218992162 GameObject: m_ObjectHideFlags: 0 @@ -375698,6 +397705,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1218992162} m_CullTransparentMesh: 0 +--- !u!1 &1219078614 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1219078615} + - component: {fileID: 1219078617} + - component: {fileID: 1219078616} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1219078615 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1219078614} + m_LocalRotation: {x: -0, 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: 27612436} + 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 &1219078616 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1219078614} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1219078617 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1219078614} + m_CullTransparentMesh: 0 --- !u!1 &1219421091 GameObject: m_ObjectHideFlags: 0 @@ -376009,6 +398090,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1220723744} m_CullTransparentMesh: 0 +--- !u!1 &1220765877 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1220765878} + 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 &1220765878 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1220765877} + m_LocalRotation: {x: 0, 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: 466354475} + - {fileID: 155839408} + m_Father: {fileID: 2097019616} + 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 &1220928911 GameObject: m_ObjectHideFlags: 0 @@ -376034,7 +398152,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1220928911} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -376471,6 +398589,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1221762030} m_CullTransparentMesh: 0 +--- !u!1 &1221988588 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1221988589} + 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 &1221988589 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1221988588} + m_LocalRotation: {x: 0, 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: 1213950653} + - {fileID: 81238172} + m_Father: {fileID: 801884283} + m_RootOrder: 44 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1222108634 GameObject: m_ObjectHideFlags: 0 @@ -376764,15 +398919,15 @@ RectTransform: m_GameObject: {fileID: 1222484812} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2057043785} m_RootOrder: 16 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 256.05286, y: 55.700012} - m_SizeDelta: {x: 27.298578, y: 19.412323} + m_AnchoredPosition: {x: 256.15997, y: 55.700012} + m_SizeDelta: {x: 27.512794, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1222484814 MonoBehaviour: @@ -376922,7 +399077,7 @@ RectTransform: m_GameObject: {fileID: 1223359021} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 986660360} - {fileID: 1712370905} @@ -377414,7 +399569,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1224615779} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -378131,7 +400286,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1227715279} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -378214,7 +400369,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1227825900} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -378844,6 +400999,85 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1229972743 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1229972744} + - component: {fileID: 1229972746} + - component: {fileID: 1229972745} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1229972744 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1229972743} + m_LocalRotation: {x: 0, 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: 707098348} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1229972745 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1229972743} + m_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 &1229972746 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1229972743} + m_CullTransparentMesh: 0 --- !u!1 &1230191133 GameObject: m_ObjectHideFlags: 0 @@ -379103,7 +401337,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1231187879} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -379580,6 +401814,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1232765496} m_CullTransparentMesh: 0 +--- !u!1 &1232804599 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1232804600} + - component: {fileID: 1232804602} + - component: {fileID: 1232804601} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1232804600 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1232804599} + m_LocalRotation: {x: 0, 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: 479319079} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1232804601 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1232804599} + m_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 &1232804602 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1232804599} + m_CullTransparentMesh: 0 --- !u!1 &1233090899 GameObject: m_ObjectHideFlags: 0 @@ -379681,7 +401994,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1233158324} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -380508,7 +402821,7 @@ RectTransform: m_GameObject: {fileID: 1236513025} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 836884176} - {fileID: 570460976} @@ -380836,6 +403149,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1238425157} m_CullTransparentMesh: 0 +--- !u!1 &1238471927 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1238471928} + - component: {fileID: 1238471930} + - component: {fileID: 1238471929} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1238471928 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1238471927} + m_LocalRotation: {x: -0, 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: 287643018} + 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 &1238471929 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1238471927} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1238471930 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1238471927} + m_CullTransparentMesh: 0 --- !u!1 &1238548150 GameObject: m_ObjectHideFlags: 0 @@ -381290,7 +403677,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1239681117} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -381614,7 +404001,7 @@ RectTransform: m_GameObject: {fileID: 1240198183} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1972589982} - {fileID: 1142467465} @@ -381899,6 +404286,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1241547105} m_CullTransparentMesh: 0 +--- !u!1 &1241552984 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1241552985} + - component: {fileID: 1241552987} + - component: {fileID: 1241552986} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1241552985 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1241552984} + m_LocalRotation: {x: -0, 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: 893527414} + 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 &1241552986 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1241552984} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1241552987 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1241552984} + m_CullTransparentMesh: 0 --- !u!1 &1241641389 GameObject: m_ObjectHideFlags: 0 @@ -383352,7 +405813,7 @@ RectTransform: m_GameObject: {fileID: 1247854573} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 355868183} - {fileID: 1007816306} @@ -384248,6 +406709,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1253148417} m_CullTransparentMesh: 0 +--- !u!1 &1253473295 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1253473296} + 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 &1253473296 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1253473295} + m_LocalRotation: {x: 0, 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: 324289295} + - {fileID: 1803960569} + m_Father: {fileID: 763052335} + m_RootOrder: 45 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1253932631 GameObject: m_ObjectHideFlags: 0 @@ -384275,7 +406773,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1253932631} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -384641,7 +407139,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1254663267} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -384724,7 +407222,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1254823147} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -386242,7 +408740,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1259636633} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -386325,7 +408823,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1260359364} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -386607,7 +409105,7 @@ RectTransform: 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: -30} + m_AnchoredPosition: {x: 0, y: -30} m_SizeDelta: {x: 584, y: 14} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1260951934 @@ -387238,6 +409736,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1261689901} m_CullTransparentMesh: 0 +--- !u!1 &1261985955 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1261985956} + 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 &1261985956 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1261985955} + m_LocalRotation: {x: 0, 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: 1270908254} + - {fileID: 1215124139} + m_Father: {fileID: 801884283} + m_RootOrder: 38 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1262764405 GameObject: m_ObjectHideFlags: 0 @@ -387680,7 +410215,7 @@ RectTransform: m_GameObject: {fileID: 1265201715} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 437444427} - {fileID: 317810026} @@ -387808,6 +410343,85 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1265540854 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1265540855} + - component: {fileID: 1265540857} + - component: {fileID: 1265540856} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1265540855 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1265540854} + m_LocalRotation: {x: 0, 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: 1441763265} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1265540856 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1265540854} + m_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: +--- !u!222 &1265540857 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1265540854} + m_CullTransparentMesh: 0 --- !u!1 &1265797364 GameObject: m_ObjectHideFlags: 0 @@ -387966,6 +410580,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1266352309} m_CullTransparentMesh: 0 +--- !u!1 &1266534949 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1266534950} + m_Layer: 0 + m_Name: label_4_1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1266534950 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1266534949} + m_LocalRotation: {x: 0, 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: 727164334} + - {fileID: 1554969327} + m_Father: {fileID: 300972851} + m_RootOrder: 64 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1266778208 GameObject: m_ObjectHideFlags: 0 @@ -388109,7 +410760,7 @@ RectTransform: m_GameObject: {fileID: 1267491320} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 872232282} - {fileID: 1696763643} @@ -389014,7 +411665,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1270695082} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -389223,6 +411874,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1270822743} m_CullTransparentMesh: 0 +--- !u!1 &1270908253 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1270908254} + - component: {fileID: 1270908256} + - component: {fileID: 1270908255} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1270908254 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1270908253} + m_LocalRotation: {x: -0, 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: 1261985956} + 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 &1270908255 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1270908253} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1270908256 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1270908253} + m_CullTransparentMesh: 0 --- !u!1 &1271316099 GameObject: m_ObjectHideFlags: 0 @@ -389408,7 +412133,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1271989104} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -389464,6 +412189,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1271989104} m_CullTransparentMesh: 0 +--- !u!1 &1272487950 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1272487951} + 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 &1272487951 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1272487950} + m_LocalRotation: {x: 0, 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: 1327259839} + - {fileID: 1604511901} + m_Father: {fileID: 300972851} + m_RootOrder: 44 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1272527574 GameObject: m_ObjectHideFlags: 0 @@ -390267,6 +413029,122 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1274318533 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1274318534} + 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 &1274318534 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1274318533} + m_LocalRotation: {x: 0, 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: 1667670350} + - {fileID: 146071838} + m_Father: {fileID: 1357367415} + m_RootOrder: 36 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1274367162 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1274367163} + - component: {fileID: 1274367165} + - component: {fileID: 1274367164} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1274367163 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1274367162} + m_LocalRotation: {x: 0, 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: 2080743413} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1274367164 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1274367162} + m_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 &1274367165 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1274367162} + m_CullTransparentMesh: 0 --- !u!1 &1274577762 GameObject: m_ObjectHideFlags: 0 @@ -390373,7 +413251,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} @@ -390384,11 +413262,90 @@ RectTransform: m_Father: {fileID: 883296608} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} +--- !u!1 &1275468952 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1275468953} + - component: {fileID: 1275468955} + - component: {fileID: 1275468954} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1275468953 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1275468952} + m_LocalRotation: {x: 0, 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: 173071929} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1275468954 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1275468952} + m_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 &1275468955 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1275468952} + m_CullTransparentMesh: 0 --- !u!1 &1275629212 GameObject: m_ObjectHideFlags: 0 @@ -390416,7 +413373,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1275629212} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -390669,6 +413626,43 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1276839333 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1276839334} + 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 &1276839334 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1276839333} + m_LocalRotation: {x: 0, 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: 1762110219} + - {fileID: 31610154} + m_Father: {fileID: 801884283} + m_RootOrder: 46 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1277393970 GameObject: m_ObjectHideFlags: 0 @@ -391113,7 +414107,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1279957286} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -391663,7 +414657,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1282677198} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -391881,6 +414875,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1283048910} m_CullTransparentMesh: 0 +--- !u!1 &1283156823 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1283156824} + 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 &1283156824 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1283156823} + m_LocalRotation: {x: 0, 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: 1776805571} + - {fileID: 2104889256} + m_Father: {fileID: 1338692539} + 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 &1283201766 GameObject: m_ObjectHideFlags: 0 @@ -392001,6 +415032,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 &1283618545 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1283618546} + - component: {fileID: 1283618548} + - component: {fileID: 1283618547} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1283618546 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1283618545} + m_LocalRotation: {x: -0, 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: 1589485497} + 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 &1283618547 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1283618545} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1283618548 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1283618545} + m_CullTransparentMesh: 0 --- !u!1 &1284018314 GameObject: m_ObjectHideFlags: 0 @@ -392075,6 +415180,117 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1284018314} m_CullTransparentMesh: 0 +--- !u!1 &1284153695 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1284153696} + 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 &1284153696 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1284153695} + m_LocalRotation: {x: 0, 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: 2085691042} + - {fileID: 783401889} + m_Father: {fileID: 763052335} + m_RootOrder: 43 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1284168149 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1284168150} + - component: {fileID: 1284168152} + - component: {fileID: 1284168151} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1284168150 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1284168149} + m_LocalRotation: {x: -0, 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: 1522332194} + 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 &1284168151 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1284168149} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1284168152 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1284168149} + m_CullTransparentMesh: 0 --- !u!1 &1284276383 GameObject: m_ObjectHideFlags: 0 @@ -392270,6 +415486,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1284620106 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1284620107} + m_Layer: 0 + m_Name: label_3_2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1284620107 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1284620106} + m_LocalRotation: {x: 0, 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: 922556114} + - {fileID: 216002662} + m_Father: {fileID: 801884283} + m_RootOrder: 51 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1284737973 GameObject: m_ObjectHideFlags: 0 @@ -392650,6 +415903,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1285328827} m_CullTransparentMesh: 0 +--- !u!1 &1285430556 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1285430557} + - component: {fileID: 1285430559} + - component: {fileID: 1285430558} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1285430557 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1285430556} + m_LocalRotation: {x: -0, 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: 1001670841} + 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 &1285430558 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1285430556} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1285430559 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1285430556} + m_CullTransparentMesh: 0 --- !u!1 &1285574510 GameObject: m_ObjectHideFlags: 0 @@ -393749,6 +417076,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1290813673} m_CullTransparentMesh: 0 +--- !u!1 &1291261863 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1291261864} + - component: {fileID: 1291261866} + - component: {fileID: 1291261865} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1291261864 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1291261863} + m_LocalRotation: {x: -0, 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: 1637523679} + 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 &1291261865 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1291261863} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1291261866 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1291261863} + m_CullTransparentMesh: 0 --- !u!1 &1291668873 GameObject: m_ObjectHideFlags: 0 @@ -393850,7 +417251,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1291734684} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -394197,7 +417598,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1293391713} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -394280,7 +417681,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1293454730} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -395869,7 +419270,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1296127877} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -396656,6 +420057,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1298581454} m_CullTransparentMesh: 0 +--- !u!1 &1298643411 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1298643412} + - component: {fileID: 1298643414} + - component: {fileID: 1298643413} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1298643412 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1298643411} + m_LocalRotation: {x: -0, 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: 335520325} + 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 &1298643413 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1298643411} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1298643414 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1298643411} + m_CullTransparentMesh: 0 --- !u!1 &1299083631 GameObject: m_ObjectHideFlags: 0 @@ -396845,7 +420320,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1299590446} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -397126,6 +420601,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1299615480} m_CullTransparentMesh: 0 +--- !u!1 &1299754529 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1299754530} + - component: {fileID: 1299754532} + - component: {fileID: 1299754531} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1299754530 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1299754529} + m_LocalRotation: {x: 0, 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: 1018054037} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1299754531 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1299754529} + m_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 &1299754532 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1299754529} + m_CullTransparentMesh: 0 --- !u!1 &1299909631 GameObject: m_ObjectHideFlags: 0 @@ -397387,7 +420941,7 @@ RectTransform: m_GameObject: {fileID: 1301221395} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1317089581} - {fileID: 1947640670} @@ -397640,6 +421194,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1302260270} m_CullTransparentMesh: 0 +--- !u!1 &1302657966 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1302657967} + 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 &1302657967 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1302657966} + m_LocalRotation: {x: 0, 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: 152593961} + - {fileID: 144070674} + m_Father: {fileID: 763052335} + m_RootOrder: 35 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1302669130 GameObject: m_ObjectHideFlags: 0 @@ -397871,6 +421462,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1302944934} m_CullTransparentMesh: 0 +--- !u!1 &1303030195 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1303030196} + - component: {fileID: 1303030198} + - component: {fileID: 1303030197} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1303030196 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1303030195} + m_LocalRotation: {x: -0, 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: 865504207} + 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 &1303030197 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1303030195} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1303030198 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1303030195} + m_CullTransparentMesh: 0 --- !u!1 &1303125518 GameObject: m_ObjectHideFlags: 0 @@ -398333,6 +421998,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} +--- !u!1 &1305680976 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1305680977} + - component: {fileID: 1305680979} + - component: {fileID: 1305680978} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1305680977 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1305680976} + m_LocalRotation: {x: -0, 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: 780211314} + 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 &1305680978 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1305680976} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1305680979 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1305680976} + m_CullTransparentMesh: 0 --- !u!1 &1305874598 GameObject: m_ObjectHideFlags: 0 @@ -398486,6 +422225,117 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1306570783} m_CullTransparentMesh: 0 +--- !u!1 &1306825819 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1306825820} + 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 &1306825820 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1306825819} + m_LocalRotation: {x: 0, 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: 1003576894} + - {fileID: 241281038} + m_Father: {fileID: 1640097154} + 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 &1307103554 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1307103555} + - component: {fileID: 1307103557} + - component: {fileID: 1307103556} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1307103555 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1307103554} + m_LocalRotation: {x: -0, 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: 848766828} + 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 &1307103556 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1307103554} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1307103557 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1307103554} + m_CullTransparentMesh: 0 --- !u!1 &1307201197 GameObject: m_ObjectHideFlags: 0 @@ -398965,7 +422815,7 @@ RectTransform: m_GameObject: {fileID: 1308104591} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1435630328} - {fileID: 1993299120} @@ -399537,6 +423387,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1309612851} m_CullTransparentMesh: 0 +--- !u!1 &1309952665 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1309952666} + - component: {fileID: 1309952668} + - component: {fileID: 1309952667} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1309952666 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1309952665} + m_LocalRotation: {x: 0, 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: 1195076735} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1309952667 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1309952665} + m_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: +--- !u!222 &1309952668 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1309952665} + m_CullTransparentMesh: 0 --- !u!1 &1310059614 GameObject: m_ObjectHideFlags: 0 @@ -400067,7 +423996,7 @@ RectTransform: m_GameObject: {fileID: 1312608026} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1640796314} m_RootOrder: 9 @@ -400075,7 +424004,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 138.29999} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1312608028 MonoBehaviour: @@ -400380,7 +424309,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1313176718} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -400535,7 +424464,7 @@ RectTransform: m_GameObject: {fileID: 1313603913} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1620356240} - {fileID: 1720634836} @@ -400727,7 +424656,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} @@ -402144,6 +426073,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1318996654 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1318996655} + - component: {fileID: 1318996657} + - component: {fileID: 1318996656} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1318996655 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1318996654} + m_LocalRotation: {x: -0, 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: 645971034} + 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 &1318996656 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1318996654} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1318996657 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1318996654} + m_CullTransparentMesh: 0 --- !u!1 &1319417712 GameObject: m_ObjectHideFlags: 0 @@ -402171,7 +426174,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1319417712} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -402411,7 +426414,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1320425287} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -402467,6 +426470,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1320425287} m_CullTransparentMesh: 0 +--- !u!1 &1320469481 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1320469482} + - component: {fileID: 1320469484} + - component: {fileID: 1320469483} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1320469482 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1320469481} + m_LocalRotation: {x: 0, 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: 720141828} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1320469483 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1320469481} + m_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 &1320469484 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1320469481} + m_CullTransparentMesh: 0 --- !u!1 &1320552123 GameObject: m_ObjectHideFlags: 0 @@ -402494,7 +426576,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} @@ -403319,6 +427401,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1322672179} m_CullTransparentMesh: 0 +--- !u!1 &1323186117 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1323186118} + - component: {fileID: 1323186120} + - component: {fileID: 1323186119} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1323186118 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1323186117} + m_LocalRotation: {x: -0, 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: 476813756} + 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 &1323186119 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1323186117} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1323186120 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1323186117} + m_CullTransparentMesh: 0 --- !u!1 &1323371349 GameObject: m_ObjectHideFlags: 0 @@ -403543,7 +427699,7 @@ RectTransform: m_GameObject: {fileID: 1323987900} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 575007912} - {fileID: 124999429} @@ -403999,7 +428155,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1326593568} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -404166,6 +428322,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1327246314} m_CullTransparentMesh: 0 +--- !u!1 &1327259838 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1327259839} + - component: {fileID: 1327259841} + - component: {fileID: 1327259840} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1327259839 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1327259838} + m_LocalRotation: {x: -0, 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: 1272487951} + 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 &1327259840 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1327259838} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1327259841 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1327259838} + m_CullTransparentMesh: 0 --- !u!1 &1327412182 GameObject: m_ObjectHideFlags: 0 @@ -405227,7 +429457,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} @@ -405237,9 +429467,9 @@ RectTransform: m_Father: {fileID: 883296608} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} --- !u!1 &1332221554 @@ -407205,7 +431435,7 @@ RectTransform: m_GameObject: {fileID: 1338397043} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 338482964} - {fileID: 1573779023} @@ -407355,7 +431585,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} @@ -407371,6 +431601,20 @@ RectTransform: - {fileID: 1218605509} - {fileID: 1131565723} - {fileID: 35905493} + - {fileID: 836193998} + - {fileID: 1378682813} + - {fileID: 1283156824} + - {fileID: 200575469} + - {fileID: 1395029637} + - {fileID: 1093771582} + - {fileID: 1715736501} + - {fileID: 1780232632} + - {fileID: 1738689071} + - {fileID: 188641382} + - {fileID: 1773487218} + - {fileID: 2012493818} + - {fileID: 1339760283} + - {fileID: 750263439} m_Father: {fileID: 1737585331} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -407638,7 +431882,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1339562878} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -407694,6 +431938,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1339562878} m_CullTransparentMesh: 0 +--- !u!1 &1339760282 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1339760283} + 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 &1339760283 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1339760282} + m_LocalRotation: {x: 0, 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: 746864363} + - {fileID: 795899783} + m_Father: {fileID: 1338692539} + 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 &1339904914 GameObject: m_ObjectHideFlags: 0 @@ -408798,7 +433079,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1340638831} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -409580,7 +433861,7 @@ RectTransform: m_GameObject: {fileID: 1343397590} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 759786153} - {fileID: 2128047082} @@ -410402,6 +434683,159 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1347069577 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1347069578} + - component: {fileID: 1347069580} + - component: {fileID: 1347069579} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1347069578 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1347069577} + m_LocalRotation: {x: 0, 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: 1454489188} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1347069579 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1347069577} + m_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.5686275, g: 0.78039217, b: 0.68235296, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &1347069580 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1347069577} + m_CullTransparentMesh: 0 +--- !u!1 &1347296375 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1347296376} + - component: {fileID: 1347296378} + - component: {fileID: 1347296377} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1347296376 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1347296375} + m_LocalRotation: {x: -0, 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: 707098348} + 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 &1347296377 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1347296375} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1347296378 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1347296375} + m_CullTransparentMesh: 0 --- !u!1 &1347377080 GameObject: m_ObjectHideFlags: 0 @@ -410668,7 +435102,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: -0, y: -30} + m_AnchoredPosition: {x: 0, y: -30} m_SizeDelta: {x: 584, y: 14} m_Pivot: {x: 0, y: 1} --- !u!114 &1347753908 @@ -411704,7 +436138,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 @@ -411714,6 +436148,43 @@ RectTransform: m_AnchoredPosition: {x: -5, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 1, y: 0.5} +--- !u!1 &1350765119 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1350765120} + 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 &1350765120 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1350765119} + m_LocalRotation: {x: 0, 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: 417887565} + - {fileID: 2035443858} + m_Father: {fileID: 1130359736} + 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 &1350791136 GameObject: m_ObjectHideFlags: 0 @@ -411871,6 +436342,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1351039993} m_CullTransparentMesh: 0 +--- !u!1 &1351243773 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1351243774} + 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 &1351243774 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1351243773} + m_LocalRotation: {x: 0, 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: 112438342} + - {fileID: 1437043403} + m_Father: {fileID: 801884283} + m_RootOrder: 41 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1351254282 GameObject: m_ObjectHideFlags: 0 @@ -412127,7 +436635,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1352058981} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -413010,7 +437518,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1355095397} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -413520,7 +438028,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} @@ -413543,6 +438051,27 @@ RectTransform: - {fileID: 1708542073} - {fileID: 997958856} - {fileID: 1825301425} + - {fileID: 1982412280} + - {fileID: 1637523679} + - {fileID: 1556641266} + - {fileID: 842733557} + - {fileID: 841024191} + - {fileID: 943483654} + - {fileID: 865504207} + - {fileID: 157585053} + - {fileID: 1001670841} + - {fileID: 1209658534} + - {fileID: 855330697} + - {fileID: 758082991} + - {fileID: 645971034} + - {fileID: 540982088} + - {fileID: 480929929} + - {fileID: 1274318534} + - {fileID: 1445288285} + - {fileID: 1602967725} + - {fileID: 1195076735} + - {fileID: 441920079} + - {fileID: 1595246154} m_Father: {fileID: 930446419} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -413999,7 +438528,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1360577870} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -414159,7 +438688,7 @@ RectTransform: m_GameObject: {fileID: 1360858604} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 551574444} - {fileID: 777255399} @@ -414509,6 +439038,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1362553351} m_CullTransparentMesh: 0 +--- !u!1 &1362663346 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1362663347} + - component: {fileID: 1362663349} + - component: {fileID: 1362663348} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1362663347 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1362663346} + m_LocalRotation: {x: -0, 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: 605405549} + 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 &1362663348 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1362663346} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1362663349 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1362663346} + m_CullTransparentMesh: 0 --- !u!1 &1362672492 GameObject: m_ObjectHideFlags: 0 @@ -415462,7 +440065,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1364624558} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -415883,7 +440486,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1365401854} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -416175,6 +440778,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1365932110} m_CullTransparentMesh: 0 +--- !u!1 &1366083739 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1366083740} + 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 &1366083740 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1366083739} + m_LocalRotation: {x: 0, 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: 87923515} + - {fileID: 1961956889} + m_Father: {fileID: 300972851} + m_RootOrder: 45 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1366376472 GameObject: m_ObjectHideFlags: 0 @@ -416846,7 +441486,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1368770239} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -442121,6 +466761,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} +--- !u!1 &1369657559 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1369657560} + - component: {fileID: 1369657562} + - component: {fileID: 1369657561} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1369657560 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1369657559} + m_LocalRotation: {x: -0, 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: 1062123299} + 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 &1369657561 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1369657559} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1369657562 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1369657559} + m_CullTransparentMesh: 0 --- !u!1 &1369716282 GameObject: m_ObjectHideFlags: 0 @@ -442497,7 +467211,7 @@ RectTransform: m_GameObject: {fileID: 1371012458} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1640796314} m_RootOrder: 12 @@ -442505,7 +467219,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: -138.29999} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1371012460 MonoBehaviour: @@ -443419,7 +468133,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1373914691} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -443618,7 +468332,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 @@ -444234,7 +468948,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1377722026} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -444517,6 +469231,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1378295669} m_CullTransparentMesh: 0 +--- !u!1 &1378682812 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1378682813} + 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 &1378682813 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1378682812} + m_LocalRotation: {x: 0, 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: 1038846650} + - {fileID: 1093972200} + m_Father: {fileID: 1338692539} + 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 &1378715512 GameObject: m_ObjectHideFlags: 0 @@ -444618,7 +469369,7 @@ RectTransform: m_GameObject: {fileID: 1378928471} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 146631909} - {fileID: 975725358} @@ -444729,7 +469480,7 @@ RectTransform: m_GameObject: {fileID: 1379123269} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 428014464} - {fileID: 1643814178} @@ -444968,7 +469719,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} @@ -444978,11 +469729,90 @@ RectTransform: m_Father: {fileID: 782651941} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} +--- !u!1 &1381202253 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1381202254} + - component: {fileID: 1381202256} + - component: {fileID: 1381202255} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1381202254 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1381202253} + m_LocalRotation: {x: 0, 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: 188641382} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1381202255 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1381202253} + m_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 &1381202256 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1381202253} + m_CullTransparentMesh: 0 --- !u!1 &1381203686 GameObject: m_ObjectHideFlags: 0 @@ -445451,7 +470281,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1382434260} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -446165,6 +470995,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1384149819} m_CullTransparentMesh: 0 +--- !u!1 &1385427657 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1385427658} + - component: {fileID: 1385427660} + - component: {fileID: 1385427659} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1385427658 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1385427657} + m_LocalRotation: {x: -0, 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: 1784815927} + 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 &1385427659 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1385427657} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1385427660 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1385427657} + m_CullTransparentMesh: 0 --- !u!1 &1385622419 GameObject: m_ObjectHideFlags: 0 @@ -446364,6 +471268,43 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1386648357 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1386648358} + 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 &1386648358 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1386648357} + m_LocalRotation: {x: 0, 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: 621330590} + - {fileID: 747286754} + m_Father: {fileID: 488529639} + 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 &1386707719 GameObject: m_ObjectHideFlags: 0 @@ -446475,6 +471416,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1386722981} m_CullTransparentMesh: 0 +--- !u!1 &1386763531 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1386763532} + - component: {fileID: 1386763534} + - component: {fileID: 1386763533} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1386763532 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1386763531} + m_LocalRotation: {x: -0, 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: 2007285223} + 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 &1386763533 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1386763531} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1386763534 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1386763531} + m_CullTransparentMesh: 0 --- !u!1 &1387239579 GameObject: m_ObjectHideFlags: 0 @@ -446584,6 +471599,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} m_Pivot: {x: 0, y: 0} +--- !u!1 &1388151849 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1388151850} + - component: {fileID: 1388151852} + - component: {fileID: 1388151851} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1388151850 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1388151849} + m_LocalRotation: {x: 0, 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: 555302430} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1388151851 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1388151849} + m_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.5686275, g: 0.78039217, b: 0.68235296, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &1388151852 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1388151849} + m_CullTransparentMesh: 0 --- !u!1 &1388495888 GameObject: m_ObjectHideFlags: 0 @@ -446658,6 +471752,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1389271524 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1389271525} + 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 &1389271525 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1389271524} + m_LocalRotation: {x: 0, 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: 880204355} + - {fileID: 1569853373} + m_Father: {fileID: 2097019616} + 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 &1389367753 GameObject: m_ObjectHideFlags: 0 @@ -446701,6 +471832,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} +--- !u!1 &1389377722 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1389377723} + 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 &1389377723 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1389377722} + m_LocalRotation: {x: 0, 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: 726906468} + - {fileID: 1111724946} + m_Father: {fileID: 2097019616} + 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 &1389380707 GameObject: m_ObjectHideFlags: 0 @@ -446728,7 +471896,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1389380707} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -446890,7 +472058,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1389620131} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -448160,7 +473328,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1393890052} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -448688,6 +473856,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1394932017} m_CullTransparentMesh: 0 +--- !u!1 &1395029636 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1395029637} + 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 &1395029637 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1395029636} + m_LocalRotation: {x: 0, 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: 1627718539} + - {fileID: 2068047505} + m_Father: {fileID: 1338692539} + 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 &1395062954 GameObject: m_ObjectHideFlags: 0 @@ -449031,6 +474236,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1395412976 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1395412977} + - component: {fileID: 1395412979} + - component: {fileID: 1395412978} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1395412977 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1395412976} + m_LocalRotation: {x: -0, 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: 2005591126} + 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 &1395412978 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1395412976} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1395412979 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1395412976} + m_CullTransparentMesh: 0 --- !u!1 &1395503634 GameObject: m_ObjectHideFlags: 0 @@ -449135,7 +474414,7 @@ RectTransform: m_GameObject: {fileID: 1395739325} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1059408351} - {fileID: 716335815} @@ -449416,6 +474695,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1397363715} m_CullTransparentMesh: 0 +--- !u!1 &1398167599 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1398167600} + 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 &1398167600 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1398167599} + m_LocalRotation: {x: 0, 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: 1583216369} + - {fileID: 1965562227} + m_Father: {fileID: 488529639} + 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 &1398584630 GameObject: m_ObjectHideFlags: 0 @@ -449806,6 +475122,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1399291277} m_CullTransparentMesh: 0 +--- !u!1 &1399565310 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1399565311} + m_Layer: 0 + m_Name: label_3_1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1399565311 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1399565310} + m_LocalRotation: {x: 0, 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: 1187508034} + - {fileID: 1811102985} + m_Father: {fileID: 300972851} + m_RootOrder: 57 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1399900734 GameObject: m_ObjectHideFlags: 0 @@ -450060,7 +475413,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} @@ -450070,9 +475423,9 @@ RectTransform: m_Father: {fileID: 33516770} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} --- !u!1 &1401735419 @@ -450104,15 +475457,15 @@ RectTransform: m_GameObject: {fileID: 1401735419} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2057043785} m_RootOrder: 12 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -91.39441, y: -67.28027} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_AnchoredPosition: {x: -91.488785, y: -67.28027} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1401735421 MonoBehaviour: @@ -450804,7 +476157,7 @@ RectTransform: m_GameObject: {fileID: 1404824693} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1134061797} - {fileID: 66574606} @@ -451729,7 +477082,7 @@ RectTransform: m_GameObject: {fileID: 1407588447} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 1228332530} - {fileID: 1817849955} @@ -451815,6 +477168,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1407621903} m_CullTransparentMesh: 0 +--- !u!1 &1407683093 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1407683094} + - component: {fileID: 1407683096} + - component: {fileID: 1407683095} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1407683094 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1407683093} + m_LocalRotation: {x: 0, 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: 865504207} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1407683095 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1407683093} + m_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 &1407683096 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1407683093} + m_CullTransparentMesh: 0 --- !u!1 &1407712108 GameObject: m_ObjectHideFlags: 0 @@ -451840,7 +477272,7 @@ RectTransform: m_GameObject: {fileID: 1407712108} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1261395637} - {fileID: 1211523481} @@ -451852,6 +477284,80 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1408206783 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1408206784} + - component: {fileID: 1408206786} + - component: {fileID: 1408206785} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1408206784 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1408206783} + m_LocalRotation: {x: -0, 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: 508172791} + 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 &1408206785 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1408206783} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1408206786 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1408206783} + m_CullTransparentMesh: 0 --- !u!1 &1408495682 GameObject: m_ObjectHideFlags: 0 @@ -451956,7 +477462,7 @@ RectTransform: m_GameObject: {fileID: 1408894531} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 413163470} - {fileID: 1483588635} @@ -452300,7 +477806,7 @@ RectTransform: m_GameObject: {fileID: 1409641031} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 583432768} - {fileID: 1915059849} @@ -452775,7 +478281,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1410872079} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -453636,6 +479142,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1414178165 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1414178166} + - component: {fileID: 1414178168} + - component: {fileID: 1414178167} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1414178166 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1414178165} + m_LocalRotation: {x: -0, 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: 1816971754} + 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 &1414178167 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1414178165} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1414178168 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1414178165} + m_CullTransparentMesh: 0 --- !u!1 &1414266893 GameObject: m_ObjectHideFlags: 0 @@ -454895,7 +480475,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1419109671} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -455503,6 +481083,159 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1420051985} m_CullTransparentMesh: 0 +--- !u!1 &1420337269 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1420337270} + - component: {fileID: 1420337272} + - component: {fileID: 1420337271} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1420337270 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1420337269} + m_LocalRotation: {x: 0, 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: 956256037} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1420337271 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1420337269} + m_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 &1420337272 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1420337269} + m_CullTransparentMesh: 0 +--- !u!1 &1420436077 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1420436078} + - component: {fileID: 1420436080} + - component: {fileID: 1420436079} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1420436078 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1420436077} + m_LocalRotation: {x: -0, 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: 720141828} + 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 &1420436079 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1420436077} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1420436080 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1420436077} + m_CullTransparentMesh: 0 --- !u!1 &1420466609 GameObject: m_ObjectHideFlags: 0 @@ -455929,6 +481662,43 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1420980322 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1420980323} + m_Layer: 0 + m_Name: label_4_3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1420980323 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1420980322} + m_LocalRotation: {x: 0, 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: 1595298800} + - {fileID: 499777048} + m_Father: {fileID: 300972851} + m_RootOrder: 66 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1421063215 GameObject: m_ObjectHideFlags: 0 @@ -457120,7 +482890,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1424793324} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -457203,7 +482973,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1424798929} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -457792,7 +483562,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1427787973} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -457885,6 +483655,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1427821038 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1427821039} + m_Layer: 0 + m_Name: label_3_3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1427821039 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1427821038} + m_LocalRotation: {x: 0, 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: 387208782} + - {fileID: 1879772678} + m_Father: {fileID: 300972851} + m_RootOrder: 59 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1427838254 GameObject: m_ObjectHideFlags: 0 @@ -458813,7 +484620,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1430626294} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -459350,7 +485157,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1432521713} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -459431,7 +485238,7 @@ RectTransform: m_GameObject: {fileID: 1432752035} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1419441803} - {fileID: 214015498} @@ -460527,6 +486334,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1436922067} m_CullTransparentMesh: 0 +--- !u!1 &1437043402 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1437043403} + - component: {fileID: 1437043405} + - component: {fileID: 1437043404} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1437043403 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1437043402} + m_LocalRotation: {x: 0, 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: 1351243774} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1437043404 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1437043402} + m_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 &1437043405 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1437043402} + m_CullTransparentMesh: 0 --- !u!1 &1437079870 GameObject: m_ObjectHideFlags: 0 @@ -461629,7 +487515,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1441047400} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -461808,6 +487694,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1441763264 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1441763265} + 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 &1441763265 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1441763264} + m_LocalRotation: {x: 0, 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: 1769346445} + - {fileID: 1265540855} + m_Father: {fileID: 300972851} + m_RootOrder: 51 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1441862144 GameObject: m_ObjectHideFlags: 0 @@ -461835,7 +487758,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1441862144} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -462269,7 +488192,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} @@ -462343,7 +488266,7 @@ RectTransform: m_GameObject: {fileID: 1443726658} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 2039161245} - {fileID: 2141617955} @@ -462825,6 +488748,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1445264866} m_CullTransparentMesh: 0 +--- !u!1 &1445288284 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1445288285} + 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 &1445288285 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1445288284} + m_LocalRotation: {x: 0, 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: 904057372} + - {fileID: 1695688884} + m_Father: {fileID: 1357367415} + m_RootOrder: 37 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1445434462 GameObject: m_ObjectHideFlags: 0 @@ -462998,7 +488958,7 @@ RectTransform: m_GameObject: {fileID: 1446293441} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1709780610} - {fileID: 1522913024} @@ -463325,6 +489285,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: -5} m_SizeDelta: {x: 1173.12, y: 338} m_Pivot: {x: 0.5, y: 1} +--- !u!1 &1449600534 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1449600535} + - component: {fileID: 1449600537} + - component: {fileID: 1449600536} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1449600535 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1449600534} + m_LocalRotation: {x: 0, 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: 864401649} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1449600536 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1449600534} + m_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 &1449600537 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1449600534} + m_CullTransparentMesh: 0 --- !u!1 &1449789967 GameObject: m_ObjectHideFlags: 0 @@ -463435,7 +489474,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1450287546} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: -0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -463444,7 +489483,7 @@ RectTransform: 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: -30} + m_AnchoredPosition: {x: -0, y: -30} m_SizeDelta: {x: 584, y: 14} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1450287548 @@ -464413,6 +490452,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1454336832} m_CullTransparentMesh: 0 +--- !u!1 &1454489187 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1454489188} + m_Layer: 0 + m_Name: label_4_3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1454489188 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1454489187} + m_LocalRotation: {x: 0, 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: 106017227} + - {fileID: 1347069578} + m_Father: {fileID: 763052335} + m_RootOrder: 66 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1455607237 GameObject: m_ObjectHideFlags: 0 @@ -464440,7 +490516,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1455607237} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -464496,6 +490572,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1455607237} m_CullTransparentMesh: 0 +--- !u!1 &1455880250 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1455880251} + - component: {fileID: 1455880253} + - component: {fileID: 1455880252} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1455880251 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1455880250} + m_LocalRotation: {x: 0, 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: 1602967725} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1455880252 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1455880250} + m_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: +--- !u!222 &1455880253 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1455880250} + m_CullTransparentMesh: 0 --- !u!1 &1456009331 GameObject: m_ObjectHideFlags: 0 @@ -464674,7 +490829,7 @@ RectTransform: m_GameObject: {fileID: 1456473678} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1393027393} - {fileID: 1608466751} @@ -465819,7 +491974,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1463043055} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -465902,7 +492057,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} @@ -466020,7 +492175,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1463236291} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -471067,7 +497222,7 @@ RectTransform: m_GameObject: {fileID: 1468153195} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 2108095909} - {fileID: 879408416} @@ -471141,7 +497296,7 @@ RectTransform: m_GameObject: {fileID: 1468363029} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 287586720} - {fileID: 2033960256} @@ -471236,6 +497391,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1468509434} m_CullTransparentMesh: 0 +--- !u!1 &1468845317 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1468845318} + - component: {fileID: 1468845320} + - component: {fileID: 1468845319} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1468845318 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1468845317} + m_LocalRotation: {x: -0, 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: 694099502} + 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 &1468845319 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1468845317} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1468845320 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1468845317} + m_CullTransparentMesh: 0 --- !u!1 &1470096564 GameObject: m_ObjectHideFlags: 0 @@ -471530,7 +497759,7 @@ RectTransform: m_GameObject: {fileID: 1470992525} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 240671151} - {fileID: 1894385338} @@ -471708,6 +497937,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1471101407} m_CullTransparentMesh: 0 +--- !u!1 &1471154604 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1471154605} + - component: {fileID: 1471154607} + - component: {fileID: 1471154606} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1471154605 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1471154604} + m_LocalRotation: {x: 0, 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: 750263439} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1471154606 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1471154604} + m_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 &1471154607 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1471154604} + m_CullTransparentMesh: 0 --- !u!1 &1471577270 GameObject: m_ObjectHideFlags: 0 @@ -472044,7 +498352,7 @@ RectTransform: m_GameObject: {fileID: 1473173589} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 522188613} - {fileID: 127279882} @@ -472305,7 +498613,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1474988134} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -473389,7 +499697,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} @@ -473399,9 +499707,9 @@ RectTransform: m_Father: {fileID: 408536198} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} --- !u!1 &1478559130 @@ -473557,6 +499865,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1478582459} m_CullTransparentMesh: 0 +--- !u!1 &1479055466 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1479055467} + - component: {fileID: 1479055469} + - component: {fileID: 1479055468} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1479055467 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1479055466} + m_LocalRotation: {x: -0, 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: 604972136} + 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 &1479055468 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1479055466} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1479055469 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1479055466} + m_CullTransparentMesh: 0 --- !u!1 &1479120824 GameObject: m_ObjectHideFlags: 0 @@ -473582,7 +499964,7 @@ RectTransform: m_GameObject: {fileID: 1479120824} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1532337392} - {fileID: 1186159678} @@ -474701,7 +501083,7 @@ RectTransform: m_GameObject: {fileID: 1484217484} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 621310277} - {fileID: 412388383} @@ -474787,6 +501169,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1484581094} m_CullTransparentMesh: 0 +--- !u!1 &1484679476 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1484679477} + - component: {fileID: 1484679479} + - component: {fileID: 1484679478} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1484679477 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1484679476} + m_LocalRotation: {x: 0, 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: 11567882} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1484679478 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1484679476} + m_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: +--- !u!222 &1484679479 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1484679476} + m_CullTransparentMesh: 0 --- !u!1 &1484902004 GameObject: m_ObjectHideFlags: 0 @@ -475004,7 +501465,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} @@ -475238,6 +501699,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 1173.12, y: 338} m_Pivot: {x: 0, y: 0} +--- !u!1 &1486738350 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1486738351} + - component: {fileID: 1486738353} + - component: {fileID: 1486738352} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1486738351 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1486738350} + m_LocalRotation: {x: 0, 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: 1062123299} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1486738352 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1486738350} + m_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 &1486738353 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1486738350} + m_CullTransparentMesh: 0 --- !u!1 &1486880722 GameObject: m_ObjectHideFlags: 0 @@ -475627,6 +502167,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1487733497} m_CullTransparentMesh: 0 +--- !u!1 &1487758900 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1487758901} + 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 &1487758901 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1487758900} + m_LocalRotation: {x: 0, 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: 1710608144} + - {fileID: 1904468594} + m_Father: {fileID: 1640097154} + 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 &1487884489 GameObject: m_ObjectHideFlags: 0 @@ -476455,7 +503032,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1490275680} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -476705,6 +503282,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1490938427} m_CullTransparentMesh: 0 +--- !u!1 &1491558722 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1491558723} + 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 &1491558723 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1491558722} + m_LocalRotation: {x: 0, 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: 218197855} + - {fileID: 612183297} + m_Father: {fileID: 763052335} + m_RootOrder: 48 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1491895474 GameObject: m_ObjectHideFlags: 0 @@ -477501,6 +504115,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1493544701} m_CullTransparentMesh: 0 +--- !u!1 &1493577798 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1493577799} + m_Layer: 0 + m_Name: label_3_2 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1493577799 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1493577798} + m_LocalRotation: {x: 0, 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: 1888022904} + - {fileID: 1115533892} + m_Father: {fileID: 300972851} + m_RootOrder: 58 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1493861928 GameObject: m_ObjectHideFlags: 0 @@ -477536,7 +504187,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 59.810425, y: 19.77251} + m_SizeDelta: {x: 59.02559, y: 19.06653} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1493861930 MonoBehaviour: @@ -480809,7 +507460,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} @@ -480861,6 +507512,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1503812677 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1503812678} + 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 &1503812678 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1503812677} + m_LocalRotation: {x: 0, 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: 1715572881} + - {fileID: 125371668} + m_Father: {fileID: 300972851} + m_RootOrder: 49 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1503900333 GameObject: m_ObjectHideFlags: 0 @@ -482746,6 +509434,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1504453948} m_CullTransparentMesh: 0 +--- !u!1 &1504745069 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1504745070} + - component: {fileID: 1504745072} + - component: {fileID: 1504745071} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1504745070 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1504745069} + m_LocalRotation: {x: -0, 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: 1018054037} + 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 &1504745071 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1504745069} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1504745072 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1504745069} + m_CullTransparentMesh: 0 --- !u!1 &1505163517 GameObject: m_ObjectHideFlags: 0 @@ -483012,7 +509774,7 @@ RectTransform: m_GameObject: {fileID: 1505564246} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1132789436} - {fileID: 383396639} @@ -483555,7 +510317,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1507162162} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -483860,7 +510622,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1508551683} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: -0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -483869,7 +510631,7 @@ RectTransform: 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: -30} + m_AnchoredPosition: {x: -0, y: -30} m_SizeDelta: {x: 584, y: 14} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1508551685 @@ -484247,7 +511009,7 @@ RectTransform: m_GameObject: {fileID: 1510253387} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 871696515} - {fileID: 2092252177} @@ -484286,7 +511048,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} @@ -485729,7 +512491,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 @@ -485892,6 +512654,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1516325982} m_CullTransparentMesh: 0 +--- !u!1 &1516723479 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1516723480} + - component: {fileID: 1516723482} + - component: {fileID: 1516723481} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1516723480 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1516723479} + m_LocalRotation: {x: -0, 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: 864401649} + 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 &1516723481 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1516723479} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1516723482 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1516723479} + m_CullTransparentMesh: 0 --- !u!1 &1516976915 GameObject: m_ObjectHideFlags: 0 @@ -486003,6 +512839,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1517111743 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1517111744} + - component: {fileID: 1517111746} + - component: {fileID: 1517111745} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1517111744 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1517111743} + m_LocalRotation: {x: -0, 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: 562186460} + 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 &1517111745 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1517111743} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1517111746 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1517111743} + m_CullTransparentMesh: 0 --- !u!1 &1517239445 GameObject: m_ObjectHideFlags: 0 @@ -486225,7 +513135,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1517822303} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -486517,6 +513427,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1518712234 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1518712235} + - component: {fileID: 1518712237} + - component: {fileID: 1518712236} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1518712235 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1518712234} + m_LocalRotation: {x: 0, 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: 1977016205} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1518712236 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1518712234} + m_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 &1518712237 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1518712234} + m_CullTransparentMesh: 0 --- !u!1 &1519317691 GameObject: m_ObjectHideFlags: 0 @@ -486977,10 +513966,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: -1216} - 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: 0} --- !u!114 &1520897808 MonoBehaviour: @@ -489266,6 +516255,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1522332193 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1522332194} + 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 &1522332194 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1522332193} + m_LocalRotation: {x: 0, 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: 1284168150} + - {fileID: 1676091822} + m_Father: {fileID: 763052335} + m_RootOrder: 38 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1522410138 GameObject: m_ObjectHideFlags: 0 @@ -489453,7 +516479,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1522578490} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -489796,7 +516822,7 @@ RectTransform: m_GameObject: {fileID: 1522999912} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 129263110} - {fileID: 748802421} @@ -489808,6 +516834,43 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1523078660 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1523078661} + 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 &1523078661 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1523078660} + m_LocalRotation: {x: 0, 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: 905056425} + - {fileID: 163468074} + m_Father: {fileID: 801884283} + 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 &1523540383 GameObject: m_ObjectHideFlags: 0 @@ -489833,7 +516896,7 @@ RectTransform: m_GameObject: {fileID: 1523540383} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 595238821} - {fileID: 1653382663} @@ -491218,7 +518281,7 @@ RectTransform: m_GameObject: {fileID: 1528542110} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 663815329} - {fileID: 1062192037} @@ -491331,7 +518394,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1529075501} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -491794,7 +518857,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1531722496} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -492040,6 +519103,43 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1533327008 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1533327009} + 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 &1533327009 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1533327008} + m_LocalRotation: {x: 0, 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: 26153550} + - {fileID: 932358526} + m_Father: {fileID: 1009125081} + 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 &1533561639 GameObject: m_ObjectHideFlags: 0 @@ -492567,7 +519667,7 @@ RectTransform: m_GameObject: {fileID: 1535396316} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1887823277} - {fileID: 778429101} @@ -492687,7 +519787,7 @@ RectTransform: m_GameObject: {fileID: 1535893286} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1861889050} - {fileID: 139932179} @@ -492994,7 +520094,7 @@ RectTransform: m_GameObject: {fileID: 1538143514} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 17518679} - {fileID: 2096882189} @@ -493297,7 +520397,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} @@ -494388,7 +521488,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1542791593} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -494444,6 +521544,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1542791593} m_CullTransparentMesh: 0 +--- !u!1 &1543026008 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1543026009} + - component: {fileID: 1543026011} + - component: {fileID: 1543026010} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1543026009 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1543026008} + m_LocalRotation: {x: 0, 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: 831339249} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1543026010 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1543026008} + m_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 &1543026011 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1543026008} + m_CullTransparentMesh: 0 --- !u!1 &1543035988 GameObject: m_ObjectHideFlags: 0 @@ -494506,7 +521685,7 @@ RectTransform: m_GameObject: {fileID: 1543119051} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 76381237} - {fileID: 590804124} @@ -495200,7 +522379,7 @@ RectTransform: m_GameObject: {fileID: 1545180808} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 2036447192} - {fileID: 1728517424} @@ -495897,7 +523076,7 @@ RectTransform: m_GameObject: {fileID: 1546873957} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 192917052} - {fileID: 747240775} @@ -496239,7 +523418,7 @@ RectTransform: m_GameObject: {fileID: 1548412354} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1410618351} - {fileID: 1080894116} @@ -496478,6 +523657,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1549274611} m_CullTransparentMesh: 0 +--- !u!1 &1549319334 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1549319335} + 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 &1549319335 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1549319334} + m_LocalRotation: {x: 0, 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: 1596693097} + - {fileID: 625420305} + m_Father: {fileID: 1130359736} + 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 &1549455196 GameObject: m_ObjectHideFlags: 0 @@ -496557,6 +523773,117 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1549455196} m_CullTransparentMesh: 0 +--- !u!1 &1549496839 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1549496840} + - component: {fileID: 1549496842} + - component: {fileID: 1549496841} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1549496840 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1549496839} + m_LocalRotation: {x: -0, 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: 1602967725} + 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 &1549496841 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1549496839} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1549496842 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1549496839} + m_CullTransparentMesh: 0 +--- !u!1 &1549872108 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1549872109} + 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 &1549872109 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1549872108} + m_LocalRotation: {x: 0, 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: 1752126861} + - {fileID: 1919541753} + m_Father: {fileID: 801884283} + 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 &1549897742 GameObject: m_ObjectHideFlags: 0 @@ -496756,6 +524083,85 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1550942589 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1550942590} + - component: {fileID: 1550942592} + - component: {fileID: 1550942591} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1550942590 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1550942589} + m_LocalRotation: {x: 0, 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: 1001670841} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1550942591 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1550942589} + m_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 &1550942592 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1550942589} + m_CullTransparentMesh: 0 --- !u!1 &1550961477 GameObject: m_ObjectHideFlags: 0 @@ -496857,7 +524263,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1551083434} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -497977,6 +525383,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1554870928} m_CullTransparentMesh: 0 +--- !u!1 &1554969326 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1554969327} + - component: {fileID: 1554969329} + - component: {fileID: 1554969328} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1554969327 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1554969326} + m_LocalRotation: {x: 0, 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: 1266534950} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1554969328 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1554969326} + m_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.5686275, g: 0.78039217, b: 0.68235296, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &1554969329 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1554969326} + m_CullTransparentMesh: 0 --- !u!1 &1555209123 GameObject: m_ObjectHideFlags: 0 @@ -498051,6 +525536,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1555209123} m_CullTransparentMesh: 0 +--- !u!1 &1555222914 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1555222915} + 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 &1555222915 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1555222914} + m_LocalRotation: {x: 0, 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: 1674498690} + - {fileID: 2050856209} + m_Father: {fileID: 1009125081} + 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 &1555287242 GameObject: m_ObjectHideFlags: 0 @@ -498315,6 +525837,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1556035359} m_CullTransparentMesh: 0 +--- !u!1 &1556063391 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1556063392} + - component: {fileID: 1556063394} + - component: {fileID: 1556063393} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1556063392 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1556063391} + m_LocalRotation: {x: 0, 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: 1977431411} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1556063393 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1556063391} + m_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.83137256, g: 0.50980395, b: 0.39607844, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &1556063394 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1556063391} + m_CullTransparentMesh: 0 --- !u!1 &1556078971 GameObject: m_ObjectHideFlags: 0 @@ -498626,6 +526227,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1556632497} m_CullTransparentMesh: 0 +--- !u!1 &1556641265 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1556641266} + 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 &1556641266 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1556641265} + m_LocalRotation: {x: 0, 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: 1577283966} + - {fileID: 2129513412} + m_Father: {fileID: 1357367415} + 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 &1557004780 GameObject: m_ObjectHideFlags: 0 @@ -499003,6 +526641,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} +--- !u!1 &1559819830 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1559819831} + - component: {fileID: 1559819833} + - component: {fileID: 1559819832} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1559819831 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1559819830} + m_LocalRotation: {x: -0, 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: 829871821} + 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 &1559819832 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1559819830} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1559819833 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1559819830} + m_CullTransparentMesh: 0 --- !u!1 &1559849855 GameObject: m_ObjectHideFlags: 0 @@ -499109,7 +526821,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} @@ -499146,7 +526858,7 @@ RectTransform: m_GameObject: {fileID: 1560284902} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 997435603} - {fileID: 835249433} @@ -499338,7 +527050,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1561031481} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -499611,7 +527323,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} @@ -500306,15 +528018,15 @@ RectTransform: m_GameObject: {fileID: 1563749976} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1107243629} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -58.10553, y: -101.55556} - m_SizeDelta: {x: 52.777252, y: 19.412323} + m_AnchoredPosition: {x: -57.96396, y: -101.55556} + m_SizeDelta: {x: 53.06039, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1563749978 MonoBehaviour: @@ -500360,6 +528072,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1563749976} m_CullTransparentMesh: 0 +--- !u!1 &1563878932 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1563878933} + 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 &1563878933 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1563878932} + m_LocalRotation: {x: 0, 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: 1945675223} + - {fileID: 628183107} + m_Father: {fileID: 252393583} + 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: 82, y: 48.63333} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1564678441 GameObject: m_ObjectHideFlags: 0 @@ -500939,7 +528688,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1567607683} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -501453,6 +529202,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1568972440 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1568972441} + - component: {fileID: 1568972443} + - component: {fileID: 1568972442} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1568972441 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1568972440} + m_LocalRotation: {x: 0, 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: 840487097} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1568972442 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1568972440} + m_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 &1568972443 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1568972440} + m_CullTransparentMesh: 0 --- !u!1 &1569445399 GameObject: m_ObjectHideFlags: 0 @@ -501730,6 +529558,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0, y: 0} +--- !u!1 &1569853372 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1569853373} + - component: {fileID: 1569853375} + - component: {fileID: 1569853374} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1569853373 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1569853372} + m_LocalRotation: {x: 0, 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: 1389271525} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1569853374 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1569853372} + m_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 &1569853375 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1569853372} + m_CullTransparentMesh: 0 --- !u!1 &1570276884 GameObject: m_ObjectHideFlags: 0 @@ -502806,7 +530713,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} @@ -502816,9 +530723,9 @@ RectTransform: m_Father: {fileID: 930446419} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} --- !u!1 &1573970833 @@ -502846,7 +530753,7 @@ RectTransform: m_GameObject: {fileID: 1573970833} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 994210755} - {fileID: 896970428} @@ -502966,15 +530873,15 @@ RectTransform: m_GameObject: {fileID: 1574371187} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 449267886} m_RootOrder: 8 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -114.06766, y: 62.45999} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_AnchoredPosition: {x: -114.16203, y: 62.45999} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1574371189 MonoBehaviour: @@ -503020,6 +530927,159 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1574371187} m_CullTransparentMesh: 0 +--- !u!1 &1574400270 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1574400271} + - component: {fileID: 1574400273} + - component: {fileID: 1574400272} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1574400271 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574400270} + m_LocalRotation: {x: -0, 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: 1169806581} + 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 &1574400272 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574400270} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1574400273 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574400270} + m_CullTransparentMesh: 0 +--- !u!1 &1574608355 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1574608356} + - component: {fileID: 1574608358} + - component: {fileID: 1574608357} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1574608356 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574608355} + m_LocalRotation: {x: 0, 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: 988878005} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1574608357 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574608355} + m_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 &1574608358 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1574608355} + m_CullTransparentMesh: 0 --- !u!1 &1574824902 GameObject: m_ObjectHideFlags: 0 @@ -503073,6 +531133,30 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - eventID: 2 callback: m_PersistentCalls: @@ -503112,8 +531196,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 @@ -503314,7 +531398,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1575013803} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -503585,7 +531669,7 @@ RectTransform: m_GameObject: {fileID: 1576534358} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 2116288669} - {fileID: 1352025547} @@ -503870,6 +531954,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1577283965 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1577283966} + - component: {fileID: 1577283968} + - component: {fileID: 1577283967} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1577283966 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1577283965} + m_LocalRotation: {x: -0, 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: 1556641266} + 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 &1577283967 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1577283965} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1577283968 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1577283965} + m_CullTransparentMesh: 0 --- !u!1 &1577320586 GameObject: m_ObjectHideFlags: 0 @@ -504174,7 +532332,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 59.810425, y: 19.77251} + m_SizeDelta: {x: 59.02559, y: 19.06653} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1578504825 MonoBehaviour: @@ -504909,15 +533067,15 @@ RectTransform: m_GameObject: {fileID: 1581140272} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2057043785} m_RootOrder: 18 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 256.05286, y: -21.899994} - m_SizeDelta: {x: 27.298578, y: 19.412323} + m_AnchoredPosition: {x: 256.15997, y: -21.899994} + m_SizeDelta: {x: 27.512794, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1581140274 MonoBehaviour: @@ -505084,6 +533242,154 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1581394901} m_CullTransparentMesh: 0 +--- !u!1 &1582127485 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1582127486} + - component: {fileID: 1582127488} + - component: {fileID: 1582127487} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1582127486 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1582127485} + m_LocalRotation: {x: -0, 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: 1921096791} + 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 &1582127487 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1582127485} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1582127488 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1582127485} + m_CullTransparentMesh: 0 +--- !u!1 &1582205224 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1582205225} + - component: {fileID: 1582205227} + - component: {fileID: 1582205226} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1582205225 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1582205224} + m_LocalRotation: {x: -0, 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: 732841202} + 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 &1582205226 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1582205224} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1582205227 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1582205224} + m_CullTransparentMesh: 0 --- !u!1 &1582347339 GameObject: m_ObjectHideFlags: 0 @@ -505167,6 +533473,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1582347339} m_CullTransparentMesh: 0 +--- !u!1 &1582540188 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1582540189} + - component: {fileID: 1582540191} + - component: {fileID: 1582540190} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1582540189 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1582540188} + m_LocalRotation: {x: 0, 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: 335520325} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1582540190 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1582540188} + m_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: +--- !u!222 &1582540191 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1582540188} + m_CullTransparentMesh: 0 --- !u!1 &1583116164 GameObject: m_ObjectHideFlags: 0 @@ -505204,6 +533589,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1583216368 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1583216369} + - component: {fileID: 1583216371} + - component: {fileID: 1583216370} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1583216369 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1583216368} + m_LocalRotation: {x: -0, 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: 1398167600} + 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 &1583216370 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1583216368} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1583216371 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1583216368} + m_CullTransparentMesh: 0 --- !u!1 &1583384653 GameObject: m_ObjectHideFlags: 0 @@ -505449,7 +533908,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1584084132} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -505871,6 +534330,30 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - eventID: 2 callback: m_PersistentCalls: @@ -506038,7 +534521,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1584870176} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -506205,6 +534688,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1585188423 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1585188424} + - component: {fileID: 1585188426} + - component: {fileID: 1585188425} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1585188424 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1585188423} + m_LocalRotation: {x: -0, 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: 943483654} + 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 &1585188425 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1585188423} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1585188426 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1585188423} + m_CullTransparentMesh: 0 --- !u!1 &1585188711 GameObject: m_ObjectHideFlags: 0 @@ -506752,6 +535309,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1586280544} m_CullTransparentMesh: 0 +--- !u!1 &1586494980 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1586494981} + - component: {fileID: 1586494983} + - component: {fileID: 1586494982} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1586494981 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1586494980} + m_LocalRotation: {x: -0, 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: 1687006357} + 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 &1586494982 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1586494980} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1586494983 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1586494980} + m_CullTransparentMesh: 0 --- !u!1 &1586495871 GameObject: m_ObjectHideFlags: 0 @@ -506826,6 +535457,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1586495871} m_CullTransparentMesh: 0 +--- !u!1 &1586807764 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1586807765} + - component: {fileID: 1586807767} + - component: {fileID: 1586807766} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1586807765 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1586807764} + m_LocalRotation: {x: 0, 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: 208947313} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1586807766 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1586807764} + m_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.83137256, g: 0.50980395, b: 0.39607844, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &1586807767 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1586807764} + m_CullTransparentMesh: 0 --- !u!1 &1586998568 GameObject: m_ObjectHideFlags: 0 @@ -507224,6 +535934,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1589101882} m_CullTransparentMesh: 0 +--- !u!1 &1589485496 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1589485497} + 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 &1589485497 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1589485496} + m_LocalRotation: {x: 0, 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: 1283618546} + - {fileID: 1054098740} + m_Father: {fileID: 300972851} + m_RootOrder: 39 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1589774040 GameObject: m_ObjectHideFlags: 0 @@ -507613,6 +536360,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1590248993} m_CullTransparentMesh: 0 +--- !u!1 &1590463520 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1590463521} + - component: {fileID: 1590463523} + - component: {fileID: 1590463522} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1590463521 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1590463520} + m_LocalRotation: {x: -0, 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: 840487097} + 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 &1590463522 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1590463520} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1590463523 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1590463520} + m_CullTransparentMesh: 0 --- !u!1 &1590497554 GameObject: m_ObjectHideFlags: 0 @@ -507638,7 +536459,7 @@ RectTransform: m_GameObject: {fileID: 1590497554} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 678295988} - {fileID: 417058225} @@ -507677,7 +536498,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1590678747} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -507891,6 +536712,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1591272807} m_CullTransparentMesh: 0 +--- !u!1 &1591656544 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1591656545} + - component: {fileID: 1591656547} + - component: {fileID: 1591656546} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1591656545 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1591656544} + m_LocalRotation: {x: -0, 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: 981331743} + 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 &1591656546 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1591656544} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1591656547 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1591656544} + m_CullTransparentMesh: 0 --- !u!1 &1592088894 GameObject: m_ObjectHideFlags: 0 @@ -507916,7 +536811,7 @@ RectTransform: m_GameObject: {fileID: 1592088894} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 912805295} - {fileID: 527232275} @@ -508297,7 +537192,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1592959898} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -508681,7 +537576,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1593828168} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -509201,6 +538096,117 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1594828225} m_CullTransparentMesh: 0 +--- !u!1 &1595246153 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1595246154} + 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 &1595246154 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1595246153} + m_LocalRotation: {x: 0, 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: 271758698} + - {fileID: 1607203639} + m_Father: {fileID: 1357367415} + m_RootOrder: 41 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1595298799 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1595298800} + - component: {fileID: 1595298802} + - component: {fileID: 1595298801} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1595298800 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1595298799} + m_LocalRotation: {x: -0, 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: 1420980323} + 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 &1595298801 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1595298799} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1595298802 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1595298799} + m_CullTransparentMesh: 0 --- !u!1 &1595320069 GameObject: m_ObjectHideFlags: 0 @@ -509396,6 +538402,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1596693096 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1596693097} + - component: {fileID: 1596693099} + - component: {fileID: 1596693098} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1596693097 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1596693096} + m_LocalRotation: {x: -0, 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: 1549319335} + 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 &1596693098 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1596693096} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1596693099 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1596693096} + m_CullTransparentMesh: 0 --- !u!1 &1596712618 GameObject: m_ObjectHideFlags: 0 @@ -510025,6 +539105,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1598322615} m_CullTransparentMesh: 0 +--- !u!1 &1598639201 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1598639202} + - component: {fileID: 1598639204} + - component: {fileID: 1598639203} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1598639202 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1598639201} + m_LocalRotation: {x: -0, 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: 1977016205} + 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 &1598639203 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1598639201} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1598639204 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1598639201} + m_CullTransparentMesh: 0 --- !u!1 &1598860642 GameObject: m_ObjectHideFlags: 0 @@ -510360,15 +539514,15 @@ RectTransform: m_GameObject: {fileID: 1602577149} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1640796314} m_RootOrder: 14 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -128.70348, y: 64.14998} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_AnchoredPosition: {x: -128.79785, y: 64.14998} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1602577151 MonoBehaviour: @@ -510414,6 +539568,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1602577149} m_CullTransparentMesh: 0 +--- !u!1 &1602739393 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1602739394} + - component: {fileID: 1602739396} + - component: {fileID: 1602739395} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1602739394 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1602739393} + m_LocalRotation: {x: 0, 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: 1034515773} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1602739395 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1602739393} + m_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.83137256, g: 0.50980395, b: 0.39607844, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &1602739396 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1602739393} + m_CullTransparentMesh: 0 --- !u!1 &1602793489 GameObject: m_ObjectHideFlags: 0 @@ -510488,6 +539721,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1602793489} m_CullTransparentMesh: 0 +--- !u!1 &1602967724 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1602967725} + 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 &1602967725 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1602967724} + m_LocalRotation: {x: 0, 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: 1549496840} + - {fileID: 1455880251} + m_Father: {fileID: 1357367415} + m_RootOrder: 38 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1603265990 GameObject: m_ObjectHideFlags: 0 @@ -510851,6 +540121,30 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - eventID: 2 callback: m_PersistentCalls: @@ -510890,8 +540184,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 @@ -511134,6 +540428,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1604449388} m_CullTransparentMesh: 0 +--- !u!1 &1604511900 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1604511901} + - component: {fileID: 1604511903} + - component: {fileID: 1604511902} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1604511901 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1604511900} + m_LocalRotation: {x: 0, 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: 1272487951} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1604511902 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1604511900} + m_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 &1604511903 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1604511900} + m_CullTransparentMesh: 0 --- !u!1 &1604733530 GameObject: m_ObjectHideFlags: 0 @@ -511244,7 +540617,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1604870688} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -511374,6 +540747,80 @@ RectTransform: m_AnchoredPosition: {x: 82, y: -67.96667} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1605634112 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1605634113} + - component: {fileID: 1605634115} + - component: {fileID: 1605634114} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1605634113 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1605634112} + m_LocalRotation: {x: -0, 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: 337111526} + 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 &1605634114 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1605634112} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1605634115 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1605634112} + m_CullTransparentMesh: 0 --- !u!1 &1606640023 GameObject: m_ObjectHideFlags: 0 @@ -511399,7 +540846,7 @@ RectTransform: m_GameObject: {fileID: 1606640023} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 490293045} - {fileID: 1242464278} @@ -511638,6 +541085,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1607124889} m_CullTransparentMesh: 0 +--- !u!1 &1607203638 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1607203639} + - component: {fileID: 1607203641} + - component: {fileID: 1607203640} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1607203639 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1607203638} + m_LocalRotation: {x: 0, 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: 1595246154} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1607203640 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1607203638} + m_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: +--- !u!222 &1607203641 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1607203638} + m_CullTransparentMesh: 0 --- !u!1 &1607360889 GameObject: m_ObjectHideFlags: 0 @@ -512391,7 +541917,7 @@ RectTransform: m_GameObject: {fileID: 1610004041} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 621226229} - {fileID: 997722161} @@ -512681,6 +542207,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1610592359} m_CullTransparentMesh: 0 +--- !u!1 &1611342767 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1611342768} + - component: {fileID: 1611342770} + - component: {fileID: 1611342769} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1611342768 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1611342767} + m_LocalRotation: {x: 0, 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: 524351218} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1611342769 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1611342767} + m_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.83137256, g: 0.50980395, b: 0.39607844, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &1611342770 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1611342767} + m_CullTransparentMesh: 0 --- !u!1 &1611747262 GameObject: m_ObjectHideFlags: 0 @@ -512871,6 +542476,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1612435458} m_CullTransparentMesh: 0 +--- !u!1 &1612797218 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1612797219} + 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 &1612797219 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1612797218} + m_LocalRotation: {x: 0, 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: 274983936} + - {fileID: 1831679899} + m_Father: {fileID: 763052335} + m_RootOrder: 39 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1612884759 GameObject: m_ObjectHideFlags: 0 @@ -512908,6 +542550,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1612960658 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1612960659} + - component: {fileID: 1612960661} + - component: {fileID: 1612960660} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1612960659 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1612960658} + m_LocalRotation: {x: 0, 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: 1687006357} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1612960660 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1612960658} + m_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 &1612960661 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1612960658} + m_CullTransparentMesh: 0 --- !u!1 &1613123364 GameObject: m_ObjectHideFlags: 0 @@ -513086,7 +542807,7 @@ RectTransform: m_GameObject: {fileID: 1613951362} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1500681796} - {fileID: 310300409} @@ -513403,7 +543124,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1615517595} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -513486,7 +543207,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1616048872} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: -0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -513495,7 +543216,7 @@ RectTransform: 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: -30} + m_AnchoredPosition: {x: -0, y: -30} m_SizeDelta: {x: 584, y: 14} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1616048874 @@ -514264,7 +543985,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1618769141} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -514320,6 +544041,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1618769141} m_CullTransparentMesh: 0 +--- !u!1 &1619029777 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1619029778} + 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 &1619029778 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1619029777} + m_LocalRotation: {x: 0, 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: 641429100} + - {fileID: 53917586} + m_Father: {fileID: 801884283} + m_RootOrder: 42 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1619405738 GameObject: m_ObjectHideFlags: 0 @@ -514584,6 +544342,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1620858133 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1620858134} + 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 &1620858134 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1620858133} + m_LocalRotation: {x: 0, 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: 225720846} + - {fileID: 185987067} + m_Father: {fileID: 488529639} + 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 &1621059107 GameObject: m_ObjectHideFlags: 0 @@ -514944,7 +544739,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1622775601} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -515384,6 +545179,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1624413710} m_CullTransparentMesh: 0 +--- !u!1 &1625029280 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1625029281} + - component: {fileID: 1625029283} + - component: {fileID: 1625029282} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1625029281 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1625029280} + m_LocalRotation: {x: 0, 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: 1110407662} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1625029282 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1625029280} + m_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: +--- !u!222 &1625029283 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1625029280} + m_CullTransparentMesh: 0 --- !u!1 &1625306770 GameObject: m_ObjectHideFlags: 0 @@ -515411,7 +545285,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: 1299591813} - {fileID: 462969799} @@ -515453,7 +545327,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} @@ -515493,7 +545367,7 @@ RectTransform: m_GameObject: {fileID: 1625745064} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1742468687} - {fileID: 1990480722} @@ -515852,6 +545726,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1627718538 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1627718539} + - component: {fileID: 1627718541} + - component: {fileID: 1627718540} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1627718539 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1627718538} + m_LocalRotation: {x: -0, 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: 1395029637} + 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 &1627718540 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1627718538} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1627718541 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1627718538} + m_CullTransparentMesh: 0 --- !u!1 &1627974257 GameObject: m_ObjectHideFlags: 0 @@ -516047,6 +545995,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1628837460} m_CullTransparentMesh: 0 +--- !u!1 &1629318832 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1629318833} + - component: {fileID: 1629318835} + - component: {fileID: 1629318834} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1629318833 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1629318832} + m_LocalRotation: {x: 0, 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: 157585053} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1629318834 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1629318832} + m_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 &1629318835 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1629318832} + m_CullTransparentMesh: 0 --- !u!1 &1630174029 GameObject: m_ObjectHideFlags: 0 @@ -516497,7 +546524,7 @@ RectTransform: m_GameObject: {fileID: 1631578042} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 991873289} - {fileID: 49931653} @@ -517375,6 +547402,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1635909870 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1635909871} + - component: {fileID: 1635909873} + - component: {fileID: 1635909872} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1635909871 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1635909870} + m_LocalRotation: {x: 0, 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: 645971034} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1635909872 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1635909870} + m_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 &1635909873 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1635909870} + m_CullTransparentMesh: 0 --- !u!1 &1635993951 GameObject: m_ObjectHideFlags: 0 @@ -517797,6 +547903,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1637519419} m_CullTransparentMesh: 0 +--- !u!1 &1637523678 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1637523679} + 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 &1637523679 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1637523678} + m_LocalRotation: {x: 0, 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: 1291261864} + - {fileID: 1192459177} + m_Father: {fileID: 1357367415} + 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 &1637537875 GameObject: m_ObjectHideFlags: 0 @@ -518310,6 +548453,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1638234574} m_CullTransparentMesh: 0 +--- !u!1 &1639717417 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1639717418} + - component: {fileID: 1639717420} + - component: {fileID: 1639717419} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1639717418 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1639717417} + m_LocalRotation: {x: -0, 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: 688073009} + 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 &1639717419 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1639717417} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1639717420 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1639717417} + m_CullTransparentMesh: 0 --- !u!1 &1639739091 GameObject: m_ObjectHideFlags: 0 @@ -518495,7 +548712,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} @@ -518504,6 +548721,13 @@ RectTransform: - {fileID: 2064114375} - {fileID: 1407712109} - {fileID: 827078667} + - {fileID: 707098348} + - {fileID: 1487758901} + - {fileID: 1306825820} + - {fileID: 174629687} + - {fileID: 479319079} + - {fileID: 1724329879} + - {fileID: 694099502} m_Father: {fileID: 517131343} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -518512,6 +548736,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} +--- !u!1 &1640268487 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1640268488} + - component: {fileID: 1640268490} + - component: {fileID: 1640268489} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1640268488 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1640268487} + m_LocalRotation: {x: -0, 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: 157585053} + 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 &1640268489 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1640268487} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1640268490 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1640268487} + m_CullTransparentMesh: 0 --- !u!1 &1640789960 GameObject: m_ObjectHideFlags: 0 @@ -518642,10 +548940,10 @@ RectTransform: m_Father: {fileID: 37761823} m_RootOrder: 0 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 2, y: -340} + m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} --- !u!114 &1640796315 MonoBehaviour: @@ -519360,7 +549658,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1641736556} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -519768,6 +550066,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1643050263 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1643050264} + m_Layer: 0 + m_Name: label_4_0 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1643050264 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1643050263} + m_LocalRotation: {x: 0, 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: 309341387} + - {fileID: 753383928} + m_Father: {fileID: 300972851} + m_RootOrder: 63 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1643125298 GameObject: m_ObjectHideFlags: 0 @@ -519921,6 +550256,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1643183074} m_CullTransparentMesh: 0 +--- !u!1 &1643228362 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1643228363} + - component: {fileID: 1643228365} + - component: {fileID: 1643228364} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1643228363 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1643228362} + m_LocalRotation: {x: 0, 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: 1812214064} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1643228364 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1643228362} + m_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: +--- !u!222 &1643228365 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1643228362} + m_CullTransparentMesh: 0 --- !u!1 &1643465930 GameObject: m_ObjectHideFlags: 0 @@ -520813,6 +551227,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1645441515} m_CullTransparentMesh: 0 +--- !u!1 &1645781301 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1645781302} + - component: {fileID: 1645781304} + - component: {fileID: 1645781303} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1645781302 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1645781301} + m_LocalRotation: {x: -0, 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: 164720602} + 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 &1645781303 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1645781301} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1645781304 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1645781301} + m_CullTransparentMesh: 0 --- !u!1 &1645912724 GameObject: m_ObjectHideFlags: 0 @@ -521044,6 +551532,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1646086576} m_CullTransparentMesh: 0 +--- !u!1 &1646449193 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1646449194} + - component: {fileID: 1646449196} + - component: {fileID: 1646449195} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1646449194 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1646449193} + m_LocalRotation: {x: -0, 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: 1789400402} + 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 &1646449195 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1646449193} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1646449196 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1646449193} + m_CullTransparentMesh: 0 --- !u!1 &1647049740 GameObject: m_ObjectHideFlags: 0 @@ -521625,7 +552187,7 @@ RectTransform: m_GameObject: {fileID: 1650172295} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 688000107} - {fileID: 277879809} @@ -521664,7 +552226,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1650333878} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -521861,7 +552423,7 @@ RectTransform: m_GameObject: {fileID: 1651000526} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1590783216} - {fileID: 612705450} @@ -521900,7 +552462,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1651014684} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -523095,7 +553657,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1654916128} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -523335,7 +553897,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1655883975} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -523581,6 +554143,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1657467819} m_CullTransparentMesh: 0 +--- !u!1 &1657502334 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1657502335} + - component: {fileID: 1657502337} + - component: {fileID: 1657502336} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1657502335 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1657502334} + m_LocalRotation: {x: 0, 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: 174629687} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1657502336 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1657502334} + m_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 &1657502337 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1657502334} + m_CullTransparentMesh: 0 --- !u!1 &1657809208 GameObject: m_ObjectHideFlags: 0 @@ -523682,7 +554323,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1658331798} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -523812,6 +554453,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1659361610} m_CullTransparentMesh: 0 +--- !u!1 &1659412355 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1659412356} + - component: {fileID: 1659412358} + - component: {fileID: 1659412357} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1659412356 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1659412355} + m_LocalRotation: {x: 0, 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: 1738689071} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1659412357 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1659412355} + m_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 &1659412358 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1659412355} + m_CullTransparentMesh: 0 --- !u!1 &1659441494 GameObject: m_ObjectHideFlags: 0 @@ -523950,7 +554670,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1659892168} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -525334,7 +556054,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1663145618} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -525681,7 +556401,7 @@ RectTransform: m_GameObject: {fileID: 1665470484} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 192404636} - {fileID: 895266241} @@ -526148,15 +556868,15 @@ RectTransform: m_GameObject: {fileID: 1667040878} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2057043785} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -80.00758, y: 16.90001} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_AnchoredPosition: {x: -79.91321, y: 16.90001} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1667040880 MonoBehaviour: @@ -526387,7 +557107,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} @@ -526397,11 +557117,85 @@ RectTransform: m_Father: {fileID: 33516770} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} +--- !u!1 &1667670349 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1667670350} + - component: {fileID: 1667670352} + - component: {fileID: 1667670351} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1667670350 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1667670349} + m_LocalRotation: {x: -0, 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: 1274318534} + 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 &1667670351 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1667670349} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1667670352 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1667670349} + m_CullTransparentMesh: 0 --- !u!1 &1668522724 GameObject: m_ObjectHideFlags: 0 @@ -526981,6 +557775,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1670529944} m_CullTransparentMesh: 0 +--- !u!1 &1671024925 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1671024926} + - component: {fileID: 1671024928} + - component: {fileID: 1671024927} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1671024926 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1671024925} + m_LocalRotation: {x: 0, 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: 274095385} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1671024927 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1671024925} + m_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 &1671024928 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1671024925} + m_CullTransparentMesh: 0 --- !u!1 &1671814947 GameObject: m_ObjectHideFlags: 0 @@ -527417,6 +558290,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1673761052} m_CullTransparentMesh: 0 +--- !u!1 &1674498689 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1674498690} + - component: {fileID: 1674498692} + - component: {fileID: 1674498691} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1674498690 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1674498689} + m_LocalRotation: {x: -0, 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: 1555222915} + 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 &1674498691 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1674498689} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1674498692 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1674498689} + m_CullTransparentMesh: 0 --- !u!1 &1675652049 GameObject: m_ObjectHideFlags: 0 @@ -527649,6 +558596,85 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1676091821 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1676091822} + - component: {fileID: 1676091824} + - component: {fileID: 1676091823} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1676091822 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1676091821} + m_LocalRotation: {x: 0, 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: 1522332194} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1676091823 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1676091821} + m_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 &1676091824 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1676091821} + m_CullTransparentMesh: 0 --- !u!1 &1677220532 GameObject: m_ObjectHideFlags: 0 @@ -527753,7 +558779,7 @@ RectTransform: m_GameObject: {fileID: 1677503237} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 622539090} m_Father: {fileID: 926932800} @@ -528532,6 +559558,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1681164464} m_CullTransparentMesh: 0 +--- !u!1 &1681217434 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1681217435} + - component: {fileID: 1681217437} + - component: {fileID: 1681217436} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1681217435 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1681217434} + m_LocalRotation: {x: 0, 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: 1724329879} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1681217436 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1681217434} + m_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 &1681217437 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1681217434} + m_CullTransparentMesh: 0 --- !u!1 &1681415815 GameObject: m_ObjectHideFlags: 0 @@ -530081,6 +561186,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1687006356 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1687006357} + 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 &1687006357 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1687006356} + m_LocalRotation: {x: 0, 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: 1586494981} + - {fileID: 1612960659} + m_Father: {fileID: 300972851} + m_RootOrder: 46 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1687676168 GameObject: m_ObjectHideFlags: 0 @@ -532822,6 +563964,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1695663962} m_CullTransparentMesh: 0 +--- !u!1 &1695688883 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1695688884} + - component: {fileID: 1695688886} + - component: {fileID: 1695688885} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1695688884 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1695688883} + m_LocalRotation: {x: 0, 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: 1445288285} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1695688885 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1695688883} + m_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: +--- !u!222 &1695688886 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1695688883} + m_CullTransparentMesh: 0 --- !u!1 &1695769196 GameObject: m_ObjectHideFlags: 0 @@ -532847,7 +564068,7 @@ RectTransform: m_GameObject: {fileID: 1695769196} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 2138250204} - {fileID: 695861319} @@ -533349,6 +564570,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1697400532} m_CullTransparentMesh: 0 +--- !u!1 &1697490974 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1697490975} + 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 &1697490975 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1697490974} + m_LocalRotation: {x: 0, 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: 366434691} + - {fileID: 1868897704} + m_Father: {fileID: 2097019616} + 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 &1697988096 GameObject: m_ObjectHideFlags: 0 @@ -533755,7 +565013,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1698569459} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -534400,6 +565658,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1700230263 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1700230264} + - component: {fileID: 1700230266} + - component: {fileID: 1700230265} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1700230264 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1700230263} + m_LocalRotation: {x: 0, 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: 1159458720} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1700230265 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1700230263} + m_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: +--- !u!222 &1700230266 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1700230263} + m_CullTransparentMesh: 0 --- !u!1 &1700285137 GameObject: m_ObjectHideFlags: 0 @@ -536149,7 +567486,7 @@ RectTransform: m_GameObject: {fileID: 1706699769} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1413938941} - {fileID: 1563359979} @@ -536318,6 +567655,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1707154066} m_CullTransparentMesh: 0 +--- !u!1 &1707515327 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1707515328} + - component: {fileID: 1707515330} + - component: {fileID: 1707515329} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1707515328 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1707515327} + m_LocalRotation: {x: 0, 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: 373124437} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1707515329 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1707515327} + m_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 &1707515330 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1707515327} + m_CullTransparentMesh: 0 --- !u!1 &1707576969 GameObject: m_ObjectHideFlags: 0 @@ -536422,7 +567838,7 @@ RectTransform: m_GameObject: {fileID: 1708542072} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1949803417} - {fileID: 635539073} @@ -536572,7 +567988,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1708961088} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -537147,6 +568563,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1710338024} m_CullTransparentMesh: 0 +--- !u!1 &1710608143 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1710608144} + - component: {fileID: 1710608146} + - component: {fileID: 1710608145} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1710608144 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1710608143} + m_LocalRotation: {x: -0, 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: 1487758901} + 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 &1710608145 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1710608143} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1710608146 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1710608143} + m_CullTransparentMesh: 0 --- !u!1 &1711676570 GameObject: m_ObjectHideFlags: 0 @@ -537399,7 +568889,7 @@ RectTransform: m_GameObject: {fileID: 1712172854} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 2097487828} - {fileID: 1578509947} @@ -537512,7 +569002,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1713441743} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -537711,7 +569201,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1713952697} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -537883,6 +569373,85 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1715030978 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1715030979} + - component: {fileID: 1715030981} + - component: {fileID: 1715030980} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1715030979 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715030978} + m_LocalRotation: {x: 0, 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: 419187805} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1715030980 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715030978} + m_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 &1715030981 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715030978} + m_CullTransparentMesh: 0 --- !u!1 &1715031881 GameObject: m_ObjectHideFlags: 0 @@ -537966,6 +569535,117 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1715031881} m_CullTransparentMesh: 0 +--- !u!1 &1715572880 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1715572881} + - component: {fileID: 1715572883} + - component: {fileID: 1715572882} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1715572881 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715572880} + m_LocalRotation: {x: -0, 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: 1503812678} + 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 &1715572882 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715572880} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1715572883 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715572880} + m_CullTransparentMesh: 0 +--- !u!1 &1715736500 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1715736501} + 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 &1715736501 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715736500} + m_LocalRotation: {x: 0, 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: 682737781} + - {fileID: 694575129} + m_Father: {fileID: 1338692539} + 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 &1715806372 GameObject: m_ObjectHideFlags: 0 @@ -537993,7 +569673,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} @@ -538005,6 +569685,80 @@ RectTransform: m_AnchoredPosition: {x: 2, y: -2} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 1} +--- !u!1 &1715858337 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1715858338} + - component: {fileID: 1715858340} + - component: {fileID: 1715858339} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1715858338 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715858337} + m_LocalRotation: {x: -0, 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: 1034515773} + 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 &1715858339 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715858337} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1715858340 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1715858337} + m_CullTransparentMesh: 0 --- !u!1 &1715912198 GameObject: m_ObjectHideFlags: 0 @@ -538032,7 +569786,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1715912198} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -539121,6 +570875,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1722457164 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1722457165} + - component: {fileID: 1722457167} + - component: {fileID: 1722457166} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1722457165 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1722457164} + m_LocalRotation: {x: 0, 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: 539364323} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1722457166 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1722457164} + m_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 &1722457167 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1722457164} + m_CullTransparentMesh: 0 --- !u!1 &1722529255 GameObject: m_ObjectHideFlags: 0 @@ -539422,6 +571255,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1723891456} m_CullTransparentMesh: 0 +--- !u!1 &1724292367 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1724292368} + 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 &1724292368 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1724292367} + m_LocalRotation: {x: 0, 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: 144893056} + - {fileID: 441946793} + m_Father: {fileID: 1009125081} + 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 &1724329878 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1724329879} + 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 &1724329879 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1724329878} + m_LocalRotation: {x: 0, 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: 2144420300} + - {fileID: 1681217435} + m_Father: {fileID: 1640097154} + 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 &1724409767 GameObject: m_ObjectHideFlags: 0 @@ -540112,7 +572019,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1726821196} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -540168,6 +572075,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1726821196} m_CullTransparentMesh: 0 +--- !u!1 &1727040805 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1727040806} + - component: {fileID: 1727040808} + - component: {fileID: 1727040807} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1727040806 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1727040805} + m_LocalRotation: {x: -0, 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: 1954892195} + 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 &1727040807 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1727040805} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1727040808 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1727040805} + m_CullTransparentMesh: 0 --- !u!1 &1727471984 GameObject: m_ObjectHideFlags: 0 @@ -540685,7 +572666,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1728771536} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -541079,15 +573060,15 @@ RectTransform: m_GameObject: {fileID: 1730498761} m_LocalRotation: {x: 0, y: 0, z: 0.71569276, w: 0.6984153} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 926932800} m_RootOrder: 13 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -132.55241, y: 0} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_AnchoredPosition: {x: -132.64679, y: 0} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1730498763 MonoBehaviour: @@ -541666,7 +573647,7 @@ RectTransform: m_GameObject: {fileID: 1732549644} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1329005216} - {fileID: 2014051997} @@ -541858,7 +573839,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1734480034} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: -0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -541867,7 +573848,7 @@ RectTransform: 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: -30} + m_AnchoredPosition: {x: -0, y: -30} m_SizeDelta: {x: 584, y: 14} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1734480036 @@ -541988,6 +573969,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1734513379} m_CullTransparentMesh: 0 +--- !u!1 &1734522504 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1734522505} + - component: {fileID: 1734522507} + - component: {fileID: 1734522506} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1734522505 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1734522504} + m_LocalRotation: {x: -0, 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: 1820809129} + 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 &1734522506 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1734522504} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1734522507 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1734522504} + m_CullTransparentMesh: 0 --- !u!1 &1734531678 GameObject: m_ObjectHideFlags: 0 @@ -542220,6 +574275,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1734641932} m_CullTransparentMesh: 0 +--- !u!1 &1735094970 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1735094971} + - component: {fileID: 1735094973} + - component: {fileID: 1735094972} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1735094971 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1735094970} + m_LocalRotation: {x: 0, 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: 30770545} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1735094972 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1735094970} + m_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.83137256, g: 0.50980395, b: 0.39607844, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &1735094973 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1735094970} + m_CullTransparentMesh: 0 --- !u!1 &1735649497 GameObject: m_ObjectHideFlags: 0 @@ -542531,6 +574665,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1737151523 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1737151524} + 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 &1737151524 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1737151523} + m_LocalRotation: {x: 0, 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: 350906174} + - {fileID: 812173397} + m_Father: {fileID: 747552768} + 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 &1737433941 GameObject: m_ObjectHideFlags: 0 @@ -542558,7 +574729,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1737433941} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -542737,10 +574908,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: -1824} - 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: 0} --- !u!114 &1737585332 MonoBehaviour: @@ -544142,6 +576313,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1738216359} m_CullTransparentMesh: 0 +--- !u!1 &1738689070 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1738689071} + 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 &1738689071 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1738689070} + m_LocalRotation: {x: 0, 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: 804634914} + - {fileID: 1659412356} + m_Father: {fileID: 1338692539} + 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 &1738707871 GameObject: m_ObjectHideFlags: 0 @@ -544258,6 +576466,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1739142796} m_CullTransparentMesh: 0 +--- !u!1 &1739162985 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1739162986} + - component: {fileID: 1739162988} + - component: {fileID: 1739162987} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1739162986 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1739162985} + m_LocalRotation: {x: 0, 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: 499828581} + 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: 20} + m_SizeDelta: {x: 32.167862, y: 19.06653} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1739162987 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1739162985} + m_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.16911763, g: 0.17409168, b: 0.17409168, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+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: -600 +--- !u!222 &1739162988 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1739162985} + m_CullTransparentMesh: 0 --- !u!1 &1739436706 GameObject: m_ObjectHideFlags: 0 @@ -545052,7 +577339,7 @@ RectTransform: m_GameObject: {fileID: 1742219151} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1307201198} - {fileID: 1592536024} @@ -545254,6 +577541,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1742477587} m_CullTransparentMesh: 0 +--- !u!1 &1742639145 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1742639146} + - component: {fileID: 1742639148} + - component: {fileID: 1742639147} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1742639146 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1742639145} + m_LocalRotation: {x: -0, 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: 1028598728} + 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 &1742639147 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1742639145} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1742639148 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1742639145} + m_CullTransparentMesh: 0 --- !u!1 &1743272081 GameObject: m_ObjectHideFlags: 0 @@ -546103,7 +578464,7 @@ RectTransform: m_GameObject: {fileID: 1748038298} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 795369623} - {fileID: 526431357} @@ -546406,7 +578767,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1749389126} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -546772,6 +579133,85 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1750523017 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1750523018} + - component: {fileID: 1750523020} + - component: {fileID: 1750523019} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1750523018 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1750523017} + m_LocalRotation: {x: 0, 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: 2003254391} + 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: 20} + m_SizeDelta: {x: 35.443195, y: 19.06653} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1750523019 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1750523017} + m_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.16911763, g: 0.17409168, b: 0.17409168, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+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: 1250 +--- !u!222 &1750523020 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1750523017} + m_CullTransparentMesh: 0 --- !u!1 &1750641534 GameObject: m_ObjectHideFlags: 0 @@ -547112,6 +579552,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1751400869} m_CullTransparentMesh: 0 +--- !u!1 &1752126860 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1752126861} + - component: {fileID: 1752126863} + - component: {fileID: 1752126862} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1752126861 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1752126860} + m_LocalRotation: {x: -0, 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: 1549872109} + 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 &1752126862 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1752126860} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1752126863 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1752126860} + m_CullTransparentMesh: 0 --- !u!1 &1752182473 GameObject: m_ObjectHideFlags: 0 @@ -547193,7 +579707,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" @@ -548275,6 +580789,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1755439108} m_CullTransparentMesh: 0 +--- !u!1 &1755462481 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1755462482} + - component: {fileID: 1755462484} + - component: {fileID: 1755462483} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1755462482 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1755462481} + m_LocalRotation: {x: 0, 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: 688073009} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1755462483 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1755462481} + m_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.5686275, g: 0.78039217, b: 0.68235296, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &1755462484 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1755462481} + m_CullTransparentMesh: 0 --- !u!1 &1755843773 GameObject: m_ObjectHideFlags: 0 @@ -548618,7 +581211,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} @@ -548888,7 +581481,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} @@ -549410,6 +582003,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1761945182} m_CullTransparentMesh: 0 +--- !u!1 &1762044489 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1762044490} + - component: {fileID: 1762044492} + - component: {fileID: 1762044491} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1762044490 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1762044489} + m_LocalRotation: {x: 0, 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: 188951381} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1762044491 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1762044489} + m_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 &1762044492 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1762044489} + m_CullTransparentMesh: 0 --- !u!1 &1762079674 GameObject: m_ObjectHideFlags: 0 @@ -549561,6 +582233,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1762079674} m_CullTransparentMesh: 0 +--- !u!1 &1762110218 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1762110219} + - component: {fileID: 1762110221} + - component: {fileID: 1762110220} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1762110219 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1762110218} + m_LocalRotation: {x: -0, 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: 1276839334} + 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 &1762110220 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1762110218} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1762110221 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1762110218} + m_CullTransparentMesh: 0 --- !u!1 &1762265977 GameObject: m_ObjectHideFlags: 0 @@ -550012,6 +582758,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1764889410} m_CullTransparentMesh: 0 +--- !u!1 &1764977760 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1764977761} + - component: {fileID: 1764977763} + - component: {fileID: 1764977762} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1764977761 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1764977760} + m_LocalRotation: {x: -0, 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: 274095385} + 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 &1764977762 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1764977760} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1764977763 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1764977760} + m_CullTransparentMesh: 0 --- !u!1 &1765292273 GameObject: m_ObjectHideFlags: 0 @@ -550190,7 +583010,7 @@ RectTransform: m_GameObject: {fileID: 1765611571} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1393138378} - {fileID: 1839518172} @@ -550318,6 +583138,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1766137590} m_CullTransparentMesh: 0 +--- !u!1 &1766213173 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1766213174} + - component: {fileID: 1766213176} + - component: {fileID: 1766213175} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1766213174 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1766213173} + m_LocalRotation: {x: -0, 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: 188951381} + 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 &1766213175 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1766213173} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1766213176 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1766213173} + m_CullTransparentMesh: 0 --- !u!1 &1766433193 GameObject: m_ObjectHideFlags: 0 @@ -551002,7 +583896,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1768747055} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -551174,6 +584068,159 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1769201290} m_CullTransparentMesh: 0 +--- !u!1 &1769296478 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1769296479} + - component: {fileID: 1769296481} + - component: {fileID: 1769296480} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1769296479 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1769296478} + m_LocalRotation: {x: 0, 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: 332900445} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1769296480 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1769296478} + m_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 &1769296481 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1769296478} + m_CullTransparentMesh: 0 +--- !u!1 &1769346444 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1769346445} + - component: {fileID: 1769346447} + - component: {fileID: 1769346446} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1769346445 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1769346444} + m_LocalRotation: {x: -0, 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: 1441763265} + 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 &1769346446 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1769346444} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1769346447 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1769346444} + m_CullTransparentMesh: 0 --- !u!1 &1769450513 GameObject: m_ObjectHideFlags: 0 @@ -551405,6 +584452,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1769705924} m_CullTransparentMesh: 0 +--- !u!1 &1769790832 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1769790833} + - component: {fileID: 1769790835} + - component: {fileID: 1769790834} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1769790833 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1769790832} + m_LocalRotation: {x: 0, 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: 534247077} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1769790834 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1769790832} + m_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.83137256, g: 0.50980395, b: 0.39607844, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &1769790835 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1769790832} + m_CullTransparentMesh: 0 --- !u!1 &1769890794 GameObject: m_ObjectHideFlags: 0 @@ -552332,6 +585458,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} +--- !u!1 &1773487217 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1773487218} + 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 &1773487218 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1773487217} + m_LocalRotation: {x: 0, 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: 922350123} + - {fileID: 663444875} + m_Father: {fileID: 1338692539} + 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 &1773575469 GameObject: m_ObjectHideFlags: 0 @@ -552591,7 +585754,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1774568153} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -552674,7 +585837,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1774598627} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -553119,6 +586282,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1776661213} m_CullTransparentMesh: 0 +--- !u!1 &1776805570 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1776805571} + - component: {fileID: 1776805573} + - component: {fileID: 1776805572} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1776805571 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1776805570} + m_LocalRotation: {x: -0, 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: 1283156824} + 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 &1776805572 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1776805570} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1776805573 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1776805570} + m_CullTransparentMesh: 0 --- !u!1 &1777093123 GameObject: m_ObjectHideFlags: 0 @@ -553146,7 +586383,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} @@ -553925,7 +587162,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1778350160} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -554006,7 +587243,7 @@ RectTransform: m_GameObject: {fileID: 1778749419} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 312526840} - {fileID: 845579748} @@ -554045,7 +587282,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1779251865} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -554258,6 +587495,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1780089239} m_CullTransparentMesh: 0 +--- !u!1 &1780232631 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1780232632} + 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 &1780232632 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1780232631} + m_LocalRotation: {x: 0, 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: 43484391} + - {fileID: 810474513} + m_Father: {fileID: 1338692539} + 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 &1780344273 GameObject: m_ObjectHideFlags: 0 @@ -555063,6 +588337,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1784249116} m_CullTransparentMesh: 0 +--- !u!1 &1784815926 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1784815927} + m_Layer: 0 + m_Name: label_3_6 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1784815927 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1784815926} + m_LocalRotation: {x: 0, 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: 1385427658} + - {fileID: 181217828} + m_Father: {fileID: 300972851} + m_RootOrder: 62 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1785009772 GameObject: m_ObjectHideFlags: 0 @@ -555146,6 +588457,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1785009772} m_CullTransparentMesh: 0 +--- !u!1 &1785100648 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1785100649} + 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 &1785100649 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1785100648} + m_LocalRotation: {x: 0, 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: 807036144} + - {fileID: 4499478} + m_Father: {fileID: 300972851} + m_RootOrder: 54 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1785257471 GameObject: m_ObjectHideFlags: 0 @@ -555171,7 +588519,7 @@ RectTransform: m_GameObject: {fileID: 1785257471} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 926932800} m_RootOrder: 1 @@ -555593,6 +588941,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1787519821} m_CullTransparentMesh: 0 +--- !u!1 &1787531728 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1787531729} + - component: {fileID: 1787531731} + - component: {fileID: 1787531730} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1787531729 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1787531728} + m_LocalRotation: {x: -0, 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: 2003254391} + 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 &1787531730 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1787531728} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1787531731 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1787531728} + m_CullTransparentMesh: 0 --- !u!1 &1787858607 GameObject: m_ObjectHideFlags: 0 @@ -555986,6 +589408,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1789380690} m_CullTransparentMesh: 0 +--- !u!1 &1789400401 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1789400402} + m_Layer: 0 + m_Name: label_3_5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1789400402 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1789400401} + m_LocalRotation: {x: 0, 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: 1646449194} + - {fileID: 2084239254} + m_Father: {fileID: 300972851} + m_RootOrder: 61 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1789472417 GameObject: m_ObjectHideFlags: 0 @@ -556702,7 +590161,7 @@ RectTransform: m_GameObject: {fileID: 1791647564} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1524735243} - {fileID: 1184400890} @@ -558697,7 +592156,7 @@ RectTransform: m_GameObject: {fileID: 1793900793} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 423813283} - {fileID: 524380412} @@ -559583,6 +593042,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1796587386} m_CullTransparentMesh: 0 +--- !u!1 &1796907727 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1796907728} + 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 &1796907728 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1796907727} + m_LocalRotation: {x: 0, 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: 161502972} + - {fileID: 2027111241} + m_Father: {fileID: 801884283} + 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 &1797887324 GameObject: m_ObjectHideFlags: 0 @@ -559851,6 +593347,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1798268556} m_CullTransparentMesh: 0 +--- !u!1 &1798363579 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1798363580} + - component: {fileID: 1798363582} + - component: {fileID: 1798363581} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1798363580 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1798363579} + m_LocalRotation: {x: 0, 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: 171713158} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1798363581 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1798363579} + m_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 &1798363582 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1798363579} + m_CullTransparentMesh: 0 --- !u!1 &1798631557 GameObject: m_ObjectHideFlags: 0 @@ -559952,7 +593527,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1798743257} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -560901,6 +594476,238 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1800939440} m_CullTransparentMesh: 0 +--- !u!1 &1801173782 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1801173783} + - component: {fileID: 1801173785} + - component: {fileID: 1801173784} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1801173783 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1801173782} + m_LocalRotation: {x: 0, 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: 1202256474} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1801173784 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1801173782} + m_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 &1801173785 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1801173782} + m_CullTransparentMesh: 0 +--- !u!1 &1801474108 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1801474109} + - component: {fileID: 1801474111} + - component: {fileID: 1801474110} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1801474109 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1801474108} + m_LocalRotation: {x: 0, 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: 856220972} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1801474110 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1801474108} + m_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 &1801474111 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1801474108} + m_CullTransparentMesh: 0 +--- !u!1 &1801507419 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1801507420} + - component: {fileID: 1801507422} + - component: {fileID: 1801507421} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1801507420 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1801507419} + m_LocalRotation: {x: -0, 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: 139353692} + 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 &1801507421 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1801507419} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1801507422 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1801507419} + m_CullTransparentMesh: 0 --- !u!1 &1801796873 GameObject: m_ObjectHideFlags: 0 @@ -561100,6 +594907,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1802076587} m_CullTransparentMesh: 0 +--- !u!1 &1802085457 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1802085458} + 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 &1802085458 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1802085457} + m_LocalRotation: {x: 0, 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: 1159628489} + - {fileID: 2060729864} + m_Father: {fileID: 252393583} + 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: -206, y: 14.1666565} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1802392352 GameObject: m_ObjectHideFlags: 0 @@ -561364,7 +595208,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} @@ -561443,7 +595287,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} @@ -561453,11 +595297,90 @@ RectTransform: m_Father: {fileID: 883296608} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} +--- !u!1 &1803960568 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1803960569} + - component: {fileID: 1803960571} + - component: {fileID: 1803960570} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1803960569 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1803960568} + m_LocalRotation: {x: 0, 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: 1253473296} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1803960570 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1803960568} + m_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 &1803960571 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1803960568} + m_CullTransparentMesh: 0 --- !u!1 &1804327265 GameObject: m_ObjectHideFlags: 0 @@ -562037,6 +595960,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1807363505} m_CullTransparentMesh: 0 +--- !u!1 &1807572603 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1807572604} + - component: {fileID: 1807572606} + - component: {fileID: 1807572605} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1807572604 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1807572603} + m_LocalRotation: {x: -0, 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: 5332504} + 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 &1807572605 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1807572603} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1807572606 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1807572603} + m_CullTransparentMesh: 0 --- !u!1 &1807821421 GameObject: m_ObjectHideFlags: 0 @@ -563029,6 +597026,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1811102984 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1811102985} + - component: {fileID: 1811102987} + - component: {fileID: 1811102986} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1811102985 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1811102984} + m_LocalRotation: {x: 0, 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: 1399565311} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1811102986 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1811102984} + m_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.83137256, g: 0.50980395, b: 0.39607844, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &1811102987 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1811102984} + m_CullTransparentMesh: 0 --- !u!1 &1811460610 GameObject: m_ObjectHideFlags: 0 @@ -563054,7 +597130,7 @@ RectTransform: m_GameObject: {fileID: 1811460610} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1719779129} - {fileID: 525367800} @@ -563497,6 +597573,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1811992884} m_CullTransparentMesh: 0 +--- !u!1 &1812214063 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1812214064} + 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 &1812214064 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1812214063} + m_LocalRotation: {x: 0, 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: 1846155637} + - {fileID: 1643228363} + m_Father: {fileID: 763052335} + m_RootOrder: 50 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1812292609 GameObject: m_ObjectHideFlags: 0 @@ -564205,6 +598318,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1814221764} m_CullTransparentMesh: 0 +--- !u!1 &1814286724 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1814286725} + - component: {fileID: 1814286727} + - component: {fileID: 1814286726} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1814286725 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1814286724} + m_LocalRotation: {x: -0, 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: 1977431411} + 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 &1814286726 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1814286724} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1814286727 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1814286724} + m_CullTransparentMesh: 0 --- !u!1 &1814396399 GameObject: m_ObjectHideFlags: 0 @@ -564482,6 +598669,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: 0} m_Pivot: {x: 0, y: 0} +--- !u!1 &1816971753 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1816971754} + m_Layer: 0 + m_Name: label_3_3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1816971754 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1816971753} + m_LocalRotation: {x: 0, 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: 1414178166} + - {fileID: 997112251} + m_Father: {fileID: 763052335} + m_RootOrder: 59 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1817849954 GameObject: m_ObjectHideFlags: 0 @@ -564546,15 +598770,15 @@ RectTransform: m_GameObject: {fileID: 1817958408} m_LocalRotation: {x: 0, y: 0, z: -0.4826711, w: 0.87580174} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1910686491} m_RootOrder: 10 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 128.77347, y: 72.979996} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_AnchoredPosition: {x: 128.86786, y: 72.979996} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1817958410 MonoBehaviour: @@ -565167,6 +599391,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1820721002} m_CullTransparentMesh: 0 +--- !u!1 &1820809128 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1820809129} + 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 &1820809129 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1820809128} + m_LocalRotation: {x: 0, 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: 1734522505} + - {fileID: 590229651} + m_Father: {fileID: 2097019616} + 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 &1821401944 GameObject: m_ObjectHideFlags: 0 @@ -565628,7 +599889,7 @@ RectTransform: m_GameObject: {fileID: 1822504421} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 613354233} - {fileID: 1204293514} @@ -565776,7 +600037,7 @@ RectTransform: m_GameObject: {fileID: 1823713970} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1335752217} - {fileID: 232791155} @@ -566007,7 +600268,7 @@ RectTransform: m_GameObject: {fileID: 1825301424} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1500269344} - {fileID: 2020819251} @@ -566019,6 +600280,85 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1826258067 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1826258068} + - component: {fileID: 1826258070} + - component: {fileID: 1826258069} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1826258068 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1826258067} + m_LocalRotation: {x: 0, 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: 1022852103} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1826258069 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1826258067} + m_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 &1826258070 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1826258067} + m_CullTransparentMesh: 0 --- !u!1 &1826386218 GameObject: m_ObjectHideFlags: 0 @@ -566904,6 +601244,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1830191926} m_CullTransparentMesh: 0 +--- !u!1 &1830558710 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1830558711} + - component: {fileID: 1830558713} + - component: {fileID: 1830558712} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1830558711 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1830558710} + m_LocalRotation: {x: 0, 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: 5332504} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1830558712 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1830558710} + m_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 &1830558713 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1830558710} + m_CullTransparentMesh: 0 --- !u!1 &1830969569 GameObject: m_ObjectHideFlags: 0 @@ -567010,7 +601429,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1831202092} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -567214,6 +601633,85 @@ RectTransform: m_AnchoredPosition: {x: -586.56, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1831679898 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1831679899} + - component: {fileID: 1831679901} + - component: {fileID: 1831679900} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1831679899 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1831679898} + m_LocalRotation: {x: 0, 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: 1612797219} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1831679900 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1831679898} + m_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 &1831679901 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1831679898} + m_CullTransparentMesh: 0 --- !u!1 &1831877032 GameObject: m_ObjectHideFlags: 0 @@ -567999,10 +602497,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: -608} - 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: 0} --- !u!114 &1835109744 MonoBehaviour: @@ -570734,6 +605232,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1840368295} m_CullTransparentMesh: 0 +--- !u!1 &1840582333 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1840582334} + 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 &1840582334 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1840582333} + m_LocalRotation: {x: 0, 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: 2080459690} + - {fileID: 706675497} + m_Father: {fileID: 300972851} + m_RootOrder: 37 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1840871830 GameObject: m_ObjectHideFlags: 0 @@ -571217,7 +605752,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1842544716} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -571537,6 +606072,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: -30} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0.5, y: 1} +--- !u!1 &1844484197 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1844484198} + 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 &1844484198 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1844484197} + m_LocalRotation: {x: 0, 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: 2094829314} + - {fileID: 755039821} + m_Father: {fileID: 2097019616} + 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 &1845719916 GameObject: m_ObjectHideFlags: 0 @@ -571648,6 +606220,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1846155636 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1846155637} + - component: {fileID: 1846155639} + - component: {fileID: 1846155638} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1846155637 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1846155636} + m_LocalRotation: {x: -0, 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: 1812214064} + 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 &1846155638 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1846155636} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1846155639 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1846155636} + m_CullTransparentMesh: 0 --- !u!1 &1846268996 GameObject: m_ObjectHideFlags: 0 @@ -571756,15 +606402,15 @@ RectTransform: m_GameObject: {fileID: 1846413633} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1107243629} m_RootOrder: 12 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 37.786682, y: -69.22} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_AnchoredPosition: {x: 37.69229, y: -69.22} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1846413635 MonoBehaviour: @@ -572682,6 +607328,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1851140100} m_CullTransparentMesh: 0 +--- !u!1 &1851525255 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1851525256} + - component: {fileID: 1851525258} + - component: {fileID: 1851525257} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1851525256 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1851525255} + m_LocalRotation: {x: 0, 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: 847743055} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1851525257 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1851525255} + m_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 &1851525258 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1851525255} + m_CullTransparentMesh: 0 --- !u!1 &1852259297 GameObject: m_ObjectHideFlags: 0 @@ -572951,6 +607676,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1853267073} m_CullTransparentMesh: 0 +--- !u!1 &1853288421 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1853288422} + - component: {fileID: 1853288424} + - component: {fileID: 1853288423} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1853288422 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1853288421} + m_LocalRotation: {x: 0, 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: 441920079} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1853288423 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1853288421} + m_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: +--- !u!222 &1853288424 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1853288421} + m_CullTransparentMesh: 0 --- !u!1 &1853327529 GameObject: m_ObjectHideFlags: 0 @@ -573173,7 +607977,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1854541960} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -573761,7 +608565,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1856970242} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -573953,7 +608757,7 @@ RectTransform: m_GameObject: {fileID: 1858033205} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1719717001} - {fileID: 869607090} @@ -574317,6 +609121,122 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1859610711} m_CullTransparentMesh: 0 +--- !u!1 &1859717775 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1859717776} + 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 &1859717776 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1859717775} + m_LocalRotation: {x: 0, 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: 714607374} + - {fileID: 551571287} + m_Father: {fileID: 300972851} + m_RootOrder: 50 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1859866744 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1859866745} + - component: {fileID: 1859866747} + - component: {fileID: 1859866746} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1859866745 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1859866744} + m_LocalRotation: {x: 0, 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: 763616753} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1859866746 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1859866744} + m_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 &1859866747 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1859866744} + m_CullTransparentMesh: 0 --- !u!1 &1860143003 GameObject: m_ObjectHideFlags: 0 @@ -574886,7 +609806,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} @@ -574896,9 +609816,9 @@ RectTransform: m_Father: {fileID: 1737585331} m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} --- !u!1 &1863667081 @@ -575290,6 +610210,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1865510892} m_CullTransparentMesh: 0 +--- !u!1 &1865611418 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1865611419} + 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 &1865611419 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1865611418} + m_LocalRotation: {x: 0, 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: 720237912} + - {fileID: 502819592} + m_Father: {fileID: 763052335} + m_RootOrder: 49 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1865847024 GameObject: m_ObjectHideFlags: 0 @@ -578365,6 +613322,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1868699557} m_CullTransparentMesh: 0 +--- !u!1 &1868897703 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1868897704} + - component: {fileID: 1868897706} + - component: {fileID: 1868897705} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1868897704 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1868897703} + m_LocalRotation: {x: 0, 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: 1697490975} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1868897705 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1868897703} + m_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 &1868897706 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1868897703} + m_CullTransparentMesh: 0 --- !u!1 &1869398552 GameObject: m_ObjectHideFlags: 0 @@ -578661,7 +613697,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1870623098} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -579259,6 +614295,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1873561188} m_CullTransparentMesh: 0 +--- !u!1 &1873894516 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1873894517} + - component: {fileID: 1873894519} + - component: {fileID: 1873894518} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1873894517 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1873894516} + m_LocalRotation: {x: -0, 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: 524351218} + 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 &1873894518 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1873894516} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1873894519 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1873894516} + m_CullTransparentMesh: 0 --- !u!1 &1874141854 GameObject: m_ObjectHideFlags: 0 @@ -579342,6 +614452,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1874141854} m_CullTransparentMesh: 0 +--- !u!1 &1874301319 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1874301320} + - component: {fileID: 1874301322} + - component: {fileID: 1874301321} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1874301320 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1874301319} + m_LocalRotation: {x: -0, 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: 211883671} + 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 &1874301321 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1874301319} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1874301322 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1874301319} + m_CullTransparentMesh: 0 --- !u!1 &1875033853 GameObject: m_ObjectHideFlags: 0 @@ -579559,7 +614743,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1875846163} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -579679,7 +614863,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} @@ -579839,6 +615023,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1877095457} m_CullTransparentMesh: 0 +--- !u!1 &1877710056 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1877710057} + - component: {fileID: 1877710059} + - component: {fileID: 1877710058} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1877710057 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1877710056} + m_LocalRotation: {x: 0, 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: 997134934} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1877710058 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1877710056} + m_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 &1877710059 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1877710056} + m_CullTransparentMesh: 0 --- !u!1 &1878100386 GameObject: m_ObjectHideFlags: 0 @@ -580014,7 +615277,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1879115381} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: -0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -580023,7 +615286,7 @@ RectTransform: 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: -30} + m_AnchoredPosition: {x: -0, y: -30} m_SizeDelta: {x: 584, y: 14} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1879115383 @@ -580097,7 +615360,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1879641065} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -580232,6 +615495,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1879644287} m_CullTransparentMesh: 0 +--- !u!1 &1879772677 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1879772678} + - component: {fileID: 1879772680} + - component: {fileID: 1879772679} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1879772678 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1879772677} + m_LocalRotation: {x: 0, 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: 1427821039} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1879772679 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1879772677} + m_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.83137256, g: 0.50980395, b: 0.39607844, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &1879772680 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1879772677} + m_CullTransparentMesh: 0 --- !u!1 &1880035445 GameObject: m_ObjectHideFlags: 0 @@ -580491,7 +615833,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1881706840} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -581199,15 +616541,15 @@ RectTransform: m_GameObject: {fileID: 1884850780} m_LocalRotation: {x: 0, y: 0, z: -0.28736052, w: 0.9578225} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 926932800} m_RootOrder: 12 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -71.412445, y: -105.00104} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_AnchoredPosition: {x: -71.50682, y: -105.00104} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1884850782 MonoBehaviour: @@ -581547,7 +616889,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1886465994} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -581761,6 +617103,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1887823276} m_CullTransparentMesh: 0 +--- !u!1 &1888022903 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1888022904} + - component: {fileID: 1888022906} + - component: {fileID: 1888022905} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1888022904 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1888022903} + m_LocalRotation: {x: -0, 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: 1493577799} + 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 &1888022905 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1888022903} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1888022906 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1888022903} + m_CullTransparentMesh: 0 --- !u!1 &1889494008 GameObject: m_ObjectHideFlags: 0 @@ -581902,7 +617318,7 @@ RectTransform: m_GameObject: {fileID: 1889891746} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 643634102} - {fileID: 214519292} @@ -581939,7 +617355,7 @@ RectTransform: m_GameObject: {fileID: 1890270983} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1865322777} - {fileID: 758201091} @@ -582242,7 +617658,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1892107894} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -582446,6 +617862,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1892426888} m_CullTransparentMesh: 0 +--- !u!1 &1892572330 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1892572331} + - component: {fileID: 1892572333} + - component: {fileID: 1892572332} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1892572331 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1892572330} + m_LocalRotation: {x: 0, 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: 560649424} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1892572332 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1892572330} + m_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.5686275, g: 0.78039217, b: 0.68235296, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &1892572333 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1892572330} + m_CullTransparentMesh: 0 --- !u!1 &1892665476 GameObject: m_ObjectHideFlags: 0 @@ -583136,6 +618631,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1895416670 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1895416671} + - component: {fileID: 1895416673} + - component: {fileID: 1895416672} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1895416671 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1895416670} + m_LocalRotation: {x: -0, 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: 1067931213} + 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 &1895416672 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1895416670} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1895416673 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1895416670} + m_CullTransparentMesh: 0 --- !u!1 &1896035313 GameObject: m_ObjectHideFlags: 0 @@ -583747,6 +619316,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1898621971} m_CullTransparentMesh: 0 +--- !u!1 &1898958408 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1898958409} + - component: {fileID: 1898958411} + - component: {fileID: 1898958410} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1898958409 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1898958408} + m_LocalRotation: {x: 0, 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: 109840320} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1898958410 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1898958408} + m_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 &1898958411 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1898958408} + m_CullTransparentMesh: 0 --- !u!1 &1899029622 GameObject: m_ObjectHideFlags: 0 @@ -584408,7 +620056,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1900028650} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -584575,6 +620223,80 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -169} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1900974822 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1900974823} + - component: {fileID: 1900974825} + - component: {fileID: 1900974824} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1900974823 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1900974822} + m_LocalRotation: {x: -0, 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: 2080743413} + 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 &1900974824 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1900974822} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1900974825 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1900974822} + m_CullTransparentMesh: 0 --- !u!1 &1901082579 GameObject: m_ObjectHideFlags: 0 @@ -585032,7 +620754,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1902180650} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -585393,6 +621115,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1903129668} m_CullTransparentMesh: 0 +--- !u!1 &1903167406 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1903167407} + 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 &1903167407 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1903167406} + m_LocalRotation: {x: 0, 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: 416535273} + - {fileID: 303076029} + m_Father: {fileID: 1009125081} + 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 &1903198679 GameObject: m_ObjectHideFlags: 0 @@ -585467,6 +621226,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1903198679} m_CullTransparentMesh: 0 +--- !u!1 &1903315076 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1903315077} + - component: {fileID: 1903315079} + - component: {fileID: 1903315078} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1903315077 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1903315076} + m_LocalRotation: {x: -0, 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: 1982412280} + 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 &1903315078 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1903315076} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1903315079 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1903315076} + m_CullTransparentMesh: 0 --- !u!1 &1903854547 GameObject: m_ObjectHideFlags: 0 @@ -585625,6 +621458,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1903871703} m_CullTransparentMesh: 0 +--- !u!1 &1904468593 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1904468594} + - component: {fileID: 1904468596} + - component: {fileID: 1904468595} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1904468594 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1904468593} + m_LocalRotation: {x: 0, 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: 1487758901} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1904468595 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1904468593} + m_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 &1904468596 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1904468593} + m_CullTransparentMesh: 0 --- !u!1 &1904708562 GameObject: m_ObjectHideFlags: 0 @@ -586865,10 +622777,10 @@ RectTransform: m_Father: {fileID: 37761823} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 2, y: -1024} + m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} --- !u!114 &1910686492 MonoBehaviour: @@ -587675,6 +623587,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1912441055} m_CullTransparentMesh: 0 +--- !u!1 &1912969426 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1912969427} + - component: {fileID: 1912969429} + - component: {fileID: 1912969428} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1912969427 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1912969426} + m_LocalRotation: {x: 0, 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: 836193998} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1912969428 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1912969426} + m_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 &1912969429 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1912969426} + m_CullTransparentMesh: 0 --- !u!1 &1912982984 GameObject: m_ObjectHideFlags: 0 @@ -587754,6 +623745,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1912982984} m_CullTransparentMesh: 0 +--- !u!1 &1913044285 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1913044286} + - component: {fileID: 1913044288} + - component: {fileID: 1913044287} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1913044286 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1913044285} + m_LocalRotation: {x: -0, 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: 1022852103} + 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 &1913044287 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1913044285} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1913044288 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1913044285} + m_CullTransparentMesh: 0 --- !u!1 &1913183258 GameObject: m_ObjectHideFlags: 0 @@ -587779,7 +623844,7 @@ RectTransform: m_GameObject: {fileID: 1913183258} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 832120591} - {fileID: 291500001} @@ -587929,7 +623994,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1913821166} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -588091,15 +624156,15 @@ RectTransform: m_GameObject: {fileID: 1913985791} m_LocalRotation: {x: 0, y: 0, z: 0.28066668, w: 0.9598053} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 926932800} m_RootOrder: 14 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -66.79239, y: 111.111084} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_AnchoredPosition: {x: -66.886765, y: 111.111084} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1913985793 MonoBehaviour: @@ -588867,7 +624932,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1916261725} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -589911,7 +625976,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1918600258} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -590120,6 +626185,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1919275847} m_CullTransparentMesh: 0 +--- !u!1 &1919541752 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1919541753} + - component: {fileID: 1919541755} + - component: {fileID: 1919541754} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1919541753 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1919541752} + m_LocalRotation: {x: 0, 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: 1549872109} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1919541754 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1919541752} + m_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 &1919541755 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1919541752} + m_CullTransparentMesh: 0 --- !u!1 &1919564995 GameObject: m_ObjectHideFlags: 0 @@ -590411,6 +626555,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1921089522} m_CullTransparentMesh: 0 +--- !u!1 &1921096790 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1921096791} + 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 &1921096791 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1921096790} + m_LocalRotation: {x: 0, 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: 1582127486} + - {fileID: 2065130064} + m_Father: {fileID: 801884283} + m_RootOrder: 47 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1921680543 GameObject: m_ObjectHideFlags: 0 @@ -590517,7 +626698,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1921936976} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -591678,7 +627859,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1927258116} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -592644,7 +628825,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1929704037} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -593274,7 +629455,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1932528805} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -593740,7 +629921,7 @@ RectTransform: m_GameObject: {fileID: 1934253739} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1317435948} - {fileID: 584296569} @@ -593779,7 +629960,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1934381215} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -594104,6 +630285,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1935272214} m_CullTransparentMesh: 0 +--- !u!1 &1935612740 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1935612741} + - component: {fileID: 1935612743} + - component: {fileID: 1935612742} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1935612741 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1935612740} + m_LocalRotation: {x: -0, 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: 1202256474} + 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 &1935612742 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1935612740} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1935612743 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1935612740} + m_CullTransparentMesh: 0 --- !u!1 &1935729173 GameObject: m_ObjectHideFlags: 0 @@ -594711,6 +630966,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1937215727} m_CullTransparentMesh: 0 +--- !u!1 &1937547574 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1937547575} + 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 &1937547575 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1937547574} + m_LocalRotation: {x: 0, 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: 1953034716} + - {fileID: 359374702} + m_Father: {fileID: 252393583} + 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: -62, y: 19.791336} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1937820596 GameObject: m_ObjectHideFlags: 0 @@ -596313,7 +632605,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1945278251} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -596369,6 +632661,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1945278251} m_CullTransparentMesh: 0 +--- !u!1 &1945675222 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1945675223} + - component: {fileID: 1945675225} + - component: {fileID: 1945675224} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1945675223 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1945675222} + m_LocalRotation: {x: -0, 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: 1563878933} + 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 &1945675224 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1945675222} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1945675225 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1945675222} + m_CullTransparentMesh: 0 --- !u!1 &1945683740 GameObject: m_ObjectHideFlags: 0 @@ -596776,7 +633142,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1948544175} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -596938,7 +633304,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} @@ -596948,9 +633314,9 @@ RectTransform: m_Father: {fileID: 1520897807} m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} --- !u!1 &1949803416 @@ -597574,7 +633940,7 @@ RectTransform: m_GameObject: {fileID: 1953013593} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 462267860} - {fileID: 1260951933} @@ -597586,6 +633952,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: -5} m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0.5, y: 1} +--- !u!1 &1953034715 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1953034716} + - component: {fileID: 1953034718} + - component: {fileID: 1953034717} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1953034716 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1953034715} + m_LocalRotation: {x: -0, 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: 1937547575} + 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 &1953034717 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1953034715} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1953034718 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1953034715} + m_CullTransparentMesh: 0 --- !u!1 &1953330587 GameObject: m_ObjectHideFlags: 0 @@ -597975,6 +634415,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &1954892194 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1954892195} + 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 &1954892195 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1954892194} + m_LocalRotation: {x: 0, 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: 1727040806} + - {fileID: 1992760095} + m_Father: {fileID: 1130359736} + 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 &1954989049 GameObject: m_ObjectHideFlags: 0 @@ -598076,7 +634553,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1955767222} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -599106,7 +635583,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1959210921} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -599571,15 +636048,15 @@ RectTransform: m_GameObject: {fileID: 1961484283} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1107243629} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: -271.90717, y: 15.435547} - m_SizeDelta: {x: 52.777252, y: 19.412323} + m_AnchoredPosition: {x: -272.04874, y: 15.435547} + m_SizeDelta: {x: 53.06039, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1961484285 MonoBehaviour: @@ -599699,6 +636176,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1961769762} m_CullTransparentMesh: 0 +--- !u!1 &1961956888 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1961956889} + - component: {fileID: 1961956891} + - component: {fileID: 1961956890} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1961956889 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1961956888} + m_LocalRotation: {x: 0, 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: 1366083740} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1961956890 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1961956888} + m_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 &1961956891 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1961956888} + m_CullTransparentMesh: 0 --- !u!1 &1962693695 GameObject: m_ObjectHideFlags: 0 @@ -599985,7 +636541,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1964582393} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -600115,6 +636671,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1964666690} m_CullTransparentMesh: 0 +--- !u!1 &1965562226 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1965562227} + - component: {fileID: 1965562229} + - component: {fileID: 1965562228} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1965562227 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1965562226} + m_LocalRotation: {x: 0, 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: 1398167600} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1965562228 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1965562226} + m_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 &1965562229 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1965562226} + m_CullTransparentMesh: 0 --- !u!1 &1965569336 GameObject: m_ObjectHideFlags: 0 @@ -600310,6 +636945,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1966295181} m_CullTransparentMesh: 0 +--- !u!1 &1966321750 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1966321751} + - component: {fileID: 1966321753} + - component: {fileID: 1966321752} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1966321751 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1966321750} + m_LocalRotation: {x: 0, 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: 1142719707} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1966321752 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1966321750} + m_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: +--- !u!222 &1966321753 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1966321750} + m_CullTransparentMesh: 0 --- !u!1 &1967047105 GameObject: m_ObjectHideFlags: 0 @@ -600337,7 +637051,7 @@ RectTransform: m_GameObject: {fileID: 1967047105} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1910686491} m_RootOrder: 9 @@ -600345,7 +637059,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 138.29999} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1967047107 MonoBehaviour: @@ -600607,7 +637321,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1967918669} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -601052,6 +637766,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1970341003} m_CullTransparentMesh: 0 +--- !u!1 &1970388648 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1970388649} + - component: {fileID: 1970388651} + - component: {fileID: 1970388650} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1970388649 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1970388648} + m_LocalRotation: {x: 0, 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: 694099502} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1970388650 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1970388648} + m_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 &1970388651 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1970388648} + m_CullTransparentMesh: 0 --- !u!1 &1970600436 GameObject: m_ObjectHideFlags: 0 @@ -602725,7 +639518,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} @@ -602856,6 +639649,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1976963877} m_CullTransparentMesh: 0 +--- !u!1 &1977016204 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1977016205} + 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 &1977016205 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1977016204} + m_LocalRotation: {x: 0, 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: 1598639202} + - {fileID: 1518712235} + m_Father: {fileID: 488529639} + 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 &1977123323 GameObject: m_ObjectHideFlags: 0 @@ -603092,6 +639922,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1977358733} m_CullTransparentMesh: 0 +--- !u!1 &1977431410 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1977431411} + m_Layer: 0 + m_Name: label_3_6 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1977431411 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1977431410} + m_LocalRotation: {x: 0, 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: 1814286725} + - {fileID: 1556063392} + m_Father: {fileID: 801884283} + m_RootOrder: 55 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &1978158415 GameObject: m_ObjectHideFlags: 0 @@ -603119,7 +639986,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1978158415} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -603322,7 +640189,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1979009499} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: -0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -603331,7 +640198,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 0, y: -30} + m_AnchoredPosition: {x: -0, y: -30} m_SizeDelta: {x: 584, y: 14} m_Pivot: {x: 0, y: 1} --- !u!114 &1979009501 @@ -603378,6 +640245,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1979009499} m_CullTransparentMesh: 0 +--- !u!1 &1979336718 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1979336719} + - component: {fileID: 1979336721} + - component: {fileID: 1979336720} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1979336719 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1979336718} + m_LocalRotation: {x: 0, 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: 943483654} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1979336720 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1979336718} + m_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 &1979336721 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1979336718} + m_CullTransparentMesh: 0 --- !u!1 &1979816970 GameObject: m_ObjectHideFlags: 0 @@ -603882,6 +640828,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1981705107} m_CullTransparentMesh: 0 +--- !u!1 &1982412279 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1982412280} + 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 &1982412280 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1982412279} + m_LocalRotation: {x: 0, 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: 1903315077} + - {fileID: 985278121} + m_Father: {fileID: 1357367415} + 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 &1982798697 GameObject: m_ObjectHideFlags: 0 @@ -604149,7 +641132,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 91.96208, y: 23.412323} + m_SizeDelta: {x: 92.43398, y: 23.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1983837401 MonoBehaviour: @@ -604835,7 +641818,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1986477468} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -605127,6 +642110,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1987854045} m_CullTransparentMesh: 0 +--- !u!1 &1988661014 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1988661015} + - component: {fileID: 1988661017} + - component: {fileID: 1988661016} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1988661015 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1988661014} + m_LocalRotation: {x: -0, 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: 1061918617} + 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 &1988661016 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1988661014} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1988661017 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1988661014} + m_CullTransparentMesh: 0 --- !u!1 &1988683397 GameObject: m_ObjectHideFlags: 0 @@ -605422,7 +642479,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1989397637} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -605843,7 +642900,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1991350496} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -606168,6 +643225,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1992336828} m_CullTransparentMesh: 0 +--- !u!1 &1992760094 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1992760095} + - component: {fileID: 1992760097} + - component: {fileID: 1992760096} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1992760095 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1992760094} + m_LocalRotation: {x: 0, 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: 1954892195} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1992760096 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1992760094} + m_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 &1992760097 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1992760094} + m_CullTransparentMesh: 0 --- !u!1 &1992809422 GameObject: m_ObjectHideFlags: 0 @@ -607521,6 +644657,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1996298995} m_CullTransparentMesh: 0 +--- !u!1 &1996666696 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1996666697} + - component: {fileID: 1996666699} + - component: {fileID: 1996666698} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1996666697 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1996666696} + m_LocalRotation: {x: -0, 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: 763616753} + 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 &1996666698 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1996666696} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &1996666699 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1996666696} + m_CullTransparentMesh: 0 --- !u!1 &1996685048 GameObject: m_ObjectHideFlags: 0 @@ -607664,7 +644874,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1996823447} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: -0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -607673,7 +644883,7 @@ RectTransform: 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: -30} + m_AnchoredPosition: {x: -0, y: -30} m_SizeDelta: {x: 584, y: 14} m_Pivot: {x: 0.5, y: 1} --- !u!114 &1996823449 @@ -608944,7 +646154,7 @@ RectTransform: m_GameObject: {fileID: 2003125466} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 63813656} - {fileID: 1568167059} @@ -608956,6 +646166,43 @@ RectTransform: m_AnchoredPosition: {x: -292, y: -150} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &2003254390 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2003254391} + 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 &2003254391 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2003254390} + m_LocalRotation: {x: 0, 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: 1787531729} + - {fileID: 1750523018} + m_Father: {fileID: 252393583} + 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: -134, y: 45.699997} + m_SizeDelta: {x: 50, y: 16} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &2003337840 GameObject: m_ObjectHideFlags: 0 @@ -609178,7 +646425,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} @@ -609188,9 +646435,9 @@ RectTransform: m_Father: {fileID: 627765467} m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 0, y: -300} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} --- !u!1 &2004373547 @@ -609304,6 +646551,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &2005591125 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2005591126} + 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 &2005591126 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2005591125} + m_LocalRotation: {x: 0, 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: 1395412977} + - {fileID: 589067196} + m_Father: {fileID: 300972851} + m_RootOrder: 36 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &2005686151 GameObject: m_ObjectHideFlags: 0 @@ -609516,7 +646800,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} @@ -609531,6 +646815,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} +--- !u!1 &2006822765 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2006822766} + - component: {fileID: 2006822768} + - component: {fileID: 2006822767} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2006822766 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2006822765} + m_LocalRotation: {x: -0, 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: 672199290} + 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 &2006822767 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2006822765} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &2006822768 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2006822765} + m_CullTransparentMesh: 0 --- !u!1 &2006827237 GameObject: m_ObjectHideFlags: 0 @@ -609556,7 +646914,7 @@ RectTransform: m_GameObject: {fileID: 2006827237} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1016279155} - {fileID: 473132747} @@ -609879,6 +647237,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2007250369} m_CullTransparentMesh: 0 +--- !u!1 &2007285222 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2007285223} + 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 &2007285223 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2007285222} + m_LocalRotation: {x: 0, 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: 1386763532} + - {fileID: 466066091} + m_Father: {fileID: 300972851} + m_RootOrder: 35 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &2007387436 GameObject: m_ObjectHideFlags: 0 @@ -611203,6 +648598,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2011840359} m_CullTransparentMesh: 0 +--- !u!1 &2012493817 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2012493818} + 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 &2012493818 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2012493817} + m_LocalRotation: {x: 0, 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: 179605651} + - {fileID: 574745963} + m_Father: {fileID: 1338692539} + 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 &2012612023 GameObject: m_ObjectHideFlags: 0 @@ -611420,7 +648852,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2013825577} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -611770,7 +649202,7 @@ RectTransform: m_GameObject: {fileID: 2014428794} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 2097334473} - {fileID: 904081045} @@ -612252,6 +649684,30 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_Delegates: + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + - eventID: 2 + callback: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.EventSystems.EventTrigger+TriggerEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null - eventID: 2 callback: m_PersistentCalls: @@ -612725,6 +650181,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 16} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &2018166851 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2018166852} + - component: {fileID: 2018166854} + - component: {fileID: 2018166853} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2018166852 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2018166851} + m_LocalRotation: {x: 0, 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: 758082991} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2018166853 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2018166851} + m_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 &2018166854 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2018166851} + m_CullTransparentMesh: 0 --- !u!1 &2018827221 GameObject: m_ObjectHideFlags: 0 @@ -613003,6 +650538,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2019706451} m_CullTransparentMesh: 0 +--- !u!1 &2019801670 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2019801671} + 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 &2019801671 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2019801670} + m_LocalRotation: {x: 0, 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: 1121398010} + - {fileID: 628953493} + m_Father: {fileID: 1130359736} + 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 &2019807661 GameObject: m_ObjectHideFlags: 0 @@ -614897,6 +652469,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2026986691} m_CullTransparentMesh: 0 +--- !u!1 &2027111240 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2027111241} + - component: {fileID: 2027111243} + - component: {fileID: 2027111242} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2027111241 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2027111240} + m_LocalRotation: {x: 0, 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: 1796907728} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2027111242 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2027111240} + m_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 &2027111243 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2027111240} + m_CullTransparentMesh: 0 --- !u!1 &2027170481 GameObject: m_ObjectHideFlags: 0 @@ -615302,7 +652953,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2028120912} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -616271,6 +653922,43 @@ RectTransform: m_AnchoredPosition: {x: 0, y: -5} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0.5, y: 1} +--- !u!1 &2031621731 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2031621732} + m_Layer: 0 + m_Name: label_3_3 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2031621732 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2031621731} + m_LocalRotation: {x: 0, 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: 885986487} + - {fileID: 993600583} + m_Father: {fileID: 801884283} + m_RootOrder: 52 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &2032234927 GameObject: m_ObjectHideFlags: 0 @@ -616298,7 +653986,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2032234927} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -616789,7 +654477,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2034061291} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -616870,7 +654558,7 @@ RectTransform: m_GameObject: {fileID: 2034156677} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1205683905} - {fileID: 126449945} @@ -617389,6 +655077,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} +--- !u!1 &2035443857 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2035443858} + - component: {fileID: 2035443860} + - component: {fileID: 2035443859} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2035443858 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2035443857} + m_LocalRotation: {x: 0, 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: 1350765120} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2035443859 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2035443857} + m_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 &2035443860 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2035443857} + m_CullTransparentMesh: 0 --- !u!1 &2035706425 GameObject: m_ObjectHideFlags: 0 @@ -617741,6 +655508,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2036447191} m_CullTransparentMesh: 0 +--- !u!1 &2036531056 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2036531057} + - component: {fileID: 2036531059} + - component: {fileID: 2036531058} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2036531057 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2036531056} + m_LocalRotation: {x: 0, 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: 605405549} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2036531058 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2036531056} + m_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 &2036531059 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2036531056} + m_CullTransparentMesh: 0 --- !u!1 &2036759349 GameObject: m_ObjectHideFlags: 0 @@ -617805,7 +655651,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2037485000} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -618555,7 +656401,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2039241394} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -619072,6 +656918,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2040406527} m_CullTransparentMesh: 0 +--- !u!1 &2040488033 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2040488034} + - component: {fileID: 2040488036} + - component: {fileID: 2040488035} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2040488034 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2040488033} + m_LocalRotation: {x: -0, 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: 305863580} + 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 &2040488035 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2040488033} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &2040488036 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2040488033} + m_CullTransparentMesh: 0 --- !u!1 &2040645772 GameObject: m_ObjectHideFlags: 0 @@ -619261,7 +657181,7 @@ RectTransform: 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: -30} + m_AnchoredPosition: {x: 0, y: -30} m_SizeDelta: {x: 584, y: 14} m_Pivot: {x: 0.5, y: 1} --- !u!114 &2040988648 @@ -620391,7 +658311,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2045377720} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -620795,7 +658715,7 @@ RectTransform: m_GameObject: {fileID: 2046532536} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1199393186} - {fileID: 879493406} @@ -621175,7 +659095,7 @@ RectTransform: m_GameObject: {fileID: 2047554011} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1133270064} - {fileID: 792111691} @@ -621636,6 +659556,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2050696923} m_CullTransparentMesh: 0 +--- !u!1 &2050856208 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2050856209} + - component: {fileID: 2050856211} + - component: {fileID: 2050856210} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2050856209 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2050856208} + m_LocalRotation: {x: 0, 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: 1555222915} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2050856210 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2050856208} + m_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 &2050856211 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2050856208} + m_CullTransparentMesh: 0 --- !u!1 &2050878941 GameObject: m_ObjectHideFlags: 0 @@ -621702,7 +659701,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 @@ -622705,7 +660704,7 @@ RectTransform: m_GameObject: {fileID: 2055032660} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1654081526} - {fileID: 1857987663} @@ -623178,10 +661177,10 @@ RectTransform: m_Father: {fileID: 37761823} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} - m_AnchorMin: {x: 0, y: 0} - m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} - m_SizeDelta: {x: 0, y: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 590, y: -682} + m_SizeDelta: {x: 584, y: 338} m_Pivot: {x: 0, y: 0} --- !u!114 &2057043786 MonoBehaviour: @@ -624602,7 +662601,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2058646398} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -625508,7 +663507,7 @@ RectTransform: m_GameObject: {fileID: 2058976017} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 127493249} - {fileID: 471070044} @@ -625973,6 +663972,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2060635940} m_CullTransparentMesh: 0 +--- !u!1 &2060729863 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2060729864} + - component: {fileID: 2060729866} + - component: {fileID: 2060729865} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2060729864 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2060729863} + m_LocalRotation: {x: 0, 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: 1802085458} + 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: 20} + m_SizeDelta: {x: 27.582396, y: 19.06653} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2060729865 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2060729863} + m_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.16911763, g: 0.17409168, b: 0.17409168, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+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: 820 +--- !u!222 &2060729866 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2060729863} + m_CullTransparentMesh: 0 --- !u!1 &2060987428 GameObject: m_ObjectHideFlags: 0 @@ -626690,7 +664768,7 @@ RectTransform: m_GameObject: {fileID: 2064114374} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 334744858} - {fileID: 1681164465} @@ -626729,7 +664807,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2064442486} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -626868,6 +664946,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2064900260} m_CullTransparentMesh: 0 +--- !u!1 &2065130063 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2065130064} + - component: {fileID: 2065130066} + - component: {fileID: 2065130065} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2065130064 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2065130063} + m_LocalRotation: {x: 0, 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: 1921096791} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2065130065 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2065130063} + m_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: +--- !u!222 &2065130066 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2065130063} + m_CullTransparentMesh: 0 --- !u!1 &2065547030 GameObject: m_ObjectHideFlags: 0 @@ -627688,6 +665845,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2067903190} m_CullTransparentMesh: 0 +--- !u!1 &2068047504 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2068047505} + - component: {fileID: 2068047507} + - component: {fileID: 2068047506} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2068047505 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2068047504} + m_LocalRotation: {x: 0, 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: 1395029637} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2068047506 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2068047504} + m_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 &2068047507 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2068047504} + m_CullTransparentMesh: 0 --- !u!1 &2068146364 GameObject: m_ObjectHideFlags: 0 @@ -627789,7 +666025,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2068767116} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -628684,7 +666920,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2072255940} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -629034,7 +667270,7 @@ RectTransform: m_GameObject: {fileID: 2073361684} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 862072358} - {fileID: 1242293417} @@ -629184,7 +667420,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2074252534} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -629538,7 +667774,7 @@ RectTransform: m_GameObject: {fileID: 2075361953} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1814221765} - {fileID: 15377401} @@ -629764,7 +668000,7 @@ RectTransform: m_GameObject: {fileID: 2077408418} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1107243629} m_RootOrder: 3 @@ -629772,7 +668008,7 @@ RectTransform: m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} m_AnchoredPosition: {x: -146, y: 97.73999} - m_SizeDelta: {x: 52.777252, y: 19.412323} + m_SizeDelta: {x: 53.06039, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2077408420 MonoBehaviour: @@ -630490,6 +668726,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2080440009} m_CullTransparentMesh: 0 +--- !u!1 &2080459689 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2080459690} + - component: {fileID: 2080459692} + - component: {fileID: 2080459691} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2080459690 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2080459689} + m_LocalRotation: {x: -0, 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: 1840582334} + 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 &2080459691 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2080459689} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &2080459692 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2080459689} + m_CullTransparentMesh: 0 --- !u!1 &2080704654 GameObject: m_ObjectHideFlags: 0 @@ -630564,6 +668874,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2080704654} m_CullTransparentMesh: 0 +--- !u!1 &2080743412 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2080743413} + 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 &2080743413 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2080743412} + m_LocalRotation: {x: 0, 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: 1900974823} + - {fileID: 1274367163} + m_Father: {fileID: 2097019616} + 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 &2081276442 GameObject: m_ObjectHideFlags: 0 @@ -630846,6 +669193,85 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 50, y: 20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &2082527619 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2082527620} + - component: {fileID: 2082527622} + - component: {fileID: 2082527621} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2082527620 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2082527619} + m_LocalRotation: {x: 0, 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: 145795803} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2082527621 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2082527619} + m_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: +--- !u!222 &2082527622 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2082527619} + m_CullTransparentMesh: 0 --- !u!1 &2082592766 GameObject: m_ObjectHideFlags: 0 @@ -630871,7 +669297,7 @@ RectTransform: m_GameObject: {fileID: 2082592766} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1952758319} - {fileID: 757584213} @@ -631388,6 +669814,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2084109109} m_CullTransparentMesh: 0 +--- !u!1 &2084239253 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2084239254} + - component: {fileID: 2084239256} + - component: {fileID: 2084239255} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2084239254 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2084239253} + m_LocalRotation: {x: 0, 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: 1789400402} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2084239255 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2084239253} + m_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.83137256, g: 0.50980395, b: 0.39607844, a: 1} + m_RaycastTarget: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_TypeName: UnityEngine.UI.MaskableGraphic+CullStateChangedEvent, UnityEngine.UI, + Version=1.0.0.0, Culture=neutral, PublicKeyToken=null + m_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 &2084239256 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2084239253} + m_CullTransparentMesh: 0 --- !u!1 &2084315190 GameObject: m_ObjectHideFlags: 0 @@ -631925,7 +670430,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2085613644} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -631981,6 +670486,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2085613644} m_CullTransparentMesh: 0 +--- !u!1 &2085691041 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2085691042} + - component: {fileID: 2085691044} + - component: {fileID: 2085691043} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2085691042 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2085691041} + m_LocalRotation: {x: -0, 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: 1284153696} + 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 &2085691043 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2085691041} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &2085691044 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2085691041} + m_CullTransparentMesh: 0 --- !u!1 &2085697984 GameObject: m_ObjectHideFlags: 0 @@ -632091,7 +670670,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2085845716} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -632290,7 +670869,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} @@ -632307,6 +670886,80 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 584, y: 300} m_Pivot: {x: 0, y: 0} +--- !u!1 &2086854650 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2086854651} + - component: {fileID: 2086854653} + - component: {fileID: 2086854652} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2086854651 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2086854650} + m_LocalRotation: {x: -0, 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: 441920079} + 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 &2086854652 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2086854650} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &2086854653 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2086854650} + m_CullTransparentMesh: 0 --- !u!1 &2086937786 GameObject: m_ObjectHideFlags: 0 @@ -633848,7 +672501,7 @@ RectTransform: m_GameObject: {fileID: 2089658402} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 551275278} - {fileID: 263357178} @@ -634084,7 +672737,7 @@ RectTransform: m_GameObject: {fileID: 2090365262} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 819080789} - {fileID: 1775716772} @@ -634121,7 +672774,7 @@ RectTransform: m_GameObject: {fileID: 2090993217} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 840327358} - {fileID: 1073305594} @@ -634258,6 +672911,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2091295786} m_CullTransparentMesh: 0 +--- !u!1 &2091374227 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2091374228} + - component: {fileID: 2091374230} + - component: {fileID: 2091374229} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2091374228 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2091374227} + m_LocalRotation: {x: -0, 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: 188641382} + 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 &2091374229 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2091374227} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &2091374230 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2091374227} + m_CullTransparentMesh: 0 --- !u!1 &2091504284 GameObject: m_ObjectHideFlags: 0 @@ -634907,6 +673634,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2094742713} m_CullTransparentMesh: 0 +--- !u!1 &2094829313 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2094829314} + - component: {fileID: 2094829316} + - component: {fileID: 2094829315} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2094829314 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2094829313} + m_LocalRotation: {x: -0, 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: 1844484198} + 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 &2094829315 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2094829313} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &2094829316 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2094829313} + m_CullTransparentMesh: 0 --- !u!1 &2094847558 GameObject: m_ObjectHideFlags: 0 @@ -635098,15 +673899,15 @@ RectTransform: m_GameObject: {fileID: 2095901325} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 1107243629} m_RootOrder: 10 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 254.21332, y: -69.22002} - m_SizeDelta: {x: 35.184834, y: 19.412323} + m_AnchoredPosition: {x: 254.30768, y: -69.22002} + m_SizeDelta: {x: 35.373592, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2095901327 MonoBehaviour: @@ -635253,7 +674054,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} @@ -635269,6 +674070,20 @@ RectTransform: - {fileID: 1151365734} - {fileID: 1379123270} - {fileID: 1778749420} + - {fileID: 997134934} + - {fileID: 1389377723} + - {fileID: 1844484198} + - {fileID: 605405549} + - {fileID: 906710900} + - {fileID: 831339249} + - {fileID: 572096907} + - {fileID: 1220765878} + - {fileID: 1820809129} + - {fileID: 956256037} + - {fileID: 1389271525} + - {fileID: 2080743413} + - {fileID: 1697490975} + - {fileID: 439402837} m_Father: {fileID: 627765467} m_RootOrder: 7 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -635497,7 +674312,7 @@ RectTransform: m_GameObject: {fileID: 2097515795} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {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: 1397185198} - {fileID: 329540768} @@ -636328,7 +675143,7 @@ RectTransform: m_GameObject: {fileID: 2101470042} m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: - {fileID: 100342731} - {fileID: 2040988647} @@ -636367,7 +675182,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2102344700} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -637109,6 +675924,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2104307798} m_CullTransparentMesh: 0 +--- !u!1 &2104889255 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2104889256} + - component: {fileID: 2104889258} + - component: {fileID: 2104889257} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2104889256 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2104889255} + m_LocalRotation: {x: 0, 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: 1283156824} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2104889257 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2104889255} + m_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 &2104889258 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2104889255} + m_CullTransparentMesh: 0 --- !u!1 &2105258265 GameObject: m_ObjectHideFlags: 0 @@ -637950,6 +676844,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2109464248} m_CullTransparentMesh: 0 +--- !u!1 &2109602120 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2109602121} + - component: {fileID: 2109602123} + - component: {fileID: 2109602122} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2109602121 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2109602120} + m_LocalRotation: {x: -0, 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: 170914617} + 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 &2109602122 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2109602120} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &2109602123 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2109602120} + m_CullTransparentMesh: 0 --- !u!1 &2109653878 GameObject: m_ObjectHideFlags: 0 @@ -638446,6 +677414,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2112607580} m_CullTransparentMesh: 0 +--- !u!1 &2112926836 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2112926837} + m_Layer: 0 + m_Name: label_4_1 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2112926837 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2112926836} + m_LocalRotation: {x: 0, 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: 435468971} + - {fileID: 904027002} + m_Father: {fileID: 763052335} + m_RootOrder: 64 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &2113064568 GameObject: m_ObjectHideFlags: 0 @@ -639756,7 +678761,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2116857008} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -639812,6 +678817,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2116857008} m_CullTransparentMesh: 0 +--- !u!1 &2117352401 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2117352402} + - component: {fileID: 2117352404} + - component: {fileID: 2117352403} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2117352402 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2117352401} + m_LocalRotation: {x: -0, 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: 906710900} + 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 &2117352403 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2117352401} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &2117352404 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2117352401} + m_CullTransparentMesh: 0 --- !u!1 &2117664546 GameObject: m_ObjectHideFlags: 0 @@ -640078,15 +679157,15 @@ RectTransform: m_GameObject: {fileID: 2118287786} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} + m_LocalScale: {x: 0, y: 0, z: 0} m_Children: [] m_Father: {fileID: 2057043785} m_RootOrder: 28 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0.5, y: 0.5} m_AnchorMax: {x: 0.5, y: 0.5} - m_AnchoredPosition: {x: 94.34714, y: -21.899979} - m_SizeDelta: {x: 27.298578, y: 19.412323} + m_AnchoredPosition: {x: 94.24002, y: -21.899979} + m_SizeDelta: {x: 27.512794, y: 19.651997} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &2118287788 MonoBehaviour: @@ -641360,6 +680439,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2123477637} m_CullTransparentMesh: 0 +--- !u!1 &2123864761 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2123864762} + 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 &2123864762 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2123864761} + m_LocalRotation: {x: 0, 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: 761660699} + - {fileID: 544294777} + m_Father: {fileID: 488529639} + 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 &2123968697 GameObject: m_ObjectHideFlags: 0 @@ -642398,7 +681514,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2129402484} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -642454,6 +681570,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2129402484} m_CullTransparentMesh: 0 +--- !u!1 &2129513411 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2129513412} + - component: {fileID: 2129513414} + - component: {fileID: 2129513413} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2129513412 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2129513411} + m_LocalRotation: {x: 0, 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: 1556641266} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2129513413 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2129513411} + m_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 &2129513414 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2129513411} + m_CullTransparentMesh: 0 --- !u!1 &2129986683 GameObject: m_ObjectHideFlags: 0 @@ -642819,7 +682014,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2131011520} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -644503,7 +683698,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2132867350} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -644586,7 +683781,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2133179406} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -644832,6 +684027,159 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2134024121} m_CullTransparentMesh: 0 +--- !u!1 &2134179979 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2134179980} + - component: {fileID: 2134179982} + - component: {fileID: 2134179981} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2134179980 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2134179979} + m_LocalRotation: {x: -0, 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: 888853008} + 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 &2134179981 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2134179979} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &2134179982 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2134179979} + m_CullTransparentMesh: 0 +--- !u!1 &2134430154 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2134430155} + - component: {fileID: 2134430157} + - component: {fileID: 2134430156} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2134430155 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2134430154} + m_LocalRotation: {x: 0, 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: 572096907} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2134430156 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2134430154} + m_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 &2134430157 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2134430154} + m_CullTransparentMesh: 0 --- !u!1 &2134495890 GameObject: m_ObjectHideFlags: 0 @@ -645782,6 +685130,85 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2140458677} m_CullTransparentMesh: 0 +--- !u!1 &2140726921 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2140726922} + - component: {fileID: 2140726924} + - component: {fileID: 2140726923} + m_Layer: 0 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2140726922 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2140726921} + m_LocalRotation: {x: 0, 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: 562186460} + 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: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2140726923 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2140726921} + m_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 &2140726924 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2140726921} + m_CullTransparentMesh: 0 --- !u!1 &2140929299 GameObject: m_ObjectHideFlags: 0 @@ -645809,7 +685236,7 @@ RectTransform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2140929299} - m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_Children: [] @@ -647199,6 +686626,80 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2144124602} m_CullTransparentMesh: 0 +--- !u!1 &2144420299 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2144420300} + - component: {fileID: 2144420302} + - component: {fileID: 2144420301} + m_Layer: 0 + m_Name: Icon + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2144420300 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2144420299} + m_LocalRotation: {x: -0, 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: 1724329879} + 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 &2144420301 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2144420299} + 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 + m_UseSpriteMesh: 0 +--- !u!222 &2144420302 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2144420299} + m_CullTransparentMesh: 0 --- !u!1 &2144716677 GameObject: m_ObjectHideFlags: 0 @@ -647591,6 +687092,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2146328977} m_CullTransparentMesh: 0 +--- !u!1 &2146476317 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2146476318} + m_Layer: 0 + m_Name: label_4_5 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2146476318 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2146476317} + m_LocalRotation: {x: 0, 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: 204617405} + - {fileID: 363006048} + m_Father: {fileID: 763052335} + m_RootOrder: 68 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 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 &2146794075 GameObject: m_ObjectHideFlags: 0