com.beamable 5.0.1 → 5.1.0-PREVIEW.RC2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (665) hide show
  1. package/.attestation.p7m +0 -0
  2. package/CHANGELOG.md +24 -1
  3. package/Common/README.md +16 -3
  4. package/Common/Runtime/AgnosticAttribute.cs +2 -2
  5. package/Common/Runtime/Api/AliasHelper.cs +2 -2
  6. package/Common/Runtime/Api/Analytics/AnalyticsEventRequest.cs +2 -2
  7. package/Common/Runtime/Api/Analytics/AnalyticsService.cs +2 -2
  8. package/Common/Runtime/Api/Analytics/IBeamAnalyticsService.cs +2 -2
  9. package/Common/Runtime/Api/Analytics/Models/CoreEvent.cs +2 -2
  10. package/Common/Runtime/Api/Analytics/Models/IAnalyticsEvent.cs +2 -2
  11. package/Common/Runtime/Api/Analytics/Models/SampleCustomEvent.cs +2 -2
  12. package/Common/Runtime/Api/Announcements/AbsAnnouncementsApi.cs +2 -2
  13. package/Common/Runtime/Api/Announcements/IAnnouncementsApi.cs +2 -2
  14. package/Common/Runtime/Api/Auth/AuthApi.cs +2 -2
  15. package/Common/Runtime/Api/Auth/IAuthApi.cs +2 -2
  16. package/Common/Runtime/Api/Calendars/AbsCalendarApi.cs +2 -2
  17. package/Common/Runtime/Api/Calendars/ICalendarApi.cs +2 -2
  18. package/Common/Runtime/Api/Chat/ChatApi.cs +2 -2
  19. package/Common/Runtime/Api/Chat/IChatApi.cs +2 -2
  20. package/Common/Runtime/Api/CloudData/CloudDataApi.cs +2 -2
  21. package/Common/Runtime/Api/CloudData/ICloudDataApi.cs +2 -2
  22. package/Common/Runtime/Api/CometClientData.cs +2 -2
  23. package/Common/Runtime/Api/Commerce/ICommerceApi.cs +2 -2
  24. package/Common/Runtime/Api/Content/IContentApi.cs +2 -2
  25. package/Common/Runtime/Api/Events/AbsEventsApi.cs +23 -26
  26. package/Common/Runtime/Api/Events/IEventsApi.cs +2 -2
  27. package/Common/Runtime/Api/Groups/GroupsApi.cs +2 -2
  28. package/Common/Runtime/Api/Groups/IGroupsApi.cs +2 -2
  29. package/Common/Runtime/Api/IAccessToken.cs +2 -2
  30. package/Common/Runtime/Api/IBeamableFilesystemAccessor.cs +2 -2
  31. package/Common/Runtime/Api/IBeamableRequester.cs +2 -2
  32. package/Common/Runtime/Api/IConnectivityChecker.cs +2 -2
  33. package/Common/Runtime/Api/IHasBeamableRequester.cs +2 -2
  34. package/Common/Runtime/Api/IServiceRoutingStrategy.cs +2 -2
  35. package/Common/Runtime/Api/ISupportsGet.cs +2 -2
  36. package/Common/Runtime/Api/IUserContext.cs +2 -2
  37. package/Common/Runtime/Api/IUserDataCache.cs +2 -2
  38. package/Common/Runtime/Api/Inventory/IInventoryApi.cs +71 -4
  39. package/Common/Runtime/Api/Inventory/InventoryApi.cs +136 -37
  40. package/Common/Runtime/Api/Inventory/InventoryUpdateBuilder.cs +2 -2
  41. package/Common/Runtime/Api/Leaderboards/ILeaderboardApi.cs +2 -2
  42. package/Common/Runtime/Api/Leaderboards/LeaderboardApi.cs +2 -2
  43. package/Common/Runtime/Api/Lobbies/ILobbyApi.cs +2 -2
  44. package/Common/Runtime/Api/Lobbies/Lobby.cs +2 -2
  45. package/Common/Runtime/Api/Lobbies/LobbyNotification.cs +2 -2
  46. package/Common/Runtime/Api/Lobbies/LobbyPlayer.cs +2 -2
  47. package/Common/Runtime/Api/Lobbies/LobbyRestriction.cs +2 -2
  48. package/Common/Runtime/Api/Lobbies/LobbyService.cs +2 -2
  49. package/Common/Runtime/Api/Lobbies/LobbyUtils.cs +2 -2
  50. package/Common/Runtime/Api/Lobbies/NotInLobby.cs +2 -2
  51. package/Common/Runtime/Api/Lobbies/Requests/AddTagsRequest.cs +2 -2
  52. package/Common/Runtime/Api/Lobbies/Requests/CreateLobbyRequest.cs +2 -2
  53. package/Common/Runtime/Api/Lobbies/Requests/JoinByPasscodeRequest.cs +2 -2
  54. package/Common/Runtime/Api/Lobbies/Requests/JoinLobbyRequest.cs +2 -2
  55. package/Common/Runtime/Api/Lobbies/Requests/LobbyQueryRequest.cs +2 -2
  56. package/Common/Runtime/Api/Lobbies/Requests/LobbyQueryResponse.cs +2 -2
  57. package/Common/Runtime/Api/Lobbies/Requests/RemoveFromLobbyRequest.cs +2 -2
  58. package/Common/Runtime/Api/Lobbies/Requests/RemoveTagsRequest.cs +2 -2
  59. package/Common/Runtime/Api/Lobbies/Requests/UpdateLobbyRequest.cs +2 -2
  60. package/Common/Runtime/Api/Mail/AbsMailApi.cs +2 -2
  61. package/Common/Runtime/Api/Mail/IMailApi.cs +2 -2
  62. package/Common/Runtime/Api/Notifications/INotificationService.cs +2 -2
  63. package/Common/Runtime/Api/Notifications/PrimitiveStringPayload.cs +2 -2
  64. package/Common/Runtime/Api/Parties/IPartyApi.cs +2 -2
  65. package/Common/Runtime/Api/Parties/NotInParty.cs +2 -2
  66. package/Common/Runtime/Api/Parties/Party.cs +2 -2
  67. package/Common/Runtime/Api/Parties/PartyNotifications.cs +2 -2
  68. package/Common/Runtime/Api/Parties/PartyRestriction.cs +2 -2
  69. package/Common/Runtime/Api/Parties/PartyService.cs +2 -2
  70. package/Common/Runtime/Api/Parties/Requests/CreatePartyRequest.cs +2 -2
  71. package/Common/Runtime/Api/Parties/Requests/PartyQueryResponse.cs +2 -2
  72. package/Common/Runtime/Api/Parties/Requests/PlayerRequest.cs +2 -2
  73. package/Common/Runtime/Api/Parties/Requests/UpdatePartyRequest.cs +2 -2
  74. package/Common/Runtime/Api/Payments/IPaymentsApi.cs +2 -2
  75. package/Common/Runtime/Api/Payments/PaymentsApi.cs +2 -2
  76. package/Common/Runtime/Api/Presence/IPresenceApi.cs +2 -2
  77. package/Common/Runtime/Api/Presence/PresenceService.cs +2 -2
  78. package/Common/Runtime/Api/Push/IPushApi.cs +2 -2
  79. package/Common/Runtime/Api/QueryBuilder.cs +2 -2
  80. package/Common/Runtime/Api/Realms/IAliasService.cs +2 -2
  81. package/Common/Runtime/Api/Realms/IRealmApi.cs +2 -2
  82. package/Common/Runtime/Api/Realms/RealmService.cs +2 -2
  83. package/Common/Runtime/Api/SignedRequesterHelper.cs +2 -2
  84. package/Common/Runtime/Api/Social/ISocialApi.cs +2 -2
  85. package/Common/Runtime/Api/Social/SocialApi.cs +2 -2
  86. package/Common/Runtime/Api/Stats/AbsStatsApi.cs +2 -2
  87. package/Common/Runtime/Api/Stats/IStatsApi.cs +2 -2
  88. package/Common/Runtime/Api/Stats/StatsAccessType.cs +2 -2
  89. package/Common/Runtime/Api/Stats/StatsApiHelper.cs +2 -2
  90. package/Common/Runtime/Api/Stats/StatsDomainType.cs +2 -2
  91. package/Common/Runtime/Api/Tournaments/ITournamentApi.cs +2 -2
  92. package/Common/Runtime/Api/Tournaments/TournamentApi.cs +2 -2
  93. package/Common/Runtime/BeamCli/CliContractTypeAttribute.cs +2 -2
  94. package/Common/Runtime/BeamCli/CliOtelData.cs +2 -2
  95. package/Common/Runtime/BeamCli/Contracts/CliLogMessage.cs +2 -2
  96. package/Common/Runtime/BeamCli/Contracts/CollectorStatus.cs +2 -2
  97. package/Common/Runtime/BeamCli/Contracts/Constants.cs +2 -2
  98. package/Common/Runtime/BeamCli/Contracts/ContentService/AutoSnapshotActionType.cs +2 -2
  99. package/Common/Runtime/BeamCli/Contracts/ContentService/AutoSnapshotType.cs +2 -2
  100. package/Common/Runtime/BeamCli/Contracts/ContentService/ContentSnapshotType.cs +2 -2
  101. package/Common/Runtime/BeamCli/Contracts/ContentService/ContentStatus.cs +2 -2
  102. package/Common/Runtime/BeamCli/Contracts/ContentService/LocalContentManifest.cs +2 -2
  103. package/Common/Runtime/BeamCli/Contracts/ContentService/LocalContentManifestEntry.cs +2 -2
  104. package/Common/Runtime/BeamCli/Contracts/ContentService/ManifestAuthor.cs +2 -2
  105. package/Common/Runtime/BeamCli/Contracts/ContentService/ManifestProjectData.cs +2 -2
  106. package/Common/Runtime/BeamCli/Contracts/ContentService/TagStatus.cs +2 -2
  107. package/Common/Runtime/BeamCli/Contracts/EnvironmentVersionData.cs +2 -2
  108. package/Common/Runtime/BeamCli/Contracts/GenerateEnvOutput.cs +2 -2
  109. package/Common/Runtime/BeamCli/Contracts/ServiceInfo.cs +2 -2
  110. package/Common/Runtime/BeamCli/ErrorOutput.cs +2 -2
  111. package/Common/Runtime/BeamCli/IBeamCommand.cs +2 -2
  112. package/Common/Runtime/BeamCli/Reporting.cs +2 -2
  113. package/Common/Runtime/BeamCli/ServiceInfoHelper.cs +2 -2
  114. package/Common/Runtime/BeamGenerateSchemaAttribute.cs +2 -2
  115. package/Common/Runtime/BeamableColorUtil.cs +2 -2
  116. package/Common/Runtime/BeamableEnumExtensions.cs +2 -2
  117. package/Common/Runtime/BeamableTaskExtensions.cs +2 -2
  118. package/Common/Runtime/Collections/ConcurrentBag.cs +2 -2
  119. package/Common/Runtime/Collections/ConcurrentDictionary.cs +2 -2
  120. package/Common/Runtime/Constants/Constants.cs +3 -3
  121. package/Common/Runtime/Constants/Implementations/ArchiveConstants.cs +2 -2
  122. package/Common/Runtime/Constants/Implementations/ConfigConstants.cs +2 -2
  123. package/Common/Runtime/Constants/Implementations/ContentConstants.cs +2 -2
  124. package/Common/Runtime/Constants/Implementations/ContentManagerConstants.cs +2 -2
  125. package/Common/Runtime/Constants/Implementations/CronConstants.cs +2 -2
  126. package/Common/Runtime/Constants/Implementations/DockerConstants.cs +2 -2
  127. package/Common/Runtime/Constants/Implementations/EnvironmentConstants.cs +2 -2
  128. package/Common/Runtime/Constants/Implementations/LoginBaseConstants.cs +2 -2
  129. package/Common/Runtime/Constants/Implementations/MigrationConstants.cs +2 -2
  130. package/Common/Runtime/Constants/Implementations/NotificationConstants.cs +2 -2
  131. package/Common/Runtime/Constants/Implementations/OtelConstants.cs +32 -2
  132. package/Common/Runtime/Constants/Implementations/PortalExtensionConstants.cs +18 -0
  133. package/Common/Runtime/{OpenApi/BeamServiceplan.gs.cs.meta → Constants/Implementations/PortalExtensionConstants.cs.meta} +1 -1
  134. package/Common/Runtime/Constants/Implementations/RequesterConstants.cs +2 -2
  135. package/Common/Runtime/Constants/Implementations/SchedulesConstants.cs +2 -2
  136. package/Common/Runtime/Constants/Implementations/ServiceConstants.cs +9 -2
  137. package/Common/Runtime/Constants/Implementations/SpewConstants.cs +2 -2
  138. package/Common/Runtime/Constants/Implementations/TestingToolConstants.cs +2 -2
  139. package/Common/Runtime/Constants/Implementations/ToolbarConstants.cs +2 -2
  140. package/Common/Runtime/Constants/Implementations/ToolboxConstants.cs +2 -2
  141. package/Common/Runtime/Constants/Implementations/TooltipConstants.cs +2 -2
  142. package/Common/Runtime/Content/ClientContentSerializer.cs +13 -2
  143. package/Common/Runtime/Content/ClientManifest.cs +2 -2
  144. package/Common/Runtime/Content/ClientPermissions.cs +2 -2
  145. package/Common/Runtime/Content/ContentCorruptedException.cs +2 -2
  146. package/Common/Runtime/Content/ContentDataInfo.cs +2 -2
  147. package/Common/Runtime/Content/ContentDeserializationException.cs +2 -2
  148. package/Common/Runtime/Content/ContentFieldAttribute.cs +2 -2
  149. package/Common/Runtime/Content/ContentFilterType.cs +2 -2
  150. package/Common/Runtime/Content/ContentNotFoundException.cs +2 -2
  151. package/Common/Runtime/Content/ContentObject.cs +47 -8
  152. package/Common/Runtime/Content/ContentQuery.cs +2 -2
  153. package/Common/Runtime/Content/ContentQueryExtensions.cs +2 -2
  154. package/Common/Runtime/Content/ContentRef.cs +2 -2
  155. package/Common/Runtime/Content/ContentSerializer.cs +2 -2
  156. package/Common/Runtime/Content/ContentTypeAttribute.cs +2 -2
  157. package/Common/Runtime/Content/ContentTypeReflectionCache.cs +2 -2
  158. package/Common/Runtime/Content/ContentVisibility.cs +2 -2
  159. package/Common/Runtime/Content/Federation.cs +2 -2
  160. package/Common/Runtime/Content/IContentObject.cs +2 -2
  161. package/Common/Runtime/Content/IContentService.cs +2 -2
  162. package/Common/Runtime/Content/IIgnoreSerializationCallbacks.cs +2 -2
  163. package/Common/Runtime/Content/IgnoreContentFieldAttribute.cs +2 -2
  164. package/Common/Runtime/Content/Optionals.cs +2 -2
  165. package/Common/Runtime/Content/PropertyAttributes/FilePathSelectorAttribute.cs +2 -2
  166. package/Common/Runtime/Content/PropertyAttributes/HideUnlessServerPackageInstalled.cs +2 -2
  167. package/Common/Runtime/Content/PropertyAttributes/ReadonlyIfAttribute.cs +2 -2
  168. package/Common/Runtime/Content/PropertyAttributes/ShowOnlyAttribute.cs +2 -2
  169. package/Common/Runtime/Content/RenderAsRefAttribute.cs +2 -2
  170. package/Common/Runtime/Content/SerializableDictionary.cs +2 -2
  171. package/Common/Runtime/Content/Utility/DateUtility.cs +2 -2
  172. package/Common/Runtime/Content/Validation/AggregateContentValidationException.cs +2 -2
  173. package/Common/Runtime/Content/Validation/CannotBeBlank.cs +2 -2
  174. package/Common/Runtime/Content/Validation/CannotBeEmpty.cs +2 -2
  175. package/Common/Runtime/Content/Validation/ContentValidationException.cs +2 -2
  176. package/Common/Runtime/Content/Validation/FederationMustBeValid.cs +2 -2
  177. package/Common/Runtime/Content/Validation/MustBeComparatorString.cs +2 -2
  178. package/Common/Runtime/Content/Validation/MustBeCurrency.cs +2 -2
  179. package/Common/Runtime/Content/Validation/MustBeCurrencyOrItem.cs +2 -2
  180. package/Common/Runtime/Content/Validation/MustBeDateString.cs +2 -2
  181. package/Common/Runtime/Content/Validation/MustBeItem.cs +2 -2
  182. package/Common/Runtime/Content/Validation/MustBeLeaderboard.cs +2 -2
  183. package/Common/Runtime/Content/Validation/MustBeNonDefault.cs +2 -2
  184. package/Common/Runtime/Content/Validation/MustBeNonNegative.cs +2 -2
  185. package/Common/Runtime/Content/Validation/MustBeOneOf.cs +2 -2
  186. package/Common/Runtime/Content/Validation/MustBePositive.cs +2 -2
  187. package/Common/Runtime/Content/Validation/MustBeSlugString.cs +2 -2
  188. package/Common/Runtime/Content/Validation/MustBeTimeSpanDuration.cs +2 -2
  189. package/Common/Runtime/Content/Validation/MustBeValidCron.cs +2 -2
  190. package/Common/Runtime/Content/Validation/MustContain.cs +2 -2
  191. package/Common/Runtime/Content/Validation/MustReferenceContent.cs +2 -2
  192. package/Common/Runtime/Content/Validation/RouteParametersMustBeValid.cs +2 -2
  193. package/Common/Runtime/Content/Validation/ServiceRouteMustBeValid.cs +2 -2
  194. package/Common/Runtime/Content/Validation/TimeSpanDisplayAttribute.cs +2 -2
  195. package/Common/Runtime/Content/Validation/ValidationAttribute.cs +2 -2
  196. package/Common/Runtime/Content/Validation/ValidationContext.cs +2 -2
  197. package/Common/Runtime/CronExpression/CronLocale.cs +2 -2
  198. package/Common/Runtime/CronExpression/ErrorData.cs +2 -2
  199. package/Common/Runtime/CronExpression/ExpressionParser.cs +2 -2
  200. package/Common/Runtime/CronExpression/Options.cs +2 -2
  201. package/Common/Runtime/Debug.cs +2 -2
  202. package/Common/Runtime/DefaultQuery.cs +2 -2
  203. package/Common/Runtime/Dependencies/DependencyBuilder.cs +2 -2
  204. package/Common/Runtime/Dependencies/DependencyProvider.cs +12 -2
  205. package/Common/Runtime/Dependencies/Exceptions.cs +2 -2
  206. package/Common/Runtime/Dependencies/IDependencyList.cs +2 -2
  207. package/Common/Runtime/Dependencies/IDependencyNameProvider.cs +2 -2
  208. package/Common/Runtime/Dependencies/RegisterBeamableDependenciesAttribute.cs +2 -2
  209. package/Common/Runtime/Dependencies/ServiceStorage.cs +2 -2
  210. package/Common/Runtime/Dependencies/Utils.cs +2 -2
  211. package/Common/Runtime/DocUtils.cs +2 -2
  212. package/Common/Runtime/Environment/PackageVersion.cs +2 -2
  213. package/Common/Runtime/Federation/FederatedGameServer.cs +2 -2
  214. package/Common/Runtime/Federation/FederatedInventory.cs +2 -2
  215. package/Common/Runtime/Federation/FederatedLogin.cs +2 -2
  216. package/Common/Runtime/Federation/FederatedPlayerInit.cs +2 -2
  217. package/Common/Runtime/Federation/Federation.cs +2 -2
  218. package/Common/Runtime/IRuntimeConfigProvider.cs +2 -2
  219. package/Common/Runtime/ISearchableElement.cs +2 -2
  220. package/Common/Runtime/JsonSerializable/DeleteStream.cs +2 -2
  221. package/Common/Runtime/JsonSerializable/DiffStream.cs +2 -2
  222. package/Common/Runtime/JsonSerializable/JsonData.cs +2 -2
  223. package/Common/Runtime/JsonSerializable/JsonSaveStream.cs +2 -2
  224. package/Common/Runtime/JsonSerializable/JsonSerializable.cs +2 -2
  225. package/Common/Runtime/JsonSerializable/LoadStream.cs +2 -2
  226. package/Common/Runtime/JsonSerializable/MessagePackStream.cs +2 -2
  227. package/Common/Runtime/JsonSerializable/SaveStream.cs +2 -2
  228. package/Common/Runtime/JsonSerializable/TypeLookupFactory.cs +2 -2
  229. package/Common/Runtime/Modules/Announcements/AnnouncementApiContent.cs +2 -2
  230. package/Common/Runtime/Modules/Announcements/AnnouncementContent.cs +2 -2
  231. package/Common/Runtime/Modules/Announcements/AnnouncementRef.cs +2 -2
  232. package/Common/Runtime/Modules/Calendars/CalendarContent.cs +2 -2
  233. package/Common/Runtime/Modules/Calendars/CalendarRef.cs +2 -2
  234. package/Common/Runtime/Modules/Groups/GroupDonationContentRef.cs +2 -2
  235. package/Common/Runtime/Modules/Groups/GroupDonationsContent.cs +2 -2
  236. package/Common/Runtime/Modules/Inventory/CurrencyContent.cs +2 -2
  237. package/Common/Runtime/Modules/Inventory/CurrencyRef.cs +2 -2
  238. package/Common/Runtime/Modules/Inventory/ItemContent.cs +2 -2
  239. package/Common/Runtime/Modules/Inventory/ItemRef.cs +2 -2
  240. package/Common/Runtime/Modules/Inventory/VipContent.cs +2 -2
  241. package/Common/Runtime/Modules/Leaderboards/LeaderboardContent.cs +2 -2
  242. package/Common/Runtime/Modules/Leaderboards/LeaderboardRef.cs +2 -2
  243. package/Common/Runtime/Modules/SharedContent/ApiContent.cs +2 -2
  244. package/Common/Runtime/Modules/SharedContent/EmailContent.cs +2 -2
  245. package/Common/Runtime/Modules/SharedContent/EventContent.cs +2 -2
  246. package/Common/Runtime/Modules/SharedContent/PlayerReward.cs +2 -2
  247. package/Common/Runtime/Modules/SharedContent/ScheduleDefinition.cs +2 -2
  248. package/Common/Runtime/Modules/SharedContent/ScheduleExtensions.cs +2 -2
  249. package/Common/Runtime/Modules/SharedContent/SimGameType.cs +2 -2
  250. package/Common/Runtime/Modules/Shop/ListingContent.cs +2 -2
  251. package/Common/Runtime/Modules/Shop/ListingLink.cs +2 -2
  252. package/Common/Runtime/Modules/Shop/ListingRef.cs +2 -2
  253. package/Common/Runtime/Modules/Shop/SKUContent.cs +2 -2
  254. package/Common/Runtime/Modules/Shop/SKURef.cs +2 -2
  255. package/Common/Runtime/Modules/Shop/StoreContent.cs +2 -2
  256. package/Common/Runtime/Modules/Shop/StoreRef.cs +2 -2
  257. package/Common/Runtime/Modules/Steam/ISteamService.cs +2 -2
  258. package/Common/Runtime/Modules/Tournaments/TournamentColorConstants.cs +2 -2
  259. package/Common/Runtime/Modules/Tournaments/TournamentContent.cs +2 -2
  260. package/Common/Runtime/ObjectExtensions.cs +2 -2
  261. package/Common/Runtime/OpenApi/AccountsBasic.gs.cs +2 -2
  262. package/Common/Runtime/OpenApi/AccountsBasicCommon.gs.cs +2 -2
  263. package/Common/Runtime/OpenApi/AccountsObject.gs.cs +2 -2
  264. package/Common/Runtime/OpenApi/AnnouncementsBasic.gs.cs +2 -2
  265. package/Common/Runtime/OpenApi/AnnouncementsBasicCommon.gs.cs +2 -2
  266. package/Common/Runtime/OpenApi/AnnouncementsObject.gs.cs +2 -2
  267. package/Common/Runtime/OpenApi/AuthBasic.gs.cs +2 -2
  268. package/Common/Runtime/OpenApi/AuthBasicCommon.gs.cs +2 -2
  269. package/Common/Runtime/OpenApi/BeamAuth.gs.cs +2 -2
  270. package/Common/Runtime/OpenApi/BeamAuthCommon.gs.cs +2 -2
  271. package/Common/Runtime/OpenApi/BeamBeamo.gs.cs +136 -38
  272. package/Common/Runtime/OpenApi/BeamBeamoCommon.gs.cs +2 -2
  273. package/Common/Runtime/OpenApi/BeamBeamootel.gs.cs +32 -8
  274. package/Common/Runtime/OpenApi/BeamBeamootelCommon.gs.cs +2 -2
  275. package/Common/Runtime/OpenApi/BeamBilling.gs.cs +45 -0
  276. package/Common/Runtime/OpenApi/{BeamAdmin.gs.cs.meta → BeamBilling.gs.cs.meta} +1 -1
  277. package/Common/Runtime/OpenApi/BeamBillingCommon.gs.cs +45 -0
  278. package/Common/Runtime/OpenApi/{BeamServiceplanCommon.gs.cs.meta → BeamBillingCommon.gs.cs.meta} +1 -1
  279. package/Common/Runtime/OpenApi/BeamCustomer.gs.cs +198 -124
  280. package/Common/Runtime/OpenApi/BeamCustomerCommon.gs.cs +2 -2
  281. package/Common/Runtime/OpenApi/BeamLobby.gs.cs +4 -4
  282. package/Common/Runtime/OpenApi/BeamLobbyCommon.gs.cs +2 -2
  283. package/Common/Runtime/OpenApi/BeamMailbox.gs.cs +6 -2
  284. package/Common/Runtime/OpenApi/BeamMailboxCommon.gs.cs +2 -2
  285. package/Common/Runtime/OpenApi/BeamMatchmaking.gs.cs +4 -4
  286. package/Common/Runtime/OpenApi/BeamMatchmakingCommon.gs.cs +2 -2
  287. package/Common/Runtime/OpenApi/BeamParty.gs.cs +6 -6
  288. package/Common/Runtime/OpenApi/BeamPartyCommon.gs.cs +2 -2
  289. package/Common/Runtime/OpenApi/BeamPlayer.gs.cs +20 -8
  290. package/Common/Runtime/OpenApi/BeamPlayerCommon.gs.cs +2 -2
  291. package/Common/Runtime/OpenApi/BeamPlayerlobby.gs.cs +2 -2
  292. package/Common/Runtime/OpenApi/BeamPlayerlobbyCommon.gs.cs +2 -2
  293. package/Common/Runtime/OpenApi/BeamPlayerparty.gs.cs +2 -2
  294. package/Common/Runtime/OpenApi/BeamPlayerpartyCommon.gs.cs +2 -2
  295. package/Common/Runtime/OpenApi/BeamPlayersession.gs.cs +110 -0
  296. package/Common/Runtime/OpenApi/{BeamAdminCommon.gs.cs.meta → BeamPlayersession.gs.cs.meta} +1 -1
  297. package/Common/Runtime/OpenApi/BeamPlayersessionCommon.gs.cs +45 -0
  298. package/Common/Runtime/OpenApi/BeamPlayersessionCommon.gs.cs.meta +11 -0
  299. package/Common/Runtime/OpenApi/BeamPlayerstats.gs.cs +159 -0
  300. package/Common/Runtime/OpenApi/BeamPlayerstats.gs.cs.meta +11 -0
  301. package/Common/Runtime/OpenApi/{BeamServiceplanCommon.gs.cs → BeamPlayerstatsCommon.gs.cs} +6 -6
  302. package/Common/Runtime/OpenApi/BeamPlayerstatsCommon.gs.cs.meta +11 -0
  303. package/Common/Runtime/OpenApi/BeamPlayerticket.gs.cs +2 -2
  304. package/Common/Runtime/OpenApi/BeamPlayerticketCommon.gs.cs +2 -2
  305. package/Common/Runtime/OpenApi/BeamPresence.gs.cs +6 -2
  306. package/Common/Runtime/OpenApi/BeamPresenceCommon.gs.cs +2 -2
  307. package/Common/Runtime/OpenApi/BeamRealmsecrets.gs.cs +255 -0
  308. package/Common/Runtime/OpenApi/BeamRealmsecrets.gs.cs.meta +11 -0
  309. package/Common/Runtime/OpenApi/BeamRealmsecretsCommon.gs.cs +45 -0
  310. package/Common/Runtime/OpenApi/BeamRealmsecretsCommon.gs.cs.meta +11 -0
  311. package/Common/Runtime/OpenApi/BeamScheduler.gs.cs +90 -42
  312. package/Common/Runtime/OpenApi/BeamSchedulerCommon.gs.cs +2 -2
  313. package/Common/Runtime/OpenApi/BeamSession.gs.cs +114 -0
  314. package/Common/Runtime/OpenApi/BeamSession.gs.cs.meta +11 -0
  315. package/Common/Runtime/OpenApi/BeamSessionCommon.gs.cs +45 -0
  316. package/Common/Runtime/OpenApi/BeamSessionCommon.gs.cs.meta +11 -0
  317. package/Common/Runtime/OpenApi/BeamStats.gs.cs +308 -0
  318. package/Common/Runtime/OpenApi/BeamStats.gs.cs.meta +11 -0
  319. package/Common/Runtime/OpenApi/{BeamAdminCommon.gs.cs → BeamStatsCommon.gs.cs} +6 -6
  320. package/Common/Runtime/OpenApi/BeamStatsCommon.gs.cs.meta +11 -0
  321. package/Common/Runtime/OpenApi/BeamoBasic.gs.cs +2 -2
  322. package/Common/Runtime/OpenApi/BeamoBasicCommon.gs.cs +2 -2
  323. package/Common/Runtime/OpenApi/CalendarsObject.gs.cs +2 -2
  324. package/Common/Runtime/OpenApi/CalendarsObjectCommon.gs.cs +2 -2
  325. package/Common/Runtime/OpenApi/CloudsavingBasic.gs.cs +2 -2
  326. package/Common/Runtime/OpenApi/CloudsavingBasicCommon.gs.cs +2 -2
  327. package/Common/Runtime/OpenApi/CommerceBasic.gs.cs +2 -2
  328. package/Common/Runtime/OpenApi/CommerceBasicCommon.gs.cs +2 -2
  329. package/Common/Runtime/OpenApi/CommerceObject.gs.cs +2 -2
  330. package/Common/Runtime/OpenApi/ContentBasic.gs.cs +21 -2
  331. package/Common/Runtime/OpenApi/ContentBasicCommon.gs.cs +2 -2
  332. package/Common/Runtime/OpenApi/Event-playersObject.gs.cs +2 -2
  333. package/Common/Runtime/OpenApi/Event-playersObjectCommon.gs.cs +2 -2
  334. package/Common/Runtime/OpenApi/EventsBasic.gs.cs +2 -2
  335. package/Common/Runtime/OpenApi/EventsBasicCommon.gs.cs +2 -2
  336. package/Common/Runtime/OpenApi/EventsObject.gs.cs +2 -2
  337. package/Common/Runtime/OpenApi/Group-usersObject.gs.cs +2 -2
  338. package/Common/Runtime/OpenApi/Group-usersObjectCommon.gs.cs +2 -2
  339. package/Common/Runtime/OpenApi/GroupsObject.gs.cs +2 -2
  340. package/Common/Runtime/OpenApi/GroupsObjectCommon.gs.cs +2 -2
  341. package/Common/Runtime/OpenApi/InventoryBasic.gs.cs +2 -2
  342. package/Common/Runtime/OpenApi/InventoryBasicCommon.gs.cs +2 -2
  343. package/Common/Runtime/OpenApi/InventoryObject.gs.cs +2 -2
  344. package/Common/Runtime/OpenApi/LeaderboardsBasic.gs.cs +2 -2
  345. package/Common/Runtime/OpenApi/LeaderboardsBasicCommon.gs.cs +2 -2
  346. package/Common/Runtime/OpenApi/LeaderboardsObject.gs.cs +2 -2
  347. package/Common/Runtime/OpenApi/MailBasic.gs.cs +2 -2
  348. package/Common/Runtime/OpenApi/MailBasicCommon.gs.cs +2 -2
  349. package/Common/Runtime/OpenApi/MailObject.gs.cs +2 -2
  350. package/Common/Runtime/OpenApi/Models.gs.cs +1489 -410
  351. package/Common/Runtime/OpenApi/NotificationBasic.gs.cs +21 -2
  352. package/Common/Runtime/OpenApi/NotificationBasicCommon.gs.cs +2 -2
  353. package/Common/Runtime/OpenApi/PaymentsBasic.gs.cs +160 -2
  354. package/Common/Runtime/OpenApi/PaymentsBasicCommon.gs.cs +2 -2
  355. package/Common/Runtime/OpenApi/PaymentsObject.gs.cs +2 -2
  356. package/Common/Runtime/OpenApi/PushBasic.gs.cs +2 -2
  357. package/Common/Runtime/OpenApi/PushBasicCommon.gs.cs +2 -2
  358. package/Common/Runtime/OpenApi/RealmsBasic.gs.cs +12 -12
  359. package/Common/Runtime/OpenApi/RealmsBasicCommon.gs.cs +2 -2
  360. package/Common/Runtime/OpenApi/SessionBasic.gs.cs +16 -16
  361. package/Common/Runtime/OpenApi/SessionBasicCommon.gs.cs +2 -2
  362. package/Common/Runtime/OpenApi/SocialBasic.gs.cs +2 -2
  363. package/Common/Runtime/OpenApi/SocialBasicCommon.gs.cs +2 -2
  364. package/Common/Runtime/OpenApi/StatsBasic.gs.cs +9 -9
  365. package/Common/Runtime/OpenApi/StatsBasicCommon.gs.cs +2 -2
  366. package/Common/Runtime/OpenApi/StatsObject.gs.cs +2 -2
  367. package/Common/Runtime/OpenApi/TournamentsBasic.gs.cs +2 -2
  368. package/Common/Runtime/OpenApi/TournamentsBasicCommon.gs.cs +2 -2
  369. package/Common/Runtime/OpenApi/TournamentsObject.gs.cs +2 -2
  370. package/Common/Runtime/OpenApi/TrialsBasic.gs.cs +2 -2
  371. package/Common/Runtime/OpenApi/TrialsBasicCommon.gs.cs +2 -2
  372. package/Common/Runtime/OpenApiExtensions/BeamoExtensions.cs +2 -2
  373. package/Common/Runtime/OpenApiExtensions/LegacyConverterExtensions.cs +189 -2
  374. package/Common/Runtime/OpenApiSystem.cs +2 -2
  375. package/Common/Runtime/Player/Lazy.cs +2 -2
  376. package/Common/Runtime/Player/Observables.cs +2 -2
  377. package/Common/Runtime/Pooling/ClassPool.cs +2 -2
  378. package/Common/Runtime/Pooling/StringBuilderPool.cs +2 -2
  379. package/Common/Runtime/Promise.cs +66 -43
  380. package/Common/Runtime/ReflectionCache/BeamContextSystemAttribute.cs +2 -2
  381. package/Common/Runtime/ReflectionCache/INamingAttribute.cs +2 -2
  382. package/Common/Runtime/ReflectionCache/IReflectionAttribute.cs +2 -2
  383. package/Common/Runtime/ReflectionCache/PreserveAttribute.cs +2 -2
  384. package/Common/Runtime/ReflectionCache/ReflectionCache.cs +2 -2
  385. package/Common/Runtime/ReflectionCache/ReflectionCache_Attributes.cs +2 -2
  386. package/Common/Runtime/ReflectionCache/ReflectionCache_BaseTypes.cs +2 -2
  387. package/Common/Runtime/ReflectionCache/ReflectionCache_SignatureMatching.cs +2 -2
  388. package/Common/Runtime/Scheduler/BeamScheduler.cs +2 -2
  389. package/Common/Runtime/Scheduler/Cron.cs +2 -2
  390. package/Common/Runtime/Scheduler/CronValidation.cs +2 -2
  391. package/Common/Runtime/Semantics/BeamAccountId.cs +91 -0
  392. package/Common/Runtime/Semantics/BeamAccountId.cs.meta +11 -0
  393. package/Common/Runtime/Semantics/BeamCid.cs +89 -0
  394. package/Common/Runtime/Semantics/BeamCid.cs.meta +11 -0
  395. package/Common/Runtime/Semantics/BeamContentId.cs +55 -0
  396. package/Common/Runtime/Semantics/BeamContentId.cs.meta +11 -0
  397. package/Common/Runtime/Semantics/BeamContentManifestId.cs +49 -0
  398. package/Common/Runtime/Semantics/BeamContentManifestId.cs.meta +11 -0
  399. package/Common/Runtime/Semantics/BeamGamerTag.cs +90 -0
  400. package/Common/Runtime/Semantics/BeamGamerTag.cs.meta +11 -0
  401. package/Common/Runtime/Semantics/BeamPid.cs +49 -0
  402. package/Common/Runtime/Semantics/BeamPid.cs.meta +11 -0
  403. package/Common/Runtime/Semantics/BeamStats.cs +62 -0
  404. package/Common/Runtime/Semantics/BeamStats.cs.meta +11 -0
  405. package/Common/Runtime/Semantics/IBeamSemanticType.cs +16 -0
  406. package/Common/Runtime/Semantics/IBeamSemanticType.cs.meta +11 -0
  407. package/Common/Runtime/Semantics/ServiceName.cs +25 -4
  408. package/Common/Runtime/SmallerJSON/IRawJsonProvider.cs +2 -2
  409. package/Common/Runtime/SmallerJSON/SmallerJSON.ArrayDict.cs +2 -2
  410. package/Common/Runtime/SmallerJSON/SmallerJSON.FromString.cs +2 -2
  411. package/Common/Runtime/SmallerJSON/SmallerJSON.cs +226 -2
  412. package/Common/Runtime/Spew/Logger.cs +2 -2
  413. package/Common/Runtime/Spew/SpewLoggerAttribute.cs +2 -2
  414. package/Common/Runtime/Trie.cs +2 -2
  415. package/Common/Runtime/TypeExtensions.cs +2 -2
  416. package/Common/Runtime/Util/BeamAssemblyVersionUtil.cs +2 -2
  417. package/Common/Runtime/Util/BeamFileUtil.cs +2 -2
  418. package/Common/Runtime/Util/DocsPageHelper.cs +2 -2
  419. package/Common/Runtime/Util/NaturalStringComparer.cs +2 -2
  420. package/Editor/BeamCli/BeamCliUtil.cs +165 -18
  421. package/Editor/BeamCli/BeamCommand.cs +0 -6
  422. package/Editor/BeamCli/BeamWebCommand.cs +38 -8
  423. package/Editor/BeamCli/Commands/Beam.cs +7 -0
  424. package/Editor/BeamCli/Commands/BeamBeamableTypesSchema.cs +17 -0
  425. package/Editor/BeamCli/Commands/BeamBeamableTypesSchema.cs.meta +11 -0
  426. package/Editor/BeamCli/Commands/BeamComponentExtensionOption.cs +13 -0
  427. package/Editor/BeamCli/Commands/BeamComponentExtensionOption.cs.meta +11 -0
  428. package/Editor/BeamCli/Commands/BeamComponentSelectorOption.cs +13 -0
  429. package/Editor/BeamCli/Commands/BeamComponentSelectorOption.cs.meta +11 -0
  430. package/Editor/BeamCli/Commands/BeamContentFieldEntry.cs +14 -0
  431. package/Editor/BeamCli/Commands/BeamContentFieldEntry.cs.meta +11 -0
  432. package/Editor/BeamCli/Commands/BeamContentHistory.cs +97 -0
  433. package/Editor/BeamCli/Commands/BeamContentHistory.cs.meta +11 -0
  434. package/Editor/BeamCli/Commands/BeamContentHistoryChangelist.cs +11 -0
  435. package/Editor/BeamCli/Commands/BeamContentHistoryChangelist.cs.meta +11 -0
  436. package/Editor/BeamCli/Commands/BeamContentHistoryChangelistEntry.cs +23 -0
  437. package/Editor/BeamCli/Commands/BeamContentHistoryChangelistEntry.cs.meta +11 -0
  438. package/Editor/BeamCli/Commands/BeamContentHistoryChangelistPage.cs +12 -0
  439. package/Editor/BeamCli/Commands/BeamContentHistoryChangelistPage.cs.meta +11 -0
  440. package/Editor/BeamCli/Commands/BeamContentHistoryCommandEvent.cs +16 -0
  441. package/Editor/BeamCli/Commands/BeamContentHistoryCommandEvent.cs.meta +11 -0
  442. package/Editor/BeamCli/Commands/BeamContentHistoryEntriesPage.cs +15 -0
  443. package/Editor/BeamCli/Commands/BeamContentHistoryEntriesPage.cs.meta +11 -0
  444. package/Editor/BeamCli/Commands/BeamContentHistoryEntry.cs +16 -0
  445. package/Editor/BeamCli/Commands/BeamContentHistoryEntry.cs.meta +11 -0
  446. package/Editor/BeamCli/Commands/BeamContentHistoryRestoreCommandOutput.cs +12 -0
  447. package/Editor/BeamCli/Commands/BeamContentHistoryRestoreCommandOutput.cs.meta +11 -0
  448. package/Editor/BeamCli/Commands/BeamContentHistoryRestoreContent.cs +82 -0
  449. package/Editor/BeamCli/Commands/BeamContentHistoryRestoreContent.cs.meta +11 -0
  450. package/Editor/BeamCli/Commands/BeamContentHistorySyncChangelist.cs +71 -0
  451. package/Editor/BeamCli/Commands/BeamContentHistorySyncChangelist.cs.meta +11 -0
  452. package/Editor/BeamCli/Commands/BeamContentHistorySyncChangelistCommandOutput.cs +12 -0
  453. package/Editor/BeamCli/Commands/BeamContentHistorySyncChangelistCommandOutput.cs.meta +11 -0
  454. package/Editor/BeamCli/Commands/BeamContentHistorySyncContent.cs +82 -0
  455. package/Editor/BeamCli/Commands/BeamContentHistorySyncContent.cs.meta +11 -0
  456. package/Editor/BeamCli/Commands/BeamContentHistorySyncContentCommandOutput.cs +12 -0
  457. package/Editor/BeamCli/Commands/BeamContentHistorySyncContentCommandOutput.cs.meta +11 -0
  458. package/Editor/BeamCli/Commands/BeamContentSync.cs +7 -0
  459. package/Editor/BeamCli/Commands/BeamContentTypeEntry.cs +18 -0
  460. package/Editor/BeamCli/Commands/BeamContentTypeEntry.cs.meta +11 -0
  461. package/Editor/BeamCli/Commands/BeamDeployablePlan.cs +2 -0
  462. package/Editor/BeamCli/Commands/BeamDeploymentDiffSummary.cs +3 -0
  463. package/Editor/BeamCli/Commands/BeamDeploymentPlan.cs +7 -0
  464. package/Editor/BeamCli/Commands/BeamDeploymentRelease.cs +7 -0
  465. package/Editor/BeamCli/Commands/BeamFederationMethodEntry.cs +15 -0
  466. package/Editor/BeamCli/Commands/BeamFederationMethodEntry.cs.meta +11 -0
  467. package/Editor/BeamCli/Commands/BeamFederationMethodParam.cs +13 -0
  468. package/Editor/BeamCli/Commands/BeamFederationMethodParam.cs.meta +11 -0
  469. package/Editor/BeamCli/Commands/BeamFederationTypeEntry.cs +17 -0
  470. package/Editor/BeamCli/Commands/BeamFederationTypeEntry.cs.meta +11 -0
  471. package/Editor/BeamCli/Commands/BeamGameWithRealms.cs +14 -0
  472. package/Editor/BeamCli/Commands/BeamGameWithRealms.cs.meta +11 -0
  473. package/Editor/BeamCli/Commands/BeamGenerateSkillDocs.cs +57 -0
  474. package/Editor/BeamCli/Commands/BeamGenerateSkillDocs.cs.meta +11 -0
  475. package/Editor/BeamCli/Commands/BeamGenerateSkillDocsCommandResult.cs +12 -0
  476. package/Editor/BeamCli/Commands/BeamGenerateSkillDocsCommandResult.cs.meta +11 -0
  477. package/Editor/BeamCli/Commands/BeamGenerateTypeSchema.cs +64 -0
  478. package/Editor/BeamCli/Commands/BeamGenerateTypeSchema.cs.meta +11 -0
  479. package/Editor/BeamCli/Commands/BeamHostServiceDescriptor.cs +1 -0
  480. package/Editor/BeamCli/Commands/BeamInitGetRealms.cs +73 -0
  481. package/Editor/BeamCli/Commands/BeamInitGetRealms.cs.meta +11 -0
  482. package/Editor/BeamCli/Commands/BeamInitGetRealmsResult.cs +12 -0
  483. package/Editor/BeamCli/Commands/BeamInitGetRealmsResult.cs.meta +11 -0
  484. package/Editor/BeamCli/Commands/BeamInstallAISkillsCommandResult.cs +17 -0
  485. package/Editor/BeamCli/Commands/BeamInstallAISkillsCommandResult.cs.meta +11 -0
  486. package/Editor/BeamCli/Commands/BeamInstallAiSkill.cs +85 -0
  487. package/Editor/BeamCli/Commands/BeamInstallAiSkill.cs.meta +11 -0
  488. package/Editor/BeamCli/Commands/BeamListMountSitesCommandResults.cs +12 -0
  489. package/Editor/BeamCli/Commands/BeamListMountSitesCommandResults.cs.meta +11 -0
  490. package/Editor/BeamCli/Commands/BeamListReplacementTypeCommandOutput.cs +12 -0
  491. package/Editor/BeamCli/Commands/BeamListReplacementTypeCommandOutput.cs.meta +11 -0
  492. package/Editor/BeamCli/Commands/BeamMcpSetup.cs +58 -0
  493. package/Editor/BeamCli/Commands/BeamMcpSetup.cs.meta +11 -0
  494. package/Editor/BeamCli/Commands/BeamMcpSetupCommandResult.cs +12 -0
  495. package/Editor/BeamCli/Commands/BeamMcpSetupCommandResult.cs.meta +11 -0
  496. package/Editor/BeamCli/Commands/BeamMountSiteConfig.cs +14 -0
  497. package/Editor/BeamCli/Commands/BeamMountSiteConfig.cs.meta +11 -0
  498. package/Editor/BeamCli/Commands/BeamMountSiteSelector.cs +13 -0
  499. package/Editor/BeamCli/Commands/BeamMountSiteSelector.cs.meta +11 -0
  500. package/Editor/BeamCli/Commands/BeamPageExtensionOption.cs +13 -0
  501. package/Editor/BeamCli/Commands/BeamPageExtensionOption.cs.meta +11 -0
  502. package/Editor/BeamCli/Commands/BeamPortalExtensionAddMicroservice.cs +55 -0
  503. package/Editor/BeamCli/Commands/BeamPortalExtensionAddMicroservice.cs.meta +11 -0
  504. package/Editor/BeamCli/Commands/BeamPortalExtensionFileUploadInfo.cs +16 -0
  505. package/Editor/BeamCli/Commands/BeamPortalExtensionFileUploadInfo.cs.meta +11 -0
  506. package/Editor/BeamCli/Commands/BeamPortalExtensionListExtensionOptions.cs +51 -0
  507. package/Editor/BeamCli/Commands/BeamPortalExtensionListExtensionOptions.cs.meta +11 -0
  508. package/Editor/BeamCli/Commands/BeamPortalExtensionListMountSites.cs +51 -0
  509. package/Editor/BeamCli/Commands/BeamPortalExtensionListMountSites.cs.meta +11 -0
  510. package/Editor/BeamCli/Commands/BeamPortalExtensionOptionsResult.cs +13 -0
  511. package/Editor/BeamCli/Commands/BeamPortalExtensionOptionsResult.cs.meta +11 -0
  512. package/Editor/BeamCli/Commands/BeamPortalExtensionPlanFileReference.cs +14 -0
  513. package/Editor/BeamCli/Commands/BeamPortalExtensionPlanFileReference.cs.meta +11 -0
  514. package/Editor/BeamCli/Commands/BeamPortalExtensionPlanReference.cs +16 -0
  515. package/Editor/BeamCli/Commands/BeamPortalExtensionPlanReference.cs.meta +11 -0
  516. package/Editor/BeamCli/Commands/BeamPortalExtensionSetConfig.cs +63 -0
  517. package/Editor/BeamCli/Commands/BeamPortalExtensionSetConfig.cs.meta +11 -0
  518. package/Editor/BeamCli/Commands/BeamPortalExtensionUploadInfo.cs +15 -0
  519. package/Editor/BeamCli/Commands/BeamPortalExtensionUploadInfo.cs.meta +11 -0
  520. package/Editor/BeamCli/Commands/BeamProjectAddReplacementType.cs +81 -0
  521. package/Editor/BeamCli/Commands/BeamProjectAddReplacementType.cs.meta +11 -0
  522. package/Editor/BeamCli/Commands/BeamProjectBuild.cs +7 -0
  523. package/Editor/BeamCli/Commands/BeamProjectGenerateClientOapi.cs +14 -0
  524. package/Editor/BeamCli/Commands/BeamProjectListReplacementType.cs +58 -0
  525. package/Editor/BeamCli/Commands/BeamProjectListReplacementType.cs.meta +11 -0
  526. package/Editor/BeamCli/Commands/BeamProjectNewPortalExtension.cs +121 -0
  527. package/Editor/BeamCli/Commands/BeamProjectNewPortalExtension.cs.meta +11 -0
  528. package/Editor/BeamCli/Commands/BeamProjectRemoveReplacementType.cs +60 -0
  529. package/Editor/BeamCli/Commands/BeamProjectRemoveReplacementType.cs.meta +11 -0
  530. package/Editor/BeamCli/Commands/BeamRealmOption.cs +16 -0
  531. package/Editor/BeamCli/Commands/BeamRealmOption.cs.meta +11 -0
  532. package/Editor/BeamCli/Commands/BeamRemotePortalConfiguration.cs +12 -0
  533. package/Editor/BeamCli/Commands/BeamRemotePortalConfiguration.cs.meta +11 -0
  534. package/Editor/BeamCli/Commands/BeamRemotePortalExtensionDescriptor.cs +15 -0
  535. package/Editor/BeamCli/Commands/BeamRemotePortalExtensionDescriptor.cs.meta +11 -0
  536. package/Editor/BeamCli/Commands/BeamReplacementTypeInfo.cs +15 -0
  537. package/Editor/BeamCli/Commands/BeamReplacementTypeInfo.cs.meta +11 -0
  538. package/Editor/BeamCli/Commands/BeamServiceInstance.cs +1 -0
  539. package/Editor/BeamCli/Commands/BeamSetPortalExtensionConfigCommandResults.cs +11 -0
  540. package/Editor/BeamCli/Commands/BeamSetPortalExtensionConfigCommandResults.cs.meta +11 -0
  541. package/Editor/BeamCli/Commands/BeamUnrealTypeMappingEntry.cs +14 -0
  542. package/Editor/BeamCli/Commands/BeamUnrealTypeMappingEntry.cs.meta +11 -0
  543. package/Editor/BeamCli/Commands/BeamUtilityMemberEntry.cs +16 -0
  544. package/Editor/BeamCli/Commands/BeamUtilityMemberEntry.cs.meta +11 -0
  545. package/Editor/BeamCli/Commands/BeamUtilityMethodEntry.cs +16 -0
  546. package/Editor/BeamCli/Commands/BeamUtilityMethodEntry.cs.meta +11 -0
  547. package/Editor/BeamCli/Commands/BeamUtilityParam.cs +13 -0
  548. package/Editor/BeamCli/Commands/BeamUtilityParam.cs.meta +11 -0
  549. package/Editor/BeamCli/Commands/BeamUtilityTypeEntry.cs +19 -0
  550. package/Editor/BeamCli/Commands/BeamUtilityTypeEntry.cs.meta +11 -0
  551. package/Editor/BeamCli/UI/LogUtil/LogViewUtil.cs +2 -0
  552. package/Editor/Config/ConsoleConfiguration.asset +5 -1
  553. package/Editor/ContentService/CliContentService.cs +125 -9
  554. package/Editor/LibraryService.cs +25 -2
  555. package/Editor/Modules/Content/DefaultAssets~/currency/icon.png +0 -0
  556. package/Editor/Modules/Content/UI/ContentObjectEditor.cs +3 -2
  557. package/Editor/Server/MicroserviceConfiguration.cs +3 -0
  558. package/Editor/Server/UI/PublishWindow/UsamPublishWindow.cs +5 -1
  559. package/Editor/Server/Usam/UsamService_GenerateClient.cs +6 -1
  560. package/Editor/Toolbar/MenuItems/OpenToolboxWindowMenuItem.asset +1 -1
  561. package/Editor/UI/AccountWindow/AccountWindow_SignedIn.cs +1 -1
  562. package/Editor/UI/ContentWindow/ContentWindow.cs +8 -1
  563. package/Editor/UI/ContentWindow/ContentWindow_ContentActions.cs +50 -9
  564. package/Editor/UI/ContentWindow/ContentWindow_Header.cs +17 -6
  565. package/Editor/UI/ContentWindow/ContentWindow_ItemsPanel.cs +3 -0
  566. package/Editor/UI/LibraryWindow/BeamLibraryWindow.cs +2 -2
  567. package/Editor/UI/LibraryWindow/BeamLibraryWindow_Main.cs +0 -21
  568. package/Editor/UI/LibraryWindow/BeamLibraryWindow_Samples.cs +98 -38
  569. package/Editor/UI/McpMenuItems.cs +47 -0
  570. package/Editor/UI/McpMenuItems.cs.meta +11 -0
  571. package/Runtime/Beam.cs +2 -0
  572. package/Runtime/BeamContext.cs +9 -2
  573. package/Runtime/Core/Platform/SDK/Events/EventsService.cs +8 -2
  574. package/Runtime/Core/Platform/SDK/Inventory/InventoryService.cs +7 -3
  575. package/Runtime/Environment/Resources/env-default.json +3 -3
  576. package/Runtime/Environment/Resources/versions-default.json +1 -1
  577. package/Runtime/Modules/Console/BeamableAdminConsole.cs +696 -0
  578. package/Runtime/Modules/Console/BeamableAdminConsole.cs.meta +3 -0
  579. package/Runtime/Modules/Console/ConsoleConfiguration.cs +5 -3
  580. package/Runtime/Modules/Console/ConsoleFlow.cs +3 -0
  581. package/Runtime/Modules/Content/ContentConfiguration.cs +11 -1
  582. package/Runtime/Modules/Content/ContentParameterProvider.cs +2 -0
  583. package/Runtime/Modules/Content/ContentService.cs +13 -4
  584. package/Runtime/Server/MicroserviceClient.cs +5 -2
  585. package/Runtime/UI/Lightbeam/LightBeam.cs +18 -0
  586. package/Runtime/UI/Lightbeam/Sprites_v1/BeamLogo.PNG +0 -0
  587. package/Runtime/UI/Lightbeam/Sprites_v1/BeamLogo.PNG.meta +325 -0
  588. package/Runtime/UI/Lightbeam/Sprites_v1/Bg.png +0 -0
  589. package/Runtime/UI/Lightbeam/Sprites_v1/Bg.png.meta +143 -0
  590. package/Runtime/UI/Lightbeam/Sprites_v1/BtBase.png +0 -0
  591. package/Runtime/UI/Lightbeam/Sprites_v1/BtBase.png.meta +143 -0
  592. package/Runtime/UI/Lightbeam/Sprites_v1/IconInfo.png +0 -0
  593. package/Runtime/UI/Lightbeam/Sprites_v1/IconInfo.png.meta +143 -0
  594. package/Runtime/UI/Lightbeam/Sprites_v1/Icon_Link.png +0 -0
  595. package/Runtime/UI/Lightbeam/Sprites_v1/Icon_Link.png.meta +169 -0
  596. package/Runtime/UI/Lightbeam/Sprites_v1/UIBase.png +0 -0
  597. package/Runtime/UI/Lightbeam/Sprites_v1/UIBase.png.meta +143 -0
  598. package/Runtime/UI/Lightbeam/Sprites_v1/UIBaseWhite.png +0 -0
  599. package/Runtime/UI/Lightbeam/Sprites_v1/UIBaseWhite.png.meta +143 -0
  600. package/Runtime/UI/Lightbeam/Sprites_v1.meta +8 -0
  601. package/Runtime/Unity.Beamable.asmdef +2 -1
  602. package/Samples~/LightBeamSamples/AccountManager/AccountExampleConfig.cs +1 -1
  603. package/Samples~/LightBeamSamples/AccountManager/AccountManager.cs +7 -2
  604. package/Samples~/LightBeamSamples/AccountManager/Prefabs/{AccountDetailsBehaviour → AccountDetailsPage}/AccountDetails.prefab +148 -214
  605. package/Samples~/LightBeamSamples/AccountManager/Prefabs/{AccountDetailsBehaviour/AccountDetailsBehaviour.cs → AccountDetailsPage/AccountDetailsPage.cs} +8 -2
  606. package/Samples~/LightBeamSamples/AccountManager/Prefabs/AccountDisplayBehaviour/AccountDisplay.prefab +551 -76
  607. package/Samples~/LightBeamSamples/AccountManager/Prefabs/AccountSwitchPage/AccountSwitchPage.prefab +324 -88
  608. package/Samples~/LightBeamSamples/AccountManager/Prefabs/HomePage/HomePage.cs +7 -2
  609. package/Samples~/LightBeamSamples/AccountManager/Prefabs/HomePage/HomePage.prefab +469 -280
  610. package/Samples~/LightBeamSamples/AccountManager/Prefabs/RecoverEmailPage/RecoverAccountPage.prefab +183 -110
  611. package/Samples~/LightBeamSamples/AccountManager/Prefabs/RegisterEmailPage/RegisterEmailPage.prefab +157 -84
  612. package/Samples~/LightBeamSamples/AccountManager/Sample_AccountManager.unity +1913 -24
  613. package/Samples~/LightBeamSamples/CloudSaving/CloudSavingManager.cs +4 -0
  614. package/Samples~/LightBeamSamples/CloudSaving/Prefabs/BytePage/BytePage.prefab +1699 -423
  615. package/Samples~/LightBeamSamples/CloudSaving/Prefabs/HomePage/HomePage.cs +4 -1
  616. package/Samples~/LightBeamSamples/CloudSaving/Prefabs/HomePage/HomePage.prefab +740 -342
  617. package/Samples~/LightBeamSamples/CloudSaving/Prefabs/JsonPage/JsonPage.prefab +3448 -1303
  618. package/Samples~/LightBeamSamples/CloudSaving/Prefabs/StringPage/StringPage.prefab +168 -184
  619. package/Samples~/LightBeamSamples/CloudSaving/Sample_CloudSaving.unity +1387 -30
  620. package/Samples~/LightBeamSamples/FriendsManager/FriendsManager.cs +4 -0
  621. package/Samples~/LightBeamSamples/FriendsManager/Prefabs/BlockedDisplay/BlockedDisplay.prefab +71 -29
  622. package/Samples~/LightBeamSamples/FriendsManager/Prefabs/FriendDisplay/FriendDisplay.prefab +84 -31
  623. package/Samples~/LightBeamSamples/FriendsManager/Prefabs/HomePage/HomePage.prefab +446 -182
  624. package/Samples~/LightBeamSamples/FriendsManager/Prefabs/PlayerFriendsDisplay/PlayerDisplay.prefab +349 -127
  625. package/Samples~/LightBeamSamples/FriendsManager/Prefabs/ReceivedInvitesDisplay/ReceivedInviteDisplay.prefab +89 -36
  626. package/Samples~/LightBeamSamples/FriendsManager/Prefabs/SelectorButton.prefab +16 -12
  627. package/Samples~/LightBeamSamples/FriendsManager/Prefabs/SentInvitesDisplay/SentInviteDisplay.prefab +81 -30
  628. package/Samples~/LightBeamSamples/FriendsManager/Sample_FriendsManager.unity +2113 -41
  629. package/Samples~/LightBeamSamples/Inventory/InventoryManager.cs +4 -0
  630. package/Samples~/LightBeamSamples/Inventory/Prefabs/CurrencyDisplay/CurrencyDisplay.prefab +180 -29
  631. package/Samples~/LightBeamSamples/Inventory/Prefabs/CurrencyDisplay/CurrencyDisplayBehaviour.cs +7 -2
  632. package/Samples~/LightBeamSamples/Inventory/Prefabs/CurrencyInfoPage/CurrencyInfoBehaviour.cs +7 -2
  633. package/Samples~/LightBeamSamples/Inventory/Prefabs/CurrencyInfoPage/CurrencyInfoDisplay.prefab +434 -97
  634. package/Samples~/LightBeamSamples/Inventory/Prefabs/HomePage/HomePage.prefab +1300 -279
  635. package/Samples~/LightBeamSamples/Inventory/Prefabs/ItemDisplay/ItemDisplay.prefab +182 -62
  636. package/Samples~/LightBeamSamples/Inventory/Prefabs/ItemDisplay/ItemDisplayBehaviour.cs +7 -2
  637. package/Samples~/LightBeamSamples/Inventory/Prefabs/ItemInfoPage/ItemInfoPage.cs +2 -2
  638. package/Samples~/LightBeamSamples/Inventory/Prefabs/ItemInfoPage/ItemInfoPage.prefab +240 -105
  639. package/Samples~/LightBeamSamples/Inventory/Prefabs/PropertyDisplay/PropertyDisplay.prefab +16 -13
  640. package/Samples~/LightBeamSamples/Inventory/Sample_InventoryManager.unity +1865 -41
  641. package/Samples~/LightBeamSamples/LobbyManager/LobbyManager.cs +4 -0
  642. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/CreateLobbyDisplay/CreateLobbyDisplay.prefab +261 -268
  643. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/FindLobbyDisplay/FindLobbyDisplay.prefab +44 -64
  644. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/HomePage/HomePage.prefab +2337 -185
  645. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/JoinLobbyDisplay/JoinLobbyDisplay.prefab +221 -233
  646. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/LobbyDetailsDisplay/LobbyDetailsDisplay.prefab +273 -440
  647. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/LobbyDisplay/LobbyDisplay.prefab +24 -47
  648. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/PlayerDisplay/PlayerIdDisplay.prefab +18 -14
  649. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/PlayerLobby/PlayerLobby.prefab +234 -238
  650. package/Samples~/LightBeamSamples/LobbyManager/Sample_LobbyManager.unity +1567 -41
  651. package/Samples~/LightBeamSamples/LootBox/Prefabs/LootBoxPage/LootBoxPage.prefab +19 -186
  652. package/Samples~/LightBeamSamples/LootBox/Sample_LootBox.unity +651 -49
  653. package/Samples~/LightBeamSamples/LootBox/Shared/LootboxConstants.cs +1 -1
  654. package/Samples~/LightBeamSamples/SceneLoader/Editor/LightBeamBuilds.cs +16 -6
  655. package/Tests/Runtime/Beamable/Environment/PackageVersionTests/ImplicitConversionTest.cs +2 -2
  656. package/Tests/Runtime/Beamable/Platform/Inventory/InventoryServiceTests/UpdateTests.cs +4 -2
  657. package/Tests/Runtime/Beamable/Player/Inventory/GetItemTests.cs +16 -9
  658. package/package.json +8 -15
  659. package/Common/Runtime/OpenApi/BeamAdmin.gs.cs +0 -77
  660. package/Common/Runtime/OpenApi/BeamServiceplan.gs.cs +0 -96
  661. package/Editor/ContentService/ContentUtils.cs +0 -79
  662. package/Editor/ContentService/ContentUtils.cs.meta +0 -11
  663. /package/Samples~/LightBeamSamples/AccountManager/Prefabs/{AccountDetailsBehaviour → AccountDetailsPage}/AccountDetails.prefab.meta +0 -0
  664. /package/Samples~/LightBeamSamples/AccountManager/Prefabs/{AccountDetailsBehaviour/AccountDetailsBehaviour.cs.meta → AccountDetailsPage/AccountDetailsPage.cs.meta} +0 -0
  665. /package/Samples~/LightBeamSamples/AccountManager/Prefabs/{AccountDetailsBehaviour.meta → AccountDetailsPage.meta} +0 -0
@@ -152,7 +152,7 @@ RectTransform:
152
152
  m_LocalScale: {x: 1, y: 1, z: 1}
153
153
  m_ConstrainProportionsScale: 0
154
154
  m_Children:
155
- - {fileID: 1412789052}
155
+ - {fileID: 1173859407}
156
156
  - {fileID: 4375801385269977617}
157
157
  m_Father: {fileID: 1098410761}
158
158
  m_RootOrder: 0
@@ -176,7 +176,205 @@ MonoBehaviour:
176
176
  m_EditorClassIdentifier:
177
177
  root: {fileID: 1412789052}
178
178
  loadingBlocker: {fileID: 2307906666623612511}
179
+ InfoButton: {fileID: 313397326}
179
180
  config: {fileID: 11400000, guid: 9524dae84fe3847659378e99fa61f1b3, type: 2}
181
+ --- !u!1 &313397322
182
+ GameObject:
183
+ m_ObjectHideFlags: 0
184
+ m_CorrespondingSourceObject: {fileID: 0}
185
+ m_PrefabInstance: {fileID: 0}
186
+ m_PrefabAsset: {fileID: 0}
187
+ serializedVersion: 6
188
+ m_Component:
189
+ - component: {fileID: 313397323}
190
+ - component: {fileID: 313397325}
191
+ - component: {fileID: 313397324}
192
+ - component: {fileID: 313397326}
193
+ m_Layer: 5
194
+ m_Name: ButtonInfo
195
+ m_TagString: Untagged
196
+ m_Icon: {fileID: 0}
197
+ m_NavMeshLayer: 0
198
+ m_StaticEditorFlags: 0
199
+ m_IsActive: 1
200
+ --- !u!224 &313397323
201
+ RectTransform:
202
+ m_ObjectHideFlags: 0
203
+ m_CorrespondingSourceObject: {fileID: 0}
204
+ m_PrefabInstance: {fileID: 0}
205
+ m_PrefabAsset: {fileID: 0}
206
+ m_GameObject: {fileID: 313397322}
207
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
208
+ m_LocalPosition: {x: 0, y: 0, z: 0}
209
+ m_LocalScale: {x: 1, y: 1, z: 1}
210
+ m_ConstrainProportionsScale: 0
211
+ m_Children: []
212
+ m_Father: {fileID: 1173859407}
213
+ m_RootOrder: 2
214
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
215
+ m_AnchorMin: {x: 1, y: 1}
216
+ m_AnchorMax: {x: 1, y: 1}
217
+ m_AnchoredPosition: {x: -47.9, y: -59.08}
218
+ m_SizeDelta: {x: 52.119, y: 51.6102}
219
+ m_Pivot: {x: 0.5, y: 0.5}
220
+ --- !u!114 &313397324
221
+ MonoBehaviour:
222
+ m_ObjectHideFlags: 0
223
+ m_CorrespondingSourceObject: {fileID: 0}
224
+ m_PrefabInstance: {fileID: 0}
225
+ m_PrefabAsset: {fileID: 0}
226
+ m_GameObject: {fileID: 313397322}
227
+ m_Enabled: 1
228
+ m_EditorHideFlags: 0
229
+ m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
230
+ m_Name:
231
+ m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image
232
+ m_Material: {fileID: 0}
233
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
234
+ m_RaycastTarget: 1
235
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
236
+ m_Maskable: 1
237
+ m_OnCullStateChanged:
238
+ m_PersistentCalls:
239
+ m_Calls: []
240
+ m_Sprite: {fileID: 21300000, guid: be0e2f89747107f4db87e4b22aee2437, type: 3}
241
+ m_Type: 0
242
+ m_PreserveAspect: 1
243
+ m_FillCenter: 1
244
+ m_FillMethod: 4
245
+ m_FillAmount: 1
246
+ m_FillClockwise: 1
247
+ m_FillOrigin: 0
248
+ m_UseSpriteMesh: 0
249
+ m_PixelsPerUnitMultiplier: 1
250
+ --- !u!222 &313397325
251
+ CanvasRenderer:
252
+ m_ObjectHideFlags: 0
253
+ m_CorrespondingSourceObject: {fileID: 0}
254
+ m_PrefabInstance: {fileID: 0}
255
+ m_PrefabAsset: {fileID: 0}
256
+ m_GameObject: {fileID: 313397322}
257
+ m_CullTransparentMesh: 1
258
+ --- !u!114 &313397326
259
+ MonoBehaviour:
260
+ m_ObjectHideFlags: 0
261
+ m_CorrespondingSourceObject: {fileID: 0}
262
+ m_PrefabInstance: {fileID: 0}
263
+ m_PrefabAsset: {fileID: 0}
264
+ m_GameObject: {fileID: 313397322}
265
+ m_Enabled: 1
266
+ m_EditorHideFlags: 0
267
+ m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
268
+ m_Name:
269
+ m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Button
270
+ m_Navigation:
271
+ m_Mode: 3
272
+ m_WrapAround: 0
273
+ m_SelectOnUp: {fileID: 0}
274
+ m_SelectOnDown: {fileID: 0}
275
+ m_SelectOnLeft: {fileID: 0}
276
+ m_SelectOnRight: {fileID: 0}
277
+ m_Transition: 1
278
+ m_Colors:
279
+ m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
280
+ m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
281
+ m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
282
+ m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
283
+ m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
284
+ m_ColorMultiplier: 1
285
+ m_FadeDuration: 0.1
286
+ m_SpriteState:
287
+ m_HighlightedSprite: {fileID: 0}
288
+ m_PressedSprite: {fileID: 0}
289
+ m_SelectedSprite: {fileID: 0}
290
+ m_DisabledSprite: {fileID: 0}
291
+ m_AnimationTriggers:
292
+ m_NormalTrigger: Normal
293
+ m_HighlightedTrigger: Highlighted
294
+ m_PressedTrigger: Pressed
295
+ m_SelectedTrigger: Selected
296
+ m_DisabledTrigger: Disabled
297
+ m_Interactable: 1
298
+ m_TargetGraphic: {fileID: 313397324}
299
+ m_OnClick:
300
+ m_PersistentCalls:
301
+ m_Calls: []
302
+ --- !u!1 &315872508
303
+ GameObject:
304
+ m_ObjectHideFlags: 0
305
+ m_CorrespondingSourceObject: {fileID: 0}
306
+ m_PrefabInstance: {fileID: 0}
307
+ m_PrefabAsset: {fileID: 0}
308
+ serializedVersion: 6
309
+ m_Component:
310
+ - component: {fileID: 315872509}
311
+ - component: {fileID: 315872511}
312
+ - component: {fileID: 315872510}
313
+ m_Layer: 5
314
+ m_Name: Logo
315
+ m_TagString: Untagged
316
+ m_Icon: {fileID: 0}
317
+ m_NavMeshLayer: 0
318
+ m_StaticEditorFlags: 0
319
+ m_IsActive: 1
320
+ --- !u!224 &315872509
321
+ RectTransform:
322
+ m_ObjectHideFlags: 0
323
+ m_CorrespondingSourceObject: {fileID: 0}
324
+ m_PrefabInstance: {fileID: 0}
325
+ m_PrefabAsset: {fileID: 0}
326
+ m_GameObject: {fileID: 315872508}
327
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
328
+ m_LocalPosition: {x: 0, y: 0, z: 0}
329
+ m_LocalScale: {x: 1, y: 1, z: 1}
330
+ m_ConstrainProportionsScale: 0
331
+ m_Children: []
332
+ m_Father: {fileID: 1173859407}
333
+ m_RootOrder: 1
334
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
335
+ m_AnchorMin: {x: 0, y: 1}
336
+ m_AnchorMax: {x: 0, y: 1}
337
+ m_AnchoredPosition: {x: 193, y: -57}
338
+ m_SizeDelta: {x: 332.7265, y: 70.485}
339
+ m_Pivot: {x: 0.5, y: 0.5}
340
+ --- !u!114 &315872510
341
+ MonoBehaviour:
342
+ m_ObjectHideFlags: 0
343
+ m_CorrespondingSourceObject: {fileID: 0}
344
+ m_PrefabInstance: {fileID: 0}
345
+ m_PrefabAsset: {fileID: 0}
346
+ m_GameObject: {fileID: 315872508}
347
+ m_Enabled: 1
348
+ m_EditorHideFlags: 0
349
+ m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
350
+ m_Name:
351
+ m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image
352
+ m_Material: {fileID: 0}
353
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
354
+ m_RaycastTarget: 1
355
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
356
+ m_Maskable: 1
357
+ m_OnCullStateChanged:
358
+ m_PersistentCalls:
359
+ m_Calls: []
360
+ m_Sprite: {fileID: 21300000, guid: 722fe80901bc1ce44aa0e7bb97a3dcef, type: 3}
361
+ m_Type: 0
362
+ m_PreserveAspect: 1
363
+ m_FillCenter: 1
364
+ m_FillMethod: 4
365
+ m_FillAmount: 1
366
+ m_FillClockwise: 1
367
+ m_FillOrigin: 0
368
+ m_UseSpriteMesh: 0
369
+ m_PixelsPerUnitMultiplier: 1
370
+ --- !u!222 &315872511
371
+ CanvasRenderer:
372
+ m_ObjectHideFlags: 0
373
+ m_CorrespondingSourceObject: {fileID: 0}
374
+ m_PrefabInstance: {fileID: 0}
375
+ m_PrefabAsset: {fileID: 0}
376
+ m_GameObject: {fileID: 315872508}
377
+ m_CullTransparentMesh: 1
180
378
  --- !u!1 &458544362
181
379
  GameObject:
182
380
  m_ObjectHideFlags: 0
@@ -243,8 +441,149 @@ Transform:
243
441
  m_ConstrainProportionsScale: 0
244
442
  m_Children: []
245
443
  m_Father: {fileID: 0}
246
- m_RootOrder: 2
444
+ m_RootOrder: 1
445
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
446
+ --- !u!224 &610603924 stripped
447
+ RectTransform:
448
+ m_CorrespondingSourceObject: {fileID: 635883761041762154, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
449
+ type: 3}
450
+ m_PrefabInstance: {fileID: 8901570099092948114}
451
+ m_PrefabAsset: {fileID: 0}
452
+ --- !u!1 &615843231
453
+ GameObject:
454
+ m_ObjectHideFlags: 0
455
+ m_CorrespondingSourceObject: {fileID: 0}
456
+ m_PrefabInstance: {fileID: 0}
457
+ m_PrefabAsset: {fileID: 0}
458
+ serializedVersion: 6
459
+ m_Component:
460
+ - component: {fileID: 615843232}
461
+ - component: {fileID: 615843234}
462
+ - component: {fileID: 615843233}
463
+ m_Layer: 5
464
+ m_Name: SampleName
465
+ m_TagString: Untagged
466
+ m_Icon: {fileID: 0}
467
+ m_NavMeshLayer: 0
468
+ m_StaticEditorFlags: 0
469
+ m_IsActive: 1
470
+ --- !u!224 &615843232
471
+ RectTransform:
472
+ m_ObjectHideFlags: 0
473
+ m_CorrespondingSourceObject: {fileID: 0}
474
+ m_PrefabInstance: {fileID: 0}
475
+ m_PrefabAsset: {fileID: 0}
476
+ m_GameObject: {fileID: 615843231}
477
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
478
+ m_LocalPosition: {x: 0, y: 0, z: 0}
479
+ m_LocalScale: {x: 1, y: 1, z: 1}
480
+ m_ConstrainProportionsScale: 0
481
+ m_Children: []
482
+ m_Father: {fileID: 1173859407}
483
+ m_RootOrder: 3
247
484
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
485
+ m_AnchorMin: {x: 1, y: 1}
486
+ m_AnchorMax: {x: 1, y: 1}
487
+ m_AnchoredPosition: {x: -440.38342, y: -59.079987}
488
+ m_SizeDelta: {x: 702.2288, y: 74.6392}
489
+ m_Pivot: {x: 0.5, y: 0.5}
490
+ --- !u!114 &615843233
491
+ MonoBehaviour:
492
+ m_ObjectHideFlags: 0
493
+ m_CorrespondingSourceObject: {fileID: 0}
494
+ m_PrefabInstance: {fileID: 0}
495
+ m_PrefabAsset: {fileID: 0}
496
+ m_GameObject: {fileID: 615843231}
497
+ m_Enabled: 1
498
+ m_EditorHideFlags: 0
499
+ m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
500
+ m_Name:
501
+ m_EditorClassIdentifier: Unity.TextMeshPro::TMPro.TextMeshProUGUI
502
+ m_Material: {fileID: 0}
503
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
504
+ m_RaycastTarget: 1
505
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
506
+ m_Maskable: 1
507
+ m_OnCullStateChanged:
508
+ m_PersistentCalls:
509
+ m_Calls: []
510
+ m_text: PLAYER MANAGER SAMPLE
511
+ m_isRightToLeft: 0
512
+ m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
513
+ m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
514
+ m_fontSharedMaterials: []
515
+ m_fontMaterial: {fileID: 0}
516
+ m_fontMaterials: []
517
+ m_fontColor32:
518
+ serializedVersion: 2
519
+ rgba: 4294967295
520
+ m_fontColor: {r: 1, g: 1, b: 1, a: 1}
521
+ m_enableVertexGradient: 0
522
+ m_colorMode: 3
523
+ m_fontColorGradient:
524
+ topLeft: {r: 1, g: 1, b: 1, a: 1}
525
+ topRight: {r: 1, g: 1, b: 1, a: 1}
526
+ bottomLeft: {r: 1, g: 1, b: 1, a: 1}
527
+ bottomRight: {r: 1, g: 1, b: 1, a: 1}
528
+ m_fontColorGradientPreset: {fileID: 0}
529
+ m_spriteAsset: {fileID: 0}
530
+ m_tintAllSprites: 0
531
+ m_StyleSheet: {fileID: 0}
532
+ m_TextStyleHashCode: -1183493901
533
+ m_overrideHtmlColors: 0
534
+ m_faceColor:
535
+ serializedVersion: 2
536
+ rgba: 4294967295
537
+ m_fontSize: 40
538
+ m_fontSizeBase: 40
539
+ m_fontWeight: 400
540
+ m_enableAutoSizing: 0
541
+ m_fontSizeMin: 18
542
+ m_fontSizeMax: 72
543
+ m_fontStyle: 1
544
+ m_HorizontalAlignment: 4
545
+ m_VerticalAlignment: 512
546
+ m_textAlignment: 65535
547
+ m_characterSpacing: 0
548
+ m_wordSpacing: 0
549
+ m_lineSpacing: 0
550
+ m_lineSpacingMax: 0
551
+ m_paragraphSpacing: 0
552
+ m_charWidthMaxAdj: 0
553
+ m_enableWordWrapping: 0
554
+ m_wordWrappingRatios: 0.4
555
+ m_overflowMode: 0
556
+ m_linkedTextComponent: {fileID: 0}
557
+ parentLinkedComponent: {fileID: 0}
558
+ m_enableKerning: 0
559
+ m_enableExtraPadding: 0
560
+ checkPaddingRequired: 0
561
+ m_isRichText: 1
562
+ m_parseCtrlCharacters: 1
563
+ m_isOrthographic: 1
564
+ m_isCullingEnabled: 0
565
+ m_horizontalMapping: 0
566
+ m_verticalMapping: 0
567
+ m_uvLineOffset: 0
568
+ m_geometrySortingOrder: 0
569
+ m_IsTextObjectScaleStatic: 0
570
+ m_VertexBufferAutoSizeReduction: 0
571
+ m_useMaxVisibleDescender: 1
572
+ m_pageToDisplay: 1
573
+ m_margin: {x: 0, y: 0, z: 0, w: 0}
574
+ m_isUsingLegacyAnimationComponent: 0
575
+ m_isVolumetricText: 0
576
+ m_hasFontAssetChanged: 0
577
+ m_baseMaterial: {fileID: 0}
578
+ m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
579
+ --- !u!222 &615843234
580
+ CanvasRenderer:
581
+ m_ObjectHideFlags: 0
582
+ m_CorrespondingSourceObject: {fileID: 0}
583
+ m_PrefabInstance: {fileID: 0}
584
+ m_PrefabAsset: {fileID: 0}
585
+ m_GameObject: {fileID: 615843231}
586
+ m_CullTransparentMesh: 1
248
587
  --- !u!1 &789323071
249
588
  GameObject:
250
589
  m_ObjectHideFlags: 0
@@ -281,6 +620,18 @@ RectTransform:
281
620
  m_AnchoredPosition: {x: 0, y: 0}
282
621
  m_SizeDelta: {x: 100, y: 100}
283
622
  m_Pivot: {x: 0.5, y: 0.5}
623
+ --- !u!224 &823079351 stripped
624
+ RectTransform:
625
+ m_CorrespondingSourceObject: {fileID: 5391917194244900912, guid: c93ecd8cc429541b494a8a7f80462167,
626
+ type: 3}
627
+ m_PrefabInstance: {fileID: 8883478615320266659}
628
+ m_PrefabAsset: {fileID: 0}
629
+ --- !u!224 &1075580608 stripped
630
+ RectTransform:
631
+ m_CorrespondingSourceObject: {fileID: 3475234741271657668, guid: f289fec3496fb40c8a647a4898c02a98,
632
+ type: 3}
633
+ m_PrefabInstance: {fileID: 3882542848226667836}
634
+ m_PrefabAsset: {fileID: 0}
284
635
  --- !u!1 &1098410756
285
636
  GameObject:
286
637
  m_ObjectHideFlags: 0
@@ -375,14 +726,14 @@ RectTransform:
375
726
  m_Children:
376
727
  - {fileID: 32595363}
377
728
  m_Father: {fileID: 0}
378
- m_RootOrder: 1
729
+ m_RootOrder: 0
379
730
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
380
731
  m_AnchorMin: {x: 0, y: 0}
381
732
  m_AnchorMax: {x: 0, y: 0}
382
733
  m_AnchoredPosition: {x: 0, y: 0}
383
734
  m_SizeDelta: {x: 0, y: 0}
384
735
  m_Pivot: {x: 0, y: 0}
385
- --- !u!1 &1412789051
736
+ --- !u!1 &1173859406
386
737
  GameObject:
387
738
  m_ObjectHideFlags: 0
388
739
  m_CorrespondingSourceObject: {fileID: 0}
@@ -390,29 +741,32 @@ GameObject:
390
741
  m_PrefabAsset: {fileID: 0}
391
742
  serializedVersion: 6
392
743
  m_Component:
393
- - component: {fileID: 1412789052}
394
- - component: {fileID: 1412789054}
395
- - component: {fileID: 1412789053}
744
+ - component: {fileID: 1173859407}
745
+ - component: {fileID: 1173859409}
746
+ - component: {fileID: 1173859408}
396
747
  m_Layer: 5
397
- m_Name: Content
748
+ m_Name: Container
398
749
  m_TagString: Untagged
399
750
  m_Icon: {fileID: 0}
400
751
  m_NavMeshLayer: 0
401
752
  m_StaticEditorFlags: 0
402
753
  m_IsActive: 1
403
- --- !u!224 &1412789052
754
+ --- !u!224 &1173859407
404
755
  RectTransform:
405
756
  m_ObjectHideFlags: 0
406
757
  m_CorrespondingSourceObject: {fileID: 0}
407
758
  m_PrefabInstance: {fileID: 0}
408
759
  m_PrefabAsset: {fileID: 0}
409
- m_GameObject: {fileID: 1412789051}
760
+ m_GameObject: {fileID: 1173859406}
410
761
  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
411
762
  m_LocalPosition: {x: 0, y: 0, z: 0}
412
763
  m_LocalScale: {x: 1, y: 1, z: 1}
413
764
  m_ConstrainProportionsScale: 0
414
765
  m_Children:
415
- - {fileID: 789323072}
766
+ - {fileID: 1412789052}
767
+ - {fileID: 315872509}
768
+ - {fileID: 313397323}
769
+ - {fileID: 615843232}
416
770
  m_Father: {fileID: 32595363}
417
771
  m_RootOrder: 0
418
772
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
@@ -421,27 +775,27 @@ RectTransform:
421
775
  m_AnchoredPosition: {x: 0, y: 0}
422
776
  m_SizeDelta: {x: 0, y: 0}
423
777
  m_Pivot: {x: 0.5, y: 0.5}
424
- --- !u!114 &1412789053
778
+ --- !u!114 &1173859408
425
779
  MonoBehaviour:
426
780
  m_ObjectHideFlags: 0
427
781
  m_CorrespondingSourceObject: {fileID: 0}
428
782
  m_PrefabInstance: {fileID: 0}
429
783
  m_PrefabAsset: {fileID: 0}
430
- m_GameObject: {fileID: 1412789051}
784
+ m_GameObject: {fileID: 1173859406}
431
785
  m_Enabled: 1
432
786
  m_EditorHideFlags: 0
433
787
  m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
434
788
  m_Name:
435
789
  m_EditorClassIdentifier:
436
790
  m_Material: {fileID: 0}
437
- m_Color: {r: 0, g: 0, b: 0, a: 1}
791
+ m_Color: {r: 0.6981132, g: 0.6981132, b: 0.6981132, a: 1}
438
792
  m_RaycastTarget: 1
439
793
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
440
794
  m_Maskable: 1
441
795
  m_OnCullStateChanged:
442
796
  m_PersistentCalls:
443
797
  m_Calls: []
444
- m_Sprite: {fileID: 0}
798
+ m_Sprite: {fileID: 21300000, guid: e669acd2805965449b35eb0938af6d2e, type: 3}
445
799
  m_Type: 0
446
800
  m_PreserveAspect: 0
447
801
  m_FillCenter: 1
@@ -451,6 +805,64 @@ MonoBehaviour:
451
805
  m_FillOrigin: 0
452
806
  m_UseSpriteMesh: 0
453
807
  m_PixelsPerUnitMultiplier: 1
808
+ --- !u!222 &1173859409
809
+ CanvasRenderer:
810
+ m_ObjectHideFlags: 0
811
+ m_CorrespondingSourceObject: {fileID: 0}
812
+ m_PrefabInstance: {fileID: 0}
813
+ m_PrefabAsset: {fileID: 0}
814
+ m_GameObject: {fileID: 1173859406}
815
+ m_CullTransparentMesh: 1
816
+ --- !u!224 &1226947333 stripped
817
+ RectTransform:
818
+ m_CorrespondingSourceObject: {fileID: 6159142488376512600, guid: dc585c46f9ce94b11b37f6a7584425aa,
819
+ type: 3}
820
+ m_PrefabInstance: {fileID: 4786373417671880343}
821
+ m_PrefabAsset: {fileID: 0}
822
+ --- !u!1 &1412789051
823
+ GameObject:
824
+ m_ObjectHideFlags: 0
825
+ m_CorrespondingSourceObject: {fileID: 0}
826
+ m_PrefabInstance: {fileID: 0}
827
+ m_PrefabAsset: {fileID: 0}
828
+ serializedVersion: 6
829
+ m_Component:
830
+ - component: {fileID: 1412789052}
831
+ - component: {fileID: 1412789054}
832
+ m_Layer: 5
833
+ m_Name: Content
834
+ m_TagString: Untagged
835
+ m_Icon: {fileID: 0}
836
+ m_NavMeshLayer: 0
837
+ m_StaticEditorFlags: 0
838
+ m_IsActive: 1
839
+ --- !u!224 &1412789052
840
+ RectTransform:
841
+ m_ObjectHideFlags: 0
842
+ m_CorrespondingSourceObject: {fileID: 0}
843
+ m_PrefabInstance: {fileID: 0}
844
+ m_PrefabAsset: {fileID: 0}
845
+ m_GameObject: {fileID: 1412789051}
846
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
847
+ m_LocalPosition: {x: 0, y: 0, z: 0}
848
+ m_LocalScale: {x: 1, y: 1, z: 1}
849
+ m_ConstrainProportionsScale: 0
850
+ m_Children:
851
+ - {fileID: 789323072}
852
+ - {fileID: 1075580608}
853
+ - {fileID: 1226947333}
854
+ - {fileID: 1586595926}
855
+ - {fileID: 823079351}
856
+ - {fileID: 8892539172541283440}
857
+ - {fileID: 610603924}
858
+ m_Father: {fileID: 1173859407}
859
+ m_RootOrder: 0
860
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
861
+ m_AnchorMin: {x: 0, y: 0}
862
+ m_AnchorMax: {x: 1, y: 1}
863
+ m_AnchoredPosition: {x: 0, y: -71.45387}
864
+ m_SizeDelta: {x: 0, y: -142.9078}
865
+ m_Pivot: {x: 0.5, y: 0.5}
454
866
  --- !u!222 &1412789054
455
867
  CanvasRenderer:
456
868
  m_ObjectHideFlags: 0
@@ -459,6 +871,12 @@ CanvasRenderer:
459
871
  m_PrefabAsset: {fileID: 0}
460
872
  m_GameObject: {fileID: 1412789051}
461
873
  m_CullTransparentMesh: 1
874
+ --- !u!224 &1586595926 stripped
875
+ RectTransform:
876
+ m_CorrespondingSourceObject: {fileID: 769054016320926237, guid: 23d2567f3a29b4477af3cc8c84491c4f,
877
+ type: 3}
878
+ m_PrefabInstance: {fileID: 7645100800935346420}
879
+ m_PrefabAsset: {fileID: 0}
462
880
  --- !u!1 &2021928063
463
881
  GameObject:
464
882
  m_ObjectHideFlags: 0
@@ -541,7 +959,7 @@ Transform:
541
959
  m_ConstrainProportionsScale: 0
542
960
  m_Children: []
543
961
  m_Father: {fileID: 0}
544
- m_RootOrder: 0
962
+ m_RootOrder: 2
545
963
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
546
964
  --- !u!222 &1200338147386144915
547
965
  CanvasRenderer:
@@ -604,7 +1022,8 @@ MonoBehaviour:
604
1022
  m_text: Loading...
605
1023
  m_isRightToLeft: 0
606
1024
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
607
- m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
1025
+ m_sharedMaterial: {fileID: -8116913167181615731, guid: e8dc0ebc54e472548a685f67d318d23f,
1026
+ type: 2}
608
1027
  m_fontSharedMaterials: []
609
1028
  m_fontMaterial: {fileID: 0}
610
1029
  m_fontMaterials: []
@@ -634,8 +1053,8 @@ MonoBehaviour:
634
1053
  m_enableAutoSizing: 0
635
1054
  m_fontSizeMin: 18
636
1055
  m_fontSizeMax: 72
637
- m_fontStyle: 0
638
- m_HorizontalAlignment: 1
1056
+ m_fontStyle: 1
1057
+ m_HorizontalAlignment: 2
639
1058
  m_VerticalAlignment: 256
640
1059
  m_textAlignment: 65535
641
1060
  m_characterSpacing: 0
@@ -644,7 +1063,7 @@ MonoBehaviour:
644
1063
  m_lineSpacingMax: 0
645
1064
  m_paragraphSpacing: 0
646
1065
  m_charWidthMaxAdj: 0
647
- m_enableWordWrapping: 1
1066
+ m_enableWordWrapping: 0
648
1067
  m_wordWrappingRatios: 0.4
649
1068
  m_overflowMode: 0
650
1069
  m_linkedTextComponent: {fileID: 0}
@@ -667,9 +1086,233 @@ MonoBehaviour:
667
1086
  m_margin: {x: 0, y: 0, z: 0, w: 0}
668
1087
  m_isUsingLegacyAnimationComponent: 0
669
1088
  m_isVolumetricText: 0
670
- m_hasFontAssetChanged: 0
1089
+ m_hasFontAssetChanged: 1
671
1090
  m_baseMaterial: {fileID: 0}
672
1091
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
1092
+ --- !u!1001 &3882542848226667836
1093
+ PrefabInstance:
1094
+ m_ObjectHideFlags: 0
1095
+ serializedVersion: 2
1096
+ m_Modification:
1097
+ m_TransformParent: {fileID: 1412789052}
1098
+ m_Modifications:
1099
+ - target: {fileID: 1481597212484802574, guid: f289fec3496fb40c8a647a4898c02a98,
1100
+ type: 3}
1101
+ propertyPath: m_AnchorMax.y
1102
+ value: 1
1103
+ objectReference: {fileID: 0}
1104
+ - target: {fileID: 1481597212484802574, guid: f289fec3496fb40c8a647a4898c02a98,
1105
+ type: 3}
1106
+ propertyPath: m_AnchorMin.y
1107
+ value: 1
1108
+ objectReference: {fileID: 0}
1109
+ - target: {fileID: 1481597212484802574, guid: f289fec3496fb40c8a647a4898c02a98,
1110
+ type: 3}
1111
+ propertyPath: m_AnchoredPosition.x
1112
+ value: 770.21814
1113
+ objectReference: {fileID: 0}
1114
+ - target: {fileID: 1481597212484802574, guid: f289fec3496fb40c8a647a4898c02a98,
1115
+ type: 3}
1116
+ propertyPath: m_AnchoredPosition.y
1117
+ value: -84.89609
1118
+ objectReference: {fileID: 0}
1119
+ - target: {fileID: 1783890228775919455, guid: f289fec3496fb40c8a647a4898c02a98,
1120
+ type: 3}
1121
+ propertyPath: m_AnchorMax.y
1122
+ value: 1
1123
+ objectReference: {fileID: 0}
1124
+ - target: {fileID: 1783890228775919455, guid: f289fec3496fb40c8a647a4898c02a98,
1125
+ type: 3}
1126
+ propertyPath: m_AnchorMin.y
1127
+ value: 1
1128
+ objectReference: {fileID: 0}
1129
+ - target: {fileID: 1783890228775919455, guid: f289fec3496fb40c8a647a4898c02a98,
1130
+ type: 3}
1131
+ propertyPath: m_AnchoredPosition.x
1132
+ value: 270.21814
1133
+ objectReference: {fileID: 0}
1134
+ - target: {fileID: 1783890228775919455, guid: f289fec3496fb40c8a647a4898c02a98,
1135
+ type: 3}
1136
+ propertyPath: m_AnchoredPosition.y
1137
+ value: -24.896088
1138
+ objectReference: {fileID: 0}
1139
+ - target: {fileID: 3475234741271657668, guid: f289fec3496fb40c8a647a4898c02a98,
1140
+ type: 3}
1141
+ propertyPath: m_Pivot.x
1142
+ value: 0.5
1143
+ objectReference: {fileID: 0}
1144
+ - target: {fileID: 3475234741271657668, guid: f289fec3496fb40c8a647a4898c02a98,
1145
+ type: 3}
1146
+ propertyPath: m_Pivot.y
1147
+ value: 0.5
1148
+ objectReference: {fileID: 0}
1149
+ - target: {fileID: 3475234741271657668, guid: f289fec3496fb40c8a647a4898c02a98,
1150
+ type: 3}
1151
+ propertyPath: m_RootOrder
1152
+ value: 1
1153
+ objectReference: {fileID: 0}
1154
+ - target: {fileID: 3475234741271657668, guid: f289fec3496fb40c8a647a4898c02a98,
1155
+ type: 3}
1156
+ propertyPath: m_AnchorMax.x
1157
+ value: 1
1158
+ objectReference: {fileID: 0}
1159
+ - target: {fileID: 3475234741271657668, guid: f289fec3496fb40c8a647a4898c02a98,
1160
+ type: 3}
1161
+ propertyPath: m_AnchorMax.y
1162
+ value: 1
1163
+ objectReference: {fileID: 0}
1164
+ - target: {fileID: 3475234741271657668, guid: f289fec3496fb40c8a647a4898c02a98,
1165
+ type: 3}
1166
+ propertyPath: m_AnchorMin.x
1167
+ value: 0
1168
+ objectReference: {fileID: 0}
1169
+ - target: {fileID: 3475234741271657668, guid: f289fec3496fb40c8a647a4898c02a98,
1170
+ type: 3}
1171
+ propertyPath: m_AnchorMin.y
1172
+ value: 0
1173
+ objectReference: {fileID: 0}
1174
+ - target: {fileID: 3475234741271657668, guid: f289fec3496fb40c8a647a4898c02a98,
1175
+ type: 3}
1176
+ propertyPath: m_SizeDelta.x
1177
+ value: 0
1178
+ objectReference: {fileID: 0}
1179
+ - target: {fileID: 3475234741271657668, guid: f289fec3496fb40c8a647a4898c02a98,
1180
+ type: 3}
1181
+ propertyPath: m_SizeDelta.y
1182
+ value: 0
1183
+ objectReference: {fileID: 0}
1184
+ - target: {fileID: 3475234741271657668, guid: f289fec3496fb40c8a647a4898c02a98,
1185
+ type: 3}
1186
+ propertyPath: m_LocalPosition.x
1187
+ value: 0
1188
+ objectReference: {fileID: 0}
1189
+ - target: {fileID: 3475234741271657668, guid: f289fec3496fb40c8a647a4898c02a98,
1190
+ type: 3}
1191
+ propertyPath: m_LocalPosition.y
1192
+ value: 0
1193
+ objectReference: {fileID: 0}
1194
+ - target: {fileID: 3475234741271657668, guid: f289fec3496fb40c8a647a4898c02a98,
1195
+ type: 3}
1196
+ propertyPath: m_LocalPosition.z
1197
+ value: 0
1198
+ objectReference: {fileID: 0}
1199
+ - target: {fileID: 3475234741271657668, guid: f289fec3496fb40c8a647a4898c02a98,
1200
+ type: 3}
1201
+ propertyPath: m_LocalRotation.w
1202
+ value: 1
1203
+ objectReference: {fileID: 0}
1204
+ - target: {fileID: 3475234741271657668, guid: f289fec3496fb40c8a647a4898c02a98,
1205
+ type: 3}
1206
+ propertyPath: m_LocalRotation.x
1207
+ value: 0
1208
+ objectReference: {fileID: 0}
1209
+ - target: {fileID: 3475234741271657668, guid: f289fec3496fb40c8a647a4898c02a98,
1210
+ type: 3}
1211
+ propertyPath: m_LocalRotation.y
1212
+ value: 0
1213
+ objectReference: {fileID: 0}
1214
+ - target: {fileID: 3475234741271657668, guid: f289fec3496fb40c8a647a4898c02a98,
1215
+ type: 3}
1216
+ propertyPath: m_LocalRotation.z
1217
+ value: 0
1218
+ objectReference: {fileID: 0}
1219
+ - target: {fileID: 3475234741271657668, guid: f289fec3496fb40c8a647a4898c02a98,
1220
+ type: 3}
1221
+ propertyPath: m_AnchoredPosition.x
1222
+ value: 0
1223
+ objectReference: {fileID: 0}
1224
+ - target: {fileID: 3475234741271657668, guid: f289fec3496fb40c8a647a4898c02a98,
1225
+ type: 3}
1226
+ propertyPath: m_AnchoredPosition.y
1227
+ value: 0
1228
+ objectReference: {fileID: 0}
1229
+ - target: {fileID: 3475234741271657668, guid: f289fec3496fb40c8a647a4898c02a98,
1230
+ type: 3}
1231
+ propertyPath: m_LocalEulerAnglesHint.x
1232
+ value: 0
1233
+ objectReference: {fileID: 0}
1234
+ - target: {fileID: 3475234741271657668, guid: f289fec3496fb40c8a647a4898c02a98,
1235
+ type: 3}
1236
+ propertyPath: m_LocalEulerAnglesHint.y
1237
+ value: 0
1238
+ objectReference: {fileID: 0}
1239
+ - target: {fileID: 3475234741271657668, guid: f289fec3496fb40c8a647a4898c02a98,
1240
+ type: 3}
1241
+ propertyPath: m_LocalEulerAnglesHint.z
1242
+ value: 0
1243
+ objectReference: {fileID: 0}
1244
+ - target: {fileID: 3475234741271657671, guid: f289fec3496fb40c8a647a4898c02a98,
1245
+ type: 3}
1246
+ propertyPath: m_Name
1247
+ value: RecoverAccountPage
1248
+ objectReference: {fileID: 0}
1249
+ - target: {fileID: 3475234741271657671, guid: f289fec3496fb40c8a647a4898c02a98,
1250
+ type: 3}
1251
+ propertyPath: m_IsActive
1252
+ value: 0
1253
+ objectReference: {fileID: 0}
1254
+ - target: {fileID: 3775306963022303568, guid: f289fec3496fb40c8a647a4898c02a98,
1255
+ type: 3}
1256
+ propertyPath: m_AnchorMax.y
1257
+ value: 1
1258
+ objectReference: {fileID: 0}
1259
+ - target: {fileID: 3775306963022303568, guid: f289fec3496fb40c8a647a4898c02a98,
1260
+ type: 3}
1261
+ propertyPath: m_AnchorMin.y
1262
+ value: 1
1263
+ objectReference: {fileID: 0}
1264
+ - target: {fileID: 3775306963022303568, guid: f289fec3496fb40c8a647a4898c02a98,
1265
+ type: 3}
1266
+ propertyPath: m_AnchoredPosition.x
1267
+ value: 1290.2181
1268
+ objectReference: {fileID: 0}
1269
+ - target: {fileID: 3775306963022303568, guid: f289fec3496fb40c8a647a4898c02a98,
1270
+ type: 3}
1271
+ propertyPath: m_AnchoredPosition.y
1272
+ value: -84.89609
1273
+ objectReference: {fileID: 0}
1274
+ - target: {fileID: 5189148350072272791, guid: f289fec3496fb40c8a647a4898c02a98,
1275
+ type: 3}
1276
+ propertyPath: m_AnchorMax.y
1277
+ value: 1
1278
+ objectReference: {fileID: 0}
1279
+ - target: {fileID: 5189148350072272791, guid: f289fec3496fb40c8a647a4898c02a98,
1280
+ type: 3}
1281
+ propertyPath: m_AnchorMin.y
1282
+ value: 1
1283
+ objectReference: {fileID: 0}
1284
+ - target: {fileID: 5189148350072272791, guid: f289fec3496fb40c8a647a4898c02a98,
1285
+ type: 3}
1286
+ propertyPath: m_AnchoredPosition.x
1287
+ value: 1550.2181
1288
+ objectReference: {fileID: 0}
1289
+ - target: {fileID: 5189148350072272791, guid: f289fec3496fb40c8a647a4898c02a98,
1290
+ type: 3}
1291
+ propertyPath: m_AnchoredPosition.y
1292
+ value: -84.89609
1293
+ objectReference: {fileID: 0}
1294
+ - target: {fileID: 6442071647367638732, guid: f289fec3496fb40c8a647a4898c02a98,
1295
+ type: 3}
1296
+ propertyPath: m_AnchorMax.y
1297
+ value: 1
1298
+ objectReference: {fileID: 0}
1299
+ - target: {fileID: 6442071647367638732, guid: f289fec3496fb40c8a647a4898c02a98,
1300
+ type: 3}
1301
+ propertyPath: m_AnchorMin.y
1302
+ value: 1
1303
+ objectReference: {fileID: 0}
1304
+ - target: {fileID: 6442071647367638732, guid: f289fec3496fb40c8a647a4898c02a98,
1305
+ type: 3}
1306
+ propertyPath: m_AnchoredPosition.x
1307
+ value: 1030.2181
1308
+ objectReference: {fileID: 0}
1309
+ - target: {fileID: 6442071647367638732, guid: f289fec3496fb40c8a647a4898c02a98,
1310
+ type: 3}
1311
+ propertyPath: m_AnchoredPosition.y
1312
+ value: -84.89609
1313
+ objectReference: {fileID: 0}
1314
+ m_RemovedComponents: []
1315
+ m_SourcePrefab: {fileID: 100100000, guid: f289fec3496fb40c8a647a4898c02a98, type: 3}
673
1316
  --- !u!224 &4375801385269977617
674
1317
  RectTransform:
675
1318
  m_ObjectHideFlags: 0
@@ -704,14 +1347,14 @@ MonoBehaviour:
704
1347
  m_Name:
705
1348
  m_EditorClassIdentifier:
706
1349
  m_Material: {fileID: 0}
707
- m_Color: {r: 0, g: 0, b: 0, a: 1}
1350
+ m_Color: {r: 0.6981132, g: 0.6981132, b: 0.6981132, a: 1}
708
1351
  m_RaycastTarget: 1
709
1352
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
710
1353
  m_Maskable: 1
711
1354
  m_OnCullStateChanged:
712
1355
  m_PersistentCalls:
713
1356
  m_Calls: []
714
- m_Sprite: {fileID: 0}
1357
+ m_Sprite: {fileID: 21300000, guid: e669acd2805965449b35eb0938af6d2e, type: 3}
715
1358
  m_Type: 0
716
1359
  m_PreserveAspect: 0
717
1360
  m_FillCenter: 1
@@ -739,7 +1382,286 @@ GameObject:
739
1382
  m_Icon: {fileID: 0}
740
1383
  m_NavMeshLayer: 0
741
1384
  m_StaticEditorFlags: 0
742
- m_IsActive: 1
1385
+ m_IsActive: 0
1386
+ --- !u!1001 &4786373417671880343
1387
+ PrefabInstance:
1388
+ m_ObjectHideFlags: 0
1389
+ serializedVersion: 2
1390
+ m_Modification:
1391
+ m_TransformParent: {fileID: 1412789052}
1392
+ m_Modifications:
1393
+ - target: {fileID: 484892184220177339, guid: dc585c46f9ce94b11b37f6a7584425aa,
1394
+ type: 3}
1395
+ propertyPath: m_AnchorMax.x
1396
+ value: 1
1397
+ objectReference: {fileID: 0}
1398
+ - target: {fileID: 484892184220177339, guid: dc585c46f9ce94b11b37f6a7584425aa,
1399
+ type: 3}
1400
+ propertyPath: m_AnchorMax.y
1401
+ value: 1
1402
+ objectReference: {fileID: 0}
1403
+ - target: {fileID: 484892184220177339, guid: dc585c46f9ce94b11b37f6a7584425aa,
1404
+ type: 3}
1405
+ propertyPath: m_SizeDelta.y
1406
+ value: -17
1407
+ objectReference: {fileID: 0}
1408
+ - target: {fileID: 1047737660591152477, guid: dc585c46f9ce94b11b37f6a7584425aa,
1409
+ type: 3}
1410
+ propertyPath: m_AnchorMax.y
1411
+ value: 1
1412
+ objectReference: {fileID: 0}
1413
+ - target: {fileID: 1047737660591152477, guid: dc585c46f9ce94b11b37f6a7584425aa,
1414
+ type: 3}
1415
+ propertyPath: m_AnchorMin.y
1416
+ value: 1
1417
+ objectReference: {fileID: 0}
1418
+ - target: {fileID: 1047737660591152477, guid: dc585c46f9ce94b11b37f6a7584425aa,
1419
+ type: 3}
1420
+ propertyPath: m_SizeDelta.x
1421
+ value: 120
1422
+ objectReference: {fileID: 0}
1423
+ - target: {fileID: 1047737660591152477, guid: dc585c46f9ce94b11b37f6a7584425aa,
1424
+ type: 3}
1425
+ propertyPath: m_SizeDelta.y
1426
+ value: 120
1427
+ objectReference: {fileID: 0}
1428
+ - target: {fileID: 1047737660591152477, guid: dc585c46f9ce94b11b37f6a7584425aa,
1429
+ type: 3}
1430
+ propertyPath: m_AnchoredPosition.x
1431
+ value: 132
1432
+ objectReference: {fileID: 0}
1433
+ - target: {fileID: 1047737660591152477, guid: dc585c46f9ce94b11b37f6a7584425aa,
1434
+ type: 3}
1435
+ propertyPath: m_AnchoredPosition.y
1436
+ value: -61
1437
+ objectReference: {fileID: 0}
1438
+ - target: {fileID: 2696739997273555736, guid: dc585c46f9ce94b11b37f6a7584425aa,
1439
+ type: 3}
1440
+ propertyPath: m_AnchorMax.y
1441
+ value: 1
1442
+ objectReference: {fileID: 0}
1443
+ - target: {fileID: 2696739997273555736, guid: dc585c46f9ce94b11b37f6a7584425aa,
1444
+ type: 3}
1445
+ propertyPath: m_AnchorMin.y
1446
+ value: 1
1447
+ objectReference: {fileID: 0}
1448
+ - target: {fileID: 2696739997273555736, guid: dc585c46f9ce94b11b37f6a7584425aa,
1449
+ type: 3}
1450
+ propertyPath: m_SizeDelta.x
1451
+ value: 120
1452
+ objectReference: {fileID: 0}
1453
+ - target: {fileID: 2696739997273555736, guid: dc585c46f9ce94b11b37f6a7584425aa,
1454
+ type: 3}
1455
+ propertyPath: m_SizeDelta.y
1456
+ value: 120
1457
+ objectReference: {fileID: 0}
1458
+ - target: {fileID: 2696739997273555736, guid: dc585c46f9ce94b11b37f6a7584425aa,
1459
+ type: 3}
1460
+ propertyPath: m_AnchoredPosition.x
1461
+ value: 264
1462
+ objectReference: {fileID: 0}
1463
+ - target: {fileID: 2696739997273555736, guid: dc585c46f9ce94b11b37f6a7584425aa,
1464
+ type: 3}
1465
+ propertyPath: m_AnchoredPosition.y
1466
+ value: -61
1467
+ objectReference: {fileID: 0}
1468
+ - target: {fileID: 2728377460735814433, guid: dc585c46f9ce94b11b37f6a7584425aa,
1469
+ type: 3}
1470
+ propertyPath: m_SizeDelta.x
1471
+ value: -1440.4363
1472
+ objectReference: {fileID: 0}
1473
+ - target: {fileID: 3576935581317921891, guid: dc585c46f9ce94b11b37f6a7584425aa,
1474
+ type: 3}
1475
+ propertyPath: m_AnchorMax.y
1476
+ value: 1
1477
+ objectReference: {fileID: 0}
1478
+ - target: {fileID: 3576935581317921891, guid: dc585c46f9ce94b11b37f6a7584425aa,
1479
+ type: 3}
1480
+ propertyPath: m_AnchorMin.y
1481
+ value: 1
1482
+ objectReference: {fileID: 0}
1483
+ - target: {fileID: 3576935581317921891, guid: dc585c46f9ce94b11b37f6a7584425aa,
1484
+ type: 3}
1485
+ propertyPath: m_AnchoredPosition.x
1486
+ value: 895
1487
+ objectReference: {fileID: 0}
1488
+ - target: {fileID: 3576935581317921891, guid: dc585c46f9ce94b11b37f6a7584425aa,
1489
+ type: 3}
1490
+ propertyPath: m_AnchoredPosition.y
1491
+ value: -60
1492
+ objectReference: {fileID: 0}
1493
+ - target: {fileID: 4076681042458187705, guid: dc585c46f9ce94b11b37f6a7584425aa,
1494
+ type: 3}
1495
+ propertyPath: m_AnchorMax.x
1496
+ value: 1
1497
+ objectReference: {fileID: 0}
1498
+ - target: {fileID: 4076681042458187705, guid: dc585c46f9ce94b11b37f6a7584425aa,
1499
+ type: 3}
1500
+ propertyPath: m_AnchorMax.y
1501
+ value: 1
1502
+ objectReference: {fileID: 0}
1503
+ - target: {fileID: 5036056183072044670, guid: dc585c46f9ce94b11b37f6a7584425aa,
1504
+ type: 3}
1505
+ propertyPath: m_AnchorMax.y
1506
+ value: 1
1507
+ objectReference: {fileID: 0}
1508
+ - target: {fileID: 5036056183072044670, guid: dc585c46f9ce94b11b37f6a7584425aa,
1509
+ type: 3}
1510
+ propertyPath: m_AnchorMin.y
1511
+ value: 1
1512
+ objectReference: {fileID: 0}
1513
+ - target: {fileID: 5036056183072044670, guid: dc585c46f9ce94b11b37f6a7584425aa,
1514
+ type: 3}
1515
+ propertyPath: m_AnchoredPosition.x
1516
+ value: 1245
1517
+ objectReference: {fileID: 0}
1518
+ - target: {fileID: 5036056183072044670, guid: dc585c46f9ce94b11b37f6a7584425aa,
1519
+ type: 3}
1520
+ propertyPath: m_AnchoredPosition.y
1521
+ value: -60
1522
+ objectReference: {fileID: 0}
1523
+ - target: {fileID: 5316843539448957063, guid: dc585c46f9ce94b11b37f6a7584425aa,
1524
+ type: 3}
1525
+ propertyPath: m_AnchorMax.y
1526
+ value: 1
1527
+ objectReference: {fileID: 0}
1528
+ - target: {fileID: 5316843539448957063, guid: dc585c46f9ce94b11b37f6a7584425aa,
1529
+ type: 3}
1530
+ propertyPath: m_AnchorMin.y
1531
+ value: 1
1532
+ objectReference: {fileID: 0}
1533
+ - target: {fileID: 5316843539448957063, guid: dc585c46f9ce94b11b37f6a7584425aa,
1534
+ type: 3}
1535
+ propertyPath: m_SizeDelta.x
1536
+ value: 120
1537
+ objectReference: {fileID: 0}
1538
+ - target: {fileID: 5316843539448957063, guid: dc585c46f9ce94b11b37f6a7584425aa,
1539
+ type: 3}
1540
+ propertyPath: m_SizeDelta.y
1541
+ value: 120
1542
+ objectReference: {fileID: 0}
1543
+ - target: {fileID: 5316843539448957063, guid: dc585c46f9ce94b11b37f6a7584425aa,
1544
+ type: 3}
1545
+ propertyPath: m_AnchoredPosition.y
1546
+ value: -61
1547
+ objectReference: {fileID: 0}
1548
+ - target: {fileID: 6159142488376512600, guid: dc585c46f9ce94b11b37f6a7584425aa,
1549
+ type: 3}
1550
+ propertyPath: m_Pivot.x
1551
+ value: 0.5
1552
+ objectReference: {fileID: 0}
1553
+ - target: {fileID: 6159142488376512600, guid: dc585c46f9ce94b11b37f6a7584425aa,
1554
+ type: 3}
1555
+ propertyPath: m_Pivot.y
1556
+ value: 0.5
1557
+ objectReference: {fileID: 0}
1558
+ - target: {fileID: 6159142488376512600, guid: dc585c46f9ce94b11b37f6a7584425aa,
1559
+ type: 3}
1560
+ propertyPath: m_RootOrder
1561
+ value: 2
1562
+ objectReference: {fileID: 0}
1563
+ - target: {fileID: 6159142488376512600, guid: dc585c46f9ce94b11b37f6a7584425aa,
1564
+ type: 3}
1565
+ propertyPath: m_AnchorMax.x
1566
+ value: 1
1567
+ objectReference: {fileID: 0}
1568
+ - target: {fileID: 6159142488376512600, guid: dc585c46f9ce94b11b37f6a7584425aa,
1569
+ type: 3}
1570
+ propertyPath: m_AnchorMax.y
1571
+ value: 1
1572
+ objectReference: {fileID: 0}
1573
+ - target: {fileID: 6159142488376512600, guid: dc585c46f9ce94b11b37f6a7584425aa,
1574
+ type: 3}
1575
+ propertyPath: m_AnchorMin.x
1576
+ value: 0
1577
+ objectReference: {fileID: 0}
1578
+ - target: {fileID: 6159142488376512600, guid: dc585c46f9ce94b11b37f6a7584425aa,
1579
+ type: 3}
1580
+ propertyPath: m_AnchorMin.y
1581
+ value: 0
1582
+ objectReference: {fileID: 0}
1583
+ - target: {fileID: 6159142488376512600, guid: dc585c46f9ce94b11b37f6a7584425aa,
1584
+ type: 3}
1585
+ propertyPath: m_SizeDelta.x
1586
+ value: 0
1587
+ objectReference: {fileID: 0}
1588
+ - target: {fileID: 6159142488376512600, guid: dc585c46f9ce94b11b37f6a7584425aa,
1589
+ type: 3}
1590
+ propertyPath: m_SizeDelta.y
1591
+ value: 0
1592
+ objectReference: {fileID: 0}
1593
+ - target: {fileID: 6159142488376512600, guid: dc585c46f9ce94b11b37f6a7584425aa,
1594
+ type: 3}
1595
+ propertyPath: m_LocalPosition.x
1596
+ value: 0
1597
+ objectReference: {fileID: 0}
1598
+ - target: {fileID: 6159142488376512600, guid: dc585c46f9ce94b11b37f6a7584425aa,
1599
+ type: 3}
1600
+ propertyPath: m_LocalPosition.y
1601
+ value: 0
1602
+ objectReference: {fileID: 0}
1603
+ - target: {fileID: 6159142488376512600, guid: dc585c46f9ce94b11b37f6a7584425aa,
1604
+ type: 3}
1605
+ propertyPath: m_LocalPosition.z
1606
+ value: 0
1607
+ objectReference: {fileID: 0}
1608
+ - target: {fileID: 6159142488376512600, guid: dc585c46f9ce94b11b37f6a7584425aa,
1609
+ type: 3}
1610
+ propertyPath: m_LocalRotation.w
1611
+ value: 1
1612
+ objectReference: {fileID: 0}
1613
+ - target: {fileID: 6159142488376512600, guid: dc585c46f9ce94b11b37f6a7584425aa,
1614
+ type: 3}
1615
+ propertyPath: m_LocalRotation.x
1616
+ value: 0
1617
+ objectReference: {fileID: 0}
1618
+ - target: {fileID: 6159142488376512600, guid: dc585c46f9ce94b11b37f6a7584425aa,
1619
+ type: 3}
1620
+ propertyPath: m_LocalRotation.y
1621
+ value: 0
1622
+ objectReference: {fileID: 0}
1623
+ - target: {fileID: 6159142488376512600, guid: dc585c46f9ce94b11b37f6a7584425aa,
1624
+ type: 3}
1625
+ propertyPath: m_LocalRotation.z
1626
+ value: 0
1627
+ objectReference: {fileID: 0}
1628
+ - target: {fileID: 6159142488376512600, guid: dc585c46f9ce94b11b37f6a7584425aa,
1629
+ type: 3}
1630
+ propertyPath: m_AnchoredPosition.x
1631
+ value: 0
1632
+ objectReference: {fileID: 0}
1633
+ - target: {fileID: 6159142488376512600, guid: dc585c46f9ce94b11b37f6a7584425aa,
1634
+ type: 3}
1635
+ propertyPath: m_AnchoredPosition.y
1636
+ value: 0
1637
+ objectReference: {fileID: 0}
1638
+ - target: {fileID: 6159142488376512600, guid: dc585c46f9ce94b11b37f6a7584425aa,
1639
+ type: 3}
1640
+ propertyPath: m_LocalEulerAnglesHint.x
1641
+ value: 0
1642
+ objectReference: {fileID: 0}
1643
+ - target: {fileID: 6159142488376512600, guid: dc585c46f9ce94b11b37f6a7584425aa,
1644
+ type: 3}
1645
+ propertyPath: m_LocalEulerAnglesHint.y
1646
+ value: 0
1647
+ objectReference: {fileID: 0}
1648
+ - target: {fileID: 6159142488376512600, guid: dc585c46f9ce94b11b37f6a7584425aa,
1649
+ type: 3}
1650
+ propertyPath: m_LocalEulerAnglesHint.z
1651
+ value: 0
1652
+ objectReference: {fileID: 0}
1653
+ - target: {fileID: 6159142488376512601, guid: dc585c46f9ce94b11b37f6a7584425aa,
1654
+ type: 3}
1655
+ propertyPath: m_Name
1656
+ value: AccountDetails
1657
+ objectReference: {fileID: 0}
1658
+ - target: {fileID: 6159142488376512601, guid: dc585c46f9ce94b11b37f6a7584425aa,
1659
+ type: 3}
1660
+ propertyPath: m_IsActive
1661
+ value: 0
1662
+ objectReference: {fileID: 0}
1663
+ m_RemovedComponents: []
1664
+ m_SourcePrefab: {fileID: 100100000, guid: dc585c46f9ce94b11b37f6a7584425aa, type: 3}
743
1665
  --- !u!222 &5210553750647963825
744
1666
  CanvasRenderer:
745
1667
  m_ObjectHideFlags: 0
@@ -768,3 +1690,970 @@ RectTransform:
768
1690
  m_AnchoredPosition: {x: 0, y: 0}
769
1691
  m_SizeDelta: {x: 200, y: 50}
770
1692
  m_Pivot: {x: 0.5, y: 0.5}
1693
+ --- !u!1001 &7645100800935346420
1694
+ PrefabInstance:
1695
+ m_ObjectHideFlags: 0
1696
+ serializedVersion: 2
1697
+ m_Modification:
1698
+ m_TransformParent: {fileID: 1412789052}
1699
+ m_Modifications:
1700
+ - target: {fileID: 769054016320926237, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1701
+ type: 3}
1702
+ propertyPath: m_Pivot.x
1703
+ value: 0.5
1704
+ objectReference: {fileID: 0}
1705
+ - target: {fileID: 769054016320926237, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1706
+ type: 3}
1707
+ propertyPath: m_Pivot.y
1708
+ value: 0.5
1709
+ objectReference: {fileID: 0}
1710
+ - target: {fileID: 769054016320926237, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1711
+ type: 3}
1712
+ propertyPath: m_RootOrder
1713
+ value: 3
1714
+ objectReference: {fileID: 0}
1715
+ - target: {fileID: 769054016320926237, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1716
+ type: 3}
1717
+ propertyPath: m_AnchorMax.x
1718
+ value: 1
1719
+ objectReference: {fileID: 0}
1720
+ - target: {fileID: 769054016320926237, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1721
+ type: 3}
1722
+ propertyPath: m_AnchorMax.y
1723
+ value: 1
1724
+ objectReference: {fileID: 0}
1725
+ - target: {fileID: 769054016320926237, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1726
+ type: 3}
1727
+ propertyPath: m_AnchorMin.x
1728
+ value: 0
1729
+ objectReference: {fileID: 0}
1730
+ - target: {fileID: 769054016320926237, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1731
+ type: 3}
1732
+ propertyPath: m_AnchorMin.y
1733
+ value: 0
1734
+ objectReference: {fileID: 0}
1735
+ - target: {fileID: 769054016320926237, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1736
+ type: 3}
1737
+ propertyPath: m_SizeDelta.x
1738
+ value: 0
1739
+ objectReference: {fileID: 0}
1740
+ - target: {fileID: 769054016320926237, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1741
+ type: 3}
1742
+ propertyPath: m_SizeDelta.y
1743
+ value: 0
1744
+ objectReference: {fileID: 0}
1745
+ - target: {fileID: 769054016320926237, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1746
+ type: 3}
1747
+ propertyPath: m_LocalPosition.x
1748
+ value: 0
1749
+ objectReference: {fileID: 0}
1750
+ - target: {fileID: 769054016320926237, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1751
+ type: 3}
1752
+ propertyPath: m_LocalPosition.y
1753
+ value: 0
1754
+ objectReference: {fileID: 0}
1755
+ - target: {fileID: 769054016320926237, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1756
+ type: 3}
1757
+ propertyPath: m_LocalPosition.z
1758
+ value: 0
1759
+ objectReference: {fileID: 0}
1760
+ - target: {fileID: 769054016320926237, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1761
+ type: 3}
1762
+ propertyPath: m_LocalRotation.w
1763
+ value: 1
1764
+ objectReference: {fileID: 0}
1765
+ - target: {fileID: 769054016320926237, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1766
+ type: 3}
1767
+ propertyPath: m_LocalRotation.x
1768
+ value: 0
1769
+ objectReference: {fileID: 0}
1770
+ - target: {fileID: 769054016320926237, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1771
+ type: 3}
1772
+ propertyPath: m_LocalRotation.y
1773
+ value: 0
1774
+ objectReference: {fileID: 0}
1775
+ - target: {fileID: 769054016320926237, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1776
+ type: 3}
1777
+ propertyPath: m_LocalRotation.z
1778
+ value: 0
1779
+ objectReference: {fileID: 0}
1780
+ - target: {fileID: 769054016320926237, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1781
+ type: 3}
1782
+ propertyPath: m_AnchoredPosition.x
1783
+ value: 0
1784
+ objectReference: {fileID: 0}
1785
+ - target: {fileID: 769054016320926237, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1786
+ type: 3}
1787
+ propertyPath: m_AnchoredPosition.y
1788
+ value: 0
1789
+ objectReference: {fileID: 0}
1790
+ - target: {fileID: 769054016320926237, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1791
+ type: 3}
1792
+ propertyPath: m_LocalEulerAnglesHint.x
1793
+ value: 0
1794
+ objectReference: {fileID: 0}
1795
+ - target: {fileID: 769054016320926237, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1796
+ type: 3}
1797
+ propertyPath: m_LocalEulerAnglesHint.y
1798
+ value: 0
1799
+ objectReference: {fileID: 0}
1800
+ - target: {fileID: 769054016320926237, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1801
+ type: 3}
1802
+ propertyPath: m_LocalEulerAnglesHint.z
1803
+ value: 0
1804
+ objectReference: {fileID: 0}
1805
+ - target: {fileID: 4140528136061226586, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1806
+ type: 3}
1807
+ propertyPath: m_AnchorMax.y
1808
+ value: 1
1809
+ objectReference: {fileID: 0}
1810
+ - target: {fileID: 4140528136061226586, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1811
+ type: 3}
1812
+ propertyPath: m_AnchorMin.y
1813
+ value: 1
1814
+ objectReference: {fileID: 0}
1815
+ - target: {fileID: 4140528136061226586, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1816
+ type: 3}
1817
+ propertyPath: m_SizeDelta.x
1818
+ value: 428.49377
1819
+ objectReference: {fileID: 0}
1820
+ - target: {fileID: 4140528136061226586, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1821
+ type: 3}
1822
+ propertyPath: m_AnchoredPosition.x
1823
+ value: 672.74066
1824
+ objectReference: {fileID: 0}
1825
+ - target: {fileID: 4140528136061226586, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1826
+ type: 3}
1827
+ propertyPath: m_AnchoredPosition.y
1828
+ value: -60
1829
+ objectReference: {fileID: 0}
1830
+ - target: {fileID: 6069966186875679120, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1831
+ type: 3}
1832
+ propertyPath: m_AnchorMax.y
1833
+ value: 1
1834
+ objectReference: {fileID: 0}
1835
+ - target: {fileID: 6069966186875679120, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1836
+ type: 3}
1837
+ propertyPath: m_AnchorMin.y
1838
+ value: 1
1839
+ objectReference: {fileID: 0}
1840
+ - target: {fileID: 6069966186875679120, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1841
+ type: 3}
1842
+ propertyPath: m_SizeDelta.x
1843
+ value: 428.49377
1844
+ objectReference: {fileID: 0}
1845
+ - target: {fileID: 6069966186875679120, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1846
+ type: 3}
1847
+ propertyPath: m_AnchoredPosition.x
1848
+ value: 214.24689
1849
+ objectReference: {fileID: 0}
1850
+ - target: {fileID: 6069966186875679120, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1851
+ type: 3}
1852
+ propertyPath: m_AnchoredPosition.y
1853
+ value: -60
1854
+ objectReference: {fileID: 0}
1855
+ - target: {fileID: 6401626160195312205, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1856
+ type: 3}
1857
+ propertyPath: m_Name
1858
+ value: AccountSwitchPage
1859
+ objectReference: {fileID: 0}
1860
+ - target: {fileID: 6401626160195312205, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1861
+ type: 3}
1862
+ propertyPath: m_IsActive
1863
+ value: 0
1864
+ objectReference: {fileID: 0}
1865
+ - target: {fileID: 6757130611999313357, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1866
+ type: 3}
1867
+ propertyPath: m_AnchorMax.y
1868
+ value: 1
1869
+ objectReference: {fileID: 0}
1870
+ - target: {fileID: 6757130611999313357, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1871
+ type: 3}
1872
+ propertyPath: m_AnchorMin.y
1873
+ value: 1
1874
+ objectReference: {fileID: 0}
1875
+ - target: {fileID: 6757130611999313357, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1876
+ type: 3}
1877
+ propertyPath: m_SizeDelta.x
1878
+ value: 428.49377
1879
+ objectReference: {fileID: 0}
1880
+ - target: {fileID: 6757130611999313357, guid: 23d2567f3a29b4477af3cc8c84491c4f,
1881
+ type: 3}
1882
+ propertyPath: m_AnchoredPosition.x
1883
+ value: 916.98755
1884
+ objectReference: {fileID: 0}
1885
+ m_RemovedComponents: []
1886
+ m_SourcePrefab: {fileID: 100100000, guid: 23d2567f3a29b4477af3cc8c84491c4f, type: 3}
1887
+ --- !u!1001 &8883478615320266659
1888
+ PrefabInstance:
1889
+ m_ObjectHideFlags: 0
1890
+ serializedVersion: 2
1891
+ m_Modification:
1892
+ m_TransformParent: {fileID: 1412789052}
1893
+ m_Modifications:
1894
+ - target: {fileID: 5391917194244900912, guid: c93ecd8cc429541b494a8a7f80462167,
1895
+ type: 3}
1896
+ propertyPath: m_Pivot.x
1897
+ value: 0.5
1898
+ objectReference: {fileID: 0}
1899
+ - target: {fileID: 5391917194244900912, guid: c93ecd8cc429541b494a8a7f80462167,
1900
+ type: 3}
1901
+ propertyPath: m_Pivot.y
1902
+ value: 0.5
1903
+ objectReference: {fileID: 0}
1904
+ - target: {fileID: 5391917194244900912, guid: c93ecd8cc429541b494a8a7f80462167,
1905
+ type: 3}
1906
+ propertyPath: m_RootOrder
1907
+ value: 4
1908
+ objectReference: {fileID: 0}
1909
+ - target: {fileID: 5391917194244900912, guid: c93ecd8cc429541b494a8a7f80462167,
1910
+ type: 3}
1911
+ propertyPath: m_AnchorMax.x
1912
+ value: 0.5
1913
+ objectReference: {fileID: 0}
1914
+ - target: {fileID: 5391917194244900912, guid: c93ecd8cc429541b494a8a7f80462167,
1915
+ type: 3}
1916
+ propertyPath: m_AnchorMax.y
1917
+ value: 1
1918
+ objectReference: {fileID: 0}
1919
+ - target: {fileID: 5391917194244900912, guid: c93ecd8cc429541b494a8a7f80462167,
1920
+ type: 3}
1921
+ propertyPath: m_AnchorMin.x
1922
+ value: 0.5
1923
+ objectReference: {fileID: 0}
1924
+ - target: {fileID: 5391917194244900912, guid: c93ecd8cc429541b494a8a7f80462167,
1925
+ type: 3}
1926
+ propertyPath: m_AnchorMin.y
1927
+ value: 1
1928
+ objectReference: {fileID: 0}
1929
+ - target: {fileID: 5391917194244900912, guid: c93ecd8cc429541b494a8a7f80462167,
1930
+ type: 3}
1931
+ propertyPath: m_SizeDelta.x
1932
+ value: 1369.8413
1933
+ objectReference: {fileID: 0}
1934
+ - target: {fileID: 5391917194244900912, guid: c93ecd8cc429541b494a8a7f80462167,
1935
+ type: 3}
1936
+ propertyPath: m_SizeDelta.y
1937
+ value: 120
1938
+ objectReference: {fileID: 0}
1939
+ - target: {fileID: 5391917194244900912, guid: c93ecd8cc429541b494a8a7f80462167,
1940
+ type: 3}
1941
+ propertyPath: m_LocalPosition.x
1942
+ value: 0
1943
+ objectReference: {fileID: 0}
1944
+ - target: {fileID: 5391917194244900912, guid: c93ecd8cc429541b494a8a7f80462167,
1945
+ type: 3}
1946
+ propertyPath: m_LocalPosition.y
1947
+ value: 0
1948
+ objectReference: {fileID: 0}
1949
+ - target: {fileID: 5391917194244900912, guid: c93ecd8cc429541b494a8a7f80462167,
1950
+ type: 3}
1951
+ propertyPath: m_LocalPosition.z
1952
+ value: 0
1953
+ objectReference: {fileID: 0}
1954
+ - target: {fileID: 5391917194244900912, guid: c93ecd8cc429541b494a8a7f80462167,
1955
+ type: 3}
1956
+ propertyPath: m_LocalRotation.w
1957
+ value: 1
1958
+ objectReference: {fileID: 0}
1959
+ - target: {fileID: 5391917194244900912, guid: c93ecd8cc429541b494a8a7f80462167,
1960
+ type: 3}
1961
+ propertyPath: m_LocalRotation.x
1962
+ value: 0
1963
+ objectReference: {fileID: 0}
1964
+ - target: {fileID: 5391917194244900912, guid: c93ecd8cc429541b494a8a7f80462167,
1965
+ type: 3}
1966
+ propertyPath: m_LocalRotation.y
1967
+ value: 0
1968
+ objectReference: {fileID: 0}
1969
+ - target: {fileID: 5391917194244900912, guid: c93ecd8cc429541b494a8a7f80462167,
1970
+ type: 3}
1971
+ propertyPath: m_LocalRotation.z
1972
+ value: 0
1973
+ objectReference: {fileID: 0}
1974
+ - target: {fileID: 5391917194244900912, guid: c93ecd8cc429541b494a8a7f80462167,
1975
+ type: 3}
1976
+ propertyPath: m_AnchoredPosition.x
1977
+ value: -38
1978
+ objectReference: {fileID: 0}
1979
+ - target: {fileID: 5391917194244900912, guid: c93ecd8cc429541b494a8a7f80462167,
1980
+ type: 3}
1981
+ propertyPath: m_AnchoredPosition.y
1982
+ value: -124.5
1983
+ objectReference: {fileID: 0}
1984
+ - target: {fileID: 5391917194244900912, guid: c93ecd8cc429541b494a8a7f80462167,
1985
+ type: 3}
1986
+ propertyPath: m_LocalEulerAnglesHint.x
1987
+ value: 0
1988
+ objectReference: {fileID: 0}
1989
+ - target: {fileID: 5391917194244900912, guid: c93ecd8cc429541b494a8a7f80462167,
1990
+ type: 3}
1991
+ propertyPath: m_LocalEulerAnglesHint.y
1992
+ value: 0
1993
+ objectReference: {fileID: 0}
1994
+ - target: {fileID: 5391917194244900912, guid: c93ecd8cc429541b494a8a7f80462167,
1995
+ type: 3}
1996
+ propertyPath: m_LocalEulerAnglesHint.z
1997
+ value: 0
1998
+ objectReference: {fileID: 0}
1999
+ - target: {fileID: 5391917194244900913, guid: c93ecd8cc429541b494a8a7f80462167,
2000
+ type: 3}
2001
+ propertyPath: m_Name
2002
+ value: AccountDisplay
2003
+ objectReference: {fileID: 0}
2004
+ - target: {fileID: 5391917194244900913, guid: c93ecd8cc429541b494a8a7f80462167,
2005
+ type: 3}
2006
+ propertyPath: m_IsActive
2007
+ value: 0
2008
+ objectReference: {fileID: 0}
2009
+ m_RemovedComponents: []
2010
+ m_SourcePrefab: {fileID: 100100000, guid: c93ecd8cc429541b494a8a7f80462167, type: 3}
2011
+ --- !u!1001 &8892539172541283439
2012
+ PrefabInstance:
2013
+ m_ObjectHideFlags: 0
2014
+ serializedVersion: 2
2015
+ m_Modification:
2016
+ m_TransformParent: {fileID: 1412789052}
2017
+ m_Modifications:
2018
+ - target: {fileID: 3900907448471157576, guid: aba581a96c2d0477ba0249bde04d6942,
2019
+ type: 3}
2020
+ propertyPath: m_AnchorMax.y
2021
+ value: 1
2022
+ objectReference: {fileID: 0}
2023
+ - target: {fileID: 3900907448471157576, guid: aba581a96c2d0477ba0249bde04d6942,
2024
+ type: 3}
2025
+ propertyPath: m_AnchorMin.y
2026
+ value: 1
2027
+ objectReference: {fileID: 0}
2028
+ - target: {fileID: 3900907448471157576, guid: aba581a96c2d0477ba0249bde04d6942,
2029
+ type: 3}
2030
+ propertyPath: m_AnchoredPosition.x
2031
+ value: 1070.2181
2032
+ objectReference: {fileID: 0}
2033
+ - target: {fileID: 3900907448471157576, guid: aba581a96c2d0477ba0249bde04d6942,
2034
+ type: 3}
2035
+ propertyPath: m_AnchoredPosition.y
2036
+ value: -59.996094
2037
+ objectReference: {fileID: 0}
2038
+ - target: {fileID: 3900907448688045173, guid: aba581a96c2d0477ba0249bde04d6942,
2039
+ type: 3}
2040
+ propertyPath: m_AnchorMax.y
2041
+ value: 1
2042
+ objectReference: {fileID: 0}
2043
+ - target: {fileID: 3900907448688045173, guid: aba581a96c2d0477ba0249bde04d6942,
2044
+ type: 3}
2045
+ propertyPath: m_AnchorMin.y
2046
+ value: 1
2047
+ objectReference: {fileID: 0}
2048
+ - target: {fileID: 3900907448688045173, guid: aba581a96c2d0477ba0249bde04d6942,
2049
+ type: 3}
2050
+ propertyPath: m_AnchoredPosition.x
2051
+ value: 1410.2181
2052
+ objectReference: {fileID: 0}
2053
+ - target: {fileID: 3900907448688045173, guid: aba581a96c2d0477ba0249bde04d6942,
2054
+ type: 3}
2055
+ propertyPath: m_AnchoredPosition.y
2056
+ value: -59.996094
2057
+ objectReference: {fileID: 0}
2058
+ - target: {fileID: 3900907448744742382, guid: aba581a96c2d0477ba0249bde04d6942,
2059
+ type: 3}
2060
+ propertyPath: m_AnchorMax.y
2061
+ value: 1
2062
+ objectReference: {fileID: 0}
2063
+ - target: {fileID: 3900907448744742382, guid: aba581a96c2d0477ba0249bde04d6942,
2064
+ type: 3}
2065
+ propertyPath: m_AnchorMin.y
2066
+ value: 1
2067
+ objectReference: {fileID: 0}
2068
+ - target: {fileID: 3900907448744742382, guid: aba581a96c2d0477ba0249bde04d6942,
2069
+ type: 3}
2070
+ propertyPath: m_AnchoredPosition.x
2071
+ value: 410.21814
2072
+ objectReference: {fileID: 0}
2073
+ - target: {fileID: 3900907448744742382, guid: aba581a96c2d0477ba0249bde04d6942,
2074
+ type: 3}
2075
+ propertyPath: m_AnchoredPosition.y
2076
+ value: 0.00390625
2077
+ objectReference: {fileID: 0}
2078
+ - target: {fileID: 3900907450136079328, guid: aba581a96c2d0477ba0249bde04d6942,
2079
+ type: 3}
2080
+ propertyPath: m_Name
2081
+ value: RegisterEmailPage
2082
+ objectReference: {fileID: 0}
2083
+ - target: {fileID: 3900907450136079328, guid: aba581a96c2d0477ba0249bde04d6942,
2084
+ type: 3}
2085
+ propertyPath: m_IsActive
2086
+ value: 0
2087
+ objectReference: {fileID: 0}
2088
+ - target: {fileID: 3900907450136079335, guid: aba581a96c2d0477ba0249bde04d6942,
2089
+ type: 3}
2090
+ propertyPath: m_Pivot.x
2091
+ value: 0.5
2092
+ objectReference: {fileID: 0}
2093
+ - target: {fileID: 3900907450136079335, guid: aba581a96c2d0477ba0249bde04d6942,
2094
+ type: 3}
2095
+ propertyPath: m_Pivot.y
2096
+ value: 0.5
2097
+ objectReference: {fileID: 0}
2098
+ - target: {fileID: 3900907450136079335, guid: aba581a96c2d0477ba0249bde04d6942,
2099
+ type: 3}
2100
+ propertyPath: m_RootOrder
2101
+ value: 5
2102
+ objectReference: {fileID: 0}
2103
+ - target: {fileID: 3900907450136079335, guid: aba581a96c2d0477ba0249bde04d6942,
2104
+ type: 3}
2105
+ propertyPath: m_AnchorMax.x
2106
+ value: 1
2107
+ objectReference: {fileID: 0}
2108
+ - target: {fileID: 3900907450136079335, guid: aba581a96c2d0477ba0249bde04d6942,
2109
+ type: 3}
2110
+ propertyPath: m_AnchorMax.y
2111
+ value: 1
2112
+ objectReference: {fileID: 0}
2113
+ - target: {fileID: 3900907450136079335, guid: aba581a96c2d0477ba0249bde04d6942,
2114
+ type: 3}
2115
+ propertyPath: m_AnchorMin.x
2116
+ value: 0
2117
+ objectReference: {fileID: 0}
2118
+ - target: {fileID: 3900907450136079335, guid: aba581a96c2d0477ba0249bde04d6942,
2119
+ type: 3}
2120
+ propertyPath: m_AnchorMin.y
2121
+ value: 0
2122
+ objectReference: {fileID: 0}
2123
+ - target: {fileID: 3900907450136079335, guid: aba581a96c2d0477ba0249bde04d6942,
2124
+ type: 3}
2125
+ propertyPath: m_SizeDelta.x
2126
+ value: 0
2127
+ objectReference: {fileID: 0}
2128
+ - target: {fileID: 3900907450136079335, guid: aba581a96c2d0477ba0249bde04d6942,
2129
+ type: 3}
2130
+ propertyPath: m_SizeDelta.y
2131
+ value: 0
2132
+ objectReference: {fileID: 0}
2133
+ - target: {fileID: 3900907450136079335, guid: aba581a96c2d0477ba0249bde04d6942,
2134
+ type: 3}
2135
+ propertyPath: m_LocalPosition.x
2136
+ value: 0
2137
+ objectReference: {fileID: 0}
2138
+ - target: {fileID: 3900907450136079335, guid: aba581a96c2d0477ba0249bde04d6942,
2139
+ type: 3}
2140
+ propertyPath: m_LocalPosition.y
2141
+ value: 0
2142
+ objectReference: {fileID: 0}
2143
+ - target: {fileID: 3900907450136079335, guid: aba581a96c2d0477ba0249bde04d6942,
2144
+ type: 3}
2145
+ propertyPath: m_LocalPosition.z
2146
+ value: 0
2147
+ objectReference: {fileID: 0}
2148
+ - target: {fileID: 3900907450136079335, guid: aba581a96c2d0477ba0249bde04d6942,
2149
+ type: 3}
2150
+ propertyPath: m_LocalRotation.w
2151
+ value: 1
2152
+ objectReference: {fileID: 0}
2153
+ - target: {fileID: 3900907450136079335, guid: aba581a96c2d0477ba0249bde04d6942,
2154
+ type: 3}
2155
+ propertyPath: m_LocalRotation.x
2156
+ value: 0
2157
+ objectReference: {fileID: 0}
2158
+ - target: {fileID: 3900907450136079335, guid: aba581a96c2d0477ba0249bde04d6942,
2159
+ type: 3}
2160
+ propertyPath: m_LocalRotation.y
2161
+ value: 0
2162
+ objectReference: {fileID: 0}
2163
+ - target: {fileID: 3900907450136079335, guid: aba581a96c2d0477ba0249bde04d6942,
2164
+ type: 3}
2165
+ propertyPath: m_LocalRotation.z
2166
+ value: 0
2167
+ objectReference: {fileID: 0}
2168
+ - target: {fileID: 3900907450136079335, guid: aba581a96c2d0477ba0249bde04d6942,
2169
+ type: 3}
2170
+ propertyPath: m_AnchoredPosition.x
2171
+ value: 0
2172
+ objectReference: {fileID: 0}
2173
+ - target: {fileID: 3900907450136079335, guid: aba581a96c2d0477ba0249bde04d6942,
2174
+ type: 3}
2175
+ propertyPath: m_AnchoredPosition.y
2176
+ value: 0
2177
+ objectReference: {fileID: 0}
2178
+ - target: {fileID: 3900907450136079335, guid: aba581a96c2d0477ba0249bde04d6942,
2179
+ type: 3}
2180
+ propertyPath: m_LocalEulerAnglesHint.x
2181
+ value: 0
2182
+ objectReference: {fileID: 0}
2183
+ - target: {fileID: 3900907450136079335, guid: aba581a96c2d0477ba0249bde04d6942,
2184
+ type: 3}
2185
+ propertyPath: m_LocalEulerAnglesHint.y
2186
+ value: 0
2187
+ objectReference: {fileID: 0}
2188
+ - target: {fileID: 3900907450136079335, guid: aba581a96c2d0477ba0249bde04d6942,
2189
+ type: 3}
2190
+ propertyPath: m_LocalEulerAnglesHint.z
2191
+ value: 0
2192
+ objectReference: {fileID: 0}
2193
+ m_RemovedComponents: []
2194
+ m_SourcePrefab: {fileID: 100100000, guid: aba581a96c2d0477ba0249bde04d6942, type: 3}
2195
+ --- !u!224 &8892539172541283440 stripped
2196
+ RectTransform:
2197
+ m_CorrespondingSourceObject: {fileID: 3900907450136079335, guid: aba581a96c2d0477ba0249bde04d6942,
2198
+ type: 3}
2199
+ m_PrefabInstance: {fileID: 8892539172541283439}
2200
+ m_PrefabAsset: {fileID: 0}
2201
+ --- !u!1001 &8901570099092948114
2202
+ PrefabInstance:
2203
+ m_ObjectHideFlags: 0
2204
+ serializedVersion: 2
2205
+ m_Modification:
2206
+ m_TransformParent: {fileID: 1412789052}
2207
+ m_Modifications:
2208
+ - target: {fileID: 189176539653173620, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2209
+ type: 3}
2210
+ propertyPath: m_AnchorMax.y
2211
+ value: 1
2212
+ objectReference: {fileID: 0}
2213
+ - target: {fileID: 189176539653173620, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2214
+ type: 3}
2215
+ propertyPath: m_AnchorMin.y
2216
+ value: 1
2217
+ objectReference: {fileID: 0}
2218
+ - target: {fileID: 189176539653173620, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2219
+ type: 3}
2220
+ propertyPath: m_SizeDelta.x
2221
+ value: 586.22705
2222
+ objectReference: {fileID: 0}
2223
+ - target: {fileID: 189176539653173620, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2224
+ type: 3}
2225
+ propertyPath: m_AnchoredPosition.x
2226
+ value: 959.3406
2227
+ objectReference: {fileID: 0}
2228
+ - target: {fileID: 189176539653173620, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2229
+ type: 3}
2230
+ propertyPath: m_AnchoredPosition.y
2231
+ value: -90
2232
+ objectReference: {fileID: 0}
2233
+ - target: {fileID: 635883759845404592, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2234
+ type: 3}
2235
+ propertyPath: m_AnchorMax.x
2236
+ value: 1
2237
+ objectReference: {fileID: 0}
2238
+ - target: {fileID: 635883759845404592, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2239
+ type: 3}
2240
+ propertyPath: m_AnchorMax.y
2241
+ value: 1
2242
+ objectReference: {fileID: 0}
2243
+ - target: {fileID: 635883759845404592, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2244
+ type: 3}
2245
+ propertyPath: m_SizeDelta.x
2246
+ value: -12
2247
+ objectReference: {fileID: 0}
2248
+ - target: {fileID: 635883760405476640, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2249
+ type: 3}
2250
+ propertyPath: m_AnchorMax.y
2251
+ value: 1
2252
+ objectReference: {fileID: 0}
2253
+ - target: {fileID: 635883760405476640, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2254
+ type: 3}
2255
+ propertyPath: m_AnchorMin.y
2256
+ value: 1
2257
+ objectReference: {fileID: 0}
2258
+ - target: {fileID: 635883760405476640, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2259
+ type: 3}
2260
+ propertyPath: m_SizeDelta.x
2261
+ value: 1858.6813
2262
+ objectReference: {fileID: 0}
2263
+ - target: {fileID: 635883760405476640, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2264
+ type: 3}
2265
+ propertyPath: m_AnchoredPosition.x
2266
+ value: 959.34064
2267
+ objectReference: {fileID: 0}
2268
+ - target: {fileID: 635883760405476640, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2269
+ type: 3}
2270
+ propertyPath: m_AnchoredPosition.y
2271
+ value: -80
2272
+ objectReference: {fileID: 0}
2273
+ - target: {fileID: 635883760414514412, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2274
+ type: 3}
2275
+ propertyPath: m_AnchorMax.x
2276
+ value: 1
2277
+ objectReference: {fileID: 0}
2278
+ - target: {fileID: 635883760414514412, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2279
+ type: 3}
2280
+ propertyPath: m_AnchorMax.y
2281
+ value: 1
2282
+ objectReference: {fileID: 0}
2283
+ - target: {fileID: 635883761037866999, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2284
+ type: 3}
2285
+ propertyPath: m_AnchorMax.y
2286
+ value: 1
2287
+ objectReference: {fileID: 0}
2288
+ - target: {fileID: 635883761037866999, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2289
+ type: 3}
2290
+ propertyPath: m_AnchorMin.y
2291
+ value: 1
2292
+ objectReference: {fileID: 0}
2293
+ - target: {fileID: 635883761037866999, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2294
+ type: 3}
2295
+ propertyPath: m_SizeDelta.x
2296
+ value: 1858.6813
2297
+ objectReference: {fileID: 0}
2298
+ - target: {fileID: 635883761037866999, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2299
+ type: 3}
2300
+ propertyPath: m_AnchoredPosition.x
2301
+ value: 30
2302
+ objectReference: {fileID: 0}
2303
+ - target: {fileID: 635883761041762154, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2304
+ type: 3}
2305
+ propertyPath: m_Pivot.x
2306
+ value: 0.5
2307
+ objectReference: {fileID: 0}
2308
+ - target: {fileID: 635883761041762154, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2309
+ type: 3}
2310
+ propertyPath: m_Pivot.y
2311
+ value: 0.5
2312
+ objectReference: {fileID: 0}
2313
+ - target: {fileID: 635883761041762154, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2314
+ type: 3}
2315
+ propertyPath: m_RootOrder
2316
+ value: 6
2317
+ objectReference: {fileID: 0}
2318
+ - target: {fileID: 635883761041762154, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2319
+ type: 3}
2320
+ propertyPath: m_AnchorMax.x
2321
+ value: 1
2322
+ objectReference: {fileID: 0}
2323
+ - target: {fileID: 635883761041762154, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2324
+ type: 3}
2325
+ propertyPath: m_AnchorMax.y
2326
+ value: 1
2327
+ objectReference: {fileID: 0}
2328
+ - target: {fileID: 635883761041762154, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2329
+ type: 3}
2330
+ propertyPath: m_AnchorMin.x
2331
+ value: 0
2332
+ objectReference: {fileID: 0}
2333
+ - target: {fileID: 635883761041762154, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2334
+ type: 3}
2335
+ propertyPath: m_AnchorMin.y
2336
+ value: 0
2337
+ objectReference: {fileID: 0}
2338
+ - target: {fileID: 635883761041762154, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2339
+ type: 3}
2340
+ propertyPath: m_SizeDelta.x
2341
+ value: 0
2342
+ objectReference: {fileID: 0}
2343
+ - target: {fileID: 635883761041762154, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2344
+ type: 3}
2345
+ propertyPath: m_SizeDelta.y
2346
+ value: 0
2347
+ objectReference: {fileID: 0}
2348
+ - target: {fileID: 635883761041762154, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2349
+ type: 3}
2350
+ propertyPath: m_LocalPosition.x
2351
+ value: 0
2352
+ objectReference: {fileID: 0}
2353
+ - target: {fileID: 635883761041762154, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2354
+ type: 3}
2355
+ propertyPath: m_LocalPosition.y
2356
+ value: 0
2357
+ objectReference: {fileID: 0}
2358
+ - target: {fileID: 635883761041762154, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2359
+ type: 3}
2360
+ propertyPath: m_LocalPosition.z
2361
+ value: 0
2362
+ objectReference: {fileID: 0}
2363
+ - target: {fileID: 635883761041762154, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2364
+ type: 3}
2365
+ propertyPath: m_LocalRotation.w
2366
+ value: 1
2367
+ objectReference: {fileID: 0}
2368
+ - target: {fileID: 635883761041762154, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2369
+ type: 3}
2370
+ propertyPath: m_LocalRotation.x
2371
+ value: 0
2372
+ objectReference: {fileID: 0}
2373
+ - target: {fileID: 635883761041762154, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2374
+ type: 3}
2375
+ propertyPath: m_LocalRotation.y
2376
+ value: 0
2377
+ objectReference: {fileID: 0}
2378
+ - target: {fileID: 635883761041762154, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2379
+ type: 3}
2380
+ propertyPath: m_LocalRotation.z
2381
+ value: 0
2382
+ objectReference: {fileID: 0}
2383
+ - target: {fileID: 635883761041762154, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2384
+ type: 3}
2385
+ propertyPath: m_AnchoredPosition.x
2386
+ value: 0
2387
+ objectReference: {fileID: 0}
2388
+ - target: {fileID: 635883761041762154, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2389
+ type: 3}
2390
+ propertyPath: m_AnchoredPosition.y
2391
+ value: 0
2392
+ objectReference: {fileID: 0}
2393
+ - target: {fileID: 635883761041762154, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2394
+ type: 3}
2395
+ propertyPath: m_LocalEulerAnglesHint.x
2396
+ value: 0
2397
+ objectReference: {fileID: 0}
2398
+ - target: {fileID: 635883761041762154, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2399
+ type: 3}
2400
+ propertyPath: m_LocalEulerAnglesHint.y
2401
+ value: 0
2402
+ objectReference: {fileID: 0}
2403
+ - target: {fileID: 635883761041762154, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2404
+ type: 3}
2405
+ propertyPath: m_LocalEulerAnglesHint.z
2406
+ value: 0
2407
+ objectReference: {fileID: 0}
2408
+ - target: {fileID: 635883761041762155, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2409
+ type: 3}
2410
+ propertyPath: m_Name
2411
+ value: HomePage
2412
+ objectReference: {fileID: 0}
2413
+ - target: {fileID: 635883761041762155, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2414
+ type: 3}
2415
+ propertyPath: m_IsActive
2416
+ value: 0
2417
+ objectReference: {fileID: 0}
2418
+ - target: {fileID: 635883761074615706, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2419
+ type: 3}
2420
+ propertyPath: m_SizeDelta.y
2421
+ value: 0
2422
+ objectReference: {fileID: 0}
2423
+ - target: {fileID: 635883761150512471, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2424
+ type: 3}
2425
+ propertyPath: m_AnchorMax.y
2426
+ value: 1
2427
+ objectReference: {fileID: 0}
2428
+ - target: {fileID: 635883761150512471, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2429
+ type: 3}
2430
+ propertyPath: m_AnchorMin.y
2431
+ value: 1
2432
+ objectReference: {fileID: 0}
2433
+ - target: {fileID: 635883761150512471, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2434
+ type: 3}
2435
+ propertyPath: m_SizeDelta.x
2436
+ value: 1858.6813
2437
+ objectReference: {fileID: 0}
2438
+ - target: {fileID: 635883761150512471, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2439
+ type: 3}
2440
+ propertyPath: m_AnchoredPosition.x
2441
+ value: 30
2442
+ objectReference: {fileID: 0}
2443
+ - target: {fileID: 635883761150512471, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2444
+ type: 3}
2445
+ propertyPath: m_AnchoredPosition.y
2446
+ value: -30
2447
+ objectReference: {fileID: 0}
2448
+ - target: {fileID: 1834816983988219068, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2449
+ type: 3}
2450
+ propertyPath: m_AnchorMax.y
2451
+ value: 1
2452
+ objectReference: {fileID: 0}
2453
+ - target: {fileID: 1834816983988219068, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2454
+ type: 3}
2455
+ propertyPath: m_AnchorMin.y
2456
+ value: 1
2457
+ objectReference: {fileID: 0}
2458
+ - target: {fileID: 1834816983988219068, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2459
+ type: 3}
2460
+ propertyPath: m_SizeDelta.x
2461
+ value: 586.22705
2462
+ objectReference: {fileID: 0}
2463
+ - target: {fileID: 1834816983988219068, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2464
+ type: 3}
2465
+ propertyPath: m_AnchoredPosition.x
2466
+ value: 343.11353
2467
+ objectReference: {fileID: 0}
2468
+ - target: {fileID: 1834816983988219068, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2469
+ type: 3}
2470
+ propertyPath: m_AnchoredPosition.y
2471
+ value: -90
2472
+ objectReference: {fileID: 0}
2473
+ - target: {fileID: 3743021558195763643, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2474
+ type: 3}
2475
+ propertyPath: m_AnchorMax.y
2476
+ value: 1
2477
+ objectReference: {fileID: 0}
2478
+ - target: {fileID: 3743021558195763643, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2479
+ type: 3}
2480
+ propertyPath: m_AnchorMin.y
2481
+ value: 1
2482
+ objectReference: {fileID: 0}
2483
+ - target: {fileID: 3743021558195763643, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2484
+ type: 3}
2485
+ propertyPath: m_SizeDelta.x
2486
+ value: 586.22705
2487
+ objectReference: {fileID: 0}
2488
+ - target: {fileID: 3743021558195763643, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2489
+ type: 3}
2490
+ propertyPath: m_AnchoredPosition.x
2491
+ value: 1575.5676
2492
+ objectReference: {fileID: 0}
2493
+ - target: {fileID: 3743021558195763643, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2494
+ type: 3}
2495
+ propertyPath: m_AnchoredPosition.y
2496
+ value: -90
2497
+ objectReference: {fileID: 0}
2498
+ - target: {fileID: 4756061754463545182, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2499
+ type: 3}
2500
+ propertyPath: m_AnchorMax.y
2501
+ value: 0
2502
+ objectReference: {fileID: 0}
2503
+ - target: {fileID: 4756061754463545182, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2504
+ type: 3}
2505
+ propertyPath: m_AnchorMin.y
2506
+ value: 0
2507
+ objectReference: {fileID: 0}
2508
+ - target: {fileID: 4756061754463545182, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2509
+ type: 3}
2510
+ propertyPath: m_SizeDelta.x
2511
+ value: 0
2512
+ objectReference: {fileID: 0}
2513
+ - target: {fileID: 4756061754463545182, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2514
+ type: 3}
2515
+ propertyPath: m_SizeDelta.y
2516
+ value: 0
2517
+ objectReference: {fileID: 0}
2518
+ - target: {fileID: 4756061754463545182, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2519
+ type: 3}
2520
+ propertyPath: m_AnchoredPosition.x
2521
+ value: 0
2522
+ objectReference: {fileID: 0}
2523
+ - target: {fileID: 4756061754463545182, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2524
+ type: 3}
2525
+ propertyPath: m_AnchoredPosition.y
2526
+ value: 0
2527
+ objectReference: {fileID: 0}
2528
+ - target: {fileID: 4756061755204858279, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2529
+ type: 3}
2530
+ propertyPath: m_AnchorMax.y
2531
+ value: 1
2532
+ objectReference: {fileID: 0}
2533
+ - target: {fileID: 4756061755204858279, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2534
+ type: 3}
2535
+ propertyPath: m_AnchorMin.y
2536
+ value: 1
2537
+ objectReference: {fileID: 0}
2538
+ - target: {fileID: 4756061755204858279, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2539
+ type: 3}
2540
+ propertyPath: m_SizeDelta.x
2541
+ value: 1858.6813
2542
+ objectReference: {fileID: 0}
2543
+ - target: {fileID: 4756061755204858279, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2544
+ type: 3}
2545
+ propertyPath: m_AnchoredPosition.x
2546
+ value: 959.34064
2547
+ objectReference: {fileID: 0}
2548
+ - target: {fileID: 4756061755204858279, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2549
+ type: 3}
2550
+ propertyPath: m_AnchoredPosition.y
2551
+ value: -180
2552
+ objectReference: {fileID: 0}
2553
+ - target: {fileID: 4756061755615642683, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2554
+ type: 3}
2555
+ propertyPath: m_AnchorMax.y
2556
+ value: 0
2557
+ objectReference: {fileID: 0}
2558
+ - target: {fileID: 4756061755615642683, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2559
+ type: 3}
2560
+ propertyPath: m_AnchorMin.y
2561
+ value: 0
2562
+ objectReference: {fileID: 0}
2563
+ - target: {fileID: 4756061755615642683, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2564
+ type: 3}
2565
+ propertyPath: m_SizeDelta.x
2566
+ value: 0
2567
+ objectReference: {fileID: 0}
2568
+ - target: {fileID: 4756061755615642683, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2569
+ type: 3}
2570
+ propertyPath: m_SizeDelta.y
2571
+ value: 0
2572
+ objectReference: {fileID: 0}
2573
+ - target: {fileID: 4756061755615642683, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2574
+ type: 3}
2575
+ propertyPath: m_AnchoredPosition.x
2576
+ value: 0
2577
+ objectReference: {fileID: 0}
2578
+ - target: {fileID: 4756061755615642683, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2579
+ type: 3}
2580
+ propertyPath: m_AnchoredPosition.y
2581
+ value: 0
2582
+ objectReference: {fileID: 0}
2583
+ - target: {fileID: 7448171850192747492, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2584
+ type: 3}
2585
+ propertyPath: m_AnchorMax.y
2586
+ value: 1
2587
+ objectReference: {fileID: 0}
2588
+ - target: {fileID: 7448171850192747492, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2589
+ type: 3}
2590
+ propertyPath: m_AnchorMin.y
2591
+ value: 1
2592
+ objectReference: {fileID: 0}
2593
+ - target: {fileID: 7448171850192747492, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2594
+ type: 3}
2595
+ propertyPath: m_SizeDelta.x
2596
+ value: 1918.6813
2597
+ objectReference: {fileID: 0}
2598
+ - target: {fileID: 7448171850192747492, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2599
+ type: 3}
2600
+ propertyPath: m_AnchoredPosition.x
2601
+ value: 959.34064
2602
+ objectReference: {fileID: 0}
2603
+ - target: {fileID: 7448171850192747492, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2604
+ type: 3}
2605
+ propertyPath: m_AnchoredPosition.y
2606
+ value: -510.9394
2607
+ objectReference: {fileID: 0}
2608
+ - target: {fileID: 8617699971359017492, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2609
+ type: 3}
2610
+ propertyPath: m_AnchorMax.y
2611
+ value: 1
2612
+ objectReference: {fileID: 0}
2613
+ - target: {fileID: 8617699971359017492, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2614
+ type: 3}
2615
+ propertyPath: m_AnchorMin.y
2616
+ value: 1
2617
+ objectReference: {fileID: 0}
2618
+ - target: {fileID: 8617699971359017492, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2619
+ type: 3}
2620
+ propertyPath: m_SizeDelta.x
2621
+ value: 1918.6813
2622
+ objectReference: {fileID: 0}
2623
+ - target: {fileID: 8617699971359017492, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2624
+ type: 3}
2625
+ propertyPath: m_AnchoredPosition.x
2626
+ value: 959.34064
2627
+ objectReference: {fileID: 0}
2628
+ - target: {fileID: 8617699971359017492, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2629
+ type: 3}
2630
+ propertyPath: m_AnchoredPosition.y
2631
+ value: -102.35655
2632
+ objectReference: {fileID: 0}
2633
+ - target: {fileID: 8876733867360316437, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2634
+ type: 3}
2635
+ propertyPath: m_AnchorMax.y
2636
+ value: 1
2637
+ objectReference: {fileID: 0}
2638
+ - target: {fileID: 8876733867360316437, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2639
+ type: 3}
2640
+ propertyPath: m_AnchorMin.y
2641
+ value: 1
2642
+ objectReference: {fileID: 0}
2643
+ - target: {fileID: 8876733867360316437, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2644
+ type: 3}
2645
+ propertyPath: m_SizeDelta.x
2646
+ value: 1918.6813
2647
+ objectReference: {fileID: 0}
2648
+ - target: {fileID: 8876733867360316437, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2649
+ type: 3}
2650
+ propertyPath: m_AnchoredPosition.x
2651
+ value: 959.34064
2652
+ objectReference: {fileID: 0}
2653
+ - target: {fileID: 8876733867360316437, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b,
2654
+ type: 3}
2655
+ propertyPath: m_AnchoredPosition.y
2656
+ value: -877.1307
2657
+ objectReference: {fileID: 0}
2658
+ m_RemovedComponents: []
2659
+ m_SourcePrefab: {fileID: 100100000, guid: 80d7aca177d2e46c99b3a9ad78ba1f4b, type: 3}