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
@@ -104,7 +104,7 @@ NavMeshSettings:
104
104
  serializedVersion: 2
105
105
  m_ObjectHideFlags: 0
106
106
  m_BuildSettings:
107
- serializedVersion: 3
107
+ serializedVersion: 2
108
108
  agentTypeID: 0
109
109
  agentRadius: 0.5
110
110
  agentHeight: 2
@@ -117,7 +117,7 @@ NavMeshSettings:
117
117
  cellSize: 0.16666667
118
118
  manualTileSize: 0
119
119
  tileSize: 256
120
- buildHeightMesh: 0
120
+ accuratePlacement: 0
121
121
  maxJobWorkers: 0
122
122
  preserveTilesOutsideBounds: 0
123
123
  debug:
@@ -152,9 +152,10 @@ 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: 1146333804}
156
156
  - {fileID: 4375801385269977617}
157
157
  m_Father: {fileID: 1098410761}
158
+ m_RootOrder: 0
158
159
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
159
160
  m_AnchorMin: {x: 0, y: 0}
160
161
  m_AnchorMax: {x: 1, y: 1}
@@ -175,6 +176,7 @@ MonoBehaviour:
175
176
  m_EditorClassIdentifier:
176
177
  root: {fileID: 1412789052}
177
178
  loadingBlocker: {fileID: 2307906666623612511}
179
+ InfoButton: {fileID: 1963281817}
178
180
  config: {fileID: 11400000, guid: 20ae64cfbc4704fb097a686ac336fb69, type: 2}
179
181
  --- !u!1 &458544362
180
182
  GameObject:
@@ -236,14 +238,225 @@ Transform:
236
238
  m_PrefabInstance: {fileID: 0}
237
239
  m_PrefabAsset: {fileID: 0}
238
240
  m_GameObject: {fileID: 458544362}
239
- serializedVersion: 2
240
241
  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
241
242
  m_LocalPosition: {x: 0, y: 0, z: 0}
242
243
  m_LocalScale: {x: 1, y: 1, z: 1}
243
244
  m_ConstrainProportionsScale: 0
244
245
  m_Children: []
245
246
  m_Father: {fileID: 0}
247
+ m_RootOrder: 1
248
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
249
+ --- !u!1 &591700683
250
+ GameObject:
251
+ m_ObjectHideFlags: 0
252
+ m_CorrespondingSourceObject: {fileID: 0}
253
+ m_PrefabInstance: {fileID: 0}
254
+ m_PrefabAsset: {fileID: 0}
255
+ serializedVersion: 6
256
+ m_Component:
257
+ - component: {fileID: 591700684}
258
+ - component: {fileID: 591700686}
259
+ - component: {fileID: 591700685}
260
+ m_Layer: 5
261
+ m_Name: Label
262
+ m_TagString: Untagged
263
+ m_Icon: {fileID: 0}
264
+ m_NavMeshLayer: 0
265
+ m_StaticEditorFlags: 0
266
+ m_IsActive: 1
267
+ --- !u!224 &591700684
268
+ RectTransform:
269
+ m_ObjectHideFlags: 0
270
+ m_CorrespondingSourceObject: {fileID: 0}
271
+ m_PrefabInstance: {fileID: 0}
272
+ m_PrefabAsset: {fileID: 0}
273
+ m_GameObject: {fileID: 591700683}
274
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
275
+ m_LocalPosition: {x: 0, y: 0, z: 0}
276
+ m_LocalScale: {x: 1, y: 1, z: 1}
277
+ m_ConstrainProportionsScale: 0
278
+ m_Children: []
279
+ m_Father: {fileID: 1146333804}
280
+ m_RootOrder: 3
281
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
282
+ m_AnchorMin: {x: 0, y: 1}
283
+ m_AnchorMax: {x: 1, y: 1}
284
+ m_AnchoredPosition: {x: 149.02502, y: -59.079987}
285
+ m_SizeDelta: {x: -476.588, y: 74.6392}
286
+ m_Pivot: {x: 0.5, y: 0.5}
287
+ --- !u!114 &591700685
288
+ MonoBehaviour:
289
+ m_ObjectHideFlags: 0
290
+ m_CorrespondingSourceObject: {fileID: 0}
291
+ m_PrefabInstance: {fileID: 0}
292
+ m_PrefabAsset: {fileID: 0}
293
+ m_GameObject: {fileID: 591700683}
294
+ m_Enabled: 1
295
+ m_EditorHideFlags: 0
296
+ m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
297
+ m_Name:
298
+ m_EditorClassIdentifier: Unity.TextMeshPro::TMPro.TextMeshProUGUI
299
+ m_Material: {fileID: 0}
300
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
301
+ m_RaycastTarget: 1
302
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
303
+ m_Maskable: 1
304
+ m_OnCullStateChanged:
305
+ m_PersistentCalls:
306
+ m_Calls: []
307
+ m_text: LOBBY MANAGEMENT SAMPLE
308
+ m_isRightToLeft: 0
309
+ m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
310
+ m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
311
+ m_fontSharedMaterials: []
312
+ m_fontMaterial: {fileID: 0}
313
+ m_fontMaterials: []
314
+ m_fontColor32:
315
+ serializedVersion: 2
316
+ rgba: 4294967295
317
+ m_fontColor: {r: 1, g: 1, b: 1, a: 1}
318
+ m_enableVertexGradient: 0
319
+ m_colorMode: 3
320
+ m_fontColorGradient:
321
+ topLeft: {r: 1, g: 1, b: 1, a: 1}
322
+ topRight: {r: 1, g: 1, b: 1, a: 1}
323
+ bottomLeft: {r: 1, g: 1, b: 1, a: 1}
324
+ bottomRight: {r: 1, g: 1, b: 1, a: 1}
325
+ m_fontColorGradientPreset: {fileID: 0}
326
+ m_spriteAsset: {fileID: 0}
327
+ m_tintAllSprites: 0
328
+ m_StyleSheet: {fileID: 0}
329
+ m_TextStyleHashCode: -1183493901
330
+ m_overrideHtmlColors: 0
331
+ m_faceColor:
332
+ serializedVersion: 2
333
+ rgba: 4294967295
334
+ m_fontSize: 40
335
+ m_fontSizeBase: 40
336
+ m_fontWeight: 400
337
+ m_enableAutoSizing: 1
338
+ m_fontSizeMin: 18
339
+ m_fontSizeMax: 40
340
+ m_fontStyle: 1
341
+ m_HorizontalAlignment: 4
342
+ m_VerticalAlignment: 512
343
+ m_textAlignment: 65535
344
+ m_characterSpacing: 0
345
+ m_wordSpacing: 0
346
+ m_lineSpacing: 0
347
+ m_lineSpacingMax: 0
348
+ m_paragraphSpacing: 0
349
+ m_charWidthMaxAdj: 0
350
+ m_enableWordWrapping: 0
351
+ m_wordWrappingRatios: 0.4
352
+ m_overflowMode: 0
353
+ m_linkedTextComponent: {fileID: 0}
354
+ parentLinkedComponent: {fileID: 0}
355
+ m_enableKerning: 0
356
+ m_enableExtraPadding: 0
357
+ checkPaddingRequired: 0
358
+ m_isRichText: 1
359
+ m_parseCtrlCharacters: 1
360
+ m_isOrthographic: 1
361
+ m_isCullingEnabled: 0
362
+ m_horizontalMapping: 0
363
+ m_verticalMapping: 0
364
+ m_uvLineOffset: 0
365
+ m_geometrySortingOrder: 0
366
+ m_IsTextObjectScaleStatic: 0
367
+ m_VertexBufferAutoSizeReduction: 0
368
+ m_useMaxVisibleDescender: 1
369
+ m_pageToDisplay: 1
370
+ m_margin: {x: 0, y: 0, z: 0, w: 0}
371
+ m_isUsingLegacyAnimationComponent: 0
372
+ m_isVolumetricText: 0
373
+ m_hasFontAssetChanged: 0
374
+ m_baseMaterial: {fileID: 0}
375
+ m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
376
+ --- !u!222 &591700686
377
+ CanvasRenderer:
378
+ m_ObjectHideFlags: 0
379
+ m_CorrespondingSourceObject: {fileID: 0}
380
+ m_PrefabInstance: {fileID: 0}
381
+ m_PrefabAsset: {fileID: 0}
382
+ m_GameObject: {fileID: 591700683}
383
+ m_CullTransparentMesh: 1
384
+ --- !u!1 &747978772
385
+ GameObject:
386
+ m_ObjectHideFlags: 0
387
+ m_CorrespondingSourceObject: {fileID: 0}
388
+ m_PrefabInstance: {fileID: 0}
389
+ m_PrefabAsset: {fileID: 0}
390
+ serializedVersion: 6
391
+ m_Component:
392
+ - component: {fileID: 747978773}
393
+ - component: {fileID: 747978775}
394
+ - component: {fileID: 747978774}
395
+ m_Layer: 5
396
+ m_Name: Logo
397
+ m_TagString: Untagged
398
+ m_Icon: {fileID: 0}
399
+ m_NavMeshLayer: 0
400
+ m_StaticEditorFlags: 0
401
+ m_IsActive: 1
402
+ --- !u!224 &747978773
403
+ RectTransform:
404
+ m_ObjectHideFlags: 0
405
+ m_CorrespondingSourceObject: {fileID: 0}
406
+ m_PrefabInstance: {fileID: 0}
407
+ m_PrefabAsset: {fileID: 0}
408
+ m_GameObject: {fileID: 747978772}
409
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
410
+ m_LocalPosition: {x: 0, y: 0, z: 0}
411
+ m_LocalScale: {x: 1, y: 1, z: 1}
412
+ m_ConstrainProportionsScale: 0
413
+ m_Children: []
414
+ m_Father: {fileID: 1146333804}
415
+ m_RootOrder: 1
246
416
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
417
+ m_AnchorMin: {x: 0, y: 1}
418
+ m_AnchorMax: {x: 0, y: 1}
419
+ m_AnchoredPosition: {x: 193, y: -57}
420
+ m_SizeDelta: {x: 332.7265, y: 70.485}
421
+ m_Pivot: {x: 0.5, y: 0.5}
422
+ --- !u!114 &747978774
423
+ MonoBehaviour:
424
+ m_ObjectHideFlags: 0
425
+ m_CorrespondingSourceObject: {fileID: 0}
426
+ m_PrefabInstance: {fileID: 0}
427
+ m_PrefabAsset: {fileID: 0}
428
+ m_GameObject: {fileID: 747978772}
429
+ m_Enabled: 1
430
+ m_EditorHideFlags: 0
431
+ m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
432
+ m_Name:
433
+ m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image
434
+ m_Material: {fileID: 0}
435
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
436
+ m_RaycastTarget: 1
437
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
438
+ m_Maskable: 1
439
+ m_OnCullStateChanged:
440
+ m_PersistentCalls:
441
+ m_Calls: []
442
+ m_Sprite: {fileID: 21300000, guid: 722fe80901bc1ce44aa0e7bb97a3dcef, type: 3}
443
+ m_Type: 0
444
+ m_PreserveAspect: 1
445
+ m_FillCenter: 1
446
+ m_FillMethod: 4
447
+ m_FillAmount: 1
448
+ m_FillClockwise: 1
449
+ m_FillOrigin: 0
450
+ m_UseSpriteMesh: 0
451
+ m_PixelsPerUnitMultiplier: 1
452
+ --- !u!222 &747978775
453
+ CanvasRenderer:
454
+ m_ObjectHideFlags: 0
455
+ m_CorrespondingSourceObject: {fileID: 0}
456
+ m_PrefabInstance: {fileID: 0}
457
+ m_PrefabAsset: {fileID: 0}
458
+ m_GameObject: {fileID: 747978772}
459
+ m_CullTransparentMesh: 1
247
460
  --- !u!1 &789323071
248
461
  GameObject:
249
462
  m_ObjectHideFlags: 0
@@ -273,6 +486,7 @@ RectTransform:
273
486
  m_ConstrainProportionsScale: 0
274
487
  m_Children: []
275
488
  m_Father: {fileID: 1412789052}
489
+ m_RootOrder: 0
276
490
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
277
491
  m_AnchorMin: {x: 0.5, y: 0.5}
278
492
  m_AnchorMax: {x: 0.5, y: 0.5}
@@ -355,9 +569,7 @@ Canvas:
355
569
  m_OverrideSorting: 0
356
570
  m_OverridePixelPerfect: 0
357
571
  m_SortingBucketNormalizedSize: 0
358
- m_VertexColorAlwaysGammaSpace: 0
359
572
  m_AdditionalShaderChannelsFlag: 25
360
- m_UpdateRectTransformForStandalone: 0
361
573
  m_SortingLayerID: 0
362
574
  m_SortingOrder: 0
363
575
  m_TargetDisplay: 0
@@ -375,12 +587,105 @@ RectTransform:
375
587
  m_Children:
376
588
  - {fileID: 32595363}
377
589
  m_Father: {fileID: 0}
590
+ m_RootOrder: 0
378
591
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
379
592
  m_AnchorMin: {x: 0, y: 0}
380
593
  m_AnchorMax: {x: 0, y: 0}
381
594
  m_AnchoredPosition: {x: 0, y: 0}
382
595
  m_SizeDelta: {x: 0, y: 0}
383
596
  m_Pivot: {x: 0, y: 0}
597
+ --- !u!224 &1111545816 stripped
598
+ RectTransform:
599
+ m_CorrespondingSourceObject: {fileID: 635883761041762154, guid: fb97f7738d40b4eab877502e69e313d8,
600
+ type: 3}
601
+ m_PrefabInstance: {fileID: 796865666788231503}
602
+ m_PrefabAsset: {fileID: 0}
603
+ --- !u!1 &1146333803
604
+ GameObject:
605
+ m_ObjectHideFlags: 0
606
+ m_CorrespondingSourceObject: {fileID: 0}
607
+ m_PrefabInstance: {fileID: 0}
608
+ m_PrefabAsset: {fileID: 0}
609
+ serializedVersion: 6
610
+ m_Component:
611
+ - component: {fileID: 1146333804}
612
+ - component: {fileID: 1146333806}
613
+ - component: {fileID: 1146333805}
614
+ m_Layer: 5
615
+ m_Name: Container
616
+ m_TagString: Untagged
617
+ m_Icon: {fileID: 0}
618
+ m_NavMeshLayer: 0
619
+ m_StaticEditorFlags: 0
620
+ m_IsActive: 1
621
+ --- !u!224 &1146333804
622
+ RectTransform:
623
+ m_ObjectHideFlags: 0
624
+ m_CorrespondingSourceObject: {fileID: 0}
625
+ m_PrefabInstance: {fileID: 0}
626
+ m_PrefabAsset: {fileID: 0}
627
+ m_GameObject: {fileID: 1146333803}
628
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
629
+ m_LocalPosition: {x: 0, y: 0, z: 0}
630
+ m_LocalScale: {x: 1, y: 1, z: 1}
631
+ m_ConstrainProportionsScale: 0
632
+ m_Children:
633
+ - {fileID: 1412789052}
634
+ - {fileID: 747978773}
635
+ - {fileID: 1963281816}
636
+ - {fileID: 591700684}
637
+ m_Father: {fileID: 32595363}
638
+ m_RootOrder: 0
639
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
640
+ m_AnchorMin: {x: 0, y: 0}
641
+ m_AnchorMax: {x: 1, y: 1}
642
+ m_AnchoredPosition: {x: 0.00012207031, y: 0}
643
+ m_SizeDelta: {x: 0, y: 0}
644
+ m_Pivot: {x: 0.5, y: 0.5}
645
+ --- !u!114 &1146333805
646
+ MonoBehaviour:
647
+ m_ObjectHideFlags: 0
648
+ m_CorrespondingSourceObject: {fileID: 0}
649
+ m_PrefabInstance: {fileID: 0}
650
+ m_PrefabAsset: {fileID: 0}
651
+ m_GameObject: {fileID: 1146333803}
652
+ m_Enabled: 1
653
+ m_EditorHideFlags: 0
654
+ m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
655
+ m_Name:
656
+ m_EditorClassIdentifier:
657
+ m_Material: {fileID: 0}
658
+ m_Color: {r: 0.6981132, g: 0.6981132, b: 0.6981132, a: 1}
659
+ m_RaycastTarget: 1
660
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
661
+ m_Maskable: 1
662
+ m_OnCullStateChanged:
663
+ m_PersistentCalls:
664
+ m_Calls: []
665
+ m_Sprite: {fileID: 21300000, guid: e669acd2805965449b35eb0938af6d2e, type: 3}
666
+ m_Type: 0
667
+ m_PreserveAspect: 0
668
+ m_FillCenter: 1
669
+ m_FillMethod: 4
670
+ m_FillAmount: 1
671
+ m_FillClockwise: 1
672
+ m_FillOrigin: 0
673
+ m_UseSpriteMesh: 0
674
+ m_PixelsPerUnitMultiplier: 1
675
+ --- !u!222 &1146333806
676
+ CanvasRenderer:
677
+ m_ObjectHideFlags: 0
678
+ m_CorrespondingSourceObject: {fileID: 0}
679
+ m_PrefabInstance: {fileID: 0}
680
+ m_PrefabAsset: {fileID: 0}
681
+ m_GameObject: {fileID: 1146333803}
682
+ m_CullTransparentMesh: 1
683
+ --- !u!224 &1310764734 stripped
684
+ RectTransform:
685
+ m_CorrespondingSourceObject: {fileID: 635883761041762154, guid: 5269a63f3bc10419dae45a6b40e2ff14,
686
+ type: 3}
687
+ m_PrefabInstance: {fileID: 20509729160681462}
688
+ m_PrefabAsset: {fileID: 0}
384
689
  --- !u!1 &1412789051
385
690
  GameObject:
386
691
  m_ObjectHideFlags: 0
@@ -391,7 +696,6 @@ GameObject:
391
696
  m_Component:
392
697
  - component: {fileID: 1412789052}
393
698
  - component: {fileID: 1412789054}
394
- - component: {fileID: 1412789053}
395
699
  m_Layer: 5
396
700
  m_Name: Content
397
701
  m_TagString: Untagged
@@ -406,42 +710,145 @@ RectTransform:
406
710
  m_PrefabInstance: {fileID: 0}
407
711
  m_PrefabAsset: {fileID: 0}
408
712
  m_GameObject: {fileID: 1412789051}
409
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
713
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
410
714
  m_LocalPosition: {x: 0, y: 0, z: 0}
411
715
  m_LocalScale: {x: 1, y: 1, z: 1}
412
716
  m_ConstrainProportionsScale: 0
413
717
  m_Children:
414
718
  - {fileID: 789323072}
415
- m_Father: {fileID: 32595363}
719
+ - {fileID: 1310764734}
720
+ - {fileID: 1111545816}
721
+ - {fileID: 1966137870880775321}
722
+ - {fileID: 4264650982460278158}
723
+ - {fileID: 1857386085}
724
+ m_Father: {fileID: 1146333804}
725
+ m_RootOrder: 0
416
726
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
417
727
  m_AnchorMin: {x: 0, y: 0}
418
728
  m_AnchorMax: {x: 1, y: 1}
419
- m_AnchoredPosition: {x: 0, y: 0}
420
- m_SizeDelta: {x: 0, y: 0}
729
+ m_AnchoredPosition: {x: 0, y: -65}
730
+ m_SizeDelta: {x: 0, y: -130}
421
731
  m_Pivot: {x: 0.5, y: 0.5}
422
- --- !u!114 &1412789053
423
- MonoBehaviour:
732
+ --- !u!222 &1412789054
733
+ CanvasRenderer:
424
734
  m_ObjectHideFlags: 0
425
735
  m_CorrespondingSourceObject: {fileID: 0}
426
736
  m_PrefabInstance: {fileID: 0}
427
737
  m_PrefabAsset: {fileID: 0}
428
738
  m_GameObject: {fileID: 1412789051}
739
+ m_CullTransparentMesh: 1
740
+ --- !u!224 &1857386085 stripped
741
+ RectTransform:
742
+ m_CorrespondingSourceObject: {fileID: 635883761041762154, guid: 9f406a5d8cdc9484ea369af99d372cca,
743
+ type: 3}
744
+ m_PrefabInstance: {fileID: 7455043092982422555}
745
+ m_PrefabAsset: {fileID: 0}
746
+ --- !u!1 &1963281815
747
+ GameObject:
748
+ m_ObjectHideFlags: 0
749
+ m_CorrespondingSourceObject: {fileID: 0}
750
+ m_PrefabInstance: {fileID: 0}
751
+ m_PrefabAsset: {fileID: 0}
752
+ serializedVersion: 6
753
+ m_Component:
754
+ - component: {fileID: 1963281816}
755
+ - component: {fileID: 1963281819}
756
+ - component: {fileID: 1963281818}
757
+ - component: {fileID: 1963281817}
758
+ m_Layer: 5
759
+ m_Name: ButtonInfo
760
+ m_TagString: Untagged
761
+ m_Icon: {fileID: 0}
762
+ m_NavMeshLayer: 0
763
+ m_StaticEditorFlags: 0
764
+ m_IsActive: 1
765
+ --- !u!224 &1963281816
766
+ RectTransform:
767
+ m_ObjectHideFlags: 0
768
+ m_CorrespondingSourceObject: {fileID: 0}
769
+ m_PrefabInstance: {fileID: 0}
770
+ m_PrefabAsset: {fileID: 0}
771
+ m_GameObject: {fileID: 1963281815}
772
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
773
+ m_LocalPosition: {x: 0, y: 0, z: 0}
774
+ m_LocalScale: {x: 1, y: 1, z: 1}
775
+ m_ConstrainProportionsScale: 0
776
+ m_Children: []
777
+ m_Father: {fileID: 1146333804}
778
+ m_RootOrder: 2
779
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
780
+ m_AnchorMin: {x: 1, y: 1}
781
+ m_AnchorMax: {x: 1, y: 1}
782
+ m_AnchoredPosition: {x: -47.9, y: -59.08}
783
+ m_SizeDelta: {x: 52.119, y: 51.6102}
784
+ m_Pivot: {x: 0.5, y: 0.5}
785
+ --- !u!114 &1963281817
786
+ MonoBehaviour:
787
+ m_ObjectHideFlags: 0
788
+ m_CorrespondingSourceObject: {fileID: 0}
789
+ m_PrefabInstance: {fileID: 0}
790
+ m_PrefabAsset: {fileID: 0}
791
+ m_GameObject: {fileID: 1963281815}
792
+ m_Enabled: 1
793
+ m_EditorHideFlags: 0
794
+ m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
795
+ m_Name:
796
+ m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Button
797
+ m_Navigation:
798
+ m_Mode: 3
799
+ m_WrapAround: 0
800
+ m_SelectOnUp: {fileID: 0}
801
+ m_SelectOnDown: {fileID: 0}
802
+ m_SelectOnLeft: {fileID: 0}
803
+ m_SelectOnRight: {fileID: 0}
804
+ m_Transition: 1
805
+ m_Colors:
806
+ m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
807
+ m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
808
+ m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
809
+ m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
810
+ m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
811
+ m_ColorMultiplier: 1
812
+ m_FadeDuration: 0.1
813
+ m_SpriteState:
814
+ m_HighlightedSprite: {fileID: 0}
815
+ m_PressedSprite: {fileID: 0}
816
+ m_SelectedSprite: {fileID: 0}
817
+ m_DisabledSprite: {fileID: 0}
818
+ m_AnimationTriggers:
819
+ m_NormalTrigger: Normal
820
+ m_HighlightedTrigger: Highlighted
821
+ m_PressedTrigger: Pressed
822
+ m_SelectedTrigger: Selected
823
+ m_DisabledTrigger: Disabled
824
+ m_Interactable: 1
825
+ m_TargetGraphic: {fileID: 1963281818}
826
+ m_OnClick:
827
+ m_PersistentCalls:
828
+ m_Calls: []
829
+ --- !u!114 &1963281818
830
+ MonoBehaviour:
831
+ m_ObjectHideFlags: 0
832
+ m_CorrespondingSourceObject: {fileID: 0}
833
+ m_PrefabInstance: {fileID: 0}
834
+ m_PrefabAsset: {fileID: 0}
835
+ m_GameObject: {fileID: 1963281815}
429
836
  m_Enabled: 1
430
837
  m_EditorHideFlags: 0
431
838
  m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
432
839
  m_Name:
433
- m_EditorClassIdentifier:
840
+ m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image
434
841
  m_Material: {fileID: 0}
435
- m_Color: {r: 0, g: 0, b: 0, a: 1}
842
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
436
843
  m_RaycastTarget: 1
437
844
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
438
845
  m_Maskable: 1
439
846
  m_OnCullStateChanged:
440
847
  m_PersistentCalls:
441
848
  m_Calls: []
442
- m_Sprite: {fileID: 0}
849
+ m_Sprite: {fileID: 21300000, guid: be0e2f89747107f4db87e4b22aee2437, type: 3}
443
850
  m_Type: 0
444
- m_PreserveAspect: 0
851
+ m_PreserveAspect: 1
445
852
  m_FillCenter: 1
446
853
  m_FillMethod: 4
447
854
  m_FillAmount: 1
@@ -449,13 +856,13 @@ MonoBehaviour:
449
856
  m_FillOrigin: 0
450
857
  m_UseSpriteMesh: 0
451
858
  m_PixelsPerUnitMultiplier: 1
452
- --- !u!222 &1412789054
859
+ --- !u!222 &1963281819
453
860
  CanvasRenderer:
454
861
  m_ObjectHideFlags: 0
455
862
  m_CorrespondingSourceObject: {fileID: 0}
456
863
  m_PrefabInstance: {fileID: 0}
457
864
  m_PrefabAsset: {fileID: 0}
458
- m_GameObject: {fileID: 1412789051}
865
+ m_GameObject: {fileID: 1963281815}
459
866
  m_CullTransparentMesh: 1
460
867
  --- !u!1 &2021928063
461
868
  GameObject:
@@ -497,17 +904,9 @@ Camera:
497
904
  m_projectionMatrixMode: 1
498
905
  m_GateFitMode: 2
499
906
  m_FOVAxisMode: 0
500
- m_Iso: 200
501
- m_ShutterSpeed: 0.005
502
- m_Aperture: 16
503
- m_FocusDistance: 10
504
- m_FocalLength: 50
505
- m_BladeCount: 5
506
- m_Curvature: {x: 2, y: 11}
507
- m_BarrelClipping: 0.25
508
- m_Anamorphism: 0
509
907
  m_SensorSize: {x: 36, y: 24}
510
908
  m_LensShift: {x: 0, y: 0}
909
+ m_FocalLength: 50
511
910
  m_NormalizedViewPortRect:
512
911
  serializedVersion: 2
513
912
  x: 0
@@ -541,14 +940,312 @@ Transform:
541
940
  m_PrefabInstance: {fileID: 0}
542
941
  m_PrefabAsset: {fileID: 0}
543
942
  m_GameObject: {fileID: 2021928063}
544
- serializedVersion: 2
545
943
  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
546
944
  m_LocalPosition: {x: 0, y: 0, z: -10}
547
945
  m_LocalScale: {x: 1, y: 1, z: 1}
548
946
  m_ConstrainProportionsScale: 0
549
947
  m_Children: []
550
948
  m_Father: {fileID: 0}
949
+ m_RootOrder: 2
551
950
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
951
+ --- !u!1001 &20509729160681462
952
+ PrefabInstance:
953
+ m_ObjectHideFlags: 0
954
+ serializedVersion: 2
955
+ m_Modification:
956
+ m_TransformParent: {fileID: 1412789052}
957
+ m_Modifications:
958
+ - target: {fileID: 474155106402287543, guid: 5269a63f3bc10419dae45a6b40e2ff14,
959
+ type: 3}
960
+ propertyPath: m_AnchorMax.y
961
+ value: 1
962
+ objectReference: {fileID: 0}
963
+ - target: {fileID: 474155106402287543, guid: 5269a63f3bc10419dae45a6b40e2ff14,
964
+ type: 3}
965
+ propertyPath: m_AnchorMin.y
966
+ value: 1
967
+ objectReference: {fileID: 0}
968
+ - target: {fileID: 474155106402287543, guid: 5269a63f3bc10419dae45a6b40e2ff14,
969
+ type: 3}
970
+ propertyPath: m_SizeDelta.x
971
+ value: 322.75305
972
+ objectReference: {fileID: 0}
973
+ - target: {fileID: 474155106402287543, guid: 5269a63f3bc10419dae45a6b40e2ff14,
974
+ type: 3}
975
+ propertyPath: m_AnchoredPosition.x
976
+ value: 161.37653
977
+ objectReference: {fileID: 0}
978
+ - target: {fileID: 474155106402287543, guid: 5269a63f3bc10419dae45a6b40e2ff14,
979
+ type: 3}
980
+ propertyPath: m_AnchoredPosition.y
981
+ value: -70
982
+ objectReference: {fileID: 0}
983
+ - target: {fileID: 635883761041762154, guid: 5269a63f3bc10419dae45a6b40e2ff14,
984
+ type: 3}
985
+ propertyPath: m_Pivot.x
986
+ value: 0.5
987
+ objectReference: {fileID: 0}
988
+ - target: {fileID: 635883761041762154, guid: 5269a63f3bc10419dae45a6b40e2ff14,
989
+ type: 3}
990
+ propertyPath: m_Pivot.y
991
+ value: 0.5
992
+ objectReference: {fileID: 0}
993
+ - target: {fileID: 635883761041762154, guid: 5269a63f3bc10419dae45a6b40e2ff14,
994
+ type: 3}
995
+ propertyPath: m_RootOrder
996
+ value: 1
997
+ objectReference: {fileID: 0}
998
+ - target: {fileID: 635883761041762154, guid: 5269a63f3bc10419dae45a6b40e2ff14,
999
+ type: 3}
1000
+ propertyPath: m_AnchorMax.x
1001
+ value: 1
1002
+ objectReference: {fileID: 0}
1003
+ - target: {fileID: 635883761041762154, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1004
+ type: 3}
1005
+ propertyPath: m_AnchorMax.y
1006
+ value: 1
1007
+ objectReference: {fileID: 0}
1008
+ - target: {fileID: 635883761041762154, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1009
+ type: 3}
1010
+ propertyPath: m_AnchorMin.x
1011
+ value: 0
1012
+ objectReference: {fileID: 0}
1013
+ - target: {fileID: 635883761041762154, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1014
+ type: 3}
1015
+ propertyPath: m_AnchorMin.y
1016
+ value: 0
1017
+ objectReference: {fileID: 0}
1018
+ - target: {fileID: 635883761041762154, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1019
+ type: 3}
1020
+ propertyPath: m_SizeDelta.x
1021
+ value: 0
1022
+ objectReference: {fileID: 0}
1023
+ - target: {fileID: 635883761041762154, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1024
+ type: 3}
1025
+ propertyPath: m_SizeDelta.y
1026
+ value: 0
1027
+ objectReference: {fileID: 0}
1028
+ - target: {fileID: 635883761041762154, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1029
+ type: 3}
1030
+ propertyPath: m_LocalPosition.x
1031
+ value: 0
1032
+ objectReference: {fileID: 0}
1033
+ - target: {fileID: 635883761041762154, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1034
+ type: 3}
1035
+ propertyPath: m_LocalPosition.y
1036
+ value: 0
1037
+ objectReference: {fileID: 0}
1038
+ - target: {fileID: 635883761041762154, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1039
+ type: 3}
1040
+ propertyPath: m_LocalPosition.z
1041
+ value: 0
1042
+ objectReference: {fileID: 0}
1043
+ - target: {fileID: 635883761041762154, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1044
+ type: 3}
1045
+ propertyPath: m_LocalRotation.w
1046
+ value: 1
1047
+ objectReference: {fileID: 0}
1048
+ - target: {fileID: 635883761041762154, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1049
+ type: 3}
1050
+ propertyPath: m_LocalRotation.x
1051
+ value: 0
1052
+ objectReference: {fileID: 0}
1053
+ - target: {fileID: 635883761041762154, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1054
+ type: 3}
1055
+ propertyPath: m_LocalRotation.y
1056
+ value: 0
1057
+ objectReference: {fileID: 0}
1058
+ - target: {fileID: 635883761041762154, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1059
+ type: 3}
1060
+ propertyPath: m_LocalRotation.z
1061
+ value: 0
1062
+ objectReference: {fileID: 0}
1063
+ - target: {fileID: 635883761041762154, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1064
+ type: 3}
1065
+ propertyPath: m_AnchoredPosition.x
1066
+ value: 0
1067
+ objectReference: {fileID: 0}
1068
+ - target: {fileID: 635883761041762154, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1069
+ type: 3}
1070
+ propertyPath: m_AnchoredPosition.y
1071
+ value: 0
1072
+ objectReference: {fileID: 0}
1073
+ - target: {fileID: 635883761041762154, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1074
+ type: 3}
1075
+ propertyPath: m_LocalEulerAnglesHint.x
1076
+ value: 0
1077
+ objectReference: {fileID: 0}
1078
+ - target: {fileID: 635883761041762154, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1079
+ type: 3}
1080
+ propertyPath: m_LocalEulerAnglesHint.y
1081
+ value: 0
1082
+ objectReference: {fileID: 0}
1083
+ - target: {fileID: 635883761041762154, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1084
+ type: 3}
1085
+ propertyPath: m_LocalEulerAnglesHint.z
1086
+ value: 0
1087
+ objectReference: {fileID: 0}
1088
+ - target: {fileID: 635883761041762155, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1089
+ type: 3}
1090
+ propertyPath: m_Name
1091
+ value: CreateLobbyDisplay
1092
+ objectReference: {fileID: 0}
1093
+ - target: {fileID: 635883761041762155, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1094
+ type: 3}
1095
+ propertyPath: m_IsActive
1096
+ value: 0
1097
+ objectReference: {fileID: 0}
1098
+ - target: {fileID: 5129956557336500071, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1099
+ type: 3}
1100
+ propertyPath: m_AnchorMax.y
1101
+ value: 1
1102
+ objectReference: {fileID: 0}
1103
+ - target: {fileID: 5129956557336500071, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1104
+ type: 3}
1105
+ propertyPath: m_AnchorMin.y
1106
+ value: 1
1107
+ objectReference: {fileID: 0}
1108
+ - target: {fileID: 5129956557336500071, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1109
+ type: 3}
1110
+ propertyPath: m_SizeDelta.x
1111
+ value: 322.75305
1112
+ objectReference: {fileID: 0}
1113
+ - target: {fileID: 5129956557336500071, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1114
+ type: 3}
1115
+ propertyPath: m_AnchoredPosition.x
1116
+ value: 504.12958
1117
+ objectReference: {fileID: 0}
1118
+ - target: {fileID: 5129956557336500071, guid: 5269a63f3bc10419dae45a6b40e2ff14,
1119
+ type: 3}
1120
+ propertyPath: m_AnchoredPosition.y
1121
+ value: -70
1122
+ objectReference: {fileID: 0}
1123
+ m_RemovedComponents: []
1124
+ m_SourcePrefab: {fileID: 100100000, guid: 5269a63f3bc10419dae45a6b40e2ff14, type: 3}
1125
+ --- !u!1001 &796865666788231503
1126
+ PrefabInstance:
1127
+ m_ObjectHideFlags: 0
1128
+ serializedVersion: 2
1129
+ m_Modification:
1130
+ m_TransformParent: {fileID: 1412789052}
1131
+ m_Modifications:
1132
+ - target: {fileID: 635883761041762154, guid: fb97f7738d40b4eab877502e69e313d8,
1133
+ type: 3}
1134
+ propertyPath: m_Pivot.x
1135
+ value: 0.5
1136
+ objectReference: {fileID: 0}
1137
+ - target: {fileID: 635883761041762154, guid: fb97f7738d40b4eab877502e69e313d8,
1138
+ type: 3}
1139
+ propertyPath: m_Pivot.y
1140
+ value: 0.5
1141
+ objectReference: {fileID: 0}
1142
+ - target: {fileID: 635883761041762154, guid: fb97f7738d40b4eab877502e69e313d8,
1143
+ type: 3}
1144
+ propertyPath: m_RootOrder
1145
+ value: 2
1146
+ objectReference: {fileID: 0}
1147
+ - target: {fileID: 635883761041762154, guid: fb97f7738d40b4eab877502e69e313d8,
1148
+ type: 3}
1149
+ propertyPath: m_AnchorMax.x
1150
+ value: 1
1151
+ objectReference: {fileID: 0}
1152
+ - target: {fileID: 635883761041762154, guid: fb97f7738d40b4eab877502e69e313d8,
1153
+ type: 3}
1154
+ propertyPath: m_AnchorMax.y
1155
+ value: 1
1156
+ objectReference: {fileID: 0}
1157
+ - target: {fileID: 635883761041762154, guid: fb97f7738d40b4eab877502e69e313d8,
1158
+ type: 3}
1159
+ propertyPath: m_AnchorMin.x
1160
+ value: 0
1161
+ objectReference: {fileID: 0}
1162
+ - target: {fileID: 635883761041762154, guid: fb97f7738d40b4eab877502e69e313d8,
1163
+ type: 3}
1164
+ propertyPath: m_AnchorMin.y
1165
+ value: 0
1166
+ objectReference: {fileID: 0}
1167
+ - target: {fileID: 635883761041762154, guid: fb97f7738d40b4eab877502e69e313d8,
1168
+ type: 3}
1169
+ propertyPath: m_SizeDelta.x
1170
+ value: 0
1171
+ objectReference: {fileID: 0}
1172
+ - target: {fileID: 635883761041762154, guid: fb97f7738d40b4eab877502e69e313d8,
1173
+ type: 3}
1174
+ propertyPath: m_SizeDelta.y
1175
+ value: 0
1176
+ objectReference: {fileID: 0}
1177
+ - target: {fileID: 635883761041762154, guid: fb97f7738d40b4eab877502e69e313d8,
1178
+ type: 3}
1179
+ propertyPath: m_LocalPosition.x
1180
+ value: 0
1181
+ objectReference: {fileID: 0}
1182
+ - target: {fileID: 635883761041762154, guid: fb97f7738d40b4eab877502e69e313d8,
1183
+ type: 3}
1184
+ propertyPath: m_LocalPosition.y
1185
+ value: 0
1186
+ objectReference: {fileID: 0}
1187
+ - target: {fileID: 635883761041762154, guid: fb97f7738d40b4eab877502e69e313d8,
1188
+ type: 3}
1189
+ propertyPath: m_LocalPosition.z
1190
+ value: 0
1191
+ objectReference: {fileID: 0}
1192
+ - target: {fileID: 635883761041762154, guid: fb97f7738d40b4eab877502e69e313d8,
1193
+ type: 3}
1194
+ propertyPath: m_LocalRotation.w
1195
+ value: 1
1196
+ objectReference: {fileID: 0}
1197
+ - target: {fileID: 635883761041762154, guid: fb97f7738d40b4eab877502e69e313d8,
1198
+ type: 3}
1199
+ propertyPath: m_LocalRotation.x
1200
+ value: 0
1201
+ objectReference: {fileID: 0}
1202
+ - target: {fileID: 635883761041762154, guid: fb97f7738d40b4eab877502e69e313d8,
1203
+ type: 3}
1204
+ propertyPath: m_LocalRotation.y
1205
+ value: 0
1206
+ objectReference: {fileID: 0}
1207
+ - target: {fileID: 635883761041762154, guid: fb97f7738d40b4eab877502e69e313d8,
1208
+ type: 3}
1209
+ propertyPath: m_LocalRotation.z
1210
+ value: 0
1211
+ objectReference: {fileID: 0}
1212
+ - target: {fileID: 635883761041762154, guid: fb97f7738d40b4eab877502e69e313d8,
1213
+ type: 3}
1214
+ propertyPath: m_AnchoredPosition.x
1215
+ value: 0
1216
+ objectReference: {fileID: 0}
1217
+ - target: {fileID: 635883761041762154, guid: fb97f7738d40b4eab877502e69e313d8,
1218
+ type: 3}
1219
+ propertyPath: m_AnchoredPosition.y
1220
+ value: 0
1221
+ objectReference: {fileID: 0}
1222
+ - target: {fileID: 635883761041762154, guid: fb97f7738d40b4eab877502e69e313d8,
1223
+ type: 3}
1224
+ propertyPath: m_LocalEulerAnglesHint.x
1225
+ value: 0
1226
+ objectReference: {fileID: 0}
1227
+ - target: {fileID: 635883761041762154, guid: fb97f7738d40b4eab877502e69e313d8,
1228
+ type: 3}
1229
+ propertyPath: m_LocalEulerAnglesHint.y
1230
+ value: 0
1231
+ objectReference: {fileID: 0}
1232
+ - target: {fileID: 635883761041762154, guid: fb97f7738d40b4eab877502e69e313d8,
1233
+ type: 3}
1234
+ propertyPath: m_LocalEulerAnglesHint.z
1235
+ value: 0
1236
+ objectReference: {fileID: 0}
1237
+ - target: {fileID: 635883761041762155, guid: fb97f7738d40b4eab877502e69e313d8,
1238
+ type: 3}
1239
+ propertyPath: m_Name
1240
+ value: HomePage
1241
+ objectReference: {fileID: 0}
1242
+ - target: {fileID: 635883761041762155, guid: fb97f7738d40b4eab877502e69e313d8,
1243
+ type: 3}
1244
+ propertyPath: m_IsActive
1245
+ value: 0
1246
+ objectReference: {fileID: 0}
1247
+ m_RemovedComponents: []
1248
+ m_SourcePrefab: {fileID: 100100000, guid: fb97f7738d40b4eab877502e69e313d8, type: 3}
552
1249
  --- !u!222 &1200338147386144915
553
1250
  CanvasRenderer:
554
1251
  m_ObjectHideFlags: 0
@@ -557,6 +1254,186 @@ CanvasRenderer:
557
1254
  m_PrefabAsset: {fileID: 0}
558
1255
  m_GameObject: {fileID: 4727660212797090796}
559
1256
  m_CullTransparentMesh: 1
1257
+ --- !u!1001 &1966137870880775320
1258
+ PrefabInstance:
1259
+ m_ObjectHideFlags: 0
1260
+ serializedVersion: 2
1261
+ m_Modification:
1262
+ m_TransformParent: {fileID: 1412789052}
1263
+ m_Modifications:
1264
+ - target: {fileID: 474155106402287543, guid: 4504226d85da74f74be7299dd148420d,
1265
+ type: 3}
1266
+ propertyPath: m_AnchorMax.y
1267
+ value: 1
1268
+ objectReference: {fileID: 0}
1269
+ - target: {fileID: 474155106402287543, guid: 4504226d85da74f74be7299dd148420d,
1270
+ type: 3}
1271
+ propertyPath: m_AnchorMin.y
1272
+ value: 1
1273
+ objectReference: {fileID: 0}
1274
+ - target: {fileID: 474155106402287543, guid: 4504226d85da74f74be7299dd148420d,
1275
+ type: 3}
1276
+ propertyPath: m_SizeDelta.x
1277
+ value: 300
1278
+ objectReference: {fileID: 0}
1279
+ - target: {fileID: 474155106402287543, guid: 4504226d85da74f74be7299dd148420d,
1280
+ type: 3}
1281
+ propertyPath: m_AnchoredPosition.x
1282
+ value: 150
1283
+ objectReference: {fileID: 0}
1284
+ - target: {fileID: 474155106402287543, guid: 4504226d85da74f74be7299dd148420d,
1285
+ type: 3}
1286
+ propertyPath: m_AnchoredPosition.y
1287
+ value: -70
1288
+ objectReference: {fileID: 0}
1289
+ - target: {fileID: 569116561958433563, guid: 4504226d85da74f74be7299dd148420d,
1290
+ type: 3}
1291
+ propertyPath: m_AnchorMax.x
1292
+ value: 1
1293
+ objectReference: {fileID: 0}
1294
+ - target: {fileID: 569116561958433563, guid: 4504226d85da74f74be7299dd148420d,
1295
+ type: 3}
1296
+ propertyPath: m_AnchorMax.y
1297
+ value: 1
1298
+ objectReference: {fileID: 0}
1299
+ - target: {fileID: 577404588530499901, guid: 4504226d85da74f74be7299dd148420d,
1300
+ type: 3}
1301
+ propertyPath: m_AnchorMax.x
1302
+ value: 1
1303
+ objectReference: {fileID: 0}
1304
+ - target: {fileID: 577404588530499901, guid: 4504226d85da74f74be7299dd148420d,
1305
+ type: 3}
1306
+ propertyPath: m_AnchorMax.y
1307
+ value: 1
1308
+ objectReference: {fileID: 0}
1309
+ - target: {fileID: 577404588530499901, guid: 4504226d85da74f74be7299dd148420d,
1310
+ type: 3}
1311
+ propertyPath: m_SizeDelta.x
1312
+ value: -17
1313
+ objectReference: {fileID: 0}
1314
+ - target: {fileID: 635883761041762154, guid: 4504226d85da74f74be7299dd148420d,
1315
+ type: 3}
1316
+ propertyPath: m_Pivot.x
1317
+ value: 0.5
1318
+ objectReference: {fileID: 0}
1319
+ - target: {fileID: 635883761041762154, guid: 4504226d85da74f74be7299dd148420d,
1320
+ type: 3}
1321
+ propertyPath: m_Pivot.y
1322
+ value: 0.5
1323
+ objectReference: {fileID: 0}
1324
+ - target: {fileID: 635883761041762154, guid: 4504226d85da74f74be7299dd148420d,
1325
+ type: 3}
1326
+ propertyPath: m_RootOrder
1327
+ value: 3
1328
+ objectReference: {fileID: 0}
1329
+ - target: {fileID: 635883761041762154, guid: 4504226d85da74f74be7299dd148420d,
1330
+ type: 3}
1331
+ propertyPath: m_AnchorMax.x
1332
+ value: 1
1333
+ objectReference: {fileID: 0}
1334
+ - target: {fileID: 635883761041762154, guid: 4504226d85da74f74be7299dd148420d,
1335
+ type: 3}
1336
+ propertyPath: m_AnchorMax.y
1337
+ value: 1
1338
+ objectReference: {fileID: 0}
1339
+ - target: {fileID: 635883761041762154, guid: 4504226d85da74f74be7299dd148420d,
1340
+ type: 3}
1341
+ propertyPath: m_AnchorMin.x
1342
+ value: 0
1343
+ objectReference: {fileID: 0}
1344
+ - target: {fileID: 635883761041762154, guid: 4504226d85da74f74be7299dd148420d,
1345
+ type: 3}
1346
+ propertyPath: m_AnchorMin.y
1347
+ value: 0
1348
+ objectReference: {fileID: 0}
1349
+ - target: {fileID: 635883761041762154, guid: 4504226d85da74f74be7299dd148420d,
1350
+ type: 3}
1351
+ propertyPath: m_SizeDelta.x
1352
+ value: 0
1353
+ objectReference: {fileID: 0}
1354
+ - target: {fileID: 635883761041762154, guid: 4504226d85da74f74be7299dd148420d,
1355
+ type: 3}
1356
+ propertyPath: m_SizeDelta.y
1357
+ value: 0
1358
+ objectReference: {fileID: 0}
1359
+ - target: {fileID: 635883761041762154, guid: 4504226d85da74f74be7299dd148420d,
1360
+ type: 3}
1361
+ propertyPath: m_LocalPosition.x
1362
+ value: 0
1363
+ objectReference: {fileID: 0}
1364
+ - target: {fileID: 635883761041762154, guid: 4504226d85da74f74be7299dd148420d,
1365
+ type: 3}
1366
+ propertyPath: m_LocalPosition.y
1367
+ value: 0
1368
+ objectReference: {fileID: 0}
1369
+ - target: {fileID: 635883761041762154, guid: 4504226d85da74f74be7299dd148420d,
1370
+ type: 3}
1371
+ propertyPath: m_LocalPosition.z
1372
+ value: 0
1373
+ objectReference: {fileID: 0}
1374
+ - target: {fileID: 635883761041762154, guid: 4504226d85da74f74be7299dd148420d,
1375
+ type: 3}
1376
+ propertyPath: m_LocalRotation.w
1377
+ value: 1
1378
+ objectReference: {fileID: 0}
1379
+ - target: {fileID: 635883761041762154, guid: 4504226d85da74f74be7299dd148420d,
1380
+ type: 3}
1381
+ propertyPath: m_LocalRotation.x
1382
+ value: 0
1383
+ objectReference: {fileID: 0}
1384
+ - target: {fileID: 635883761041762154, guid: 4504226d85da74f74be7299dd148420d,
1385
+ type: 3}
1386
+ propertyPath: m_LocalRotation.y
1387
+ value: 0
1388
+ objectReference: {fileID: 0}
1389
+ - target: {fileID: 635883761041762154, guid: 4504226d85da74f74be7299dd148420d,
1390
+ type: 3}
1391
+ propertyPath: m_LocalRotation.z
1392
+ value: 0
1393
+ objectReference: {fileID: 0}
1394
+ - target: {fileID: 635883761041762154, guid: 4504226d85da74f74be7299dd148420d,
1395
+ type: 3}
1396
+ propertyPath: m_AnchoredPosition.x
1397
+ value: 0
1398
+ objectReference: {fileID: 0}
1399
+ - target: {fileID: 635883761041762154, guid: 4504226d85da74f74be7299dd148420d,
1400
+ type: 3}
1401
+ propertyPath: m_AnchoredPosition.y
1402
+ value: 0
1403
+ objectReference: {fileID: 0}
1404
+ - target: {fileID: 635883761041762154, guid: 4504226d85da74f74be7299dd148420d,
1405
+ type: 3}
1406
+ propertyPath: m_LocalEulerAnglesHint.x
1407
+ value: 0
1408
+ objectReference: {fileID: 0}
1409
+ - target: {fileID: 635883761041762154, guid: 4504226d85da74f74be7299dd148420d,
1410
+ type: 3}
1411
+ propertyPath: m_LocalEulerAnglesHint.y
1412
+ value: 0
1413
+ objectReference: {fileID: 0}
1414
+ - target: {fileID: 635883761041762154, guid: 4504226d85da74f74be7299dd148420d,
1415
+ type: 3}
1416
+ propertyPath: m_LocalEulerAnglesHint.z
1417
+ value: 0
1418
+ objectReference: {fileID: 0}
1419
+ - target: {fileID: 635883761041762155, guid: 4504226d85da74f74be7299dd148420d,
1420
+ type: 3}
1421
+ propertyPath: m_Name
1422
+ value: FindLobbyDisplay
1423
+ objectReference: {fileID: 0}
1424
+ - target: {fileID: 635883761041762155, guid: 4504226d85da74f74be7299dd148420d,
1425
+ type: 3}
1426
+ propertyPath: m_IsActive
1427
+ value: 0
1428
+ objectReference: {fileID: 0}
1429
+ m_RemovedComponents: []
1430
+ m_SourcePrefab: {fileID: 100100000, guid: 4504226d85da74f74be7299dd148420d, type: 3}
1431
+ --- !u!224 &1966137870880775321 stripped
1432
+ RectTransform:
1433
+ m_CorrespondingSourceObject: {fileID: 635883761041762154, guid: 4504226d85da74f74be7299dd148420d,
1434
+ type: 3}
1435
+ m_PrefabInstance: {fileID: 1966137870880775320}
1436
+ m_PrefabAsset: {fileID: 0}
560
1437
  --- !u!225 &2307906666623612511
561
1438
  CanvasGroup:
562
1439
  m_ObjectHideFlags: 0
@@ -640,7 +1517,7 @@ MonoBehaviour:
640
1517
  m_enableAutoSizing: 0
641
1518
  m_fontSizeMin: 18
642
1519
  m_fontSizeMax: 72
643
- m_fontStyle: 0
1520
+ m_fontStyle: 1
644
1521
  m_HorizontalAlignment: 1
645
1522
  m_VerticalAlignment: 256
646
1523
  m_textAlignment: 65535
@@ -650,7 +1527,7 @@ MonoBehaviour:
650
1527
  m_lineSpacingMax: 0
651
1528
  m_paragraphSpacing: 0
652
1529
  m_charWidthMaxAdj: 0
653
- m_enableWordWrapping: 1
1530
+ m_enableWordWrapping: 0
654
1531
  m_wordWrappingRatios: 0.4
655
1532
  m_overflowMode: 0
656
1533
  m_linkedTextComponent: {fileID: 0}
@@ -673,9 +1550,269 @@ MonoBehaviour:
673
1550
  m_margin: {x: 0, y: 0, z: 0, w: 0}
674
1551
  m_isUsingLegacyAnimationComponent: 0
675
1552
  m_isVolumetricText: 0
676
- m_hasFontAssetChanged: 0
1553
+ m_hasFontAssetChanged: 1
677
1554
  m_baseMaterial: {fileID: 0}
678
1555
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
1556
+ --- !u!1001 &4264650982460278157
1557
+ PrefabInstance:
1558
+ m_ObjectHideFlags: 0
1559
+ serializedVersion: 2
1560
+ m_Modification:
1561
+ m_TransformParent: {fileID: 1412789052}
1562
+ m_Modifications:
1563
+ - target: {fileID: 474155106402287543, guid: 9e43f609911fd4a0a983a700492cf274,
1564
+ type: 3}
1565
+ propertyPath: m_AnchorMax.y
1566
+ value: 1
1567
+ objectReference: {fileID: 0}
1568
+ - target: {fileID: 474155106402287543, guid: 9e43f609911fd4a0a983a700492cf274,
1569
+ type: 3}
1570
+ propertyPath: m_AnchorMin.y
1571
+ value: 1
1572
+ objectReference: {fileID: 0}
1573
+ - target: {fileID: 474155106402287543, guid: 9e43f609911fd4a0a983a700492cf274,
1574
+ type: 3}
1575
+ propertyPath: m_SizeDelta.x
1576
+ value: 315
1577
+ objectReference: {fileID: 0}
1578
+ - target: {fileID: 474155106402287543, guid: 9e43f609911fd4a0a983a700492cf274,
1579
+ type: 3}
1580
+ propertyPath: m_AnchoredPosition.x
1581
+ value: 157.5
1582
+ objectReference: {fileID: 0}
1583
+ - target: {fileID: 474155106402287543, guid: 9e43f609911fd4a0a983a700492cf274,
1584
+ type: 3}
1585
+ propertyPath: m_AnchoredPosition.y
1586
+ value: -81.0686
1587
+ objectReference: {fileID: 0}
1588
+ - target: {fileID: 635883761041762154, guid: 9e43f609911fd4a0a983a700492cf274,
1589
+ type: 3}
1590
+ propertyPath: m_Pivot.x
1591
+ value: 0.5
1592
+ objectReference: {fileID: 0}
1593
+ - target: {fileID: 635883761041762154, guid: 9e43f609911fd4a0a983a700492cf274,
1594
+ type: 3}
1595
+ propertyPath: m_Pivot.y
1596
+ value: 0.5
1597
+ objectReference: {fileID: 0}
1598
+ - target: {fileID: 635883761041762154, guid: 9e43f609911fd4a0a983a700492cf274,
1599
+ type: 3}
1600
+ propertyPath: m_RootOrder
1601
+ value: 4
1602
+ objectReference: {fileID: 0}
1603
+ - target: {fileID: 635883761041762154, guid: 9e43f609911fd4a0a983a700492cf274,
1604
+ type: 3}
1605
+ propertyPath: m_AnchorMax.x
1606
+ value: 1
1607
+ objectReference: {fileID: 0}
1608
+ - target: {fileID: 635883761041762154, guid: 9e43f609911fd4a0a983a700492cf274,
1609
+ type: 3}
1610
+ propertyPath: m_AnchorMax.y
1611
+ value: 1
1612
+ objectReference: {fileID: 0}
1613
+ - target: {fileID: 635883761041762154, guid: 9e43f609911fd4a0a983a700492cf274,
1614
+ type: 3}
1615
+ propertyPath: m_AnchorMin.x
1616
+ value: 0
1617
+ objectReference: {fileID: 0}
1618
+ - target: {fileID: 635883761041762154, guid: 9e43f609911fd4a0a983a700492cf274,
1619
+ type: 3}
1620
+ propertyPath: m_AnchorMin.y
1621
+ value: 0
1622
+ objectReference: {fileID: 0}
1623
+ - target: {fileID: 635883761041762154, guid: 9e43f609911fd4a0a983a700492cf274,
1624
+ type: 3}
1625
+ propertyPath: m_SizeDelta.x
1626
+ value: 0
1627
+ objectReference: {fileID: 0}
1628
+ - target: {fileID: 635883761041762154, guid: 9e43f609911fd4a0a983a700492cf274,
1629
+ type: 3}
1630
+ propertyPath: m_SizeDelta.y
1631
+ value: 0
1632
+ objectReference: {fileID: 0}
1633
+ - target: {fileID: 635883761041762154, guid: 9e43f609911fd4a0a983a700492cf274,
1634
+ type: 3}
1635
+ propertyPath: m_LocalPosition.x
1636
+ value: 0
1637
+ objectReference: {fileID: 0}
1638
+ - target: {fileID: 635883761041762154, guid: 9e43f609911fd4a0a983a700492cf274,
1639
+ type: 3}
1640
+ propertyPath: m_LocalPosition.y
1641
+ value: 0
1642
+ objectReference: {fileID: 0}
1643
+ - target: {fileID: 635883761041762154, guid: 9e43f609911fd4a0a983a700492cf274,
1644
+ type: 3}
1645
+ propertyPath: m_LocalPosition.z
1646
+ value: 0
1647
+ objectReference: {fileID: 0}
1648
+ - target: {fileID: 635883761041762154, guid: 9e43f609911fd4a0a983a700492cf274,
1649
+ type: 3}
1650
+ propertyPath: m_LocalRotation.w
1651
+ value: 1
1652
+ objectReference: {fileID: 0}
1653
+ - target: {fileID: 635883761041762154, guid: 9e43f609911fd4a0a983a700492cf274,
1654
+ type: 3}
1655
+ propertyPath: m_LocalRotation.x
1656
+ value: 0
1657
+ objectReference: {fileID: 0}
1658
+ - target: {fileID: 635883761041762154, guid: 9e43f609911fd4a0a983a700492cf274,
1659
+ type: 3}
1660
+ propertyPath: m_LocalRotation.y
1661
+ value: 0
1662
+ objectReference: {fileID: 0}
1663
+ - target: {fileID: 635883761041762154, guid: 9e43f609911fd4a0a983a700492cf274,
1664
+ type: 3}
1665
+ propertyPath: m_LocalRotation.z
1666
+ value: 0
1667
+ objectReference: {fileID: 0}
1668
+ - target: {fileID: 635883761041762154, guid: 9e43f609911fd4a0a983a700492cf274,
1669
+ type: 3}
1670
+ propertyPath: m_AnchoredPosition.x
1671
+ value: 0
1672
+ objectReference: {fileID: 0}
1673
+ - target: {fileID: 635883761041762154, guid: 9e43f609911fd4a0a983a700492cf274,
1674
+ type: 3}
1675
+ propertyPath: m_AnchoredPosition.y
1676
+ value: 0
1677
+ objectReference: {fileID: 0}
1678
+ - target: {fileID: 635883761041762154, guid: 9e43f609911fd4a0a983a700492cf274,
1679
+ type: 3}
1680
+ propertyPath: m_LocalEulerAnglesHint.x
1681
+ value: 0
1682
+ objectReference: {fileID: 0}
1683
+ - target: {fileID: 635883761041762154, guid: 9e43f609911fd4a0a983a700492cf274,
1684
+ type: 3}
1685
+ propertyPath: m_LocalEulerAnglesHint.y
1686
+ value: 0
1687
+ objectReference: {fileID: 0}
1688
+ - target: {fileID: 635883761041762154, guid: 9e43f609911fd4a0a983a700492cf274,
1689
+ type: 3}
1690
+ propertyPath: m_LocalEulerAnglesHint.z
1691
+ value: 0
1692
+ objectReference: {fileID: 0}
1693
+ - target: {fileID: 635883761041762155, guid: 9e43f609911fd4a0a983a700492cf274,
1694
+ type: 3}
1695
+ propertyPath: m_Name
1696
+ value: JoinLobbyDisplay
1697
+ objectReference: {fileID: 0}
1698
+ - target: {fileID: 635883761041762155, guid: 9e43f609911fd4a0a983a700492cf274,
1699
+ type: 3}
1700
+ propertyPath: m_IsActive
1701
+ value: 0
1702
+ objectReference: {fileID: 0}
1703
+ - target: {fileID: 2797522343044726045, guid: 9e43f609911fd4a0a983a700492cf274,
1704
+ type: 3}
1705
+ propertyPath: m_AnchorMax.y
1706
+ value: 1
1707
+ objectReference: {fileID: 0}
1708
+ - target: {fileID: 2797522343044726045, guid: 9e43f609911fd4a0a983a700492cf274,
1709
+ type: 3}
1710
+ propertyPath: m_AnchorMin.y
1711
+ value: 1
1712
+ objectReference: {fileID: 0}
1713
+ - target: {fileID: 2797522343044726045, guid: 9e43f609911fd4a0a983a700492cf274,
1714
+ type: 3}
1715
+ propertyPath: m_AnchoredPosition.x
1716
+ value: 106.552505
1717
+ objectReference: {fileID: 0}
1718
+ - target: {fileID: 2797522343044726045, guid: 9e43f609911fd4a0a983a700492cf274,
1719
+ type: 3}
1720
+ propertyPath: m_AnchoredPosition.y
1721
+ value: -50
1722
+ objectReference: {fileID: 0}
1723
+ - target: {fileID: 2920912611213981361, guid: 9e43f609911fd4a0a983a700492cf274,
1724
+ type: 3}
1725
+ propertyPath: m_AnchorMax.y
1726
+ value: 1
1727
+ objectReference: {fileID: 0}
1728
+ - target: {fileID: 2920912611213981361, guid: 9e43f609911fd4a0a983a700492cf274,
1729
+ type: 3}
1730
+ propertyPath: m_AnchorMin.y
1731
+ value: 1
1732
+ objectReference: {fileID: 0}
1733
+ - target: {fileID: 2920912611213981361, guid: 9e43f609911fd4a0a983a700492cf274,
1734
+ type: 3}
1735
+ propertyPath: m_AnchoredPosition.x
1736
+ value: 531.5525
1737
+ objectReference: {fileID: 0}
1738
+ - target: {fileID: 2920912611213981361, guid: 9e43f609911fd4a0a983a700492cf274,
1739
+ type: 3}
1740
+ propertyPath: m_AnchoredPosition.y
1741
+ value: -50
1742
+ objectReference: {fileID: 0}
1743
+ - target: {fileID: 5129956557336500071, guid: 9e43f609911fd4a0a983a700492cf274,
1744
+ type: 3}
1745
+ propertyPath: m_AnchorMax.y
1746
+ value: 1
1747
+ objectReference: {fileID: 0}
1748
+ - target: {fileID: 5129956557336500071, guid: 9e43f609911fd4a0a983a700492cf274,
1749
+ type: 3}
1750
+ propertyPath: m_AnchorMin.y
1751
+ value: 1
1752
+ objectReference: {fileID: 0}
1753
+ - target: {fileID: 5129956557336500071, guid: 9e43f609911fd4a0a983a700492cf274,
1754
+ type: 3}
1755
+ propertyPath: m_SizeDelta.x
1756
+ value: 315
1757
+ objectReference: {fileID: 0}
1758
+ - target: {fileID: 5129956557336500071, guid: 9e43f609911fd4a0a983a700492cf274,
1759
+ type: 3}
1760
+ propertyPath: m_AnchoredPosition.x
1761
+ value: 492.5
1762
+ objectReference: {fileID: 0}
1763
+ - target: {fileID: 5129956557336500071, guid: 9e43f609911fd4a0a983a700492cf274,
1764
+ type: 3}
1765
+ propertyPath: m_AnchoredPosition.y
1766
+ value: -81.0686
1767
+ objectReference: {fileID: 0}
1768
+ - target: {fileID: 6402455252315141390, guid: 9e43f609911fd4a0a983a700492cf274,
1769
+ type: 3}
1770
+ propertyPath: m_AnchorMax.y
1771
+ value: 1
1772
+ objectReference: {fileID: 0}
1773
+ - target: {fileID: 6402455252315141390, guid: 9e43f609911fd4a0a983a700492cf274,
1774
+ type: 3}
1775
+ propertyPath: m_AnchorMin.y
1776
+ value: 1
1777
+ objectReference: {fileID: 0}
1778
+ - target: {fileID: 6402455252315141390, guid: 9e43f609911fd4a0a983a700492cf274,
1779
+ type: 3}
1780
+ propertyPath: m_AnchoredPosition.x
1781
+ value: 106.552505
1782
+ objectReference: {fileID: 0}
1783
+ - target: {fileID: 6402455252315141390, guid: 9e43f609911fd4a0a983a700492cf274,
1784
+ type: 3}
1785
+ propertyPath: m_AnchoredPosition.y
1786
+ value: -50
1787
+ objectReference: {fileID: 0}
1788
+ - target: {fileID: 6986193942707353393, guid: 9e43f609911fd4a0a983a700492cf274,
1789
+ type: 3}
1790
+ propertyPath: m_AnchorMax.y
1791
+ value: 1
1792
+ objectReference: {fileID: 0}
1793
+ - target: {fileID: 6986193942707353393, guid: 9e43f609911fd4a0a983a700492cf274,
1794
+ type: 3}
1795
+ propertyPath: m_AnchorMin.y
1796
+ value: 1
1797
+ objectReference: {fileID: 0}
1798
+ - target: {fileID: 6986193942707353393, guid: 9e43f609911fd4a0a983a700492cf274,
1799
+ type: 3}
1800
+ propertyPath: m_AnchoredPosition.x
1801
+ value: 531.5525
1802
+ objectReference: {fileID: 0}
1803
+ - target: {fileID: 6986193942707353393, guid: 9e43f609911fd4a0a983a700492cf274,
1804
+ type: 3}
1805
+ propertyPath: m_AnchoredPosition.y
1806
+ value: -50
1807
+ objectReference: {fileID: 0}
1808
+ m_RemovedComponents: []
1809
+ m_SourcePrefab: {fileID: 100100000, guid: 9e43f609911fd4a0a983a700492cf274, type: 3}
1810
+ --- !u!224 &4264650982460278158 stripped
1811
+ RectTransform:
1812
+ m_CorrespondingSourceObject: {fileID: 635883761041762154, guid: 9e43f609911fd4a0a983a700492cf274,
1813
+ type: 3}
1814
+ m_PrefabInstance: {fileID: 4264650982460278157}
1815
+ m_PrefabAsset: {fileID: 0}
679
1816
  --- !u!224 &4375801385269977617
680
1817
  RectTransform:
681
1818
  m_ObjectHideFlags: 0
@@ -690,6 +1827,7 @@ RectTransform:
690
1827
  m_Children:
691
1828
  - {fileID: 5740556254506216597}
692
1829
  m_Father: {fileID: 32595363}
1830
+ m_RootOrder: 1
693
1831
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
694
1832
  m_AnchorMin: {x: 0, y: 0}
695
1833
  m_AnchorMax: {x: 1, y: 1}
@@ -709,14 +1847,14 @@ MonoBehaviour:
709
1847
  m_Name:
710
1848
  m_EditorClassIdentifier:
711
1849
  m_Material: {fileID: 0}
712
- m_Color: {r: 0, g: 0, b: 0, a: 1}
1850
+ m_Color: {r: 0.6981132, g: 0.6981132, b: 0.6981132, a: 1}
713
1851
  m_RaycastTarget: 1
714
1852
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
715
1853
  m_Maskable: 1
716
1854
  m_OnCullStateChanged:
717
1855
  m_PersistentCalls:
718
1856
  m_Calls: []
719
- m_Sprite: {fileID: 0}
1857
+ m_Sprite: {fileID: 21300000, guid: e669acd2805965449b35eb0938af6d2e, type: 3}
720
1858
  m_Type: 0
721
1859
  m_PreserveAspect: 0
722
1860
  m_FillCenter: 1
@@ -744,7 +1882,7 @@ GameObject:
744
1882
  m_Icon: {fileID: 0}
745
1883
  m_NavMeshLayer: 0
746
1884
  m_StaticEditorFlags: 0
747
- m_IsActive: 1
1885
+ m_IsActive: 0
748
1886
  --- !u!222 &5210553750647963825
749
1887
  CanvasRenderer:
750
1888
  m_ObjectHideFlags: 0
@@ -766,16 +1904,404 @@ RectTransform:
766
1904
  m_ConstrainProportionsScale: 0
767
1905
  m_Children: []
768
1906
  m_Father: {fileID: 4375801385269977617}
1907
+ m_RootOrder: 0
769
1908
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
770
1909
  m_AnchorMin: {x: 0.5, y: 0.5}
771
1910
  m_AnchorMax: {x: 0.5, y: 0.5}
772
1911
  m_AnchoredPosition: {x: 0, y: 0}
773
1912
  m_SizeDelta: {x: 200, y: 50}
774
1913
  m_Pivot: {x: 0.5, y: 0.5}
775
- --- !u!1660057539 &9223372036854775807
776
- SceneRoots:
1914
+ --- !u!1001 &7455043092982422555
1915
+ PrefabInstance:
777
1916
  m_ObjectHideFlags: 0
778
- m_Roots:
779
- - {fileID: 2021928066}
780
- - {fileID: 1098410761}
781
- - {fileID: 458544365}
1917
+ serializedVersion: 2
1918
+ m_Modification:
1919
+ m_TransformParent: {fileID: 1412789052}
1920
+ m_Modifications:
1921
+ - target: {fileID: 97237670813767047, guid: 9f406a5d8cdc9484ea369af99d372cca,
1922
+ type: 3}
1923
+ propertyPath: m_AnchorMax.y
1924
+ value: 1
1925
+ objectReference: {fileID: 0}
1926
+ - target: {fileID: 97237670813767047, guid: 9f406a5d8cdc9484ea369af99d372cca,
1927
+ type: 3}
1928
+ propertyPath: m_AnchorMin.y
1929
+ value: 1
1930
+ objectReference: {fileID: 0}
1931
+ - target: {fileID: 97237670813767047, guid: 9f406a5d8cdc9484ea369af99d372cca,
1932
+ type: 3}
1933
+ propertyPath: m_SizeDelta.x
1934
+ value: 1819.9999
1935
+ objectReference: {fileID: 0}
1936
+ - target: {fileID: 97237670813767047, guid: 9f406a5d8cdc9484ea369af99d372cca,
1937
+ type: 3}
1938
+ propertyPath: m_AnchoredPosition.x
1939
+ value: 909.99994
1940
+ objectReference: {fileID: 0}
1941
+ - target: {fileID: 97237670813767047, guid: 9f406a5d8cdc9484ea369af99d372cca,
1942
+ type: 3}
1943
+ propertyPath: m_AnchoredPosition.y
1944
+ value: -420
1945
+ objectReference: {fileID: 0}
1946
+ - target: {fileID: 635883761041762154, guid: 9f406a5d8cdc9484ea369af99d372cca,
1947
+ type: 3}
1948
+ propertyPath: m_Pivot.x
1949
+ value: 0.5
1950
+ objectReference: {fileID: 0}
1951
+ - target: {fileID: 635883761041762154, guid: 9f406a5d8cdc9484ea369af99d372cca,
1952
+ type: 3}
1953
+ propertyPath: m_Pivot.y
1954
+ value: 0.5
1955
+ objectReference: {fileID: 0}
1956
+ - target: {fileID: 635883761041762154, guid: 9f406a5d8cdc9484ea369af99d372cca,
1957
+ type: 3}
1958
+ propertyPath: m_RootOrder
1959
+ value: 5
1960
+ objectReference: {fileID: 0}
1961
+ - target: {fileID: 635883761041762154, guid: 9f406a5d8cdc9484ea369af99d372cca,
1962
+ type: 3}
1963
+ propertyPath: m_AnchorMax.x
1964
+ value: 1
1965
+ objectReference: {fileID: 0}
1966
+ - target: {fileID: 635883761041762154, guid: 9f406a5d8cdc9484ea369af99d372cca,
1967
+ type: 3}
1968
+ propertyPath: m_AnchorMax.y
1969
+ value: 1
1970
+ objectReference: {fileID: 0}
1971
+ - target: {fileID: 635883761041762154, guid: 9f406a5d8cdc9484ea369af99d372cca,
1972
+ type: 3}
1973
+ propertyPath: m_AnchorMin.x
1974
+ value: 0
1975
+ objectReference: {fileID: 0}
1976
+ - target: {fileID: 635883761041762154, guid: 9f406a5d8cdc9484ea369af99d372cca,
1977
+ type: 3}
1978
+ propertyPath: m_AnchorMin.y
1979
+ value: 0
1980
+ objectReference: {fileID: 0}
1981
+ - target: {fileID: 635883761041762154, guid: 9f406a5d8cdc9484ea369af99d372cca,
1982
+ type: 3}
1983
+ propertyPath: m_SizeDelta.x
1984
+ value: -0.00002670288
1985
+ objectReference: {fileID: 0}
1986
+ - target: {fileID: 635883761041762154, guid: 9f406a5d8cdc9484ea369af99d372cca,
1987
+ type: 3}
1988
+ propertyPath: m_SizeDelta.y
1989
+ value: 0
1990
+ objectReference: {fileID: 0}
1991
+ - target: {fileID: 635883761041762154, guid: 9f406a5d8cdc9484ea369af99d372cca,
1992
+ type: 3}
1993
+ propertyPath: m_LocalPosition.x
1994
+ value: 0
1995
+ objectReference: {fileID: 0}
1996
+ - target: {fileID: 635883761041762154, guid: 9f406a5d8cdc9484ea369af99d372cca,
1997
+ type: 3}
1998
+ propertyPath: m_LocalPosition.y
1999
+ value: 0
2000
+ objectReference: {fileID: 0}
2001
+ - target: {fileID: 635883761041762154, guid: 9f406a5d8cdc9484ea369af99d372cca,
2002
+ type: 3}
2003
+ propertyPath: m_LocalPosition.z
2004
+ value: 0
2005
+ objectReference: {fileID: 0}
2006
+ - target: {fileID: 635883761041762154, guid: 9f406a5d8cdc9484ea369af99d372cca,
2007
+ type: 3}
2008
+ propertyPath: m_LocalRotation.w
2009
+ value: 1
2010
+ objectReference: {fileID: 0}
2011
+ - target: {fileID: 635883761041762154, guid: 9f406a5d8cdc9484ea369af99d372cca,
2012
+ type: 3}
2013
+ propertyPath: m_LocalRotation.x
2014
+ value: 0
2015
+ objectReference: {fileID: 0}
2016
+ - target: {fileID: 635883761041762154, guid: 9f406a5d8cdc9484ea369af99d372cca,
2017
+ type: 3}
2018
+ propertyPath: m_LocalRotation.y
2019
+ value: 0
2020
+ objectReference: {fileID: 0}
2021
+ - target: {fileID: 635883761041762154, guid: 9f406a5d8cdc9484ea369af99d372cca,
2022
+ type: 3}
2023
+ propertyPath: m_LocalRotation.z
2024
+ value: 0
2025
+ objectReference: {fileID: 0}
2026
+ - target: {fileID: 635883761041762154, guid: 9f406a5d8cdc9484ea369af99d372cca,
2027
+ type: 3}
2028
+ propertyPath: m_AnchoredPosition.x
2029
+ value: 0
2030
+ objectReference: {fileID: 0}
2031
+ - target: {fileID: 635883761041762154, guid: 9f406a5d8cdc9484ea369af99d372cca,
2032
+ type: 3}
2033
+ propertyPath: m_AnchoredPosition.y
2034
+ value: 0
2035
+ objectReference: {fileID: 0}
2036
+ - target: {fileID: 635883761041762154, guid: 9f406a5d8cdc9484ea369af99d372cca,
2037
+ type: 3}
2038
+ propertyPath: m_LocalEulerAnglesHint.x
2039
+ value: 0
2040
+ objectReference: {fileID: 0}
2041
+ - target: {fileID: 635883761041762154, guid: 9f406a5d8cdc9484ea369af99d372cca,
2042
+ type: 3}
2043
+ propertyPath: m_LocalEulerAnglesHint.y
2044
+ value: 0
2045
+ objectReference: {fileID: 0}
2046
+ - target: {fileID: 635883761041762154, guid: 9f406a5d8cdc9484ea369af99d372cca,
2047
+ type: 3}
2048
+ propertyPath: m_LocalEulerAnglesHint.z
2049
+ value: 0
2050
+ objectReference: {fileID: 0}
2051
+ - target: {fileID: 635883761041762155, guid: 9f406a5d8cdc9484ea369af99d372cca,
2052
+ type: 3}
2053
+ propertyPath: m_Name
2054
+ value: LobbyDetailsDisplay
2055
+ objectReference: {fileID: 0}
2056
+ - target: {fileID: 635883761041762155, guid: 9f406a5d8cdc9484ea369af99d372cca,
2057
+ type: 3}
2058
+ propertyPath: m_IsActive
2059
+ value: 0
2060
+ objectReference: {fileID: 0}
2061
+ - target: {fileID: 1048518833211298753, guid: 9f406a5d8cdc9484ea369af99d372cca,
2062
+ type: 3}
2063
+ propertyPath: m_AnchorMax.y
2064
+ value: 1
2065
+ objectReference: {fileID: 0}
2066
+ - target: {fileID: 1048518833211298753, guid: 9f406a5d8cdc9484ea369af99d372cca,
2067
+ type: 3}
2068
+ propertyPath: m_AnchorMin.y
2069
+ value: 1
2070
+ objectReference: {fileID: 0}
2071
+ - target: {fileID: 1048518833211298753, guid: 9f406a5d8cdc9484ea369af99d372cca,
2072
+ type: 3}
2073
+ propertyPath: m_SizeDelta.x
2074
+ value: 1819.9999
2075
+ objectReference: {fileID: 0}
2076
+ - target: {fileID: 1048518833211298753, guid: 9f406a5d8cdc9484ea369af99d372cca,
2077
+ type: 3}
2078
+ propertyPath: m_AnchoredPosition.x
2079
+ value: 909.99994
2080
+ objectReference: {fileID: 0}
2081
+ - target: {fileID: 1048518833211298753, guid: 9f406a5d8cdc9484ea369af99d372cca,
2082
+ type: 3}
2083
+ propertyPath: m_AnchoredPosition.y
2084
+ value: -150
2085
+ objectReference: {fileID: 0}
2086
+ - target: {fileID: 1308808052547043150, guid: 9f406a5d8cdc9484ea369af99d372cca,
2087
+ type: 3}
2088
+ propertyPath: m_AnchorMax.y
2089
+ value: 1
2090
+ objectReference: {fileID: 0}
2091
+ - target: {fileID: 1308808052547043150, guid: 9f406a5d8cdc9484ea369af99d372cca,
2092
+ type: 3}
2093
+ propertyPath: m_AnchorMin.y
2094
+ value: 1
2095
+ objectReference: {fileID: 0}
2096
+ - target: {fileID: 1308808052547043150, guid: 9f406a5d8cdc9484ea369af99d372cca,
2097
+ type: 3}
2098
+ propertyPath: m_SizeDelta.x
2099
+ value: 1819.9999
2100
+ objectReference: {fileID: 0}
2101
+ - target: {fileID: 1308808052547043150, guid: 9f406a5d8cdc9484ea369af99d372cca,
2102
+ type: 3}
2103
+ propertyPath: m_AnchoredPosition.x
2104
+ value: 909.99994
2105
+ objectReference: {fileID: 0}
2106
+ - target: {fileID: 1308808052547043150, guid: 9f406a5d8cdc9484ea369af99d372cca,
2107
+ type: 3}
2108
+ propertyPath: m_AnchoredPosition.y
2109
+ value: -280
2110
+ objectReference: {fileID: 0}
2111
+ - target: {fileID: 3287634750514913487, guid: 9f406a5d8cdc9484ea369af99d372cca,
2112
+ type: 3}
2113
+ propertyPath: m_AnchorMax.y
2114
+ value: 1
2115
+ objectReference: {fileID: 0}
2116
+ - target: {fileID: 3287634750514913487, guid: 9f406a5d8cdc9484ea369af99d372cca,
2117
+ type: 3}
2118
+ propertyPath: m_AnchorMin.y
2119
+ value: 1
2120
+ objectReference: {fileID: 0}
2121
+ - target: {fileID: 3287634750514913487, guid: 9f406a5d8cdc9484ea369af99d372cca,
2122
+ type: 3}
2123
+ propertyPath: m_SizeDelta.x
2124
+ value: 1819.9999
2125
+ objectReference: {fileID: 0}
2126
+ - target: {fileID: 3287634750514913487, guid: 9f406a5d8cdc9484ea369af99d372cca,
2127
+ type: 3}
2128
+ propertyPath: m_AnchoredPosition.x
2129
+ value: 909.99994
2130
+ objectReference: {fileID: 0}
2131
+ - target: {fileID: 3287634750514913487, guid: 9f406a5d8cdc9484ea369af99d372cca,
2132
+ type: 3}
2133
+ propertyPath: m_AnchoredPosition.y
2134
+ value: -100
2135
+ objectReference: {fileID: 0}
2136
+ - target: {fileID: 3902194674644654144, guid: 9f406a5d8cdc9484ea369af99d372cca,
2137
+ type: 3}
2138
+ propertyPath: m_AnchorMax.y
2139
+ value: 1
2140
+ objectReference: {fileID: 0}
2141
+ - target: {fileID: 3902194674644654144, guid: 9f406a5d8cdc9484ea369af99d372cca,
2142
+ type: 3}
2143
+ propertyPath: m_AnchorMin.y
2144
+ value: 1
2145
+ objectReference: {fileID: 0}
2146
+ - target: {fileID: 3902194674644654144, guid: 9f406a5d8cdc9484ea369af99d372cca,
2147
+ type: 3}
2148
+ propertyPath: m_SizeDelta.x
2149
+ value: 1819.9999
2150
+ objectReference: {fileID: 0}
2151
+ - target: {fileID: 3902194674644654144, guid: 9f406a5d8cdc9484ea369af99d372cca,
2152
+ type: 3}
2153
+ propertyPath: m_AnchoredPosition.x
2154
+ value: 909.99994
2155
+ objectReference: {fileID: 0}
2156
+ - target: {fileID: 3902194674644654144, guid: 9f406a5d8cdc9484ea369af99d372cca,
2157
+ type: 3}
2158
+ propertyPath: m_AnchoredPosition.y
2159
+ value: -30
2160
+ objectReference: {fileID: 0}
2161
+ - target: {fileID: 4462708868493048006, guid: 9f406a5d8cdc9484ea369af99d372cca,
2162
+ type: 3}
2163
+ propertyPath: m_AnchorMax.y
2164
+ value: 1
2165
+ objectReference: {fileID: 0}
2166
+ - target: {fileID: 4462708868493048006, guid: 9f406a5d8cdc9484ea369af99d372cca,
2167
+ type: 3}
2168
+ propertyPath: m_AnchorMin.y
2169
+ value: 1
2170
+ objectReference: {fileID: 0}
2171
+ - target: {fileID: 4462708868493048006, guid: 9f406a5d8cdc9484ea369af99d372cca,
2172
+ type: 3}
2173
+ propertyPath: m_SizeDelta.x
2174
+ value: 1819.9999
2175
+ objectReference: {fileID: 0}
2176
+ - target: {fileID: 4462708868493048006, guid: 9f406a5d8cdc9484ea369af99d372cca,
2177
+ type: 3}
2178
+ propertyPath: m_AnchoredPosition.x
2179
+ value: 909.99994
2180
+ objectReference: {fileID: 0}
2181
+ - target: {fileID: 4462708868493048006, guid: 9f406a5d8cdc9484ea369af99d372cca,
2182
+ type: 3}
2183
+ propertyPath: m_AnchoredPosition.y
2184
+ value: -200
2185
+ objectReference: {fileID: 0}
2186
+ - target: {fileID: 4510155180247873913, guid: 9f406a5d8cdc9484ea369af99d372cca,
2187
+ type: 3}
2188
+ propertyPath: m_AnchorMax.y
2189
+ value: 1
2190
+ objectReference: {fileID: 0}
2191
+ - target: {fileID: 4510155180247873913, guid: 9f406a5d8cdc9484ea369af99d372cca,
2192
+ type: 3}
2193
+ propertyPath: m_AnchorMin.y
2194
+ value: 1
2195
+ objectReference: {fileID: 0}
2196
+ - target: {fileID: 4510155180247873913, guid: 9f406a5d8cdc9484ea369af99d372cca,
2197
+ type: 3}
2198
+ propertyPath: m_SizeDelta.x
2199
+ value: 1819.9999
2200
+ objectReference: {fileID: 0}
2201
+ - target: {fileID: 4510155180247873913, guid: 9f406a5d8cdc9484ea369af99d372cca,
2202
+ type: 3}
2203
+ propertyPath: m_AnchoredPosition.x
2204
+ value: 909.99994
2205
+ objectReference: {fileID: 0}
2206
+ - target: {fileID: 5896387227524041678, guid: 9f406a5d8cdc9484ea369af99d372cca,
2207
+ type: 3}
2208
+ propertyPath: m_AnchorMax.y
2209
+ value: 1
2210
+ objectReference: {fileID: 0}
2211
+ - target: {fileID: 5896387227524041678, guid: 9f406a5d8cdc9484ea369af99d372cca,
2212
+ type: 3}
2213
+ propertyPath: m_AnchorMin.y
2214
+ value: 1
2215
+ objectReference: {fileID: 0}
2216
+ - target: {fileID: 5896387227524041678, guid: 9f406a5d8cdc9484ea369af99d372cca,
2217
+ type: 3}
2218
+ propertyPath: m_SizeDelta.x
2219
+ value: 1819.9999
2220
+ objectReference: {fileID: 0}
2221
+ - target: {fileID: 5896387227524041678, guid: 9f406a5d8cdc9484ea369af99d372cca,
2222
+ type: 3}
2223
+ propertyPath: m_AnchoredPosition.x
2224
+ value: 909.99994
2225
+ objectReference: {fileID: 0}
2226
+ - target: {fileID: 5896387227524041678, guid: 9f406a5d8cdc9484ea369af99d372cca,
2227
+ type: 3}
2228
+ propertyPath: m_AnchoredPosition.y
2229
+ value: -50
2230
+ objectReference: {fileID: 0}
2231
+ - target: {fileID: 6745570868178155191, guid: 9f406a5d8cdc9484ea369af99d372cca,
2232
+ type: 3}
2233
+ propertyPath: m_AnchorMax.y
2234
+ value: 1
2235
+ objectReference: {fileID: 0}
2236
+ - target: {fileID: 6745570868178155191, guid: 9f406a5d8cdc9484ea369af99d372cca,
2237
+ type: 3}
2238
+ propertyPath: m_AnchorMin.y
2239
+ value: 1
2240
+ objectReference: {fileID: 0}
2241
+ - target: {fileID: 6745570868178155191, guid: 9f406a5d8cdc9484ea369af99d372cca,
2242
+ type: 3}
2243
+ propertyPath: m_SizeDelta.x
2244
+ value: 1819.9999
2245
+ objectReference: {fileID: 0}
2246
+ - target: {fileID: 6745570868178155191, guid: 9f406a5d8cdc9484ea369af99d372cca,
2247
+ type: 3}
2248
+ propertyPath: m_AnchoredPosition.x
2249
+ value: 909.99994
2250
+ objectReference: {fileID: 0}
2251
+ - target: {fileID: 6745570868178155191, guid: 9f406a5d8cdc9484ea369af99d372cca,
2252
+ type: 3}
2253
+ propertyPath: m_AnchoredPosition.y
2254
+ value: -95
2255
+ objectReference: {fileID: 0}
2256
+ - target: {fileID: 8290439367055501186, guid: 9f406a5d8cdc9484ea369af99d372cca,
2257
+ type: 3}
2258
+ propertyPath: m_AnchorMax.y
2259
+ value: 1
2260
+ objectReference: {fileID: 0}
2261
+ - target: {fileID: 8290439367055501186, guid: 9f406a5d8cdc9484ea369af99d372cca,
2262
+ type: 3}
2263
+ propertyPath: m_AnchorMin.y
2264
+ value: 1
2265
+ objectReference: {fileID: 0}
2266
+ - target: {fileID: 8290439367055501186, guid: 9f406a5d8cdc9484ea369af99d372cca,
2267
+ type: 3}
2268
+ propertyPath: m_SizeDelta.x
2269
+ value: 1819.9999
2270
+ objectReference: {fileID: 0}
2271
+ - target: {fileID: 8290439367055501186, guid: 9f406a5d8cdc9484ea369af99d372cca,
2272
+ type: 3}
2273
+ propertyPath: m_AnchoredPosition.x
2274
+ value: 909.99994
2275
+ objectReference: {fileID: 0}
2276
+ - target: {fileID: 8290439367055501186, guid: 9f406a5d8cdc9484ea369af99d372cca,
2277
+ type: 3}
2278
+ propertyPath: m_AnchoredPosition.y
2279
+ value: -340
2280
+ objectReference: {fileID: 0}
2281
+ - target: {fileID: 8677223759393192328, guid: 9f406a5d8cdc9484ea369af99d372cca,
2282
+ type: 3}
2283
+ propertyPath: m_AnchorMax.y
2284
+ value: 1
2285
+ objectReference: {fileID: 0}
2286
+ - target: {fileID: 8677223759393192328, guid: 9f406a5d8cdc9484ea369af99d372cca,
2287
+ type: 3}
2288
+ propertyPath: m_AnchorMin.y
2289
+ value: 1
2290
+ objectReference: {fileID: 0}
2291
+ - target: {fileID: 8677223759393192328, guid: 9f406a5d8cdc9484ea369af99d372cca,
2292
+ type: 3}
2293
+ propertyPath: m_SizeDelta.x
2294
+ value: 1819.9999
2295
+ objectReference: {fileID: 0}
2296
+ - target: {fileID: 8677223759393192328, guid: 9f406a5d8cdc9484ea369af99d372cca,
2297
+ type: 3}
2298
+ propertyPath: m_AnchoredPosition.x
2299
+ value: 909.99994
2300
+ objectReference: {fileID: 0}
2301
+ - target: {fileID: 8677223759393192328, guid: 9f406a5d8cdc9484ea369af99d372cca,
2302
+ type: 3}
2303
+ propertyPath: m_AnchoredPosition.y
2304
+ value: -160
2305
+ objectReference: {fileID: 0}
2306
+ m_RemovedComponents: []
2307
+ m_SourcePrefab: {fileID: 100100000, guid: 9f406a5d8cdc9484ea369af99d372cca, type: 3}