From de7340ee3904e2b76ffa95214fff93048f6b1f81 Mon Sep 17 00:00:00 2001 From: Alienjack Date: Sat, 21 Jun 2025 15:39:52 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E4=B8=80=E4=B8=AA=E5=B7=A6?= =?UTF-8?q?=E4=B8=8A=E8=A7=92=E7=8A=B6=E6=80=81=E6=A0=8FUI,=E7=94=A8?= =?UTF-8?q?=E4=BA=8E=E6=98=BE=E7=A4=BA=E5=BD=93=E5=89=8D=E5=B7=B2=E8=BF=9E?= =?UTF-8?q?=E6=8E=A5=E7=9A=84=E8=BE=93=E5=85=A5=E8=AE=BE=E5=A4=87,?= =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=8B=AC=E5=8D=A0=E6=80=A7=E8=AE=BE=E5=A4=87?= =?UTF-8?q?(=E6=89=8B=E6=9F=84)=E8=A2=AB=E9=94=99=E8=AF=AF=E7=9A=84binding?= =?UTF-8?q?=E5=88=B0=E5=A4=9A=E4=B8=AA=E6=A8=A1=E6=8B=9F=E5=99=A8=E8=99=9A?= =?UTF-8?q?=E6=8B=9F=E8=BE=93=E5=85=A5=E8=AE=BE=E5=A4=87=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Assets/Resources/IMPORTENT.prefab | 2550 ++++++++++++++++- .../Assets/Resources/Icons/DevicesIcons.meta | 8 + .../Icons/DevicesIcons/Ds3Control.png | Bin 0 -> 4338 bytes .../Icons/DevicesIcons/Ds3Control.png.meta | 117 + .../Icons/DevicesIcons/Ds4Control.png | Bin 0 -> 4054 bytes .../Icons/DevicesIcons/Ds4Control.png.meta | 117 + .../Icons/DevicesIcons/Ds5Control.png | Bin 0 -> 4054 bytes .../Icons/DevicesIcons/Ds5Control.png.meta | 117 + .../Icons/DevicesIcons/GlobalGamePad.png | Bin 0 -> 3379 bytes .../Icons/DevicesIcons/GlobalGamePad.png.meta | 117 + .../Resources/Icons/DevicesIcons/Keyboard.png | Bin 0 -> 2310 bytes .../Icons/DevicesIcons/Keyboard.png.meta | 117 + .../Icons/DevicesIcons/PsvitaControl.png | Bin 0 -> 3240 bytes .../Icons/DevicesIcons/PsvitaControl.png.meta | 117 + .../Icons/DevicesIcons/TouchPanel.png | Bin 0 -> 2376 bytes .../Icons/DevicesIcons/TouchPanel.png.meta | 117 + .../Icons/DevicesIcons/Xbox360Control.png | Bin 0 -> 3980 bytes .../DevicesIcons/Xbox360Control.png.meta | 117 + .../Icons/DevicesIcons/Xboxonecontrol.png | Bin 0 -> 3980 bytes .../DevicesIcons/Xboxonecontrol.png.meta | 117 + .../UIPrefabs/OverlayUI/Overlay.prefab | 8 + .../Resources/UIPrefabs/XMBInfoBar.prefab | 302 ++ .../AxiPlayerPrefsForFileSystem.cs.meta | 2 + .../KeyMapperSetting/Model/EmuCoreBinder.cs | 4 +- .../Devices/DualShockController_D.cs | 15 +- .../InputDevicesManager/Devices/GamePad_D.cs | 6 +- .../Devices/InputDevice_D.cs | 6 +- .../InputDevicesManager/Devices/Keyboard_D.cs | 5 +- .../Devices/PSVController_D.cs | 6 +- .../Devices/ScreenGamepad_D.cs | 5 +- .../Devices/XboxController_D.cs | 6 +- .../InputResolver/InputSystemResolver.cs | 19 +- .../Script/AppMain/UI/Tools/Selector.cs | 168 +- .../AppMain/UI/XMBTopGroupUI/DevicesBar.cs | 64 + .../UI/XMBTopGroupUI/DevicesBar.cs.meta | 2 + .../UI/XMBTopGroupUI/DevicesInfoItem.cs | 25 + .../UI/XMBTopGroupUI/DevicesInfoItem.cs.meta | 2 + .../Packages/packages-lock.json | 22 +- .../ProjectSettings/ProjectSettings.asset | 7 +- 39 files changed, 4172 insertions(+), 113 deletions(-) create mode 100644 AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons.meta create mode 100644 AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/Ds3Control.png create mode 100644 AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/Ds3Control.png.meta create mode 100644 AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/Ds4Control.png create mode 100644 AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/Ds4Control.png.meta create mode 100644 AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/Ds5Control.png create mode 100644 AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/Ds5Control.png.meta create mode 100644 AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/GlobalGamePad.png create mode 100644 AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/GlobalGamePad.png.meta create mode 100644 AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/Keyboard.png create mode 100644 AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/Keyboard.png.meta create mode 100644 AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/PsvitaControl.png create mode 100644 AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/PsvitaControl.png.meta create mode 100644 AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/TouchPanel.png create mode 100644 AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/TouchPanel.png.meta create mode 100644 AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/Xbox360Control.png create mode 100644 AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/Xbox360Control.png.meta create mode 100644 AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/Xboxonecontrol.png create mode 100644 AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/Xboxonecontrol.png.meta create mode 100644 AxibugEmuOnline.Client/Assets/Script/AppMain/AxiPlayerPrefs/AxiPlayerPrefsForFileSystem.cs.meta create mode 100644 AxibugEmuOnline.Client/Assets/Script/AppMain/UI/XMBTopGroupUI/DevicesBar.cs create mode 100644 AxibugEmuOnline.Client/Assets/Script/AppMain/UI/XMBTopGroupUI/DevicesBar.cs.meta create mode 100644 AxibugEmuOnline.Client/Assets/Script/AppMain/UI/XMBTopGroupUI/DevicesInfoItem.cs create mode 100644 AxibugEmuOnline.Client/Assets/Script/AppMain/UI/XMBTopGroupUI/DevicesInfoItem.cs.meta diff --git a/AxibugEmuOnline.Client/Assets/Resources/IMPORTENT.prefab b/AxibugEmuOnline.Client/Assets/Resources/IMPORTENT.prefab index 8be16655..6ff21895 100644 --- a/AxibugEmuOnline.Client/Assets/Resources/IMPORTENT.prefab +++ b/AxibugEmuOnline.Client/Assets/Resources/IMPORTENT.prefab @@ -679,6 +679,30 @@ PrefabInstance: serializedVersion: 3 m_TransformParent: {fileID: 5169543666820693527} m_Modifications: + - target: {fileID: 27569978958288309, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 27569978958288309, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 27569978958288309, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 27569978958288309, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 27569978958288309, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 27569978958288309, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 283482645670010668, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -1163,6 +1187,30 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 5787913848277022331, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5787913848277022331, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5787913848277022331, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5787913848277022331, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5787913848277022331, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5787913848277022331, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 6153230212222214112, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -1223,6 +1271,30 @@ PrefabInstance: propertyPath: m_LocalRotation.z value: 0 objectReference: {fileID: 0} + - target: {fileID: 6772997808681558389, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6772997808681558389, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6772997808681558389, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6772997808681558389, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6772997808681558389, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6772997808681558389, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 6838719776118089301, guid: 1de15a80c8c1aa94486563740a15d91c, type: 3} propertyPath: m_IsActive value: 1 @@ -1417,7 +1489,27 @@ PrefabInstance: m_Modifications: - target: {fileID: 1924338507, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchoredPosition.y - value: -184.00003 + value: -184 + objectReference: {fileID: 0} + - target: {fileID: 144591592521266890, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 144591592521266890, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 144591592521266890, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 144591592521266890, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 144591592521266890, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 objectReference: {fileID: 0} - target: {fileID: 155136085858422342, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y @@ -1447,6 +1539,46 @@ PrefabInstance: propertyPath: m_SizeDelta.x value: 0 objectReference: {fileID: 0} + - target: {fileID: 167890689290054190, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 167890689290054190, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 167890689290054190, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 167890689290054190, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 167890689290054190, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 190987360878121197, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 190987360878121197, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 190987360878121197, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 190987360878121197, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 190987360878121197, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 193475523204617150, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -1491,6 +1623,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.x value: 0 objectReference: {fileID: 0} + - target: {fileID: 253014187107846468, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 253014187107846468, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 253014187107846468, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 253014187107846468, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 253014187107846468, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 304195477753917210, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -1755,6 +1907,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 637724109910485378, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 637724109910485378, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 637724109910485378, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 637724109910485378, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 637724109910485378, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 660396214460747515, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -1795,6 +1967,10 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 737097030517869166, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} - target: {fileID: 740700010050407909, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -1835,6 +2011,30 @@ PrefabInstance: propertyPath: m_AnchoredPosition.x value: 0 objectReference: {fileID: 0} + - target: {fileID: 774377782454968215, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 774377782454968215, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 774377782454968215, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 774377782454968215, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 774377782454968215, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 774377782454968215, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 785838946138973877, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -1859,6 +2059,74 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 797256762410537600, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 797256762410537600, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 797256762410537600, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 797256762410537600, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 801314411402433479, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 809651930029662233, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 809651930029662233, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 809651930029662233, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 809651930029662233, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 809651930029662233, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 809651930029662233, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 822382869344615677, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 822382869344615677, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 822382869344615677, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 822382869344615677, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 822382869344615677, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 822382869344615677, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 833899971404383597, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -1887,6 +2155,86 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 836335357705750078, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 836335357705750078, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 836335357705750078, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 836335357705750078, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 836335357705750078, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 836335357705750078, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 844956550598309344, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 859102831692179716, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 864154374543017452, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 864154374543017452, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 864154374543017452, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 864154374543017452, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 864154374543017452, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 864154374543017452, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 905490728719920459, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 905490728719920459, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 905490728719920459, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 905490728719920459, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 905490728719920459, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 905490728719920459, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 1029475975899771591, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -2059,6 +2407,30 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 1464703774048542856, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1466095829300858129, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1466095829300858129, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1466095829300858129, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1466095829300858129, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1466095829300858129, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 1479571148959884843, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -2079,6 +2451,30 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 1501451262845777265, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1501451262845777265, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1501451262845777265, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1501451262845777265, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1501451262845777265, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1501451262845777265, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 1528755009784543106, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -2095,6 +2491,66 @@ PrefabInstance: propertyPath: m_AnchoredPosition.x value: 0 objectReference: {fileID: 0} + - target: {fileID: 1528885452242229526, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1528885452242229526, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1528885452242229526, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1528885452242229526, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1528885452242229526, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1539350800128682176, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1539350800128682176, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1539350800128682176, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1539350800128682176, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1563492871013449644, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1563492871013449644, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1563492871013449644, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1563492871013449644, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1563492871013449644, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1563492871013449644, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 1574361609750503662, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -2147,6 +2603,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 1587878033659069301, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1587878033659069301, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1587878033659069301, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1587878033659069301, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1587878033659069301, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 1591061663339243226, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -2463,10 +2939,38 @@ PrefabInstance: propertyPath: m_SizeDelta.x value: 0 objectReference: {fileID: 0} + - target: {fileID: 2020557513488158661, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2020557513488158661, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2020557513488158661, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2020557513488158661, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2020557513488158661, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2020557513488158661, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 2040845743446371591, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_SizeDelta.x value: 0 objectReference: {fileID: 0} + - target: {fileID: 2058114243107543612, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} - target: {fileID: 2078164669047027966, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -2519,6 +3023,46 @@ PrefabInstance: propertyPath: m_SizeDelta.x value: 0 objectReference: {fileID: 0} + - target: {fileID: 2106267989795788074, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2106267989795788074, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2106267989795788074, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2106267989795788074, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2118197116759481282, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2118197116759481282, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2118197116759481282, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2118197116759481282, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2118197116759481282, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2118197116759481282, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 2122439490176441037, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -2583,6 +3127,54 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 2149497463112942150, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2149497463112942150, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2149497463112942150, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2149497463112942150, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2149497463112942150, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2149497463112942150, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2152945659321847355, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2156096786117665698, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2156096786117665698, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2156096786117665698, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2156096786117665698, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2156096786117665698, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 2242378001832588895, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -2631,6 +3223,46 @@ PrefabInstance: propertyPath: m_SizeDelta.x value: 0 objectReference: {fileID: 0} + - target: {fileID: 2265425279118986869, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2265425279118986869, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2265425279118986869, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2265425279118986869, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2265425279118986869, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2265425279118986869, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2278279730055436569, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2278279730055436569, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2278279730055436569, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2278279730055436569, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} - target: {fileID: 2298948418585052454, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -2787,6 +3419,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 2484999545178399349, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2484999545178399349, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2484999545178399349, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2484999545178399349, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2484999545178399349, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 2488210261619068183, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -2943,6 +3595,26 @@ PrefabInstance: propertyPath: m_SizeDelta.x value: 0 objectReference: {fileID: 0} + - target: {fileID: 2650520758032213518, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2650520758032213518, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2650520758032213518, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2650520758032213518, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2650520758032213518, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 2675753706891305080, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -2971,6 +3643,86 @@ PrefabInstance: propertyPath: m_SizeDelta.x value: 0 objectReference: {fileID: 0} + - target: {fileID: 2739604327617755288, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2739604327617755288, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2739604327617755288, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2739604327617755288, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2745382469828711735, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2745382469828711735, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2745382469828711735, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2745382469828711735, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2745382469828711735, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2745382469828711735, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2760919216369509500, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2760919216369509500, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2760919216369509500, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2760919216369509500, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2773332878285838053, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2773332878285838053, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2773332878285838053, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2773332878285838053, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2773332878285838053, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2773332878285838053, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 2781021436551941020, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -2991,6 +3743,98 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 2791873844158116624, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2791873844158116624, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2791873844158116624, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2791873844158116624, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2791873844158116624, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2791873844158116624, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2804472086179475444, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2804472086179475444, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2804472086179475444, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2804472086179475444, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2804472086179475444, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2804472086179475444, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2807983173324440155, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2807983173324440155, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2807983173324440155, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2807983173324440155, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2808361787455308572, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2827671372286774430, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2827671372286774430, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2827671372286774430, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2827671372286774430, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2827671372286774430, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2827671372286774430, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 2828303746308262677, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_SizeDelta.x value: 0 @@ -3019,6 +3863,22 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 2869799289533455346, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2869799289533455346, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2869799289533455346, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2869799289533455346, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} - target: {fileID: 2972342585281997290, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_SizeDelta.x value: 0 @@ -3183,6 +4043,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 3196704738569655935, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3196704738569655935, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3196704738569655935, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3196704738569655935, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3196704738569655935, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 3255702493324521254, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -3243,6 +4123,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 3297054814623524745, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3297054814623524745, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3297054814623524745, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3297054814623524745, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3297054814623524745, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 3384584371492980799, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -3295,6 +4195,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 3405034552719032374, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3405034552719032374, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3405034552719032374, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3405034552719032374, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3405034552719032374, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 3433408876340354383, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -3343,6 +4263,22 @@ PrefabInstance: propertyPath: m_AnchoredPosition.x value: 0 objectReference: {fileID: 0} + - target: {fileID: 3461559799548026791, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3461559799548026791, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3461559799548026791, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3461559799548026791, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} - target: {fileID: 3465762057702071976, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -3391,6 +4327,30 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 3483042632470122831, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3483042632470122831, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3483042632470122831, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3483042632470122831, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3483042632470122831, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3483042632470122831, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 3494583397601441494, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -3419,6 +4379,10 @@ PrefabInstance: propertyPath: m_SizeDelta.x value: 0 objectReference: {fileID: 0} + - target: {fileID: 3518390430075045046, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} - target: {fileID: 3519860188546233501, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -3435,6 +4399,50 @@ PrefabInstance: propertyPath: m_AnchoredPosition.x value: 0 objectReference: {fileID: 0} + - target: {fileID: 3523949413786159307, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3523949413786159307, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3523949413786159307, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3523949413786159307, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3523949413786159307, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3523949413786159307, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3534674015700384374, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3534674015700384374, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3534674015700384374, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3534674015700384374, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3534674015700384374, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 3554980154840165367, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -3483,6 +4491,46 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 3559744865914112928, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3559744865914112928, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3559744865914112928, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3559744865914112928, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3569307240767315148, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3569307240767315148, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3569307240767315148, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3569307240767315148, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3569307240767315148, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3569307240767315148, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 3583643212238109851, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -3591,6 +4639,10 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 3636429857327499397, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} - target: {fileID: 3642064278729834819, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -3615,6 +4667,30 @@ PrefabInstance: propertyPath: m_AnchoredPosition.x value: 0 objectReference: {fileID: 0} + - target: {fileID: 3671177059592101244, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3671177059592101244, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3671177059592101244, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3671177059592101244, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3671177059592101244, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3671177059592101244, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 3672584404589193155, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_SizeDelta.x value: 0 @@ -3775,6 +4851,50 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 4048850584437238949, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4048850584437238949, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4048850584437238949, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4048850584437238949, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4048850584437238949, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4048850584437238949, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4059251362547879848, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4059251362547879848, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4059251362547879848, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4059251362547879848, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4059251362547879848, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 4060995442801898471, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -3799,6 +4919,10 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 4086450972403841372, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} - target: {fileID: 4097739594672530974, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_SizeDelta.x value: 0 @@ -3823,6 +4947,66 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 4131196876532016760, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4131196876532016760, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4131196876532016760, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4131196876532016760, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4131196876532016760, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4131196876532016760, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4137549926096701340, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4137549926096701340, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4137549926096701340, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4137549926096701340, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4137549926096701340, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4159794117244252436, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4159794117244252436, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4159794117244252436, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4159794117244252436, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} - target: {fileID: 4260109152942166820, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -3923,6 +5107,26 @@ PrefabInstance: propertyPath: m_SizeDelta.x value: 0 objectReference: {fileID: 0} + - target: {fileID: 4309772736740232111, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4309772736740232111, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4309772736740232111, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4309772736740232111, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4309772736740232111, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 4341261066660275441, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -4007,6 +5211,34 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 4612273187226378739, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4612273187226378739, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4612273187226378739, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4612273187226378739, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4612273187226378739, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4612273187226378739, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4649829878189945866, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} - target: {fileID: 4672003661404770824, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -4031,6 +5263,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 4732053922846082897, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4732053922846082897, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4732053922846082897, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4732053922846082897, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4732053922846082897, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 4898516912287247043, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -4071,6 +5323,30 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 5045491097022569823, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5045491097022569823, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5045491097022569823, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5045491097022569823, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5045491097022569823, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5045491097022569823, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 5049760705468783806, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -4095,6 +5371,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 5124910030741472042, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5124910030741472042, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5124910030741472042, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5124910030741472042, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5124910030741472042, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 5143221649238431569, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -4115,6 +5411,46 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 5151738970501990128, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5151738970501990128, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5151738970501990128, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5151738970501990128, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5156863819891364252, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5156863819891364252, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5156863819891364252, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5156863819891364252, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5156863819891364252, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5156863819891364252, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 5180491294173719624, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -4135,6 +5471,130 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 5193762185684042875, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5230480808004833666, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5230480808004833666, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5230480808004833666, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5230480808004833666, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5230480808004833666, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5230480808004833666, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5261760095902682375, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5261760095902682375, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5261760095902682375, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5261760095902682375, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5261760095902682375, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5261760095902682375, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5278167547658876704, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5278167547658876704, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5278167547658876704, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5278167547658876704, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5278167547658876704, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5326630208615504491, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5326630208615504491, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5326630208615504491, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5326630208615504491, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5341893183117517161, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5341893183117517161, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5341893183117517161, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5341893183117517161, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5341893183117517161, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419453813764782074, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419453813764782074, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419453813764782074, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5419453813764782074, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} - target: {fileID: 5448052503325092192, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -4155,6 +5615,30 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 5466173239513014422, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5466173239513014422, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5466173239513014422, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5466173239513014422, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5466173239513014422, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5466173239513014422, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 5575511813159837776, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_SizeDelta.x value: 0 @@ -4183,6 +5667,30 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 5630222912682382841, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5630222912682382841, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5630222912682382841, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5630222912682382841, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5630222912682382841, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5630222912682382841, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 5646849529323504002, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -4207,6 +5715,10 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 5667503385442467840, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} - target: {fileID: 5681350436955968635, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_SizeDelta.x value: 0 @@ -4347,6 +5859,30 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 6056648503378295164, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6056648503378295164, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6056648503378295164, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6056648503378295164, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6056648503378295164, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6056648503378295164, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 6080714890619496315, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -4371,6 +5907,30 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 6083945439393798953, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6083945439393798953, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6083945439393798953, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6083945439393798953, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6083945439393798953, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6091149406452460677, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} - target: {fileID: 6117749064187523714, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_SizeDelta.x value: 0 @@ -4403,6 +5963,22 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 6206344940333155688, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6206344940333155688, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6206344940333155688, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6206344940333155688, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} - target: {fileID: 6215373793562089842, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -4443,6 +6019,30 @@ PrefabInstance: propertyPath: m_AnchoredPosition.x value: 0 objectReference: {fileID: 0} + - target: {fileID: 6255261052874215940, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6255261052874215940, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6255261052874215940, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6255261052874215940, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6255261052874215940, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6255261052874215940, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 6256155029986723735, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -4467,6 +6067,46 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 6285650594164895900, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6285650594164895900, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6285650594164895900, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6285650594164895900, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6329078064606439408, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6329078064606439408, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6329078064606439408, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6329078064606439408, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6329078064606439408, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6329078064606439408, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 6364249261387864145, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -4579,6 +6219,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 6631740472534705859, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6631740472534705859, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6631740472534705859, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6631740472534705859, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6631740472534705859, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 6638777639981908314, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -4631,6 +6291,26 @@ PrefabInstance: propertyPath: m_SizeDelta.x value: 0 objectReference: {fileID: 0} + - target: {fileID: 6714953720638992303, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6714953720638992303, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6714953720638992303, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6714953720638992303, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6714953720638992303, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 6719905869711622945, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -4679,6 +6359,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 6821906799069997808, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6821906799069997808, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6821906799069997808, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6821906799069997808, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6821906799069997808, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 6946639205788313248, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -4727,6 +6427,46 @@ PrefabInstance: propertyPath: m_LocalPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 7119508894313881770, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7119508894313881770, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7119508894313881770, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7119508894313881770, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7119508894313881770, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7147167957162071110, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7147167957162071110, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7147167957162071110, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7147167957162071110, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7147167957162071110, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 7147517142203188711, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -4743,6 +6483,46 @@ PrefabInstance: propertyPath: m_AnchoredPosition.x value: 0 objectReference: {fileID: 0} + - target: {fileID: 7155699372021469596, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7155699372021469596, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7155699372021469596, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7155699372021469596, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7178840836106209008, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7178840836106209008, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7178840836106209008, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7178840836106209008, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7178840836106209008, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7178840836106209008, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 7196593765962207883, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -4767,6 +6547,74 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 7206567631982709751, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7243840652973563406, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7243840652973563406, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7243840652973563406, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7243840652973563406, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7243840652973563406, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7243840652973563406, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7283634277734892171, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7283634277734892171, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7283634277734892171, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7283634277734892171, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7283634277734892171, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7283634277734892171, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7348416463855801831, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7348416463855801831, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7348416463855801831, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7348416463855801831, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} - target: {fileID: 7362106881215994835, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -4795,6 +6643,222 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 7375053157131645855, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7375053157131645855, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7375053157131645855, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7375053157131645855, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7375053157131645855, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7375053157131645855, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7412052386842797670, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7413426908286789659, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7413426908286789659, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7413426908286789659, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7413426908286789659, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7413426908286789659, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7437515426588363633, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7437515426588363633, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7437515426588363633, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7437515426588363633, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7437515426588363633, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7449686226871768981, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7449686226871768981, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7449686226871768981, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7449686226871768981, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7449686226871768981, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7477574692447580594, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7477574692447580594, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7477574692447580594, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7477574692447580594, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7477574692447580594, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7643189171127796373, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7643189171127796373, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7643189171127796373, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7643189171127796373, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7643189171127796373, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7643189171127796373, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7680754662210983788, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7885417314689901974, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7885417314689901974, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7885417314689901974, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7885417314689901974, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7890546630459454202, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7890546630459454202, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7890546630459454202, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7890546630459454202, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7890546630459454202, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7890546630459454202, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7906788073153333469, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7906788073153333469, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7906788073153333469, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7906788073153333469, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7906788073153333469, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7964317241506992544, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7964317241506992544, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7964317241506992544, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7964317241506992544, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7964317241506992544, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 7970335551922101566, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -4815,6 +6879,66 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 8026739069577340236, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8026739069577340236, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8026739069577340236, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8026739069577340236, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8026739069577340236, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8094264138917361737, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8094264138917361737, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8094264138917361737, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8094264138917361737, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8094264138917361737, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8159314218111986766, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8159314218111986766, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8159314218111986766, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8159314218111986766, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8159314218111986766, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 8164210650886440255, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -4887,6 +7011,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 8246141463153612766, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8246141463153612766, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8246141463153612766, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8246141463153612766, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8246141463153612766, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 8286195300612775080, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -4907,6 +7051,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 8316580359795253802, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8316580359795253802, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8316580359795253802, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8316580359795253802, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8316580359795253802, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 8365089343948286075, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -5031,6 +7195,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 8685427128697914109, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8685427128697914109, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8685427128697914109, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8685427128697914109, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8685427128697914109, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 8723400717427811102, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -5047,6 +7231,46 @@ PrefabInstance: propertyPath: m_AnchoredPosition.x value: 0 objectReference: {fileID: 0} + - target: {fileID: 8746341200516234521, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8746341200516234521, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8746341200516234521, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8746341200516234521, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8759296651431815797, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8759296651431815797, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8759296651431815797, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8759296651431815797, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8759296651431815797, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8759296651431815797, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 8782518064975623282, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -5091,10 +7315,62 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 8815702449819645177, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8815702449819645177, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8815702449819645177, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8815702449819645177, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8815702449819645177, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8815702449819645177, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8850205547889680640, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} - target: {fileID: 8882831782110093186, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_SizeDelta.x value: 0 objectReference: {fileID: 0} + - target: {fileID: 8885015565718536461, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8885015565718536461, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8885015565718536461, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8885015565718536461, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8885015565718536461, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8885015565718536461, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 8918180408644160123, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -5119,6 +7395,10 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 8919518908329088244, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} - target: {fileID: 9003803253190325092, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -5239,6 +7519,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 9212406396280902200, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9212406396280902200, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9212406396280902200, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9212406396280902200, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 9212406396280902200, guid: 450328d5a907c8249a60bc3980ba66f6, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} m_RemovedComponents: [] m_RemovedGameObjects: [] m_AddedGameObjects: [] @@ -5274,6 +7574,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 616174633529092555, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 616174633529092555, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 616174633529092555, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 616174633529092555, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 616174633529092555, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 1108503213262670097, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -5302,6 +7622,30 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 1599846709466605622, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1599846709466605622, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1599846709466605622, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1599846709466605622, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1599846709466605622, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1599846709466605622, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 1700008050955832379, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -5430,6 +7774,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 2180787260962546873, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2180787260962546873, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2180787260962546873, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2180787260962546873, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2180787260962546873, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 2256656160383605798, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -5618,6 +7982,30 @@ PrefabInstance: propertyPath: m_AnchorMin.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 3401503803137628060, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3401503803137628060, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3401503803137628060, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3401503803137628060, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3401503803137628060, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3401503803137628060, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 3515422821744378301, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -5638,6 +8026,30 @@ PrefabInstance: propertyPath: m_AnchoredPosition.x value: 0 objectReference: {fileID: 0} + - target: {fileID: 3598144701156924729, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3598144701156924729, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3598144701156924729, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3598144701156924729, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3598144701156924729, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3598144701156924729, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 3638410964911123998, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -5654,6 +8066,14 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 4076923977615567036, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4076923977615567036, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 4195056312044822544, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -5682,6 +8102,30 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 4218855629084597763, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4218855629084597763, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4218855629084597763, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4218855629084597763, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4218855629084597763, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4218855629084597763, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 4541943946029862829, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -5778,6 +8222,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 4920166221205353480, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4920166221205353480, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4920166221205353480, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4920166221205353480, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4920166221205353480, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 5155040771471469003, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -5994,6 +8458,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 6358079251190875902, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6358079251190875902, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6358079251190875902, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6358079251190875902, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6358079251190875902, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 6362836288749559125, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} propertyPath: m_SizeDelta.x value: 0 @@ -6194,6 +8678,26 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 7342882810544495322, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7342882810544495322, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7342882810544495322, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7342882810544495322, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7342882810544495322, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 7535416527851975519, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -6222,6 +8726,30 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 7987755655755377033, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7987755655755377033, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7987755655755377033, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7987755655755377033, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7987755655755377033, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7987755655755377033, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 8720207225742131896, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} propertyPath: m_AnchorMax.y value: 0 @@ -6238,6 +8766,26 @@ PrefabInstance: propertyPath: m_LocalPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 8874589573824630086, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8874589573824630086, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8874589573824630086, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_SizeDelta.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8874589573824630086, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchoredPosition.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8874589573824630086, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 9044517244222250025, guid: 3b211f31b55a35e44a8fa38666f63383, type: 3} propertyPath: m_AnchorMax.y value: 0 diff --git a/AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons.meta b/AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons.meta new file mode 100644 index 00000000..e11ea584 --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2d28d800dbf30c84da9e5d605a4f9896 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/Ds3Control.png b/AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/Ds3Control.png new file mode 100644 index 0000000000000000000000000000000000000000..de51824ea316490f0fd49bcb4779b36d92b3f894 GIT binary patch literal 4338 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 DNQ4Ln literal 0 HcmV?d00001 diff --git a/AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/GlobalGamePad.png.meta b/AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/GlobalGamePad.png.meta new file mode 100644 index 00000000..5f675b95 --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/GlobalGamePad.png.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 8b18487f95d9f874cb71f073bf85c0ad +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/Keyboard.png b/AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/Keyboard.png new file mode 100644 index 0000000000000000000000000000000000000000..da07479cddec73bfe0661a72c6b061fb17c02081 GIT binary patch literal 2310 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

  • %)HRDOn?G%@HGO;@Qa3dkIH z6(Mg0V7w+BMH==_E;vrzw@5Us(e0C!vO%{Mr2O0o<+>9xs4G1j_%**^qODH&w~I4~ zC8h!RXNnvc71IN#ymYL@dzyN6=4j%53oTuAXcrrVcMU=d2IStzzf*cFNBaLKUKK!nOmc7u+{NuWLQF?v3Czfg< zQ={we6Oe%W_+~zHT?c0&xeB$sd6-V+Y=hsbd5~*xbgz880G;^RA?S z{Gsr^y{IgK&zIu4<}{~_-x|)*p8+qNtf49P8i86eW8*uQ)l@|;xl!&OffbU*r-xG4 zW52Up-PBb|zf{b{Y z95XN5Tpz7bC78H%m;5^GnYbC$M=XwY7wBlz>3;j&d;|DgZ48~hw!N*-Ju^gSA$W4= zXJY<<05;S7Tr<92BKWhXGT2^ZeEHJ@slr6*_A0RTfbom`HG-jHvsO8%$I8#|=Ew-% z;!!W51BQQ>>V}^v!A9cR&kiS!m5vnjzBr%m$EP$fPLS*tcbl)*xmdocZ8_XOGo zsK^=P5ULx%0#&_Jsof_Eq z;^zTKeQ}kgLCDT+NhP}%VBI0Ynf}7DeJ^d(=_D}9bHA*znhS5O^?goUKy=2^SS1FA z+VgNc>zeSJ`P0hf?{3uJLw6LbeErFhqq;LY4pH`euJVs@@wJJBwUk;Xp$-2sK;_re zC)pYs!@gh5dHb=v@~pn5bf>Z3_Yp*TFvH#iwAte&rIcHXY+h0asB*QxP+_UksbqGH z1#p&2D-N$t&%2_XuJ+m>*}C4PX!nHbu{P2bIO=E}gU*SH-gwpMu_!Q_iEWoZIREyU z@o2nRH5@xhV@`JfmC}0Xc4d99o@rz)19`9teUAo+=yI+kz!Y@*5Gtl!J&$C zr)u|d_O_0= zgCA*`Avx-y?)Sc0l(A@?qH7ntZQ6BUD=$Azi2>z_T!$g3EJ=zn^5hCBR=vz7E9X~5EgRZ zT*3%4Q7X4JzlK3^rt^8UNS>R_#Jv?}f9rWi&T_7cw?g`ngjJ_sMzzcjJ$P%^L-1X- zyNH#<(6(LGAIRnnxACo>gwoD-^^T^gN$kSSh7^spAGF`dS%7z{UYv7$$KSd1+dQFm z^-Q+!1J@_6gz4+0!M69_Bjgy^@u7D{FLlUCqy_yY> zLKA+<%SY*zjgC#L5+m|0$_c&q&L9tYrq~9IDL(%)F<3oBzkCx4I~W Wt{71Z0$)C}1>;fMpB); zS zU3I4_2n14ha zU?z)$ogI>mI1<_392AMv6`htRDUNE>T)RZ=8TRv|QqPlHE> zo?-Ebkz}K4r7e0Nn8d%^sqnlEkhQOjZX3T93loI5D3f!cr!LP7=yF2vch1^ zG3MrISq7RH#p2T<(JY?vw*vM-JUW-j;WODRxV#`OkR8q^8-<568AN~v5CRzt0y>a} zXP|L71`SPP;BjaM9?!5K;4IAnT%ggn_IxJry+4chO$M1D82JtcXNHwimit6EE;C5R zLf+CENBX+|9~cQEC-QH^tpA0`?ke;CP)07(AL<6NWRePG+L`9$tARjD&QA8WUXlKD zQn{kj)FUYY}szszy!8@a02DS8!?{akd_c(;XZtFXxFxy`z&yUK#g!5fT`XzMtR z!Z`Teh0Kb82JzPy{5}EO`-P(L__@)Oe{weimL=z7Z(#bE$rK{~EUvzYO-WCcuF(Lt zi_(BcFfb43j64U%`hW&EW zv)V+Pxf)=#bvozr=k z@j@AKxpT`(rRdy_TV*mvB+GY%hipj)q?`XTC0j)9)@{|DLUiS)Zf)Av6}hO{hb&$# zu^KEkz3HLX6We(weOPzOy31!15b91@b*;WPtfL$4?RBfzpLL0U^5tY@S3XQ})jac6 zMXlbFvHogG0ma$7E5Mh4ZPc9_$#mm7FL>Qlv9C5T>=c%)9`|g#9OI_cB}1rdczqC1 zI(@mI(!&+rT=}}nz~?v(_ON&8dWEo@_q5qUMU1vs*;CwGurukCNCSkzGGU^fj?y6H zN!P(m@9gQ>K}yb;xzbosh4ApPnmAE~+F!ncb)WC6*EU&A`!7)99PHq6l>bXpQ$dgt zp;rzlKaqs^V8Eher7&egOafFa?gN%tz&s)$m0bqCAF@6XNLFSjT1%b)5!m_@>n)=2 zdvm?BZ?BO`q}y1Tl%1cbQxC)$k`RTn0lpd%wI(!}`7YlV*Y#FB+hI1`0(CV0BC#Q4 zTr-q_SQjZfKj1y9BQjf{_xI{|hC&_nO6VD>N{cgod*jGu@xwyOzBSx|OBtHG0@F^U zeT33U>kSt5NKNF$6V)(yR#Z`7nzx`WFfADGS(%Wcp@ztco){2bxwYNb;GqLCV+o!W z-Hi7>y}~rv;n*G4GpFU)Hdf=#nk=&(*ixk=tnxFnHcg;_g#TsNqTn&%+cO!b;WPVH z%~=1~quMxKZdFJiKu@L@oVRpSw;#93X={ZwAqc_srHbavW-zdf)-NYGz(4&6?MNFO zL!IkgyIDZtHu4t8il#LmhTb@Z`5c7r0psqurRzmHDIF_UdF4&S*3x0WdBoJbzBj@I zmh&{ysM*kmFa2TELq>sq}Q`z4-{WtEa{-U`T6)JRr6||p`hHd3hR)1dh6by z5$W%<$wQFp#mqe2kMZY9)_lG6lGZQ^d5i7-eRv!;*(T&QHuBk{d~){9p}&^2i4HbM zL%S`((s^KX(01b#`Y3c^K}=6k%=>VxHDo9RmbAw03R7fBCV8AsiNAS0rid%gousJ9(R=B30cbHDu$d|Lmn>RoBHaY2_a${ST zM&H618u6Of+XCEOCMNF89oN#~P>BzZYB@fl|4?6eHa3phCbH7#zio%>;-!UIOh!{J zCUr7;;aTY)9q#A$t!%xGt4D=uv$%-JcI7$*6r_DVZXX$S|;x+p37_X~49P(3dU9yXZBa{O$?;)uk}jY2iV z-IS>k*KQi5KOwr7Ay9fU;_jCH;El0i679nqn`zy8WdJ@M`Z5nAF(Uj>CafBqE zz^?cZJEdP0(}dqZWuM9YIW5xk&+We^`Q}*XJ^_}Ei)vkdxZS^0NUT&i{45G0NpNZW zo458vkn=?M9asHdw+^+SvdtQc&P~1-SGgdUyuKK$mmNq~H(s9si);9#x~_D~+Vb&S zr>1A=mK<$*rW30whwrC9-=DlcAP8yo=&cO{EA7jlYd<;kE zcU)ihygi-i*Edexpg#C9?R=OU?E7~o_d1+6)pX`!B@bGb?#N@OgGcOZ>`q?zCnY2C A%>V!Z literal 0 HcmV?d00001 diff --git a/AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/TouchPanel.png.meta b/AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/TouchPanel.png.meta new file mode 100644 index 00000000..d373935b --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/TouchPanel.png.meta @@ -0,0 +1,117 @@ +fileFormatVersion: 2 +guid: 6157ffb6d56b8a14bbc93ee13d42319e +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 13 + mipmaps: + mipMapMode: 0 + enableMipMap: 0 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + flipGreenChannel: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMipmapLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 0 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + swizzle: 50462976 + cookieLightType: 0 + platformSettings: + - serializedVersion: 4 + buildTarget: DefaultTexturePlatform + maxTextureSize: 128 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 4 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + ignorePlatformSupport: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + customData: + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + spriteCustomMetadata: + entries: [] + nameFileIdTable: {} + mipmapLimitGroupName: + pSDRemoveMatte: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/Xbox360Control.png b/AxibugEmuOnline.Client/Assets/Resources/Icons/DevicesIcons/Xbox360Control.png new file mode 100644 index 0000000000000000000000000000000000000000..ed930ea0715251fe7eab0dc7c0930d6dba66d210 GIT binary patch literal 3980 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 : InternalEmuCoreBinder, /// 获取指定设备的注册Binder对象 /// /// 返回首个匹配对象 - public ControllerBinder GetRegistedBinder(InputDevice_D device) + ControllerBinder GetRegistedBinder(InputDevice_D device) { foreach (var binding in m_controllerBinders) { - if (device.Exclusive && GetRegistedBinder(device) != null) continue; if (binding.IsRegisted(device)) return binding; } @@ -63,6 +62,7 @@ public abstract class EmuCoreBinder : InternalEmuCoreBinder, { foreach (var binding in m_controllerBinders) { + if (connectDevice.Exclusive && GetRegistedBinder(connectDevice) != null) continue; binding.RegistInputDevice(connectDevice); } } diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/DualShockController_D.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/DualShockController_D.cs index fac26789..29c4e59f 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/DualShockController_D.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/DualShockController_D.cs @@ -1,8 +1,13 @@ -namespace AxibugEmuOnline.Client.InputDevices +using AxibugProtobuf; + +namespace AxibugEmuOnline.Client.InputDevices { /// PS3,PS4控制器 public class DualShockController_D : InputDevice_D { + GamePadType m_gamePadType; + public override GamePadType PadType => m_gamePadType; + public Button_C Circle; public Button_C Triangle; public Button_C Cross; @@ -23,6 +28,12 @@ public Stick_C LeftStick; public Stick_C RightStick; - public DualShockController_D(InputResolver resolver) : base(resolver) { } + public DualShockController_D(InputResolver resolver, bool ps3 = false, bool ps4 = false, bool ps5 = false) : base(resolver) + { + if (ps3) m_gamePadType = GamePadType.Ds3Control; + else if (ps4) m_gamePadType = GamePadType.Ds4Control; + else if (ps5) m_gamePadType = GamePadType.Ds5Control; + else m_gamePadType = GamePadType.GlobalGamePad; + } } } \ No newline at end of file diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/GamePad_D.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/GamePad_D.cs index 1834a25c..9a9d48ec 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/GamePad_D.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/GamePad_D.cs @@ -1,10 +1,14 @@ -namespace AxibugEmuOnline.Client.InputDevices +using AxibugProtobuf; + +namespace AxibugEmuOnline.Client.InputDevices { /// /// 通用游戏控制器 /// public class GamePad_D : InputDevice_D { + public override GamePadType PadType => GamePadType.GlobalGamePad; + public Button_C Up; public Button_C Down; public Button_C Left; diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/InputDevice_D.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/InputDevice_D.cs index d6b0fe8c..ced6b3cc 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/InputDevice_D.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/InputDevice_D.cs @@ -1,4 +1,5 @@ -using System; +using AxibugProtobuf; +using System; using System.Collections.Generic; using System.Reflection; @@ -9,7 +10,8 @@ namespace AxibugEmuOnline.Client.InputDevices /// 指示该设备是否只能由一个Binder独占 public virtual bool Exclusive => true; public string UniqueName => m_resolver.GetDeviceName(this); - + /// 指示该设备类型,这个类型将与服务器类型对齐 + public abstract GamePadType PadType { get; } /// 指示该设备是否在线 public bool Online => m_resolver.CheckOnline(this); /// 指示该设备当前帧是否有任意控件被激发 diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/Keyboard_D.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/Keyboard_D.cs index 841a8072..e449166a 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/Keyboard_D.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/Keyboard_D.cs @@ -1,4 +1,5 @@ -using System.Collections.Generic; +using AxibugProtobuf; +using System.Collections.Generic; namespace AxibugEmuOnline.Client.InputDevices { @@ -7,6 +8,8 @@ namespace AxibugEmuOnline.Client.InputDevices /// public class Keyboard_D : InputDevice_D { + public override GamePadType PadType => GamePadType.Keyboard; + public Button_C A; public Button_C B; public Button_C C; diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/PSVController_D.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/PSVController_D.cs index 85a6e3c3..f4da18c0 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/PSVController_D.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/PSVController_D.cs @@ -1,7 +1,11 @@ -namespace AxibugEmuOnline.Client.InputDevices +using AxibugProtobuf; + +namespace AxibugEmuOnline.Client.InputDevices { public class PSVController_D : InputDevice_D { + public override GamePadType PadType => GamePadType.PsvitaControl; + public Button_C Cross; public Button_C Circle; public Button_C Square; diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/ScreenGamepad_D.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/ScreenGamepad_D.cs index 7dd41c05..70aa106f 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/ScreenGamepad_D.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/ScreenGamepad_D.cs @@ -1,4 +1,5 @@ -using AxiInputSP; +using AxibugProtobuf; +using AxiInputSP; using AxiInputSP.UGUI; using System.Collections.Generic; using UnityEngine; @@ -7,6 +8,8 @@ namespace AxibugEmuOnline.Client.InputDevices { public class ScreenGamepad_D : InputDevice_D { + public override GamePadType PadType => GamePadType.TouchPanel; + public Button_C UP; public Button_C DOWN; public Button_C LEFT; diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/XboxController_D.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/XboxController_D.cs index 41380b27..9667da52 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/XboxController_D.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/Devices/XboxController_D.cs @@ -1,7 +1,11 @@ -namespace AxibugEmuOnline.Client.InputDevices +using AxibugProtobuf; + +namespace AxibugEmuOnline.Client.InputDevices { public class XboxController_D : InputDevice_D { + public override GamePadType PadType => GamePadType.Xboxonecontrol; + public Button_C X; public Button_C Y; public Button_C A; diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/InputResolver/InputSystemResolver.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/InputResolver/InputSystemResolver.cs index 02eec3fd..4e1636ff 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/InputResolver/InputSystemResolver.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/Manager/InputDevicesManager/InputResolver/InputSystemResolver.cs @@ -2,6 +2,7 @@ using System.Collections.Generic; using UnityEngine; using UnityEngine.InputSystem; +using UnityEngine.InputSystem.Android; using UnityEngine.InputSystem.DualShock; using UnityEngine.InputSystem.XInput; @@ -23,8 +24,18 @@ namespace AxibugEmuOnline.Client.InputDevices.ForInputSystem { InputDevice_D newDevice = null; if (ipdev is Keyboard) newDevice = new Keyboard_D(this); - else if (ipdev is DualShockGamepad) newDevice = new DualShockController_D(this); - else if (ipdev is XInputController) newDevice = new XboxController_D(this); + else if (ipdev is DualShockGamepad) + { + if (ipdev is DualShock3GamepadHID) newDevice = new DualShockController_D(this, ps3: true); + else if (ipdev is DualShock4GamepadHID) newDevice = new DualShockController_D(this, ps4: true); + else if (ipdev is DualSenseGamepadHID) newDevice = new DualShockController_D(this, ps5: true); + else newDevice = new DualShockController_D(this); + + } + else if (ipdev is XInputController) + { + newDevice = new XboxController_D(this); + } else if (ipdev is Gamepad) newDevice = new GamePad_D(this); //注意Gamepad的优先级,因为任何手柄,Inputsystem中的基类都是GamePad if (newDevice != null) @@ -39,9 +50,9 @@ namespace AxibugEmuOnline.Client.InputDevices.ForInputSystem { if (m_devices.TryGetValue(ipdev, out var device)) { - m_devices.Remove(ipdev); RemoveDeviceMapper(device); RaiseDeviceLost(device); + m_devices.Remove(ipdev); } } @@ -56,7 +67,7 @@ namespace AxibugEmuOnline.Client.InputDevices.ForInputSystem var ipdev = GetInputSystemDevice(inputDevice); Debug.Assert(ipdev != null, "不能对已离线的设备获取名称"); - return $"{ipdev.description.deviceClass}_{ipdev.description.interfaceName}_{ipdev.deviceId}"; + return $"{ipdev.description}_{ipdev.deviceId}"; } protected override bool OnCheckOnline(InputDevice_D device) diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/Tools/Selector.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/Tools/Selector.cs index dc150d97..2cf827fd 100644 --- a/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/Tools/Selector.cs +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/Tools/Selector.cs @@ -1,105 +1,105 @@ -using DG.Tweening; -using DG.Tweening.Core; -using DG.Tweening.Plugins.Options; -using UnityEngine; - -namespace AxibugEmuOnline.Client -{ +using DG.Tweening; +using DG.Tweening.Core; +using DG.Tweening.Plugins.Options; +using UnityEngine; + +namespace AxibugEmuOnline.Client +{ /// /// 选择指示器,用于控制RectTransform在屏幕坐标上的高宽和位置同步,同时带有过度动画 - /// - public class Selector : MonoBehaviour - { - [SerializeField] - private Animator animator; - private RectTransform m_rect => transform as RectTransform; - - private RectTransform m_target; - - public RectTransform Target - { - get => m_target; - set - { - if (m_target == value) return; - - m_target = value; - if (m_target == null) - { - if (m_trackTween != null) - { - m_trackTween.Kill(); - m_trackTween = null; - } - return; - } - - var itemUIRect = m_target.transform as RectTransform; - m_rect.pivot = itemUIRect.pivot; - m_rect.SetAsLastSibling(); - - animator.SetTrigger("reactive"); - - if (m_trackTween != null) - { - m_trackTween.Kill(); - m_trackTween = null; - } - - var startSize = m_rect.sizeDelta; - var startPos = m_rect.position; - - m_trackTween = DOTween.To( - () => 0f, + /// + public class Selector : MonoBehaviour + { + [SerializeField] + private Animator animator; + private RectTransform m_rect => transform as RectTransform; + + private RectTransform m_target; + + public RectTransform Target + { + get => m_target; + set + { + if (m_target == value) return; + + m_target = value; + if (m_target == null) + { + if (m_trackTween != null) + { + m_trackTween.Kill(); + m_trackTween = null; + } + return; + } + + var itemUIRect = m_target.transform as RectTransform; + m_rect.pivot = itemUIRect.pivot; + m_rect.SetAsLastSibling(); + + animator.SetTrigger("reactive"); + + if (m_trackTween != null) + { + m_trackTween.Kill(); + m_trackTween = null; + } + + var startSize = m_rect.sizeDelta; + var startPos = m_rect.position; + + m_trackTween = DOTween.To( + () => 0f, (_value) => { var progress = _value; m_rect.position = Vector3.Lerp(startPos, itemUIRect.position, progress); m_rect.sizeDelta = Vector2.Lerp(startSize, itemUIRect.rect.size, progress); }, - 1f, - 0.125f); + 1f, + 0.125f); m_trackTween.onComplete = () => { m_trackTween = null; - }; - } - } - + }; + } + } + private bool m_active; private TweenerCore m_trackTween; - public bool Active - { - get => m_active; - set - { - if (m_active == value) return; - m_active = value; - - animator.SetBool("active", value); - } - } - - public void RefreshPosition() - { - if (Target != null) - { - m_rect.position = Target.position; - } - } - + public bool Active + { + get => m_active; + set + { + if (m_active == value) return; + m_active = value; + + animator.SetBool("active", value); + } + } + + public void RefreshPosition() + { + if (Target != null) + { + m_rect.position = Target.position; + } + } + struct TrackTarget { - Vector3 pos; - Vector2 size; - } - + Vector3 pos; + Vector2 size; + } + struct TrackTargetOption : IPlugOptions { public void Reset() { } - } - } -} + } + } +} diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/XMBTopGroupUI/DevicesBar.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/XMBTopGroupUI/DevicesBar.cs new file mode 100644 index 00000000..ab579af4 --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/XMBTopGroupUI/DevicesBar.cs @@ -0,0 +1,64 @@ +using AxibugEmuOnline.Client.ClientCore; +using AxibugEmuOnline.Client.InputDevices; +using System; +using System.Collections.Generic; +using System.Linq; +using UnityEngine; + +namespace AxibugEmuOnline.Client.UI +{ + /// + /// xmbϢ,豸ϢUI + /// + public class DevicesBar : MonoBehaviour + { + [SerializeField] + DevicesInfoItem ITEM_TEMPLATE; + List m_runtimeItemUI = new List(); + + private void Awake() + { + ITEM_TEMPLATE.gameObject.SetActiveEx(false); + } + + void OnEnable() + { + App.input.OnDeviceConnected += Input_OnDeviceConnected; + App.input.OnDeviceLost += Input_OnDeviceLost; + foreach (var device in App.input.GetDevices()) + { + AddDeviceItemUI(device); + } + } + + private void OnDisable() + { + App.input.OnDeviceConnected -= Input_OnDeviceConnected; + App.input.OnDeviceLost -= Input_OnDeviceLost; + foreach (var itemUI in m_runtimeItemUI) + { + Destroy(itemUI.gameObject); + } + m_runtimeItemUI.Clear(); + } + + private void AddDeviceItemUI(InputDevice_D device) + { + var newItemUI = GameObject.Instantiate(ITEM_TEMPLATE.gameObject, ITEM_TEMPLATE.transform.parent).GetComponent(); + newItemUI.gameObject.SetActiveEx(true); + newItemUI.SetData(device); + m_runtimeItemUI.Add(newItemUI); + } + + void Input_OnDeviceConnected(InputDevice_D connectDevice) + { + AddDeviceItemUI(connectDevice); + } + private void Input_OnDeviceLost(InputDevice_D lostDevice) + { + var targetUI = m_runtimeItemUI.FirstOrDefault(itemUI => itemUI.Datacontext == lostDevice); + Destroy(targetUI.gameObject); + m_runtimeItemUI.Remove(targetUI); + } + } +} diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/XMBTopGroupUI/DevicesBar.cs.meta b/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/XMBTopGroupUI/DevicesBar.cs.meta new file mode 100644 index 00000000..0ab774b3 --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/XMBTopGroupUI/DevicesBar.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: e8b33a9300654744488a5dd3d4810dc2 \ No newline at end of file diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/XMBTopGroupUI/DevicesInfoItem.cs b/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/XMBTopGroupUI/DevicesInfoItem.cs new file mode 100644 index 00000000..8e4c6858 --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/XMBTopGroupUI/DevicesInfoItem.cs @@ -0,0 +1,25 @@ +using AxibugEmuOnline.Client.InputDevices; +using UnityEngine; +using UnityEngine.UI; + +namespace AxibugEmuOnline.Client.UI +{ + /// + /// 设备信息条 ItemUI + /// + public class DevicesInfoItem : MonoBehaviour + { + [SerializeField] + Image UI_Icon; + + public InputDevice_D Datacontext { get; private set; } + + internal void SetData(InputDevice_D device) + { + Datacontext = device; + + string resourcePath = $"Icons/DevicesIcons/{device.PadType}"; + UI_Icon.sprite = Resources.Load(resourcePath); + } + } +} \ No newline at end of file diff --git a/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/XMBTopGroupUI/DevicesInfoItem.cs.meta b/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/XMBTopGroupUI/DevicesInfoItem.cs.meta new file mode 100644 index 00000000..8161b02d --- /dev/null +++ b/AxibugEmuOnline.Client/Assets/Script/AppMain/UI/XMBTopGroupUI/DevicesInfoItem.cs.meta @@ -0,0 +1,2 @@ +fileFormatVersion: 2 +guid: b1135cda2fa7d714f9d4b8a2a3130b4d \ No newline at end of file diff --git a/AxibugEmuOnline.Client/Packages/packages-lock.json b/AxibugEmuOnline.Client/Packages/packages-lock.json index cb511b3d..0b0d8f33 100644 --- a/AxibugEmuOnline.Client/Packages/packages-lock.json +++ b/AxibugEmuOnline.Client/Packages/packages-lock.json @@ -9,9 +9,8 @@ "com.unity.ext.nunit": { "version": "2.0.5", "depth": 1, - "source": "registry", - "dependencies": {}, - "url": "https://packages.unity.cn" + "source": "builtin", + "dependencies": {} }, "com.unity.ide.visualstudio": { "version": "2.0.22", @@ -20,7 +19,7 @@ "dependencies": { "com.unity.test-framework": "1.1.9" }, - "url": "https://packages.unity.cn" + "url": "https://packages.unity.com" }, "com.unity.inputsystem": { "version": "1.11.2", @@ -29,14 +28,14 @@ "dependencies": { "com.unity.modules.uielements": "1.0.0" }, - "url": "https://packages.unity.cn" + "url": "https://packages.unity.com" }, "com.unity.sysroot": { "version": "2.0.10", "depth": 1, "source": "registry", "dependencies": {}, - "url": "https://packages.unity.cn" + "url": "https://packages.unity.com" }, "com.unity.sysroot.linux-x86_64": { "version": "2.0.9", @@ -45,18 +44,17 @@ "dependencies": { "com.unity.sysroot": "2.0.10" }, - "url": "https://packages.unity.cn" + "url": "https://packages.unity.com" }, "com.unity.test-framework": { - "version": "1.4.5", + "version": "1.5.1", "depth": 0, - "source": "registry", + "source": "builtin", "dependencies": { "com.unity.ext.nunit": "2.0.3", "com.unity.modules.imgui": "1.0.0", "com.unity.modules.jsonserialize": "1.0.0" - }, - "url": "https://packages.unity.cn" + } }, "com.unity.toolchain.win-x86_64-linux-x86_64": { "version": "2.0.10", @@ -66,7 +64,7 @@ "com.unity.sysroot": "2.0.10", "com.unity.sysroot.linux-x86_64": "2.0.9" }, - "url": "https://packages.unity.cn" + "url": "https://packages.unity.com" }, "com.unity.ugui": { "version": "2.0.0", diff --git a/AxibugEmuOnline.Client/ProjectSettings/ProjectSettings.asset b/AxibugEmuOnline.Client/ProjectSettings/ProjectSettings.asset index 640bb6b6..4bc25db1 100644 --- a/AxibugEmuOnline.Client/ProjectSettings/ProjectSettings.asset +++ b/AxibugEmuOnline.Client/ProjectSettings/ProjectSettings.asset @@ -389,6 +389,9 @@ PlayerSettings: - m_BuildTarget: AndroidPlayer m_APIs: 0b000000 m_Automatic: 0 + - m_BuildTarget: WindowsStandaloneSupport + m_APIs: 0200000012000000 + m_Automatic: 0 m_BuildTargetVRSettings: [] m_DefaultShaderChunkSizeInMB: 16 m_DefaultShaderChunkCount: 0 @@ -401,6 +404,7 @@ PlayerSettings: iPhone: 1 tvOS: 1 m_BuildTargetGroupLightmapEncodingQuality: [] + m_BuildTargetGroupHDRCubemapEncodingQuality: [] m_BuildTargetGroupLightmapSettings: [] m_BuildTargetGroupLoadStoreDebugModeSettings: [] m_BuildTargetNormalMapEncoding: [] @@ -664,12 +668,12 @@ PlayerSettings: webGLMemoryLinearGrowthStep: 16 webGLMemoryGeometricGrowthStep: 0.2 webGLMemoryGeometricGrowthCap: 96 - webGLEnableWebGPU: 0 webGLPowerPreference: 2 webGLWebAssemblyTable: 0 webGLWebAssemblyBigInt: 0 webGLCloseOnQuit: 0 webWasm2023: 0 + webEnableSubmoduleStrippingCompatibility: 0 scriptingDefineSymbols: Android: DOTWEEN;ODIN_INSPECTOR;ODIN_INSPECTOR_3;ODIN_INSPECTOR_3_1;ODIN_INSPECTOR_EDITOR_ONLY;UNITY_POST_PROCESSING_STACK_V2 EmbeddedLinux: UNITY_POST_PROCESSING_STACK_V2 @@ -816,3 +820,4 @@ PlayerSettings: insecureHttpOption: 2 androidVulkanDenyFilterList: [] androidVulkanAllowFilterList: [] + androidVulkanDeviceFilterListAsset: {fileID: 0}