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: 81691551}
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,7 +176,229 @@ MonoBehaviour:
175
176
  m_EditorClassIdentifier:
176
177
  root: {fileID: 1412789052}
177
178
  loadingBlocker: {fileID: 2307906666623612511}
179
+ InfoButton: {fileID: 1361953514}
178
180
  config: {fileID: 11400000, guid: bd55abd120a834eb9a26b57d4f36a08f, type: 2}
181
+ --- !u!1 &81691550
182
+ GameObject:
183
+ m_ObjectHideFlags: 0
184
+ m_CorrespondingSourceObject: {fileID: 0}
185
+ m_PrefabInstance: {fileID: 0}
186
+ m_PrefabAsset: {fileID: 0}
187
+ serializedVersion: 6
188
+ m_Component:
189
+ - component: {fileID: 81691551}
190
+ - component: {fileID: 81691553}
191
+ - component: {fileID: 81691552}
192
+ m_Layer: 5
193
+ m_Name: Container
194
+ m_TagString: Untagged
195
+ m_Icon: {fileID: 0}
196
+ m_NavMeshLayer: 0
197
+ m_StaticEditorFlags: 0
198
+ m_IsActive: 1
199
+ --- !u!224 &81691551
200
+ RectTransform:
201
+ m_ObjectHideFlags: 0
202
+ m_CorrespondingSourceObject: {fileID: 0}
203
+ m_PrefabInstance: {fileID: 0}
204
+ m_PrefabAsset: {fileID: 0}
205
+ m_GameObject: {fileID: 81691550}
206
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
207
+ m_LocalPosition: {x: 0, y: 0, z: 0}
208
+ m_LocalScale: {x: 1, y: 1, z: 1}
209
+ m_ConstrainProportionsScale: 0
210
+ m_Children:
211
+ - {fileID: 1412789052}
212
+ - {fileID: 1793428855}
213
+ - {fileID: 1361953513}
214
+ - {fileID: 166525721}
215
+ m_Father: {fileID: 32595363}
216
+ m_RootOrder: 0
217
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
218
+ m_AnchorMin: {x: 0, y: 0}
219
+ m_AnchorMax: {x: 1, y: 1}
220
+ m_AnchoredPosition: {x: 0, y: 0}
221
+ m_SizeDelta: {x: 0, y: 0}
222
+ m_Pivot: {x: 0.5, y: 0.5}
223
+ --- !u!114 &81691552
224
+ MonoBehaviour:
225
+ m_ObjectHideFlags: 0
226
+ m_CorrespondingSourceObject: {fileID: 0}
227
+ m_PrefabInstance: {fileID: 0}
228
+ m_PrefabAsset: {fileID: 0}
229
+ m_GameObject: {fileID: 81691550}
230
+ m_Enabled: 1
231
+ m_EditorHideFlags: 0
232
+ m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
233
+ m_Name:
234
+ m_EditorClassIdentifier:
235
+ m_Material: {fileID: 0}
236
+ m_Color: {r: 0.6981132, g: 0.6981132, b: 0.6981132, a: 1}
237
+ m_RaycastTarget: 1
238
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
239
+ m_Maskable: 1
240
+ m_OnCullStateChanged:
241
+ m_PersistentCalls:
242
+ m_Calls: []
243
+ m_Sprite: {fileID: 21300000, guid: e669acd2805965449b35eb0938af6d2e, type: 3}
244
+ m_Type: 0
245
+ m_PreserveAspect: 0
246
+ m_FillCenter: 1
247
+ m_FillMethod: 4
248
+ m_FillAmount: 1
249
+ m_FillClockwise: 1
250
+ m_FillOrigin: 0
251
+ m_UseSpriteMesh: 0
252
+ m_PixelsPerUnitMultiplier: 1
253
+ --- !u!222 &81691553
254
+ CanvasRenderer:
255
+ m_ObjectHideFlags: 0
256
+ m_CorrespondingSourceObject: {fileID: 0}
257
+ m_PrefabInstance: {fileID: 0}
258
+ m_PrefabAsset: {fileID: 0}
259
+ m_GameObject: {fileID: 81691550}
260
+ m_CullTransparentMesh: 1
261
+ --- !u!1 &166525720
262
+ GameObject:
263
+ m_ObjectHideFlags: 0
264
+ m_CorrespondingSourceObject: {fileID: 0}
265
+ m_PrefabInstance: {fileID: 0}
266
+ m_PrefabAsset: {fileID: 0}
267
+ serializedVersion: 6
268
+ m_Component:
269
+ - component: {fileID: 166525721}
270
+ - component: {fileID: 166525723}
271
+ - component: {fileID: 166525722}
272
+ m_Layer: 5
273
+ m_Name: Label
274
+ m_TagString: Untagged
275
+ m_Icon: {fileID: 0}
276
+ m_NavMeshLayer: 0
277
+ m_StaticEditorFlags: 0
278
+ m_IsActive: 1
279
+ --- !u!224 &166525721
280
+ RectTransform:
281
+ m_ObjectHideFlags: 0
282
+ m_CorrespondingSourceObject: {fileID: 0}
283
+ m_PrefabInstance: {fileID: 0}
284
+ m_PrefabAsset: {fileID: 0}
285
+ m_GameObject: {fileID: 166525720}
286
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
287
+ m_LocalPosition: {x: 0, y: 0, z: 0}
288
+ m_LocalScale: {x: 1, y: 1, z: 1}
289
+ m_ConstrainProportionsScale: 0
290
+ m_Children: []
291
+ m_Father: {fileID: 81691551}
292
+ m_RootOrder: 3
293
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
294
+ m_AnchorMin: {x: 0, y: 1}
295
+ m_AnchorMax: {x: 1, y: 1}
296
+ m_AnchoredPosition: {x: 149.02502, y: -59.079987}
297
+ m_SizeDelta: {x: -476.588, y: 74.6392}
298
+ m_Pivot: {x: 0.5, y: 0.5}
299
+ --- !u!114 &166525722
300
+ MonoBehaviour:
301
+ m_ObjectHideFlags: 0
302
+ m_CorrespondingSourceObject: {fileID: 0}
303
+ m_PrefabInstance: {fileID: 0}
304
+ m_PrefabAsset: {fileID: 0}
305
+ m_GameObject: {fileID: 166525720}
306
+ m_Enabled: 1
307
+ m_EditorHideFlags: 0
308
+ m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
309
+ m_Name:
310
+ m_EditorClassIdentifier: Unity.TextMeshPro::TMPro.TextMeshProUGUI
311
+ m_Material: {fileID: 0}
312
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
313
+ m_RaycastTarget: 1
314
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
315
+ m_Maskable: 1
316
+ m_OnCullStateChanged:
317
+ m_PersistentCalls:
318
+ m_Calls: []
319
+ m_text: FRIENDS MANAGEMENT SAMPLE
320
+ m_isRightToLeft: 0
321
+ m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
322
+ m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
323
+ m_fontSharedMaterials: []
324
+ m_fontMaterial: {fileID: 0}
325
+ m_fontMaterials: []
326
+ m_fontColor32:
327
+ serializedVersion: 2
328
+ rgba: 4294967295
329
+ m_fontColor: {r: 1, g: 1, b: 1, a: 1}
330
+ m_enableVertexGradient: 0
331
+ m_colorMode: 3
332
+ m_fontColorGradient:
333
+ topLeft: {r: 1, g: 1, b: 1, a: 1}
334
+ topRight: {r: 1, g: 1, b: 1, a: 1}
335
+ bottomLeft: {r: 1, g: 1, b: 1, a: 1}
336
+ bottomRight: {r: 1, g: 1, b: 1, a: 1}
337
+ m_fontColorGradientPreset: {fileID: 0}
338
+ m_spriteAsset: {fileID: 0}
339
+ m_tintAllSprites: 0
340
+ m_StyleSheet: {fileID: 0}
341
+ m_TextStyleHashCode: -1183493901
342
+ m_overrideHtmlColors: 0
343
+ m_faceColor:
344
+ serializedVersion: 2
345
+ rgba: 4294967295
346
+ m_fontSize: 40
347
+ m_fontSizeBase: 40
348
+ m_fontWeight: 400
349
+ m_enableAutoSizing: 1
350
+ m_fontSizeMin: 18
351
+ m_fontSizeMax: 40
352
+ m_fontStyle: 1
353
+ m_HorizontalAlignment: 4
354
+ m_VerticalAlignment: 512
355
+ m_textAlignment: 65535
356
+ m_characterSpacing: 0
357
+ m_wordSpacing: 0
358
+ m_lineSpacing: 0
359
+ m_lineSpacingMax: 0
360
+ m_paragraphSpacing: 0
361
+ m_charWidthMaxAdj: 0
362
+ m_enableWordWrapping: 0
363
+ m_wordWrappingRatios: 0.4
364
+ m_overflowMode: 0
365
+ m_linkedTextComponent: {fileID: 0}
366
+ parentLinkedComponent: {fileID: 0}
367
+ m_enableKerning: 0
368
+ m_enableExtraPadding: 0
369
+ checkPaddingRequired: 0
370
+ m_isRichText: 1
371
+ m_parseCtrlCharacters: 1
372
+ m_isOrthographic: 1
373
+ m_isCullingEnabled: 0
374
+ m_horizontalMapping: 0
375
+ m_verticalMapping: 0
376
+ m_uvLineOffset: 0
377
+ m_geometrySortingOrder: 0
378
+ m_IsTextObjectScaleStatic: 0
379
+ m_VertexBufferAutoSizeReduction: 0
380
+ m_useMaxVisibleDescender: 1
381
+ m_pageToDisplay: 1
382
+ m_margin: {x: 0, y: 0, z: 0, w: 0}
383
+ m_isUsingLegacyAnimationComponent: 0
384
+ m_isVolumetricText: 0
385
+ m_hasFontAssetChanged: 0
386
+ m_baseMaterial: {fileID: 0}
387
+ m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
388
+ --- !u!222 &166525723
389
+ CanvasRenderer:
390
+ m_ObjectHideFlags: 0
391
+ m_CorrespondingSourceObject: {fileID: 0}
392
+ m_PrefabInstance: {fileID: 0}
393
+ m_PrefabAsset: {fileID: 0}
394
+ m_GameObject: {fileID: 166525720}
395
+ m_CullTransparentMesh: 1
396
+ --- !u!224 &182510429 stripped
397
+ RectTransform:
398
+ m_CorrespondingSourceObject: {fileID: 673799390858040225, guid: c0060c25b921e4f32b314d92051e016d,
399
+ type: 3}
400
+ m_PrefabInstance: {fileID: 6757640479618302789}
401
+ m_PrefabAsset: {fileID: 0}
179
402
  --- !u!1 &458544362
180
403
  GameObject:
181
404
  m_ObjectHideFlags: 0
@@ -236,14 +459,20 @@ Transform:
236
459
  m_PrefabInstance: {fileID: 0}
237
460
  m_PrefabAsset: {fileID: 0}
238
461
  m_GameObject: {fileID: 458544362}
239
- serializedVersion: 2
240
462
  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
241
463
  m_LocalPosition: {x: 0, y: 0, z: 0}
242
464
  m_LocalScale: {x: 1, y: 1, z: 1}
243
465
  m_ConstrainProportionsScale: 0
244
466
  m_Children: []
245
467
  m_Father: {fileID: 0}
468
+ m_RootOrder: 1
246
469
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
470
+ --- !u!224 &695252398 stripped
471
+ RectTransform:
472
+ m_CorrespondingSourceObject: {fileID: 9219157895995322857, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
473
+ type: 3}
474
+ m_PrefabInstance: {fileID: 7177032027714735437}
475
+ m_PrefabAsset: {fileID: 0}
247
476
  --- !u!1 &789323071
248
477
  GameObject:
249
478
  m_ObjectHideFlags: 0
@@ -273,12 +502,25 @@ RectTransform:
273
502
  m_ConstrainProportionsScale: 0
274
503
  m_Children: []
275
504
  m_Father: {fileID: 1412789052}
505
+ m_RootOrder: 0
276
506
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
277
507
  m_AnchorMin: {x: 0.5, y: 0.5}
278
508
  m_AnchorMax: {x: 0.5, y: 0.5}
279
509
  m_AnchoredPosition: {x: 0, y: 0}
280
510
  m_SizeDelta: {x: 100, y: 100}
281
511
  m_Pivot: {x: 0.5, y: 0.5}
512
+ --- !u!224 &831482853 stripped
513
+ RectTransform:
514
+ m_CorrespondingSourceObject: {fileID: 7472257438401634977, guid: e894fbeec7d4c4ddeb7e381f94deca73,
515
+ type: 3}
516
+ m_PrefabInstance: {fileID: 5154552598456671296}
517
+ m_PrefabAsset: {fileID: 0}
518
+ --- !u!224 &887716660 stripped
519
+ RectTransform:
520
+ m_CorrespondingSourceObject: {fileID: 635883761041762154, guid: e7b4d74932cbb4527aa8927fb193bac2,
521
+ type: 3}
522
+ m_PrefabInstance: {fileID: 7332056843819990544}
523
+ m_PrefabAsset: {fileID: 0}
282
524
  --- !u!1 &1098410756
283
525
  GameObject:
284
526
  m_ObjectHideFlags: 0
@@ -355,9 +597,7 @@ Canvas:
355
597
  m_OverrideSorting: 0
356
598
  m_OverridePixelPerfect: 0
357
599
  m_SortingBucketNormalizedSize: 0
358
- m_VertexColorAlwaysGammaSpace: 0
359
600
  m_AdditionalShaderChannelsFlag: 25
360
- m_UpdateRectTransformForStandalone: 0
361
601
  m_SortingLayerID: 0
362
602
  m_SortingOrder: 0
363
603
  m_TargetDisplay: 0
@@ -375,12 +615,140 @@ RectTransform:
375
615
  m_Children:
376
616
  - {fileID: 32595363}
377
617
  m_Father: {fileID: 0}
618
+ m_RootOrder: 0
378
619
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
379
620
  m_AnchorMin: {x: 0, y: 0}
380
621
  m_AnchorMax: {x: 0, y: 0}
381
622
  m_AnchoredPosition: {x: 0, y: 0}
382
623
  m_SizeDelta: {x: 0, y: 0}
383
624
  m_Pivot: {x: 0, y: 0}
625
+ --- !u!224 &1160040512 stripped
626
+ RectTransform:
627
+ m_CorrespondingSourceObject: {fileID: 8114405603895884343, guid: b7caf857adc8343059bd0c48792da4a8,
628
+ type: 3}
629
+ m_PrefabInstance: {fileID: 4175710398471957197}
630
+ m_PrefabAsset: {fileID: 0}
631
+ --- !u!1 &1361953512
632
+ GameObject:
633
+ m_ObjectHideFlags: 0
634
+ m_CorrespondingSourceObject: {fileID: 0}
635
+ m_PrefabInstance: {fileID: 0}
636
+ m_PrefabAsset: {fileID: 0}
637
+ serializedVersion: 6
638
+ m_Component:
639
+ - component: {fileID: 1361953513}
640
+ - component: {fileID: 1361953516}
641
+ - component: {fileID: 1361953515}
642
+ - component: {fileID: 1361953514}
643
+ m_Layer: 5
644
+ m_Name: ButtonInfo
645
+ m_TagString: Untagged
646
+ m_Icon: {fileID: 0}
647
+ m_NavMeshLayer: 0
648
+ m_StaticEditorFlags: 0
649
+ m_IsActive: 1
650
+ --- !u!224 &1361953513
651
+ RectTransform:
652
+ m_ObjectHideFlags: 0
653
+ m_CorrespondingSourceObject: {fileID: 0}
654
+ m_PrefabInstance: {fileID: 0}
655
+ m_PrefabAsset: {fileID: 0}
656
+ m_GameObject: {fileID: 1361953512}
657
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
658
+ m_LocalPosition: {x: 0, y: 0, z: 0}
659
+ m_LocalScale: {x: 1, y: 1, z: 1}
660
+ m_ConstrainProportionsScale: 0
661
+ m_Children: []
662
+ m_Father: {fileID: 81691551}
663
+ m_RootOrder: 2
664
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
665
+ m_AnchorMin: {x: 1, y: 1}
666
+ m_AnchorMax: {x: 1, y: 1}
667
+ m_AnchoredPosition: {x: -47.9, y: -59.08}
668
+ m_SizeDelta: {x: 52.119, y: 51.6102}
669
+ m_Pivot: {x: 0.5, y: 0.5}
670
+ --- !u!114 &1361953514
671
+ MonoBehaviour:
672
+ m_ObjectHideFlags: 0
673
+ m_CorrespondingSourceObject: {fileID: 0}
674
+ m_PrefabInstance: {fileID: 0}
675
+ m_PrefabAsset: {fileID: 0}
676
+ m_GameObject: {fileID: 1361953512}
677
+ m_Enabled: 1
678
+ m_EditorHideFlags: 0
679
+ m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
680
+ m_Name:
681
+ m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Button
682
+ m_Navigation:
683
+ m_Mode: 3
684
+ m_WrapAround: 0
685
+ m_SelectOnUp: {fileID: 0}
686
+ m_SelectOnDown: {fileID: 0}
687
+ m_SelectOnLeft: {fileID: 0}
688
+ m_SelectOnRight: {fileID: 0}
689
+ m_Transition: 1
690
+ m_Colors:
691
+ m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
692
+ m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
693
+ m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
694
+ m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
695
+ m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
696
+ m_ColorMultiplier: 1
697
+ m_FadeDuration: 0.1
698
+ m_SpriteState:
699
+ m_HighlightedSprite: {fileID: 0}
700
+ m_PressedSprite: {fileID: 0}
701
+ m_SelectedSprite: {fileID: 0}
702
+ m_DisabledSprite: {fileID: 0}
703
+ m_AnimationTriggers:
704
+ m_NormalTrigger: Normal
705
+ m_HighlightedTrigger: Highlighted
706
+ m_PressedTrigger: Pressed
707
+ m_SelectedTrigger: Selected
708
+ m_DisabledTrigger: Disabled
709
+ m_Interactable: 1
710
+ m_TargetGraphic: {fileID: 1361953515}
711
+ m_OnClick:
712
+ m_PersistentCalls:
713
+ m_Calls: []
714
+ --- !u!114 &1361953515
715
+ MonoBehaviour:
716
+ m_ObjectHideFlags: 0
717
+ m_CorrespondingSourceObject: {fileID: 0}
718
+ m_PrefabInstance: {fileID: 0}
719
+ m_PrefabAsset: {fileID: 0}
720
+ m_GameObject: {fileID: 1361953512}
721
+ m_Enabled: 1
722
+ m_EditorHideFlags: 0
723
+ m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
724
+ m_Name:
725
+ m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image
726
+ m_Material: {fileID: 0}
727
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
728
+ m_RaycastTarget: 1
729
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
730
+ m_Maskable: 1
731
+ m_OnCullStateChanged:
732
+ m_PersistentCalls:
733
+ m_Calls: []
734
+ m_Sprite: {fileID: 21300000, guid: be0e2f89747107f4db87e4b22aee2437, type: 3}
735
+ m_Type: 0
736
+ m_PreserveAspect: 1
737
+ m_FillCenter: 1
738
+ m_FillMethod: 4
739
+ m_FillAmount: 1
740
+ m_FillClockwise: 1
741
+ m_FillOrigin: 0
742
+ m_UseSpriteMesh: 0
743
+ m_PixelsPerUnitMultiplier: 1
744
+ --- !u!222 &1361953516
745
+ CanvasRenderer:
746
+ m_ObjectHideFlags: 0
747
+ m_CorrespondingSourceObject: {fileID: 0}
748
+ m_PrefabInstance: {fileID: 0}
749
+ m_PrefabAsset: {fileID: 0}
750
+ m_GameObject: {fileID: 1361953512}
751
+ m_CullTransparentMesh: 1
384
752
  --- !u!1 &1412789051
385
753
  GameObject:
386
754
  m_ObjectHideFlags: 0
@@ -391,7 +759,6 @@ GameObject:
391
759
  m_Component:
392
760
  - component: {fileID: 1412789052}
393
761
  - component: {fileID: 1412789054}
394
- - component: {fileID: 1412789053}
395
762
  m_Layer: 5
396
763
  m_Name: Content
397
764
  m_TagString: Untagged
@@ -406,42 +773,95 @@ RectTransform:
406
773
  m_PrefabInstance: {fileID: 0}
407
774
  m_PrefabAsset: {fileID: 0}
408
775
  m_GameObject: {fileID: 1412789051}
409
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
776
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
410
777
  m_LocalPosition: {x: 0, y: 0, z: 0}
411
778
  m_LocalScale: {x: 1, y: 1, z: 1}
412
779
  m_ConstrainProportionsScale: 0
413
780
  m_Children:
414
781
  - {fileID: 789323072}
415
- m_Father: {fileID: 32595363}
782
+ - {fileID: 831482853}
783
+ - {fileID: 695252398}
784
+ - {fileID: 887716660}
785
+ - {fileID: 182510429}
786
+ - {fileID: 1914734960}
787
+ - {fileID: 1160040512}
788
+ m_Father: {fileID: 81691551}
789
+ m_RootOrder: 0
416
790
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
417
791
  m_AnchorMin: {x: 0, y: 0}
418
792
  m_AnchorMax: {x: 1, y: 1}
419
- m_AnchoredPosition: {x: 0, y: 0}
420
- m_SizeDelta: {x: 0, y: 0}
793
+ m_AnchoredPosition: {x: -0.00012207031, y: -65}
794
+ m_SizeDelta: {x: 0, y: -130}
421
795
  m_Pivot: {x: 0.5, y: 0.5}
422
- --- !u!114 &1412789053
423
- MonoBehaviour:
796
+ --- !u!222 &1412789054
797
+ CanvasRenderer:
424
798
  m_ObjectHideFlags: 0
425
799
  m_CorrespondingSourceObject: {fileID: 0}
426
800
  m_PrefabInstance: {fileID: 0}
427
801
  m_PrefabAsset: {fileID: 0}
428
802
  m_GameObject: {fileID: 1412789051}
803
+ m_CullTransparentMesh: 1
804
+ --- !u!1 &1793428854
805
+ GameObject:
806
+ m_ObjectHideFlags: 0
807
+ m_CorrespondingSourceObject: {fileID: 0}
808
+ m_PrefabInstance: {fileID: 0}
809
+ m_PrefabAsset: {fileID: 0}
810
+ serializedVersion: 6
811
+ m_Component:
812
+ - component: {fileID: 1793428855}
813
+ - component: {fileID: 1793428857}
814
+ - component: {fileID: 1793428856}
815
+ m_Layer: 5
816
+ m_Name: Logo
817
+ m_TagString: Untagged
818
+ m_Icon: {fileID: 0}
819
+ m_NavMeshLayer: 0
820
+ m_StaticEditorFlags: 0
821
+ m_IsActive: 1
822
+ --- !u!224 &1793428855
823
+ RectTransform:
824
+ m_ObjectHideFlags: 0
825
+ m_CorrespondingSourceObject: {fileID: 0}
826
+ m_PrefabInstance: {fileID: 0}
827
+ m_PrefabAsset: {fileID: 0}
828
+ m_GameObject: {fileID: 1793428854}
829
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
830
+ m_LocalPosition: {x: 0, y: 0, z: 0}
831
+ m_LocalScale: {x: 1, y: 1, z: 1}
832
+ m_ConstrainProportionsScale: 0
833
+ m_Children: []
834
+ m_Father: {fileID: 81691551}
835
+ m_RootOrder: 1
836
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
837
+ m_AnchorMin: {x: 0, y: 1}
838
+ m_AnchorMax: {x: 0, y: 1}
839
+ m_AnchoredPosition: {x: 193, y: -57}
840
+ m_SizeDelta: {x: 332.7265, y: 70.485}
841
+ m_Pivot: {x: 0.5, y: 0.5}
842
+ --- !u!114 &1793428856
843
+ MonoBehaviour:
844
+ m_ObjectHideFlags: 0
845
+ m_CorrespondingSourceObject: {fileID: 0}
846
+ m_PrefabInstance: {fileID: 0}
847
+ m_PrefabAsset: {fileID: 0}
848
+ m_GameObject: {fileID: 1793428854}
429
849
  m_Enabled: 1
430
850
  m_EditorHideFlags: 0
431
851
  m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
432
852
  m_Name:
433
- m_EditorClassIdentifier:
853
+ m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image
434
854
  m_Material: {fileID: 0}
435
- m_Color: {r: 0, g: 0, b: 0, a: 1}
855
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
436
856
  m_RaycastTarget: 1
437
857
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
438
858
  m_Maskable: 1
439
859
  m_OnCullStateChanged:
440
860
  m_PersistentCalls:
441
861
  m_Calls: []
442
- m_Sprite: {fileID: 0}
862
+ m_Sprite: {fileID: 21300000, guid: 722fe80901bc1ce44aa0e7bb97a3dcef, type: 3}
443
863
  m_Type: 0
444
- m_PreserveAspect: 0
864
+ m_PreserveAspect: 1
445
865
  m_FillCenter: 1
446
866
  m_FillMethod: 4
447
867
  m_FillAmount: 1
@@ -449,14 +869,20 @@ MonoBehaviour:
449
869
  m_FillOrigin: 0
450
870
  m_UseSpriteMesh: 0
451
871
  m_PixelsPerUnitMultiplier: 1
452
- --- !u!222 &1412789054
872
+ --- !u!222 &1793428857
453
873
  CanvasRenderer:
454
874
  m_ObjectHideFlags: 0
455
875
  m_CorrespondingSourceObject: {fileID: 0}
456
876
  m_PrefabInstance: {fileID: 0}
457
877
  m_PrefabAsset: {fileID: 0}
458
- m_GameObject: {fileID: 1412789051}
878
+ m_GameObject: {fileID: 1793428854}
459
879
  m_CullTransparentMesh: 1
880
+ --- !u!224 &1914734960 stripped
881
+ RectTransform:
882
+ m_CorrespondingSourceObject: {fileID: 6290017027643302036, guid: 8539a039716614099a903c159f63fc63,
883
+ type: 3}
884
+ m_PrefabInstance: {fileID: 8504532867355849204}
885
+ m_PrefabAsset: {fileID: 0}
460
886
  --- !u!1 &2021928063
461
887
  GameObject:
462
888
  m_ObjectHideFlags: 0
@@ -497,17 +923,9 @@ Camera:
497
923
  m_projectionMatrixMode: 1
498
924
  m_GateFitMode: 2
499
925
  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
926
  m_SensorSize: {x: 36, y: 24}
510
927
  m_LensShift: {x: 0, y: 0}
928
+ m_FocalLength: 50
511
929
  m_NormalizedViewPortRect:
512
930
  serializedVersion: 2
513
931
  x: 0
@@ -541,13 +959,13 @@ Transform:
541
959
  m_PrefabInstance: {fileID: 0}
542
960
  m_PrefabAsset: {fileID: 0}
543
961
  m_GameObject: {fileID: 2021928063}
544
- serializedVersion: 2
545
962
  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
546
963
  m_LocalPosition: {x: 0, y: 0, z: -10}
547
964
  m_LocalScale: {x: 1, y: 1, z: 1}
548
965
  m_ConstrainProportionsScale: 0
549
966
  m_Children: []
550
967
  m_Father: {fileID: 0}
968
+ m_RootOrder: 2
551
969
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
552
970
  --- !u!222 &1200338147386144915
553
971
  CanvasRenderer:
@@ -640,7 +1058,7 @@ MonoBehaviour:
640
1058
  m_enableAutoSizing: 0
641
1059
  m_fontSizeMin: 18
642
1060
  m_fontSizeMax: 72
643
- m_fontStyle: 0
1061
+ m_fontStyle: 1
644
1062
  m_HorizontalAlignment: 1
645
1063
  m_VerticalAlignment: 256
646
1064
  m_textAlignment: 65535
@@ -650,7 +1068,7 @@ MonoBehaviour:
650
1068
  m_lineSpacingMax: 0
651
1069
  m_paragraphSpacing: 0
652
1070
  m_charWidthMaxAdj: 0
653
- m_enableWordWrapping: 1
1071
+ m_enableWordWrapping: 0
654
1072
  m_wordWrappingRatios: 0.4
655
1073
  m_overflowMode: 0
656
1074
  m_linkedTextComponent: {fileID: 0}
@@ -673,9 +1091,133 @@ MonoBehaviour:
673
1091
  m_margin: {x: 0, y: 0, z: 0, w: 0}
674
1092
  m_isUsingLegacyAnimationComponent: 0
675
1093
  m_isVolumetricText: 0
676
- m_hasFontAssetChanged: 0
1094
+ m_hasFontAssetChanged: 1
677
1095
  m_baseMaterial: {fileID: 0}
678
1096
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
1097
+ --- !u!1001 &4175710398471957197
1098
+ PrefabInstance:
1099
+ m_ObjectHideFlags: 0
1100
+ serializedVersion: 2
1101
+ m_Modification:
1102
+ m_TransformParent: {fileID: 1412789052}
1103
+ m_Modifications:
1104
+ - target: {fileID: 5219578477240304918, guid: b7caf857adc8343059bd0c48792da4a8,
1105
+ type: 3}
1106
+ propertyPath: m_Name
1107
+ value: SentInviteDisplay
1108
+ objectReference: {fileID: 0}
1109
+ - target: {fileID: 5219578477240304918, guid: b7caf857adc8343059bd0c48792da4a8,
1110
+ type: 3}
1111
+ propertyPath: m_IsActive
1112
+ value: 0
1113
+ objectReference: {fileID: 0}
1114
+ - target: {fileID: 8114405603895884343, guid: b7caf857adc8343059bd0c48792da4a8,
1115
+ type: 3}
1116
+ propertyPath: m_Pivot.x
1117
+ value: 0.5
1118
+ objectReference: {fileID: 0}
1119
+ - target: {fileID: 8114405603895884343, guid: b7caf857adc8343059bd0c48792da4a8,
1120
+ type: 3}
1121
+ propertyPath: m_Pivot.y
1122
+ value: 0.5
1123
+ objectReference: {fileID: 0}
1124
+ - target: {fileID: 8114405603895884343, guid: b7caf857adc8343059bd0c48792da4a8,
1125
+ type: 3}
1126
+ propertyPath: m_RootOrder
1127
+ value: 6
1128
+ objectReference: {fileID: 0}
1129
+ - target: {fileID: 8114405603895884343, guid: b7caf857adc8343059bd0c48792da4a8,
1130
+ type: 3}
1131
+ propertyPath: m_AnchorMax.x
1132
+ value: 0
1133
+ objectReference: {fileID: 0}
1134
+ - target: {fileID: 8114405603895884343, guid: b7caf857adc8343059bd0c48792da4a8,
1135
+ type: 3}
1136
+ propertyPath: m_AnchorMax.y
1137
+ value: 0
1138
+ objectReference: {fileID: 0}
1139
+ - target: {fileID: 8114405603895884343, guid: b7caf857adc8343059bd0c48792da4a8,
1140
+ type: 3}
1141
+ propertyPath: m_AnchorMin.x
1142
+ value: 0
1143
+ objectReference: {fileID: 0}
1144
+ - target: {fileID: 8114405603895884343, guid: b7caf857adc8343059bd0c48792da4a8,
1145
+ type: 3}
1146
+ propertyPath: m_AnchorMin.y
1147
+ value: 0
1148
+ objectReference: {fileID: 0}
1149
+ - target: {fileID: 8114405603895884343, guid: b7caf857adc8343059bd0c48792da4a8,
1150
+ type: 3}
1151
+ propertyPath: m_SizeDelta.x
1152
+ value: 480
1153
+ objectReference: {fileID: 0}
1154
+ - target: {fileID: 8114405603895884343, guid: b7caf857adc8343059bd0c48792da4a8,
1155
+ type: 3}
1156
+ propertyPath: m_SizeDelta.y
1157
+ value: 120
1158
+ objectReference: {fileID: 0}
1159
+ - target: {fileID: 8114405603895884343, guid: b7caf857adc8343059bd0c48792da4a8,
1160
+ type: 3}
1161
+ propertyPath: m_LocalPosition.x
1162
+ value: 0
1163
+ objectReference: {fileID: 0}
1164
+ - target: {fileID: 8114405603895884343, guid: b7caf857adc8343059bd0c48792da4a8,
1165
+ type: 3}
1166
+ propertyPath: m_LocalPosition.y
1167
+ value: 0
1168
+ objectReference: {fileID: 0}
1169
+ - target: {fileID: 8114405603895884343, guid: b7caf857adc8343059bd0c48792da4a8,
1170
+ type: 3}
1171
+ propertyPath: m_LocalPosition.z
1172
+ value: 0
1173
+ objectReference: {fileID: 0}
1174
+ - target: {fileID: 8114405603895884343, guid: b7caf857adc8343059bd0c48792da4a8,
1175
+ type: 3}
1176
+ propertyPath: m_LocalRotation.w
1177
+ value: 1
1178
+ objectReference: {fileID: 0}
1179
+ - target: {fileID: 8114405603895884343, guid: b7caf857adc8343059bd0c48792da4a8,
1180
+ type: 3}
1181
+ propertyPath: m_LocalRotation.x
1182
+ value: 0
1183
+ objectReference: {fileID: 0}
1184
+ - target: {fileID: 8114405603895884343, guid: b7caf857adc8343059bd0c48792da4a8,
1185
+ type: 3}
1186
+ propertyPath: m_LocalRotation.y
1187
+ value: 0
1188
+ objectReference: {fileID: 0}
1189
+ - target: {fileID: 8114405603895884343, guid: b7caf857adc8343059bd0c48792da4a8,
1190
+ type: 3}
1191
+ propertyPath: m_LocalRotation.z
1192
+ value: 0
1193
+ objectReference: {fileID: 0}
1194
+ - target: {fileID: 8114405603895884343, guid: b7caf857adc8343059bd0c48792da4a8,
1195
+ type: 3}
1196
+ propertyPath: m_AnchoredPosition.x
1197
+ value: 0
1198
+ objectReference: {fileID: 0}
1199
+ - target: {fileID: 8114405603895884343, guid: b7caf857adc8343059bd0c48792da4a8,
1200
+ type: 3}
1201
+ propertyPath: m_AnchoredPosition.y
1202
+ value: 0
1203
+ objectReference: {fileID: 0}
1204
+ - target: {fileID: 8114405603895884343, guid: b7caf857adc8343059bd0c48792da4a8,
1205
+ type: 3}
1206
+ propertyPath: m_LocalEulerAnglesHint.x
1207
+ value: 0
1208
+ objectReference: {fileID: 0}
1209
+ - target: {fileID: 8114405603895884343, guid: b7caf857adc8343059bd0c48792da4a8,
1210
+ type: 3}
1211
+ propertyPath: m_LocalEulerAnglesHint.y
1212
+ value: 0
1213
+ objectReference: {fileID: 0}
1214
+ - target: {fileID: 8114405603895884343, guid: b7caf857adc8343059bd0c48792da4a8,
1215
+ type: 3}
1216
+ propertyPath: m_LocalEulerAnglesHint.z
1217
+ value: 0
1218
+ objectReference: {fileID: 0}
1219
+ m_RemovedComponents: []
1220
+ m_SourcePrefab: {fileID: 100100000, guid: b7caf857adc8343059bd0c48792da4a8, type: 3}
679
1221
  --- !u!224 &4375801385269977617
680
1222
  RectTransform:
681
1223
  m_ObjectHideFlags: 0
@@ -690,6 +1232,7 @@ RectTransform:
690
1232
  m_Children:
691
1233
  - {fileID: 5740556254506216597}
692
1234
  m_Father: {fileID: 32595363}
1235
+ m_RootOrder: 1
693
1236
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
694
1237
  m_AnchorMin: {x: 0, y: 0}
695
1238
  m_AnchorMax: {x: 1, y: 1}
@@ -709,14 +1252,14 @@ MonoBehaviour:
709
1252
  m_Name:
710
1253
  m_EditorClassIdentifier:
711
1254
  m_Material: {fileID: 0}
712
- m_Color: {r: 0, g: 0, b: 0, a: 1}
1255
+ m_Color: {r: 0.6981132, g: 0.6981132, b: 0.6981132, a: 1}
713
1256
  m_RaycastTarget: 1
714
1257
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
715
1258
  m_Maskable: 1
716
1259
  m_OnCullStateChanged:
717
1260
  m_PersistentCalls:
718
1261
  m_Calls: []
719
- m_Sprite: {fileID: 0}
1262
+ m_Sprite: {fileID: 21300000, guid: e669acd2805965449b35eb0938af6d2e, type: 3}
720
1263
  m_Type: 0
721
1264
  m_PreserveAspect: 0
722
1265
  m_FillCenter: 1
@@ -744,7 +1287,131 @@ GameObject:
744
1287
  m_Icon: {fileID: 0}
745
1288
  m_NavMeshLayer: 0
746
1289
  m_StaticEditorFlags: 0
747
- m_IsActive: 1
1290
+ m_IsActive: 0
1291
+ --- !u!1001 &5154552598456671296
1292
+ PrefabInstance:
1293
+ m_ObjectHideFlags: 0
1294
+ serializedVersion: 2
1295
+ m_Modification:
1296
+ m_TransformParent: {fileID: 1412789052}
1297
+ m_Modifications:
1298
+ - target: {fileID: 6982442460772828873, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1299
+ type: 3}
1300
+ propertyPath: m_Name
1301
+ value: BlockedDisplay
1302
+ objectReference: {fileID: 0}
1303
+ - target: {fileID: 6982442460772828873, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1304
+ type: 3}
1305
+ propertyPath: m_IsActive
1306
+ value: 0
1307
+ objectReference: {fileID: 0}
1308
+ - target: {fileID: 7472257438401634977, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1309
+ type: 3}
1310
+ propertyPath: m_Pivot.x
1311
+ value: 0.5
1312
+ objectReference: {fileID: 0}
1313
+ - target: {fileID: 7472257438401634977, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1314
+ type: 3}
1315
+ propertyPath: m_Pivot.y
1316
+ value: 0.5
1317
+ objectReference: {fileID: 0}
1318
+ - target: {fileID: 7472257438401634977, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1319
+ type: 3}
1320
+ propertyPath: m_RootOrder
1321
+ value: 1
1322
+ objectReference: {fileID: 0}
1323
+ - target: {fileID: 7472257438401634977, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1324
+ type: 3}
1325
+ propertyPath: m_AnchorMax.x
1326
+ value: 0
1327
+ objectReference: {fileID: 0}
1328
+ - target: {fileID: 7472257438401634977, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1329
+ type: 3}
1330
+ propertyPath: m_AnchorMax.y
1331
+ value: 0
1332
+ objectReference: {fileID: 0}
1333
+ - target: {fileID: 7472257438401634977, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1334
+ type: 3}
1335
+ propertyPath: m_AnchorMin.x
1336
+ value: 0
1337
+ objectReference: {fileID: 0}
1338
+ - target: {fileID: 7472257438401634977, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1339
+ type: 3}
1340
+ propertyPath: m_AnchorMin.y
1341
+ value: 0
1342
+ objectReference: {fileID: 0}
1343
+ - target: {fileID: 7472257438401634977, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1344
+ type: 3}
1345
+ propertyPath: m_SizeDelta.x
1346
+ value: 480
1347
+ objectReference: {fileID: 0}
1348
+ - target: {fileID: 7472257438401634977, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1349
+ type: 3}
1350
+ propertyPath: m_SizeDelta.y
1351
+ value: 120
1352
+ objectReference: {fileID: 0}
1353
+ - target: {fileID: 7472257438401634977, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1354
+ type: 3}
1355
+ propertyPath: m_LocalPosition.x
1356
+ value: 0
1357
+ objectReference: {fileID: 0}
1358
+ - target: {fileID: 7472257438401634977, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1359
+ type: 3}
1360
+ propertyPath: m_LocalPosition.y
1361
+ value: 0
1362
+ objectReference: {fileID: 0}
1363
+ - target: {fileID: 7472257438401634977, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1364
+ type: 3}
1365
+ propertyPath: m_LocalPosition.z
1366
+ value: 0
1367
+ objectReference: {fileID: 0}
1368
+ - target: {fileID: 7472257438401634977, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1369
+ type: 3}
1370
+ propertyPath: m_LocalRotation.w
1371
+ value: 1
1372
+ objectReference: {fileID: 0}
1373
+ - target: {fileID: 7472257438401634977, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1374
+ type: 3}
1375
+ propertyPath: m_LocalRotation.x
1376
+ value: 0
1377
+ objectReference: {fileID: 0}
1378
+ - target: {fileID: 7472257438401634977, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1379
+ type: 3}
1380
+ propertyPath: m_LocalRotation.y
1381
+ value: 0
1382
+ objectReference: {fileID: 0}
1383
+ - target: {fileID: 7472257438401634977, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1384
+ type: 3}
1385
+ propertyPath: m_LocalRotation.z
1386
+ value: 0
1387
+ objectReference: {fileID: 0}
1388
+ - target: {fileID: 7472257438401634977, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1389
+ type: 3}
1390
+ propertyPath: m_AnchoredPosition.x
1391
+ value: 0
1392
+ objectReference: {fileID: 0}
1393
+ - target: {fileID: 7472257438401634977, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1394
+ type: 3}
1395
+ propertyPath: m_AnchoredPosition.y
1396
+ value: 0
1397
+ objectReference: {fileID: 0}
1398
+ - target: {fileID: 7472257438401634977, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1399
+ type: 3}
1400
+ propertyPath: m_LocalEulerAnglesHint.x
1401
+ value: 0
1402
+ objectReference: {fileID: 0}
1403
+ - target: {fileID: 7472257438401634977, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1404
+ type: 3}
1405
+ propertyPath: m_LocalEulerAnglesHint.y
1406
+ value: 0
1407
+ objectReference: {fileID: 0}
1408
+ - target: {fileID: 7472257438401634977, guid: e894fbeec7d4c4ddeb7e381f94deca73,
1409
+ type: 3}
1410
+ propertyPath: m_LocalEulerAnglesHint.z
1411
+ value: 0
1412
+ objectReference: {fileID: 0}
1413
+ m_RemovedComponents: []
1414
+ m_SourcePrefab: {fileID: 100100000, guid: e894fbeec7d4c4ddeb7e381f94deca73, type: 3}
748
1415
  --- !u!222 &5210553750647963825
749
1416
  CanvasRenderer:
750
1417
  m_ObjectHideFlags: 0
@@ -766,16 +1433,1421 @@ RectTransform:
766
1433
  m_ConstrainProportionsScale: 0
767
1434
  m_Children: []
768
1435
  m_Father: {fileID: 4375801385269977617}
1436
+ m_RootOrder: 0
769
1437
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
770
1438
  m_AnchorMin: {x: 0.5, y: 0.5}
771
1439
  m_AnchorMax: {x: 0.5, y: 0.5}
772
1440
  m_AnchoredPosition: {x: 0, y: 0}
773
1441
  m_SizeDelta: {x: 200, y: 50}
774
1442
  m_Pivot: {x: 0.5, y: 0.5}
775
- --- !u!1660057539 &9223372036854775807
776
- SceneRoots:
1443
+ --- !u!1001 &6757640479618302789
1444
+ PrefabInstance:
777
1445
  m_ObjectHideFlags: 0
778
- m_Roots:
779
- - {fileID: 2021928066}
780
- - {fileID: 1098410761}
781
- - {fileID: 458544365}
1446
+ serializedVersion: 2
1447
+ m_Modification:
1448
+ m_TransformParent: {fileID: 1412789052}
1449
+ m_Modifications:
1450
+ - target: {fileID: 673799390858040225, guid: c0060c25b921e4f32b314d92051e016d,
1451
+ type: 3}
1452
+ propertyPath: m_Pivot.x
1453
+ value: 0.5
1454
+ objectReference: {fileID: 0}
1455
+ - target: {fileID: 673799390858040225, guid: c0060c25b921e4f32b314d92051e016d,
1456
+ type: 3}
1457
+ propertyPath: m_Pivot.y
1458
+ value: 0.5
1459
+ objectReference: {fileID: 0}
1460
+ - target: {fileID: 673799390858040225, guid: c0060c25b921e4f32b314d92051e016d,
1461
+ type: 3}
1462
+ propertyPath: m_RootOrder
1463
+ value: 4
1464
+ objectReference: {fileID: 0}
1465
+ - target: {fileID: 673799390858040225, guid: c0060c25b921e4f32b314d92051e016d,
1466
+ type: 3}
1467
+ propertyPath: m_AnchorMax.x
1468
+ value: 1
1469
+ objectReference: {fileID: 0}
1470
+ - target: {fileID: 673799390858040225, guid: c0060c25b921e4f32b314d92051e016d,
1471
+ type: 3}
1472
+ propertyPath: m_AnchorMax.y
1473
+ value: 1
1474
+ objectReference: {fileID: 0}
1475
+ - target: {fileID: 673799390858040225, guid: c0060c25b921e4f32b314d92051e016d,
1476
+ type: 3}
1477
+ propertyPath: m_AnchorMin.x
1478
+ value: 0
1479
+ objectReference: {fileID: 0}
1480
+ - target: {fileID: 673799390858040225, guid: c0060c25b921e4f32b314d92051e016d,
1481
+ type: 3}
1482
+ propertyPath: m_AnchorMin.y
1483
+ value: 0
1484
+ objectReference: {fileID: 0}
1485
+ - target: {fileID: 673799390858040225, guid: c0060c25b921e4f32b314d92051e016d,
1486
+ type: 3}
1487
+ propertyPath: m_SizeDelta.x
1488
+ value: 0
1489
+ objectReference: {fileID: 0}
1490
+ - target: {fileID: 673799390858040225, guid: c0060c25b921e4f32b314d92051e016d,
1491
+ type: 3}
1492
+ propertyPath: m_SizeDelta.y
1493
+ value: 0
1494
+ objectReference: {fileID: 0}
1495
+ - target: {fileID: 673799390858040225, guid: c0060c25b921e4f32b314d92051e016d,
1496
+ type: 3}
1497
+ propertyPath: m_LocalPosition.x
1498
+ value: 0
1499
+ objectReference: {fileID: 0}
1500
+ - target: {fileID: 673799390858040225, guid: c0060c25b921e4f32b314d92051e016d,
1501
+ type: 3}
1502
+ propertyPath: m_LocalPosition.y
1503
+ value: 0
1504
+ objectReference: {fileID: 0}
1505
+ - target: {fileID: 673799390858040225, guid: c0060c25b921e4f32b314d92051e016d,
1506
+ type: 3}
1507
+ propertyPath: m_LocalPosition.z
1508
+ value: 0
1509
+ objectReference: {fileID: 0}
1510
+ - target: {fileID: 673799390858040225, guid: c0060c25b921e4f32b314d92051e016d,
1511
+ type: 3}
1512
+ propertyPath: m_LocalRotation.w
1513
+ value: 1
1514
+ objectReference: {fileID: 0}
1515
+ - target: {fileID: 673799390858040225, guid: c0060c25b921e4f32b314d92051e016d,
1516
+ type: 3}
1517
+ propertyPath: m_LocalRotation.x
1518
+ value: 0
1519
+ objectReference: {fileID: 0}
1520
+ - target: {fileID: 673799390858040225, guid: c0060c25b921e4f32b314d92051e016d,
1521
+ type: 3}
1522
+ propertyPath: m_LocalRotation.y
1523
+ value: 0
1524
+ objectReference: {fileID: 0}
1525
+ - target: {fileID: 673799390858040225, guid: c0060c25b921e4f32b314d92051e016d,
1526
+ type: 3}
1527
+ propertyPath: m_LocalRotation.z
1528
+ value: 0
1529
+ objectReference: {fileID: 0}
1530
+ - target: {fileID: 673799390858040225, guid: c0060c25b921e4f32b314d92051e016d,
1531
+ type: 3}
1532
+ propertyPath: m_AnchoredPosition.x
1533
+ value: 0
1534
+ objectReference: {fileID: 0}
1535
+ - target: {fileID: 673799390858040225, guid: c0060c25b921e4f32b314d92051e016d,
1536
+ type: 3}
1537
+ propertyPath: m_AnchoredPosition.y
1538
+ value: 0
1539
+ objectReference: {fileID: 0}
1540
+ - target: {fileID: 673799390858040225, guid: c0060c25b921e4f32b314d92051e016d,
1541
+ type: 3}
1542
+ propertyPath: m_LocalEulerAnglesHint.x
1543
+ value: 0
1544
+ objectReference: {fileID: 0}
1545
+ - target: {fileID: 673799390858040225, guid: c0060c25b921e4f32b314d92051e016d,
1546
+ type: 3}
1547
+ propertyPath: m_LocalEulerAnglesHint.y
1548
+ value: 0
1549
+ objectReference: {fileID: 0}
1550
+ - target: {fileID: 673799390858040225, guid: c0060c25b921e4f32b314d92051e016d,
1551
+ type: 3}
1552
+ propertyPath: m_LocalEulerAnglesHint.z
1553
+ value: 0
1554
+ objectReference: {fileID: 0}
1555
+ - target: {fileID: 921651878831865893, guid: c0060c25b921e4f32b314d92051e016d,
1556
+ type: 3}
1557
+ propertyPath: m_AnchorMax.y
1558
+ value: 1
1559
+ objectReference: {fileID: 0}
1560
+ - target: {fileID: 921651878831865893, guid: c0060c25b921e4f32b314d92051e016d,
1561
+ type: 3}
1562
+ propertyPath: m_AnchorMin.y
1563
+ value: 1
1564
+ objectReference: {fileID: 0}
1565
+ - target: {fileID: 921651878831865893, guid: c0060c25b921e4f32b314d92051e016d,
1566
+ type: 3}
1567
+ propertyPath: m_SizeDelta.x
1568
+ value: 444.99997
1569
+ objectReference: {fileID: 0}
1570
+ - target: {fileID: 921651878831865893, guid: c0060c25b921e4f32b314d92051e016d,
1571
+ type: 3}
1572
+ propertyPath: m_AnchoredPosition.x
1573
+ value: 232.49998
1574
+ objectReference: {fileID: 0}
1575
+ - target: {fileID: 921651878831865893, guid: c0060c25b921e4f32b314d92051e016d,
1576
+ type: 3}
1577
+ propertyPath: m_AnchoredPosition.y
1578
+ value: -28.0423
1579
+ objectReference: {fileID: 0}
1580
+ - target: {fileID: 955366261314103750, guid: c0060c25b921e4f32b314d92051e016d,
1581
+ type: 3}
1582
+ propertyPath: m_AnchorMax.y
1583
+ value: 1
1584
+ objectReference: {fileID: 0}
1585
+ - target: {fileID: 955366261314103750, guid: c0060c25b921e4f32b314d92051e016d,
1586
+ type: 3}
1587
+ propertyPath: m_AnchorMin.y
1588
+ value: 1
1589
+ objectReference: {fileID: 0}
1590
+ - target: {fileID: 955366261314103750, guid: c0060c25b921e4f32b314d92051e016d,
1591
+ type: 3}
1592
+ propertyPath: m_AnchoredPosition.x
1593
+ value: 234.99998
1594
+ objectReference: {fileID: 0}
1595
+ - target: {fileID: 955366261314103750, guid: c0060c25b921e4f32b314d92051e016d,
1596
+ type: 3}
1597
+ propertyPath: m_AnchoredPosition.y
1598
+ value: -20
1599
+ objectReference: {fileID: 0}
1600
+ - target: {fileID: 1246780710290042019, guid: c0060c25b921e4f32b314d92051e016d,
1601
+ type: 3}
1602
+ propertyPath: m_AnchorMax.y
1603
+ value: 1
1604
+ objectReference: {fileID: 0}
1605
+ - target: {fileID: 1246780710290042019, guid: c0060c25b921e4f32b314d92051e016d,
1606
+ type: 3}
1607
+ propertyPath: m_AnchorMin.y
1608
+ value: 1
1609
+ objectReference: {fileID: 0}
1610
+ - target: {fileID: 1246780710290042019, guid: c0060c25b921e4f32b314d92051e016d,
1611
+ type: 3}
1612
+ propertyPath: m_AnchoredPosition.x
1613
+ value: 182.30998
1614
+ objectReference: {fileID: 0}
1615
+ - target: {fileID: 1246780710290042019, guid: c0060c25b921e4f32b314d92051e016d,
1616
+ type: 3}
1617
+ propertyPath: m_AnchoredPosition.y
1618
+ value: -20
1619
+ objectReference: {fileID: 0}
1620
+ - target: {fileID: 1948559802124378696, guid: c0060c25b921e4f32b314d92051e016d,
1621
+ type: 3}
1622
+ propertyPath: m_AnchorMax.x
1623
+ value: 1
1624
+ objectReference: {fileID: 0}
1625
+ - target: {fileID: 1948559802124378696, guid: c0060c25b921e4f32b314d92051e016d,
1626
+ type: 3}
1627
+ propertyPath: m_AnchorMax.y
1628
+ value: 1
1629
+ objectReference: {fileID: 0}
1630
+ - target: {fileID: 1948559802124378696, guid: c0060c25b921e4f32b314d92051e016d,
1631
+ type: 3}
1632
+ propertyPath: m_SizeDelta.x
1633
+ value: -17
1634
+ objectReference: {fileID: 0}
1635
+ - target: {fileID: 2178397869984363605, guid: c0060c25b921e4f32b314d92051e016d,
1636
+ type: 3}
1637
+ propertyPath: m_AnchorMax.y
1638
+ value: 1
1639
+ objectReference: {fileID: 0}
1640
+ - target: {fileID: 2178397869984363605, guid: c0060c25b921e4f32b314d92051e016d,
1641
+ type: 3}
1642
+ propertyPath: m_AnchorMin.y
1643
+ value: 1
1644
+ objectReference: {fileID: 0}
1645
+ - target: {fileID: 2178397869984363605, guid: c0060c25b921e4f32b314d92051e016d,
1646
+ type: 3}
1647
+ propertyPath: m_AnchoredPosition.x
1648
+ value: 182.30998
1649
+ objectReference: {fileID: 0}
1650
+ - target: {fileID: 2178397869984363605, guid: c0060c25b921e4f32b314d92051e016d,
1651
+ type: 3}
1652
+ propertyPath: m_AnchoredPosition.y
1653
+ value: -20
1654
+ objectReference: {fileID: 0}
1655
+ - target: {fileID: 3815621840700843603, guid: c0060c25b921e4f32b314d92051e016d,
1656
+ type: 3}
1657
+ propertyPath: m_AnchorMax.y
1658
+ value: 1
1659
+ objectReference: {fileID: 0}
1660
+ - target: {fileID: 3815621840700843603, guid: c0060c25b921e4f32b314d92051e016d,
1661
+ type: 3}
1662
+ propertyPath: m_AnchorMin.y
1663
+ value: 1
1664
+ objectReference: {fileID: 0}
1665
+ - target: {fileID: 3815621840700843603, guid: c0060c25b921e4f32b314d92051e016d,
1666
+ type: 3}
1667
+ propertyPath: m_SizeDelta.x
1668
+ value: 444.99997
1669
+ objectReference: {fileID: 0}
1670
+ - target: {fileID: 3815621840700843603, guid: c0060c25b921e4f32b314d92051e016d,
1671
+ type: 3}
1672
+ propertyPath: m_AnchoredPosition.x
1673
+ value: 697.49994
1674
+ objectReference: {fileID: 0}
1675
+ - target: {fileID: 3815621840700843603, guid: c0060c25b921e4f32b314d92051e016d,
1676
+ type: 3}
1677
+ propertyPath: m_AnchoredPosition.y
1678
+ value: -28.0423
1679
+ objectReference: {fileID: 0}
1680
+ - target: {fileID: 3853874930956324784, guid: c0060c25b921e4f32b314d92051e016d,
1681
+ type: 3}
1682
+ propertyPath: m_AnchorMax.y
1683
+ value: 1
1684
+ objectReference: {fileID: 0}
1685
+ - target: {fileID: 3853874930956324784, guid: c0060c25b921e4f32b314d92051e016d,
1686
+ type: 3}
1687
+ propertyPath: m_AnchorMin.y
1688
+ value: 1
1689
+ objectReference: {fileID: 0}
1690
+ - target: {fileID: 3853874930956324784, guid: c0060c25b921e4f32b314d92051e016d,
1691
+ type: 3}
1692
+ propertyPath: m_AnchoredPosition.x
1693
+ value: 234.99998
1694
+ objectReference: {fileID: 0}
1695
+ - target: {fileID: 3853874930956324784, guid: c0060c25b921e4f32b314d92051e016d,
1696
+ type: 3}
1697
+ propertyPath: m_AnchoredPosition.y
1698
+ value: -20
1699
+ objectReference: {fileID: 0}
1700
+ - target: {fileID: 4180314848952589119, guid: c0060c25b921e4f32b314d92051e016d,
1701
+ type: 3}
1702
+ propertyPath: m_Name
1703
+ value: PlayerDisplay
1704
+ objectReference: {fileID: 0}
1705
+ - target: {fileID: 4180314848952589119, guid: c0060c25b921e4f32b314d92051e016d,
1706
+ type: 3}
1707
+ propertyPath: m_IsActive
1708
+ value: 0
1709
+ objectReference: {fileID: 0}
1710
+ - target: {fileID: 4479519903799995009, guid: c0060c25b921e4f32b314d92051e016d,
1711
+ type: 3}
1712
+ propertyPath: m_AnchorMax.x
1713
+ value: 1
1714
+ objectReference: {fileID: 0}
1715
+ - target: {fileID: 4479519903799995009, guid: c0060c25b921e4f32b314d92051e016d,
1716
+ type: 3}
1717
+ propertyPath: m_AnchorMax.y
1718
+ value: 1
1719
+ objectReference: {fileID: 0}
1720
+ - target: {fileID: 5044715213662878887, guid: c0060c25b921e4f32b314d92051e016d,
1721
+ type: 3}
1722
+ propertyPath: m_AnchorMax.y
1723
+ value: 1
1724
+ objectReference: {fileID: 0}
1725
+ - target: {fileID: 5044715213662878887, guid: c0060c25b921e4f32b314d92051e016d,
1726
+ type: 3}
1727
+ propertyPath: m_AnchorMin.y
1728
+ value: 1
1729
+ objectReference: {fileID: 0}
1730
+ - target: {fileID: 5044715213662878887, guid: c0060c25b921e4f32b314d92051e016d,
1731
+ type: 3}
1732
+ propertyPath: m_SizeDelta.x
1733
+ value: 444.99997
1734
+ objectReference: {fileID: 0}
1735
+ - target: {fileID: 5044715213662878887, guid: c0060c25b921e4f32b314d92051e016d,
1736
+ type: 3}
1737
+ propertyPath: m_AnchoredPosition.x
1738
+ value: 1627.4999
1739
+ objectReference: {fileID: 0}
1740
+ - target: {fileID: 5044715213662878887, guid: c0060c25b921e4f32b314d92051e016d,
1741
+ type: 3}
1742
+ propertyPath: m_AnchoredPosition.y
1743
+ value: -28.0423
1744
+ objectReference: {fileID: 0}
1745
+ - target: {fileID: 5292891622624027729, guid: c0060c25b921e4f32b314d92051e016d,
1746
+ type: 3}
1747
+ propertyPath: m_AnchorMax.y
1748
+ value: 1
1749
+ objectReference: {fileID: 0}
1750
+ - target: {fileID: 5292891622624027729, guid: c0060c25b921e4f32b314d92051e016d,
1751
+ type: 3}
1752
+ propertyPath: m_AnchorMin.y
1753
+ value: 1
1754
+ objectReference: {fileID: 0}
1755
+ - target: {fileID: 5292891622624027729, guid: c0060c25b921e4f32b314d92051e016d,
1756
+ type: 3}
1757
+ propertyPath: m_SizeDelta.x
1758
+ value: 444.99997
1759
+ objectReference: {fileID: 0}
1760
+ - target: {fileID: 5292891622624027729, guid: c0060c25b921e4f32b314d92051e016d,
1761
+ type: 3}
1762
+ propertyPath: m_AnchoredPosition.x
1763
+ value: 1162.4999
1764
+ objectReference: {fileID: 0}
1765
+ - target: {fileID: 5292891622624027729, guid: c0060c25b921e4f32b314d92051e016d,
1766
+ type: 3}
1767
+ propertyPath: m_AnchoredPosition.y
1768
+ value: -28.0423
1769
+ objectReference: {fileID: 0}
1770
+ - target: {fileID: 6121246283401824471, guid: c0060c25b921e4f32b314d92051e016d,
1771
+ type: 3}
1772
+ propertyPath: m_AnchorMax.y
1773
+ value: 1
1774
+ objectReference: {fileID: 0}
1775
+ - target: {fileID: 6121246283401824471, guid: c0060c25b921e4f32b314d92051e016d,
1776
+ type: 3}
1777
+ propertyPath: m_AnchorMin.y
1778
+ value: 1
1779
+ objectReference: {fileID: 0}
1780
+ - target: {fileID: 6121246283401824471, guid: c0060c25b921e4f32b314d92051e016d,
1781
+ type: 3}
1782
+ propertyPath: m_AnchoredPosition.x
1783
+ value: 182.30998
1784
+ objectReference: {fileID: 0}
1785
+ - target: {fileID: 6121246283401824471, guid: c0060c25b921e4f32b314d92051e016d,
1786
+ type: 3}
1787
+ propertyPath: m_AnchoredPosition.y
1788
+ value: -20
1789
+ objectReference: {fileID: 0}
1790
+ - target: {fileID: 7839248839506849441, guid: c0060c25b921e4f32b314d92051e016d,
1791
+ type: 3}
1792
+ propertyPath: m_AnchorMax.y
1793
+ value: 1
1794
+ objectReference: {fileID: 0}
1795
+ - target: {fileID: 7839248839506849441, guid: c0060c25b921e4f32b314d92051e016d,
1796
+ type: 3}
1797
+ propertyPath: m_AnchorMin.y
1798
+ value: 1
1799
+ objectReference: {fileID: 0}
1800
+ - target: {fileID: 7839248839506849441, guid: c0060c25b921e4f32b314d92051e016d,
1801
+ type: 3}
1802
+ propertyPath: m_AnchoredPosition.x
1803
+ value: 182.30998
1804
+ objectReference: {fileID: 0}
1805
+ - target: {fileID: 7839248839506849441, guid: c0060c25b921e4f32b314d92051e016d,
1806
+ type: 3}
1807
+ propertyPath: m_AnchoredPosition.y
1808
+ value: -20
1809
+ objectReference: {fileID: 0}
1810
+ - target: {fileID: 8126125093141244868, guid: c0060c25b921e4f32b314d92051e016d,
1811
+ type: 3}
1812
+ propertyPath: m_AnchorMax.y
1813
+ value: 1
1814
+ objectReference: {fileID: 0}
1815
+ - target: {fileID: 8126125093141244868, guid: c0060c25b921e4f32b314d92051e016d,
1816
+ type: 3}
1817
+ propertyPath: m_AnchorMin.y
1818
+ value: 1
1819
+ objectReference: {fileID: 0}
1820
+ - target: {fileID: 8126125093141244868, guid: c0060c25b921e4f32b314d92051e016d,
1821
+ type: 3}
1822
+ propertyPath: m_AnchoredPosition.x
1823
+ value: 234.99998
1824
+ objectReference: {fileID: 0}
1825
+ - target: {fileID: 8126125093141244868, guid: c0060c25b921e4f32b314d92051e016d,
1826
+ type: 3}
1827
+ propertyPath: m_AnchoredPosition.y
1828
+ value: -20
1829
+ objectReference: {fileID: 0}
1830
+ - target: {fileID: 9201846445392884530, guid: c0060c25b921e4f32b314d92051e016d,
1831
+ type: 3}
1832
+ propertyPath: m_AnchorMax.y
1833
+ value: 1
1834
+ objectReference: {fileID: 0}
1835
+ - target: {fileID: 9201846445392884530, guid: c0060c25b921e4f32b314d92051e016d,
1836
+ type: 3}
1837
+ propertyPath: m_AnchorMin.y
1838
+ value: 1
1839
+ objectReference: {fileID: 0}
1840
+ - target: {fileID: 9201846445392884530, guid: c0060c25b921e4f32b314d92051e016d,
1841
+ type: 3}
1842
+ propertyPath: m_AnchoredPosition.x
1843
+ value: 234.99998
1844
+ objectReference: {fileID: 0}
1845
+ - target: {fileID: 9201846445392884530, guid: c0060c25b921e4f32b314d92051e016d,
1846
+ type: 3}
1847
+ propertyPath: m_AnchoredPosition.y
1848
+ value: -20
1849
+ objectReference: {fileID: 0}
1850
+ m_RemovedComponents: []
1851
+ m_SourcePrefab: {fileID: 100100000, guid: c0060c25b921e4f32b314d92051e016d, type: 3}
1852
+ --- !u!1001 &7177032027714735437
1853
+ PrefabInstance:
1854
+ m_ObjectHideFlags: 0
1855
+ serializedVersion: 2
1856
+ m_Modification:
1857
+ m_TransformParent: {fileID: 1412789052}
1858
+ m_Modifications:
1859
+ - target: {fileID: 6756574164319071645, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1860
+ type: 3}
1861
+ propertyPath: m_Name
1862
+ value: FriendDisplay
1863
+ objectReference: {fileID: 0}
1864
+ - target: {fileID: 6756574164319071645, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1865
+ type: 3}
1866
+ propertyPath: m_IsActive
1867
+ value: 0
1868
+ objectReference: {fileID: 0}
1869
+ - target: {fileID: 9219157895995322857, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1870
+ type: 3}
1871
+ propertyPath: m_Pivot.x
1872
+ value: 0.5
1873
+ objectReference: {fileID: 0}
1874
+ - target: {fileID: 9219157895995322857, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1875
+ type: 3}
1876
+ propertyPath: m_Pivot.y
1877
+ value: 0.5
1878
+ objectReference: {fileID: 0}
1879
+ - target: {fileID: 9219157895995322857, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1880
+ type: 3}
1881
+ propertyPath: m_RootOrder
1882
+ value: 2
1883
+ objectReference: {fileID: 0}
1884
+ - target: {fileID: 9219157895995322857, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1885
+ type: 3}
1886
+ propertyPath: m_AnchorMax.x
1887
+ value: 0
1888
+ objectReference: {fileID: 0}
1889
+ - target: {fileID: 9219157895995322857, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1890
+ type: 3}
1891
+ propertyPath: m_AnchorMax.y
1892
+ value: 0
1893
+ objectReference: {fileID: 0}
1894
+ - target: {fileID: 9219157895995322857, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1895
+ type: 3}
1896
+ propertyPath: m_AnchorMin.x
1897
+ value: 0
1898
+ objectReference: {fileID: 0}
1899
+ - target: {fileID: 9219157895995322857, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1900
+ type: 3}
1901
+ propertyPath: m_AnchorMin.y
1902
+ value: 0
1903
+ objectReference: {fileID: 0}
1904
+ - target: {fileID: 9219157895995322857, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1905
+ type: 3}
1906
+ propertyPath: m_SizeDelta.x
1907
+ value: 480
1908
+ objectReference: {fileID: 0}
1909
+ - target: {fileID: 9219157895995322857, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1910
+ type: 3}
1911
+ propertyPath: m_SizeDelta.y
1912
+ value: 120
1913
+ objectReference: {fileID: 0}
1914
+ - target: {fileID: 9219157895995322857, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1915
+ type: 3}
1916
+ propertyPath: m_LocalPosition.x
1917
+ value: 0
1918
+ objectReference: {fileID: 0}
1919
+ - target: {fileID: 9219157895995322857, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1920
+ type: 3}
1921
+ propertyPath: m_LocalPosition.y
1922
+ value: 0
1923
+ objectReference: {fileID: 0}
1924
+ - target: {fileID: 9219157895995322857, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1925
+ type: 3}
1926
+ propertyPath: m_LocalPosition.z
1927
+ value: 0
1928
+ objectReference: {fileID: 0}
1929
+ - target: {fileID: 9219157895995322857, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1930
+ type: 3}
1931
+ propertyPath: m_LocalRotation.w
1932
+ value: 1
1933
+ objectReference: {fileID: 0}
1934
+ - target: {fileID: 9219157895995322857, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1935
+ type: 3}
1936
+ propertyPath: m_LocalRotation.x
1937
+ value: 0
1938
+ objectReference: {fileID: 0}
1939
+ - target: {fileID: 9219157895995322857, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1940
+ type: 3}
1941
+ propertyPath: m_LocalRotation.y
1942
+ value: 0
1943
+ objectReference: {fileID: 0}
1944
+ - target: {fileID: 9219157895995322857, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1945
+ type: 3}
1946
+ propertyPath: m_LocalRotation.z
1947
+ value: 0
1948
+ objectReference: {fileID: 0}
1949
+ - target: {fileID: 9219157895995322857, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1950
+ type: 3}
1951
+ propertyPath: m_AnchoredPosition.x
1952
+ value: 0
1953
+ objectReference: {fileID: 0}
1954
+ - target: {fileID: 9219157895995322857, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1955
+ type: 3}
1956
+ propertyPath: m_AnchoredPosition.y
1957
+ value: 0
1958
+ objectReference: {fileID: 0}
1959
+ - target: {fileID: 9219157895995322857, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1960
+ type: 3}
1961
+ propertyPath: m_LocalEulerAnglesHint.x
1962
+ value: 0
1963
+ objectReference: {fileID: 0}
1964
+ - target: {fileID: 9219157895995322857, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1965
+ type: 3}
1966
+ propertyPath: m_LocalEulerAnglesHint.y
1967
+ value: 0
1968
+ objectReference: {fileID: 0}
1969
+ - target: {fileID: 9219157895995322857, guid: f379f4eaeb4994e9cacf2ec65e4c27af,
1970
+ type: 3}
1971
+ propertyPath: m_LocalEulerAnglesHint.z
1972
+ value: 0
1973
+ objectReference: {fileID: 0}
1974
+ m_RemovedComponents: []
1975
+ m_SourcePrefab: {fileID: 100100000, guid: f379f4eaeb4994e9cacf2ec65e4c27af, type: 3}
1976
+ --- !u!1001 &7332056843819990544
1977
+ PrefabInstance:
1978
+ m_ObjectHideFlags: 0
1979
+ serializedVersion: 2
1980
+ m_Modification:
1981
+ m_TransformParent: {fileID: 1412789052}
1982
+ m_Modifications:
1983
+ - target: {fileID: 119361176136463684, guid: e7b4d74932cbb4527aa8927fb193bac2,
1984
+ type: 3}
1985
+ propertyPath: m_AnchorMax.x
1986
+ value: 1
1987
+ objectReference: {fileID: 0}
1988
+ - target: {fileID: 119361176136463684, guid: e7b4d74932cbb4527aa8927fb193bac2,
1989
+ type: 3}
1990
+ propertyPath: m_AnchorMax.y
1991
+ value: 1
1992
+ objectReference: {fileID: 0}
1993
+ - target: {fileID: 119361176136463684, guid: e7b4d74932cbb4527aa8927fb193bac2,
1994
+ type: 3}
1995
+ propertyPath: m_SizeDelta.x
1996
+ value: -17
1997
+ objectReference: {fileID: 0}
1998
+ - target: {fileID: 331467406739120985, guid: e7b4d74932cbb4527aa8927fb193bac2,
1999
+ type: 3}
2000
+ propertyPath: m_AnchorMax.y
2001
+ value: 1
2002
+ objectReference: {fileID: 0}
2003
+ - target: {fileID: 331467406739120985, guid: e7b4d74932cbb4527aa8927fb193bac2,
2004
+ type: 3}
2005
+ propertyPath: m_AnchorMin.y
2006
+ value: 1
2007
+ objectReference: {fileID: 0}
2008
+ - target: {fileID: 331467406739120985, guid: e7b4d74932cbb4527aa8927fb193bac2,
2009
+ type: 3}
2010
+ propertyPath: m_AnchoredPosition.x
2011
+ value: 59.087963
2012
+ objectReference: {fileID: 0}
2013
+ - target: {fileID: 331467406739120985, guid: e7b4d74932cbb4527aa8927fb193bac2,
2014
+ type: 3}
2015
+ propertyPath: m_AnchoredPosition.y
2016
+ value: -20
2017
+ objectReference: {fileID: 0}
2018
+ - target: {fileID: 635883761041762154, guid: e7b4d74932cbb4527aa8927fb193bac2,
2019
+ type: 3}
2020
+ propertyPath: m_Pivot.x
2021
+ value: 0.5
2022
+ objectReference: {fileID: 0}
2023
+ - target: {fileID: 635883761041762154, guid: e7b4d74932cbb4527aa8927fb193bac2,
2024
+ type: 3}
2025
+ propertyPath: m_Pivot.y
2026
+ value: 0.5
2027
+ objectReference: {fileID: 0}
2028
+ - target: {fileID: 635883761041762154, guid: e7b4d74932cbb4527aa8927fb193bac2,
2029
+ type: 3}
2030
+ propertyPath: m_RootOrder
2031
+ value: 3
2032
+ objectReference: {fileID: 0}
2033
+ - target: {fileID: 635883761041762154, guid: e7b4d74932cbb4527aa8927fb193bac2,
2034
+ type: 3}
2035
+ propertyPath: m_AnchorMax.x
2036
+ value: 1
2037
+ objectReference: {fileID: 0}
2038
+ - target: {fileID: 635883761041762154, guid: e7b4d74932cbb4527aa8927fb193bac2,
2039
+ type: 3}
2040
+ propertyPath: m_AnchorMax.y
2041
+ value: 1
2042
+ objectReference: {fileID: 0}
2043
+ - target: {fileID: 635883761041762154, guid: e7b4d74932cbb4527aa8927fb193bac2,
2044
+ type: 3}
2045
+ propertyPath: m_AnchorMin.x
2046
+ value: 0
2047
+ objectReference: {fileID: 0}
2048
+ - target: {fileID: 635883761041762154, guid: e7b4d74932cbb4527aa8927fb193bac2,
2049
+ type: 3}
2050
+ propertyPath: m_AnchorMin.y
2051
+ value: 0
2052
+ objectReference: {fileID: 0}
2053
+ - target: {fileID: 635883761041762154, guid: e7b4d74932cbb4527aa8927fb193bac2,
2054
+ type: 3}
2055
+ propertyPath: m_SizeDelta.x
2056
+ value: 0
2057
+ objectReference: {fileID: 0}
2058
+ - target: {fileID: 635883761041762154, guid: e7b4d74932cbb4527aa8927fb193bac2,
2059
+ type: 3}
2060
+ propertyPath: m_SizeDelta.y
2061
+ value: 0
2062
+ objectReference: {fileID: 0}
2063
+ - target: {fileID: 635883761041762154, guid: e7b4d74932cbb4527aa8927fb193bac2,
2064
+ type: 3}
2065
+ propertyPath: m_LocalPosition.x
2066
+ value: 0
2067
+ objectReference: {fileID: 0}
2068
+ - target: {fileID: 635883761041762154, guid: e7b4d74932cbb4527aa8927fb193bac2,
2069
+ type: 3}
2070
+ propertyPath: m_LocalPosition.y
2071
+ value: 0
2072
+ objectReference: {fileID: 0}
2073
+ - target: {fileID: 635883761041762154, guid: e7b4d74932cbb4527aa8927fb193bac2,
2074
+ type: 3}
2075
+ propertyPath: m_LocalPosition.z
2076
+ value: 0
2077
+ objectReference: {fileID: 0}
2078
+ - target: {fileID: 635883761041762154, guid: e7b4d74932cbb4527aa8927fb193bac2,
2079
+ type: 3}
2080
+ propertyPath: m_LocalRotation.w
2081
+ value: 1
2082
+ objectReference: {fileID: 0}
2083
+ - target: {fileID: 635883761041762154, guid: e7b4d74932cbb4527aa8927fb193bac2,
2084
+ type: 3}
2085
+ propertyPath: m_LocalRotation.x
2086
+ value: 0
2087
+ objectReference: {fileID: 0}
2088
+ - target: {fileID: 635883761041762154, guid: e7b4d74932cbb4527aa8927fb193bac2,
2089
+ type: 3}
2090
+ propertyPath: m_LocalRotation.y
2091
+ value: 0
2092
+ objectReference: {fileID: 0}
2093
+ - target: {fileID: 635883761041762154, guid: e7b4d74932cbb4527aa8927fb193bac2,
2094
+ type: 3}
2095
+ propertyPath: m_LocalRotation.z
2096
+ value: 0
2097
+ objectReference: {fileID: 0}
2098
+ - target: {fileID: 635883761041762154, guid: e7b4d74932cbb4527aa8927fb193bac2,
2099
+ type: 3}
2100
+ propertyPath: m_AnchoredPosition.x
2101
+ value: 0
2102
+ objectReference: {fileID: 0}
2103
+ - target: {fileID: 635883761041762154, guid: e7b4d74932cbb4527aa8927fb193bac2,
2104
+ type: 3}
2105
+ propertyPath: m_AnchoredPosition.y
2106
+ value: 0
2107
+ objectReference: {fileID: 0}
2108
+ - target: {fileID: 635883761041762154, guid: e7b4d74932cbb4527aa8927fb193bac2,
2109
+ type: 3}
2110
+ propertyPath: m_LocalEulerAnglesHint.x
2111
+ value: 0
2112
+ objectReference: {fileID: 0}
2113
+ - target: {fileID: 635883761041762154, guid: e7b4d74932cbb4527aa8927fb193bac2,
2114
+ type: 3}
2115
+ propertyPath: m_LocalEulerAnglesHint.y
2116
+ value: 0
2117
+ objectReference: {fileID: 0}
2118
+ - target: {fileID: 635883761041762154, guid: e7b4d74932cbb4527aa8927fb193bac2,
2119
+ type: 3}
2120
+ propertyPath: m_LocalEulerAnglesHint.z
2121
+ value: 0
2122
+ objectReference: {fileID: 0}
2123
+ - target: {fileID: 635883761041762155, guid: e7b4d74932cbb4527aa8927fb193bac2,
2124
+ type: 3}
2125
+ propertyPath: m_Name
2126
+ value: HomePage
2127
+ objectReference: {fileID: 0}
2128
+ - target: {fileID: 635883761041762155, guid: e7b4d74932cbb4527aa8927fb193bac2,
2129
+ type: 3}
2130
+ propertyPath: m_IsActive
2131
+ value: 0
2132
+ objectReference: {fileID: 0}
2133
+ - target: {fileID: 860142418233211823, guid: e7b4d74932cbb4527aa8927fb193bac2,
2134
+ type: 3}
2135
+ propertyPath: m_AnchorMax.y
2136
+ value: 1
2137
+ objectReference: {fileID: 0}
2138
+ - target: {fileID: 860142418233211823, guid: e7b4d74932cbb4527aa8927fb193bac2,
2139
+ type: 3}
2140
+ propertyPath: m_AnchorMin.y
2141
+ value: 1
2142
+ objectReference: {fileID: 0}
2143
+ - target: {fileID: 860142418233211823, guid: e7b4d74932cbb4527aa8927fb193bac2,
2144
+ type: 3}
2145
+ propertyPath: m_AnchoredPosition.x
2146
+ value: 59.087963
2147
+ objectReference: {fileID: 0}
2148
+ - target: {fileID: 860142418233211823, guid: e7b4d74932cbb4527aa8927fb193bac2,
2149
+ type: 3}
2150
+ propertyPath: m_AnchoredPosition.y
2151
+ value: -20
2152
+ objectReference: {fileID: 0}
2153
+ - target: {fileID: 1065530803399356715, guid: e7b4d74932cbb4527aa8927fb193bac2,
2154
+ type: 3}
2155
+ propertyPath: m_AnchorMax.y
2156
+ value: 1
2157
+ objectReference: {fileID: 0}
2158
+ - target: {fileID: 1065530803399356715, guid: e7b4d74932cbb4527aa8927fb193bac2,
2159
+ type: 3}
2160
+ propertyPath: m_AnchorMin.y
2161
+ value: 1
2162
+ objectReference: {fileID: 0}
2163
+ - target: {fileID: 1065530803399356715, guid: e7b4d74932cbb4527aa8927fb193bac2,
2164
+ type: 3}
2165
+ propertyPath: m_AnchoredPosition.x
2166
+ value: 59.087963
2167
+ objectReference: {fileID: 0}
2168
+ - target: {fileID: 1065530803399356715, guid: e7b4d74932cbb4527aa8927fb193bac2,
2169
+ type: 3}
2170
+ propertyPath: m_AnchoredPosition.y
2171
+ value: -20
2172
+ objectReference: {fileID: 0}
2173
+ - target: {fileID: 1391242220277276077, guid: e7b4d74932cbb4527aa8927fb193bac2,
2174
+ type: 3}
2175
+ propertyPath: m_AnchorMax.y
2176
+ value: 1
2177
+ objectReference: {fileID: 0}
2178
+ - target: {fileID: 1391242220277276077, guid: e7b4d74932cbb4527aa8927fb193bac2,
2179
+ type: 3}
2180
+ propertyPath: m_AnchorMin.y
2181
+ value: 1
2182
+ objectReference: {fileID: 0}
2183
+ - target: {fileID: 1391242220277276077, guid: e7b4d74932cbb4527aa8927fb193bac2,
2184
+ type: 3}
2185
+ propertyPath: m_SizeDelta.x
2186
+ value: 198.55592
2187
+ objectReference: {fileID: 0}
2188
+ - target: {fileID: 1391242220277276077, guid: e7b4d74932cbb4527aa8927fb193bac2,
2189
+ type: 3}
2190
+ propertyPath: m_AnchoredPosition.x
2191
+ value: 546.38983
2192
+ objectReference: {fileID: 0}
2193
+ - target: {fileID: 1391242220277276077, guid: e7b4d74932cbb4527aa8927fb193bac2,
2194
+ type: 3}
2195
+ propertyPath: m_AnchoredPosition.y
2196
+ value: -28.0423
2197
+ objectReference: {fileID: 0}
2198
+ - target: {fileID: 1439870341024007341, guid: e7b4d74932cbb4527aa8927fb193bac2,
2199
+ type: 3}
2200
+ propertyPath: m_AnchorMax.y
2201
+ value: 1
2202
+ objectReference: {fileID: 0}
2203
+ - target: {fileID: 1439870341024007341, guid: e7b4d74932cbb4527aa8927fb193bac2,
2204
+ type: 3}
2205
+ propertyPath: m_AnchorMin.y
2206
+ value: 1
2207
+ objectReference: {fileID: 0}
2208
+ - target: {fileID: 1439870341024007341, guid: e7b4d74932cbb4527aa8927fb193bac2,
2209
+ type: 3}
2210
+ propertyPath: m_SizeDelta.x
2211
+ value: 934.2237
2212
+ objectReference: {fileID: 0}
2213
+ - target: {fileID: 1439870341024007341, guid: e7b4d74932cbb4527aa8927fb193bac2,
2214
+ type: 3}
2215
+ propertyPath: m_SizeDelta.y
2216
+ value: 722.125
2217
+ objectReference: {fileID: 0}
2218
+ - target: {fileID: 1439870341024007341, guid: e7b4d74932cbb4527aa8927fb193bac2,
2219
+ type: 3}
2220
+ propertyPath: m_AnchoredPosition.x
2221
+ value: 477.11185
2222
+ objectReference: {fileID: 0}
2223
+ - target: {fileID: 1439870341024007341, guid: e7b4d74932cbb4527aa8927fb193bac2,
2224
+ type: 3}
2225
+ propertyPath: m_AnchoredPosition.y
2226
+ value: -461.0625
2227
+ objectReference: {fileID: 0}
2228
+ - target: {fileID: 1614820892191545129, guid: e7b4d74932cbb4527aa8927fb193bac2,
2229
+ type: 3}
2230
+ propertyPath: m_AnchorMax.y
2231
+ value: 1
2232
+ objectReference: {fileID: 0}
2233
+ - target: {fileID: 1614820892191545129, guid: e7b4d74932cbb4527aa8927fb193bac2,
2234
+ type: 3}
2235
+ propertyPath: m_AnchorMin.y
2236
+ value: 1
2237
+ objectReference: {fileID: 0}
2238
+ - target: {fileID: 1614820892191545129, guid: e7b4d74932cbb4527aa8927fb193bac2,
2239
+ type: 3}
2240
+ propertyPath: m_SizeDelta.x
2241
+ value: 198.55592
2242
+ objectReference: {fileID: 0}
2243
+ - target: {fileID: 1614820892191545129, guid: e7b4d74932cbb4527aa8927fb193bac2,
2244
+ type: 3}
2245
+ propertyPath: m_AnchoredPosition.x
2246
+ value: 109.27796
2247
+ objectReference: {fileID: 0}
2248
+ - target: {fileID: 1614820892191545129, guid: e7b4d74932cbb4527aa8927fb193bac2,
2249
+ type: 3}
2250
+ propertyPath: m_AnchoredPosition.y
2251
+ value: -28.0423
2252
+ objectReference: {fileID: 0}
2253
+ - target: {fileID: 1720522418363678410, guid: e7b4d74932cbb4527aa8927fb193bac2,
2254
+ type: 3}
2255
+ propertyPath: m_AnchorMax.y
2256
+ value: 1
2257
+ objectReference: {fileID: 0}
2258
+ - target: {fileID: 1720522418363678410, guid: e7b4d74932cbb4527aa8927fb193bac2,
2259
+ type: 3}
2260
+ propertyPath: m_AnchorMin.y
2261
+ value: 1
2262
+ objectReference: {fileID: 0}
2263
+ - target: {fileID: 1720522418363678410, guid: e7b4d74932cbb4527aa8927fb193bac2,
2264
+ type: 3}
2265
+ propertyPath: m_AnchoredPosition.x
2266
+ value: 111.77797
2267
+ objectReference: {fileID: 0}
2268
+ - target: {fileID: 1720522418363678410, guid: e7b4d74932cbb4527aa8927fb193bac2,
2269
+ type: 3}
2270
+ propertyPath: m_AnchoredPosition.y
2271
+ value: -20
2272
+ objectReference: {fileID: 0}
2273
+ - target: {fileID: 2033624051399787867, guid: e7b4d74932cbb4527aa8927fb193bac2,
2274
+ type: 3}
2275
+ propertyPath: m_AnchorMax.y
2276
+ value: 1
2277
+ objectReference: {fileID: 0}
2278
+ - target: {fileID: 2033624051399787867, guid: e7b4d74932cbb4527aa8927fb193bac2,
2279
+ type: 3}
2280
+ propertyPath: m_AnchorMin.y
2281
+ value: 1
2282
+ objectReference: {fileID: 0}
2283
+ - target: {fileID: 2033624051399787867, guid: e7b4d74932cbb4527aa8927fb193bac2,
2284
+ type: 3}
2285
+ propertyPath: m_SizeDelta.x
2286
+ value: 198.55592
2287
+ objectReference: {fileID: 0}
2288
+ - target: {fileID: 2033624051399787867, guid: e7b4d74932cbb4527aa8927fb193bac2,
2289
+ type: 3}
2290
+ propertyPath: m_AnchoredPosition.x
2291
+ value: 764.94574
2292
+ objectReference: {fileID: 0}
2293
+ - target: {fileID: 2033624051399787867, guid: e7b4d74932cbb4527aa8927fb193bac2,
2294
+ type: 3}
2295
+ propertyPath: m_AnchoredPosition.y
2296
+ value: -28.0423
2297
+ objectReference: {fileID: 0}
2298
+ - target: {fileID: 2632583874297134477, guid: e7b4d74932cbb4527aa8927fb193bac2,
2299
+ type: 3}
2300
+ propertyPath: m_AnchorMax.x
2301
+ value: 1
2302
+ objectReference: {fileID: 0}
2303
+ - target: {fileID: 2632583874297134477, guid: e7b4d74932cbb4527aa8927fb193bac2,
2304
+ type: 3}
2305
+ propertyPath: m_AnchorMax.y
2306
+ value: 1
2307
+ objectReference: {fileID: 0}
2308
+ - target: {fileID: 2704703051076668110, guid: e7b4d74932cbb4527aa8927fb193bac2,
2309
+ type: 3}
2310
+ propertyPath: m_AnchorMax.y
2311
+ value: 1
2312
+ objectReference: {fileID: 0}
2313
+ - target: {fileID: 2704703051076668110, guid: e7b4d74932cbb4527aa8927fb193bac2,
2314
+ type: 3}
2315
+ propertyPath: m_AnchorMin.y
2316
+ value: 1
2317
+ objectReference: {fileID: 0}
2318
+ - target: {fileID: 2704703051076668110, guid: e7b4d74932cbb4527aa8927fb193bac2,
2319
+ type: 3}
2320
+ propertyPath: m_AnchoredPosition.x
2321
+ value: 111.77797
2322
+ objectReference: {fileID: 0}
2323
+ - target: {fileID: 2704703051076668110, guid: e7b4d74932cbb4527aa8927fb193bac2,
2324
+ type: 3}
2325
+ propertyPath: m_AnchoredPosition.y
2326
+ value: -20
2327
+ objectReference: {fileID: 0}
2328
+ - target: {fileID: 3098270081064374840, guid: e7b4d74932cbb4527aa8927fb193bac2,
2329
+ type: 3}
2330
+ propertyPath: m_AnchorMax.y
2331
+ value: 1
2332
+ objectReference: {fileID: 0}
2333
+ - target: {fileID: 3098270081064374840, guid: e7b4d74932cbb4527aa8927fb193bac2,
2334
+ type: 3}
2335
+ propertyPath: m_AnchorMin.y
2336
+ value: 1
2337
+ objectReference: {fileID: 0}
2338
+ - target: {fileID: 3098270081064374840, guid: e7b4d74932cbb4527aa8927fb193bac2,
2339
+ type: 3}
2340
+ propertyPath: m_AnchoredPosition.x
2341
+ value: 111.77797
2342
+ objectReference: {fileID: 0}
2343
+ - target: {fileID: 3098270081064374840, guid: e7b4d74932cbb4527aa8927fb193bac2,
2344
+ type: 3}
2345
+ propertyPath: m_AnchoredPosition.y
2346
+ value: -20
2347
+ objectReference: {fileID: 0}
2348
+ - target: {fileID: 3337569000071541087, guid: e7b4d74932cbb4527aa8927fb193bac2,
2349
+ type: 3}
2350
+ propertyPath: m_AnchorMax.y
2351
+ value: 1
2352
+ objectReference: {fileID: 0}
2353
+ - target: {fileID: 3337569000071541087, guid: e7b4d74932cbb4527aa8927fb193bac2,
2354
+ type: 3}
2355
+ propertyPath: m_AnchorMin.y
2356
+ value: 1
2357
+ objectReference: {fileID: 0}
2358
+ - target: {fileID: 3337569000071541087, guid: e7b4d74932cbb4527aa8927fb193bac2,
2359
+ type: 3}
2360
+ propertyPath: m_SizeDelta.x
2361
+ value: 198.55592
2362
+ objectReference: {fileID: 0}
2363
+ - target: {fileID: 3337569000071541087, guid: e7b4d74932cbb4527aa8927fb193bac2,
2364
+ type: 3}
2365
+ propertyPath: m_AnchoredPosition.x
2366
+ value: 327.8339
2367
+ objectReference: {fileID: 0}
2368
+ - target: {fileID: 3337569000071541087, guid: e7b4d74932cbb4527aa8927fb193bac2,
2369
+ type: 3}
2370
+ propertyPath: m_AnchoredPosition.y
2371
+ value: -28.0423
2372
+ objectReference: {fileID: 0}
2373
+ - target: {fileID: 3447809388633643196, guid: e7b4d74932cbb4527aa8927fb193bac2,
2374
+ type: 3}
2375
+ propertyPath: m_AnchorMax.y
2376
+ value: 1
2377
+ objectReference: {fileID: 0}
2378
+ - target: {fileID: 3447809388633643196, guid: e7b4d74932cbb4527aa8927fb193bac2,
2379
+ type: 3}
2380
+ propertyPath: m_AnchorMin.y
2381
+ value: 1
2382
+ objectReference: {fileID: 0}
2383
+ - target: {fileID: 3447809388633643196, guid: e7b4d74932cbb4527aa8927fb193bac2,
2384
+ type: 3}
2385
+ propertyPath: m_AnchoredPosition.x
2386
+ value: 111.77797
2387
+ objectReference: {fileID: 0}
2388
+ - target: {fileID: 3447809388633643196, guid: e7b4d74932cbb4527aa8927fb193bac2,
2389
+ type: 3}
2390
+ propertyPath: m_AnchoredPosition.y
2391
+ value: -20
2392
+ objectReference: {fileID: 0}
2393
+ - target: {fileID: 3958686921578813277, guid: e7b4d74932cbb4527aa8927fb193bac2,
2394
+ type: 3}
2395
+ propertyPath: m_AnchorMax.y
2396
+ value: 1
2397
+ objectReference: {fileID: 0}
2398
+ - target: {fileID: 3958686921578813277, guid: e7b4d74932cbb4527aa8927fb193bac2,
2399
+ type: 3}
2400
+ propertyPath: m_AnchorMin.y
2401
+ value: 1
2402
+ objectReference: {fileID: 0}
2403
+ - target: {fileID: 3958686921578813277, guid: e7b4d74932cbb4527aa8927fb193bac2,
2404
+ type: 3}
2405
+ propertyPath: m_AnchoredPosition.x
2406
+ value: 59.087963
2407
+ objectReference: {fileID: 0}
2408
+ - target: {fileID: 3958686921578813277, guid: e7b4d74932cbb4527aa8927fb193bac2,
2409
+ type: 3}
2410
+ propertyPath: m_AnchoredPosition.y
2411
+ value: -20
2412
+ objectReference: {fileID: 0}
2413
+ - target: {fileID: 4697293298052160436, guid: e7b4d74932cbb4527aa8927fb193bac2,
2414
+ type: 3}
2415
+ propertyPath: m_AnchorMax.x
2416
+ value: 1
2417
+ objectReference: {fileID: 0}
2418
+ - target: {fileID: 4697293298052160436, guid: e7b4d74932cbb4527aa8927fb193bac2,
2419
+ type: 3}
2420
+ propertyPath: m_AnchorMax.y
2421
+ value: 1
2422
+ objectReference: {fileID: 0}
2423
+ - target: {fileID: 4697293298052160436, guid: e7b4d74932cbb4527aa8927fb193bac2,
2424
+ type: 3}
2425
+ propertyPath: m_SizeDelta.x
2426
+ value: -17
2427
+ objectReference: {fileID: 0}
2428
+ - target: {fileID: 4900398929237036457, guid: e7b4d74932cbb4527aa8927fb193bac2,
2429
+ type: 3}
2430
+ propertyPath: m_AnchorMax.y
2431
+ value: 1
2432
+ objectReference: {fileID: 0}
2433
+ - target: {fileID: 4900398929237036457, guid: e7b4d74932cbb4527aa8927fb193bac2,
2434
+ type: 3}
2435
+ propertyPath: m_AnchorMin.y
2436
+ value: 1
2437
+ objectReference: {fileID: 0}
2438
+ - target: {fileID: 4900398929237036457, guid: e7b4d74932cbb4527aa8927fb193bac2,
2439
+ type: 3}
2440
+ propertyPath: m_AnchoredPosition.x
2441
+ value: 59.087963
2442
+ objectReference: {fileID: 0}
2443
+ - target: {fileID: 4900398929237036457, guid: e7b4d74932cbb4527aa8927fb193bac2,
2444
+ type: 3}
2445
+ propertyPath: m_AnchoredPosition.y
2446
+ value: -20
2447
+ objectReference: {fileID: 0}
2448
+ - target: {fileID: 5438092142015141215, guid: e7b4d74932cbb4527aa8927fb193bac2,
2449
+ type: 3}
2450
+ propertyPath: m_AnchorMax.y
2451
+ value: 1
2452
+ objectReference: {fileID: 0}
2453
+ - target: {fileID: 5438092142015141215, guid: e7b4d74932cbb4527aa8927fb193bac2,
2454
+ type: 3}
2455
+ propertyPath: m_AnchorMin.y
2456
+ value: 1
2457
+ objectReference: {fileID: 0}
2458
+ - target: {fileID: 5438092142015141215, guid: e7b4d74932cbb4527aa8927fb193bac2,
2459
+ type: 3}
2460
+ propertyPath: m_AnchoredPosition.x
2461
+ value: 59.087963
2462
+ objectReference: {fileID: 0}
2463
+ - target: {fileID: 5438092142015141215, guid: e7b4d74932cbb4527aa8927fb193bac2,
2464
+ type: 3}
2465
+ propertyPath: m_AnchoredPosition.y
2466
+ value: -20
2467
+ objectReference: {fileID: 0}
2468
+ - target: {fileID: 5643480493408395227, guid: e7b4d74932cbb4527aa8927fb193bac2,
2469
+ type: 3}
2470
+ propertyPath: m_AnchorMax.y
2471
+ value: 1
2472
+ objectReference: {fileID: 0}
2473
+ - target: {fileID: 5643480493408395227, guid: e7b4d74932cbb4527aa8927fb193bac2,
2474
+ type: 3}
2475
+ propertyPath: m_AnchorMin.y
2476
+ value: 1
2477
+ objectReference: {fileID: 0}
2478
+ - target: {fileID: 5643480493408395227, guid: e7b4d74932cbb4527aa8927fb193bac2,
2479
+ type: 3}
2480
+ propertyPath: m_AnchoredPosition.x
2481
+ value: 59.087963
2482
+ objectReference: {fileID: 0}
2483
+ - target: {fileID: 5643480493408395227, guid: e7b4d74932cbb4527aa8927fb193bac2,
2484
+ type: 3}
2485
+ propertyPath: m_AnchoredPosition.y
2486
+ value: -20
2487
+ objectReference: {fileID: 0}
2488
+ - target: {fileID: 6008751293436635741, guid: e7b4d74932cbb4527aa8927fb193bac2,
2489
+ type: 3}
2490
+ propertyPath: m_AnchorMax.y
2491
+ value: 1
2492
+ objectReference: {fileID: 0}
2493
+ - target: {fileID: 6008751293436635741, guid: e7b4d74932cbb4527aa8927fb193bac2,
2494
+ type: 3}
2495
+ propertyPath: m_AnchorMin.y
2496
+ value: 1
2497
+ objectReference: {fileID: 0}
2498
+ - target: {fileID: 6008751293436635741, guid: e7b4d74932cbb4527aa8927fb193bac2,
2499
+ type: 3}
2500
+ propertyPath: m_SizeDelta.x
2501
+ value: 934.2237
2502
+ objectReference: {fileID: 0}
2503
+ - target: {fileID: 6008751293436635741, guid: e7b4d74932cbb4527aa8927fb193bac2,
2504
+ type: 3}
2505
+ propertyPath: m_SizeDelta.y
2506
+ value: 722.125
2507
+ objectReference: {fileID: 0}
2508
+ - target: {fileID: 6008751293436635741, guid: e7b4d74932cbb4527aa8927fb193bac2,
2509
+ type: 3}
2510
+ propertyPath: m_AnchoredPosition.x
2511
+ value: 1441.3356
2512
+ objectReference: {fileID: 0}
2513
+ - target: {fileID: 6008751293436635741, guid: e7b4d74932cbb4527aa8927fb193bac2,
2514
+ type: 3}
2515
+ propertyPath: m_AnchoredPosition.y
2516
+ value: -461.0625
2517
+ objectReference: {fileID: 0}
2518
+ - target: {fileID: 6041159336901342045, guid: e7b4d74932cbb4527aa8927fb193bac2,
2519
+ type: 3}
2520
+ propertyPath: m_AnchorMax.y
2521
+ value: 1
2522
+ objectReference: {fileID: 0}
2523
+ - target: {fileID: 6041159336901342045, guid: e7b4d74932cbb4527aa8927fb193bac2,
2524
+ type: 3}
2525
+ propertyPath: m_AnchorMin.y
2526
+ value: 1
2527
+ objectReference: {fileID: 0}
2528
+ - target: {fileID: 6041159336901342045, guid: e7b4d74932cbb4527aa8927fb193bac2,
2529
+ type: 3}
2530
+ propertyPath: m_SizeDelta.x
2531
+ value: 198.55592
2532
+ objectReference: {fileID: 0}
2533
+ - target: {fileID: 6041159336901342045, guid: e7b4d74932cbb4527aa8927fb193bac2,
2534
+ type: 3}
2535
+ propertyPath: m_AnchoredPosition.x
2536
+ value: 546.38983
2537
+ objectReference: {fileID: 0}
2538
+ - target: {fileID: 6041159336901342045, guid: e7b4d74932cbb4527aa8927fb193bac2,
2539
+ type: 3}
2540
+ propertyPath: m_AnchoredPosition.y
2541
+ value: -28.0423
2542
+ objectReference: {fileID: 0}
2543
+ - target: {fileID: 6264738042554759641, guid: e7b4d74932cbb4527aa8927fb193bac2,
2544
+ type: 3}
2545
+ propertyPath: m_AnchorMax.y
2546
+ value: 1
2547
+ objectReference: {fileID: 0}
2548
+ - target: {fileID: 6264738042554759641, guid: e7b4d74932cbb4527aa8927fb193bac2,
2549
+ type: 3}
2550
+ propertyPath: m_AnchorMin.y
2551
+ value: 1
2552
+ objectReference: {fileID: 0}
2553
+ - target: {fileID: 6264738042554759641, guid: e7b4d74932cbb4527aa8927fb193bac2,
2554
+ type: 3}
2555
+ propertyPath: m_SizeDelta.x
2556
+ value: 198.55592
2557
+ objectReference: {fileID: 0}
2558
+ - target: {fileID: 6264738042554759641, guid: e7b4d74932cbb4527aa8927fb193bac2,
2559
+ type: 3}
2560
+ propertyPath: m_AnchoredPosition.x
2561
+ value: 109.27796
2562
+ objectReference: {fileID: 0}
2563
+ - target: {fileID: 6264738042554759641, guid: e7b4d74932cbb4527aa8927fb193bac2,
2564
+ type: 3}
2565
+ propertyPath: m_AnchoredPosition.y
2566
+ value: -28.0423
2567
+ objectReference: {fileID: 0}
2568
+ - target: {fileID: 6302975709573238842, guid: e7b4d74932cbb4527aa8927fb193bac2,
2569
+ type: 3}
2570
+ propertyPath: m_AnchorMax.y
2571
+ value: 1
2572
+ objectReference: {fileID: 0}
2573
+ - target: {fileID: 6302975709573238842, guid: e7b4d74932cbb4527aa8927fb193bac2,
2574
+ type: 3}
2575
+ propertyPath: m_AnchorMin.y
2576
+ value: 1
2577
+ objectReference: {fileID: 0}
2578
+ - target: {fileID: 6302975709573238842, guid: e7b4d74932cbb4527aa8927fb193bac2,
2579
+ type: 3}
2580
+ propertyPath: m_AnchoredPosition.x
2581
+ value: 111.77797
2582
+ objectReference: {fileID: 0}
2583
+ - target: {fileID: 6302975709573238842, guid: e7b4d74932cbb4527aa8927fb193bac2,
2584
+ type: 3}
2585
+ propertyPath: m_AnchoredPosition.y
2586
+ value: -20
2587
+ objectReference: {fileID: 0}
2588
+ - target: {fileID: 6674562562984438699, guid: e7b4d74932cbb4527aa8927fb193bac2,
2589
+ type: 3}
2590
+ propertyPath: m_AnchorMax.y
2591
+ value: 1
2592
+ objectReference: {fileID: 0}
2593
+ - target: {fileID: 6674562562984438699, guid: e7b4d74932cbb4527aa8927fb193bac2,
2594
+ type: 3}
2595
+ propertyPath: m_AnchorMin.y
2596
+ value: 1
2597
+ objectReference: {fileID: 0}
2598
+ - target: {fileID: 6674562562984438699, guid: e7b4d74932cbb4527aa8927fb193bac2,
2599
+ type: 3}
2600
+ propertyPath: m_SizeDelta.x
2601
+ value: 198.55592
2602
+ objectReference: {fileID: 0}
2603
+ - target: {fileID: 6674562562984438699, guid: e7b4d74932cbb4527aa8927fb193bac2,
2604
+ type: 3}
2605
+ propertyPath: m_AnchoredPosition.x
2606
+ value: 764.94574
2607
+ objectReference: {fileID: 0}
2608
+ - target: {fileID: 6674562562984438699, guid: e7b4d74932cbb4527aa8927fb193bac2,
2609
+ type: 3}
2610
+ propertyPath: m_AnchoredPosition.y
2611
+ value: -28.0423
2612
+ objectReference: {fileID: 0}
2613
+ - target: {fileID: 7210540151742141309, guid: e7b4d74932cbb4527aa8927fb193bac2,
2614
+ type: 3}
2615
+ propertyPath: m_AnchorMax.x
2616
+ value: 1
2617
+ objectReference: {fileID: 0}
2618
+ - target: {fileID: 7210540151742141309, guid: e7b4d74932cbb4527aa8927fb193bac2,
2619
+ type: 3}
2620
+ propertyPath: m_AnchorMax.y
2621
+ value: 1
2622
+ objectReference: {fileID: 0}
2623
+ - target: {fileID: 7282641780313023550, guid: e7b4d74932cbb4527aa8927fb193bac2,
2624
+ type: 3}
2625
+ propertyPath: m_AnchorMax.y
2626
+ value: 1
2627
+ objectReference: {fileID: 0}
2628
+ - target: {fileID: 7282641780313023550, guid: e7b4d74932cbb4527aa8927fb193bac2,
2629
+ type: 3}
2630
+ propertyPath: m_AnchorMin.y
2631
+ value: 1
2632
+ objectReference: {fileID: 0}
2633
+ - target: {fileID: 7282641780313023550, guid: e7b4d74932cbb4527aa8927fb193bac2,
2634
+ type: 3}
2635
+ propertyPath: m_AnchoredPosition.x
2636
+ value: 111.77797
2637
+ objectReference: {fileID: 0}
2638
+ - target: {fileID: 7282641780313023550, guid: e7b4d74932cbb4527aa8927fb193bac2,
2639
+ type: 3}
2640
+ propertyPath: m_AnchoredPosition.y
2641
+ value: -20
2642
+ objectReference: {fileID: 0}
2643
+ - target: {fileID: 7667212598177103048, guid: e7b4d74932cbb4527aa8927fb193bac2,
2644
+ type: 3}
2645
+ propertyPath: m_AnchorMax.y
2646
+ value: 1
2647
+ objectReference: {fileID: 0}
2648
+ - target: {fileID: 7667212598177103048, guid: e7b4d74932cbb4527aa8927fb193bac2,
2649
+ type: 3}
2650
+ propertyPath: m_AnchorMin.y
2651
+ value: 1
2652
+ objectReference: {fileID: 0}
2653
+ - target: {fileID: 7667212598177103048, guid: e7b4d74932cbb4527aa8927fb193bac2,
2654
+ type: 3}
2655
+ propertyPath: m_AnchoredPosition.x
2656
+ value: 111.77797
2657
+ objectReference: {fileID: 0}
2658
+ - target: {fileID: 7667212598177103048, guid: e7b4d74932cbb4527aa8927fb193bac2,
2659
+ type: 3}
2660
+ propertyPath: m_AnchoredPosition.y
2661
+ value: -20
2662
+ objectReference: {fileID: 0}
2663
+ - target: {fileID: 7982982561010835375, guid: e7b4d74932cbb4527aa8927fb193bac2,
2664
+ type: 3}
2665
+ propertyPath: m_AnchorMax.y
2666
+ value: 1
2667
+ objectReference: {fileID: 0}
2668
+ - target: {fileID: 7982982561010835375, guid: e7b4d74932cbb4527aa8927fb193bac2,
2669
+ type: 3}
2670
+ propertyPath: m_AnchorMin.y
2671
+ value: 1
2672
+ objectReference: {fileID: 0}
2673
+ - target: {fileID: 7982982561010835375, guid: e7b4d74932cbb4527aa8927fb193bac2,
2674
+ type: 3}
2675
+ propertyPath: m_SizeDelta.x
2676
+ value: 198.55592
2677
+ objectReference: {fileID: 0}
2678
+ - target: {fileID: 7982982561010835375, guid: e7b4d74932cbb4527aa8927fb193bac2,
2679
+ type: 3}
2680
+ propertyPath: m_AnchoredPosition.x
2681
+ value: 327.8339
2682
+ objectReference: {fileID: 0}
2683
+ - target: {fileID: 7982982561010835375, guid: e7b4d74932cbb4527aa8927fb193bac2,
2684
+ type: 3}
2685
+ propertyPath: m_AnchoredPosition.y
2686
+ value: -28.0423
2687
+ objectReference: {fileID: 0}
2688
+ - target: {fileID: 8016751871839254092, guid: e7b4d74932cbb4527aa8927fb193bac2,
2689
+ type: 3}
2690
+ propertyPath: m_AnchorMax.y
2691
+ value: 1
2692
+ objectReference: {fileID: 0}
2693
+ - target: {fileID: 8016751871839254092, guid: e7b4d74932cbb4527aa8927fb193bac2,
2694
+ type: 3}
2695
+ propertyPath: m_AnchorMin.y
2696
+ value: 1
2697
+ objectReference: {fileID: 0}
2698
+ - target: {fileID: 8016751871839254092, guid: e7b4d74932cbb4527aa8927fb193bac2,
2699
+ type: 3}
2700
+ propertyPath: m_AnchoredPosition.x
2701
+ value: 111.77797
2702
+ objectReference: {fileID: 0}
2703
+ - target: {fileID: 8016751871839254092, guid: e7b4d74932cbb4527aa8927fb193bac2,
2704
+ type: 3}
2705
+ propertyPath: m_AnchoredPosition.y
2706
+ value: -20
2707
+ objectReference: {fileID: 0}
2708
+ - target: {fileID: 8532133001757096365, guid: e7b4d74932cbb4527aa8927fb193bac2,
2709
+ type: 3}
2710
+ propertyPath: m_AnchorMax.y
2711
+ value: 1
2712
+ objectReference: {fileID: 0}
2713
+ - target: {fileID: 8532133001757096365, guid: e7b4d74932cbb4527aa8927fb193bac2,
2714
+ type: 3}
2715
+ propertyPath: m_AnchorMin.y
2716
+ value: 1
2717
+ objectReference: {fileID: 0}
2718
+ - target: {fileID: 8532133001757096365, guid: e7b4d74932cbb4527aa8927fb193bac2,
2719
+ type: 3}
2720
+ propertyPath: m_AnchoredPosition.x
2721
+ value: 59.087963
2722
+ objectReference: {fileID: 0}
2723
+ - target: {fileID: 8532133001757096365, guid: e7b4d74932cbb4527aa8927fb193bac2,
2724
+ type: 3}
2725
+ propertyPath: m_AnchoredPosition.y
2726
+ value: -20
2727
+ objectReference: {fileID: 0}
2728
+ m_RemovedComponents: []
2729
+ m_SourcePrefab: {fileID: 100100000, guid: e7b4d74932cbb4527aa8927fb193bac2, type: 3}
2730
+ --- !u!1001 &8504532867355849204
2731
+ PrefabInstance:
2732
+ m_ObjectHideFlags: 0
2733
+ serializedVersion: 2
2734
+ m_Modification:
2735
+ m_TransformParent: {fileID: 1412789052}
2736
+ m_Modifications:
2737
+ - target: {fileID: 6290017027643302036, guid: 8539a039716614099a903c159f63fc63,
2738
+ type: 3}
2739
+ propertyPath: m_Pivot.x
2740
+ value: 0.5
2741
+ objectReference: {fileID: 0}
2742
+ - target: {fileID: 6290017027643302036, guid: 8539a039716614099a903c159f63fc63,
2743
+ type: 3}
2744
+ propertyPath: m_Pivot.y
2745
+ value: 0.5
2746
+ objectReference: {fileID: 0}
2747
+ - target: {fileID: 6290017027643302036, guid: 8539a039716614099a903c159f63fc63,
2748
+ type: 3}
2749
+ propertyPath: m_RootOrder
2750
+ value: 5
2751
+ objectReference: {fileID: 0}
2752
+ - target: {fileID: 6290017027643302036, guid: 8539a039716614099a903c159f63fc63,
2753
+ type: 3}
2754
+ propertyPath: m_AnchorMax.x
2755
+ value: 0
2756
+ objectReference: {fileID: 0}
2757
+ - target: {fileID: 6290017027643302036, guid: 8539a039716614099a903c159f63fc63,
2758
+ type: 3}
2759
+ propertyPath: m_AnchorMax.y
2760
+ value: 0
2761
+ objectReference: {fileID: 0}
2762
+ - target: {fileID: 6290017027643302036, guid: 8539a039716614099a903c159f63fc63,
2763
+ type: 3}
2764
+ propertyPath: m_AnchorMin.x
2765
+ value: 0
2766
+ objectReference: {fileID: 0}
2767
+ - target: {fileID: 6290017027643302036, guid: 8539a039716614099a903c159f63fc63,
2768
+ type: 3}
2769
+ propertyPath: m_AnchorMin.y
2770
+ value: 0
2771
+ objectReference: {fileID: 0}
2772
+ - target: {fileID: 6290017027643302036, guid: 8539a039716614099a903c159f63fc63,
2773
+ type: 3}
2774
+ propertyPath: m_SizeDelta.x
2775
+ value: 480
2776
+ objectReference: {fileID: 0}
2777
+ - target: {fileID: 6290017027643302036, guid: 8539a039716614099a903c159f63fc63,
2778
+ type: 3}
2779
+ propertyPath: m_SizeDelta.y
2780
+ value: 120
2781
+ objectReference: {fileID: 0}
2782
+ - target: {fileID: 6290017027643302036, guid: 8539a039716614099a903c159f63fc63,
2783
+ type: 3}
2784
+ propertyPath: m_LocalPosition.x
2785
+ value: 0
2786
+ objectReference: {fileID: 0}
2787
+ - target: {fileID: 6290017027643302036, guid: 8539a039716614099a903c159f63fc63,
2788
+ type: 3}
2789
+ propertyPath: m_LocalPosition.y
2790
+ value: 0
2791
+ objectReference: {fileID: 0}
2792
+ - target: {fileID: 6290017027643302036, guid: 8539a039716614099a903c159f63fc63,
2793
+ type: 3}
2794
+ propertyPath: m_LocalPosition.z
2795
+ value: 0
2796
+ objectReference: {fileID: 0}
2797
+ - target: {fileID: 6290017027643302036, guid: 8539a039716614099a903c159f63fc63,
2798
+ type: 3}
2799
+ propertyPath: m_LocalRotation.w
2800
+ value: 1
2801
+ objectReference: {fileID: 0}
2802
+ - target: {fileID: 6290017027643302036, guid: 8539a039716614099a903c159f63fc63,
2803
+ type: 3}
2804
+ propertyPath: m_LocalRotation.x
2805
+ value: 0
2806
+ objectReference: {fileID: 0}
2807
+ - target: {fileID: 6290017027643302036, guid: 8539a039716614099a903c159f63fc63,
2808
+ type: 3}
2809
+ propertyPath: m_LocalRotation.y
2810
+ value: 0
2811
+ objectReference: {fileID: 0}
2812
+ - target: {fileID: 6290017027643302036, guid: 8539a039716614099a903c159f63fc63,
2813
+ type: 3}
2814
+ propertyPath: m_LocalRotation.z
2815
+ value: 0
2816
+ objectReference: {fileID: 0}
2817
+ - target: {fileID: 6290017027643302036, guid: 8539a039716614099a903c159f63fc63,
2818
+ type: 3}
2819
+ propertyPath: m_AnchoredPosition.x
2820
+ value: 0
2821
+ objectReference: {fileID: 0}
2822
+ - target: {fileID: 6290017027643302036, guid: 8539a039716614099a903c159f63fc63,
2823
+ type: 3}
2824
+ propertyPath: m_AnchoredPosition.y
2825
+ value: 0
2826
+ objectReference: {fileID: 0}
2827
+ - target: {fileID: 6290017027643302036, guid: 8539a039716614099a903c159f63fc63,
2828
+ type: 3}
2829
+ propertyPath: m_LocalEulerAnglesHint.x
2830
+ value: 0
2831
+ objectReference: {fileID: 0}
2832
+ - target: {fileID: 6290017027643302036, guid: 8539a039716614099a903c159f63fc63,
2833
+ type: 3}
2834
+ propertyPath: m_LocalEulerAnglesHint.y
2835
+ value: 0
2836
+ objectReference: {fileID: 0}
2837
+ - target: {fileID: 6290017027643302036, guid: 8539a039716614099a903c159f63fc63,
2838
+ type: 3}
2839
+ propertyPath: m_LocalEulerAnglesHint.z
2840
+ value: 0
2841
+ objectReference: {fileID: 0}
2842
+ - target: {fileID: 7514875310715466937, guid: 8539a039716614099a903c159f63fc63,
2843
+ type: 3}
2844
+ propertyPath: m_Name
2845
+ value: ReceivedInviteDisplay
2846
+ objectReference: {fileID: 0}
2847
+ - target: {fileID: 7514875310715466937, guid: 8539a039716614099a903c159f63fc63,
2848
+ type: 3}
2849
+ propertyPath: m_IsActive
2850
+ value: 0
2851
+ objectReference: {fileID: 0}
2852
+ m_RemovedComponents: []
2853
+ m_SourcePrefab: {fileID: 100100000, guid: 8539a039716614099a903c159f63fc63, type: 3}