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
@@ -1,139 +1,5 @@
1
1
  %YAML 1.1
2
2
  %TAG !u! tag:unity3d.com,2011:
3
- --- !u!1 &635883761037866888
4
- GameObject:
5
- m_ObjectHideFlags: 0
6
- m_CorrespondingSourceObject: {fileID: 0}
7
- m_PrefabInstance: {fileID: 0}
8
- m_PrefabAsset: {fileID: 0}
9
- serializedVersion: 6
10
- m_Component:
11
- - component: {fileID: 635883761037866999}
12
- - component: {fileID: 635883761037866997}
13
- - component: {fileID: 635883761037866998}
14
- m_Layer: 5
15
- m_Name: Label_Title
16
- m_TagString: Untagged
17
- m_Icon: {fileID: 0}
18
- m_NavMeshLayer: 0
19
- m_StaticEditorFlags: 0
20
- m_IsActive: 1
21
- --- !u!224 &635883761037866999
22
- RectTransform:
23
- m_ObjectHideFlags: 0
24
- m_CorrespondingSourceObject: {fileID: 0}
25
- m_PrefabInstance: {fileID: 0}
26
- m_PrefabAsset: {fileID: 0}
27
- m_GameObject: {fileID: 635883761037866888}
28
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
29
- m_LocalPosition: {x: 0, y: 0, z: 0}
30
- m_LocalScale: {x: 1, y: 1, z: 1}
31
- m_ConstrainProportionsScale: 0
32
- m_Children: []
33
- m_Father: {fileID: 635883761041762154}
34
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
35
- m_AnchorMin: {x: 0, y: 1}
36
- m_AnchorMax: {x: 1, y: 1}
37
- m_AnchoredPosition: {x: 0, y: -5}
38
- m_SizeDelta: {x: 0, y: 40}
39
- m_Pivot: {x: 0.5, y: 1}
40
- --- !u!222 &635883761037866997
41
- CanvasRenderer:
42
- m_ObjectHideFlags: 0
43
- m_CorrespondingSourceObject: {fileID: 0}
44
- m_PrefabInstance: {fileID: 0}
45
- m_PrefabAsset: {fileID: 0}
46
- m_GameObject: {fileID: 635883761037866888}
47
- m_CullTransparentMesh: 1
48
- --- !u!114 &635883761037866998
49
- MonoBehaviour:
50
- m_ObjectHideFlags: 0
51
- m_CorrespondingSourceObject: {fileID: 0}
52
- m_PrefabInstance: {fileID: 0}
53
- m_PrefabAsset: {fileID: 0}
54
- m_GameObject: {fileID: 635883761037866888}
55
- m_Enabled: 1
56
- m_EditorHideFlags: 0
57
- m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
58
- m_Name:
59
- m_EditorClassIdentifier:
60
- m_Material: {fileID: 0}
61
- m_Color: {r: 1, g: 1, b: 1, a: 1}
62
- m_RaycastTarget: 1
63
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
64
- m_Maskable: 1
65
- m_OnCullStateChanged:
66
- m_PersistentCalls:
67
- m_Calls: []
68
- m_text: '- Lobby Manager -'
69
- m_isRightToLeft: 0
70
- m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
71
- m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
72
- m_fontSharedMaterials: []
73
- m_fontMaterial: {fileID: 0}
74
- m_fontMaterials: []
75
- m_fontColor32:
76
- serializedVersion: 2
77
- rgba: 4294967295
78
- m_fontColor: {r: 1, g: 1, b: 1, a: 1}
79
- m_enableVertexGradient: 0
80
- m_colorMode: 3
81
- m_fontColorGradient:
82
- topLeft: {r: 1, g: 1, b: 1, a: 1}
83
- topRight: {r: 1, g: 1, b: 1, a: 1}
84
- bottomLeft: {r: 1, g: 1, b: 1, a: 1}
85
- bottomRight: {r: 1, g: 1, b: 1, a: 1}
86
- m_fontColorGradientPreset: {fileID: 0}
87
- m_spriteAsset: {fileID: 0}
88
- m_tintAllSprites: 0
89
- m_StyleSheet: {fileID: 0}
90
- m_TextStyleHashCode: -1183493901
91
- m_overrideHtmlColors: 0
92
- m_faceColor:
93
- serializedVersion: 2
94
- rgba: 4294967295
95
- m_fontSize: 24
96
- m_fontSizeBase: 24
97
- m_fontWeight: 400
98
- m_enableAutoSizing: 0
99
- m_fontSizeMin: 18
100
- m_fontSizeMax: 72
101
- m_fontStyle: 1
102
- m_HorizontalAlignment: 1
103
- m_VerticalAlignment: 256
104
- m_textAlignment: 65535
105
- m_characterSpacing: 0
106
- m_wordSpacing: 0
107
- m_lineSpacing: 0
108
- m_lineSpacingMax: 0
109
- m_paragraphSpacing: 0
110
- m_charWidthMaxAdj: 0
111
- m_enableWordWrapping: 0
112
- m_wordWrappingRatios: 0.4
113
- m_overflowMode: 0
114
- m_linkedTextComponent: {fileID: 0}
115
- parentLinkedComponent: {fileID: 0}
116
- m_enableKerning: 1
117
- m_enableExtraPadding: 0
118
- checkPaddingRequired: 0
119
- m_isRichText: 1
120
- m_parseCtrlCharacters: 1
121
- m_isOrthographic: 1
122
- m_isCullingEnabled: 0
123
- m_horizontalMapping: 0
124
- m_verticalMapping: 0
125
- m_uvLineOffset: 0
126
- m_geometrySortingOrder: 0
127
- m_IsTextObjectScaleStatic: 0
128
- m_VertexBufferAutoSizeReduction: 0
129
- m_useMaxVisibleDescender: 1
130
- m_pageToDisplay: 1
131
- m_margin: {x: 24, y: 0, z: 0, w: 0}
132
- m_isUsingLegacyAnimationComponent: 0
133
- m_isVolumetricText: 0
134
- m_hasFontAssetChanged: 0
135
- m_baseMaterial: {fileID: 0}
136
- m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
137
3
  --- !u!1 &635883761041762155
138
4
  GameObject:
139
5
  m_ObjectHideFlags: 0
@@ -144,7 +10,6 @@ GameObject:
144
10
  m_Component:
145
11
  - component: {fileID: 635883761041762154}
146
12
  - component: {fileID: 635883761041762152}
147
- - component: {fileID: 635883761041762153}
148
13
  - component: {fileID: 8347906190293275121}
149
14
  m_Layer: 5
150
15
  m_Name: HomePage
@@ -165,10 +30,10 @@ RectTransform:
165
30
  m_LocalScale: {x: 1, y: 1, z: 1}
166
31
  m_ConstrainProportionsScale: 0
167
32
  m_Children:
168
- - {fileID: 635883761037866999}
169
33
  - {fileID: 7204828253108790423}
170
34
  - {fileID: 3139525776721366113}
171
35
  m_Father: {fileID: 0}
36
+ m_RootOrder: 0
172
37
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
173
38
  m_AnchorMin: {x: 0, y: 0}
174
39
  m_AnchorMax: {x: 1, y: 1}
@@ -183,36 +48,6 @@ CanvasRenderer:
183
48
  m_PrefabAsset: {fileID: 0}
184
49
  m_GameObject: {fileID: 635883761041762155}
185
50
  m_CullTransparentMesh: 1
186
- --- !u!114 &635883761041762153
187
- MonoBehaviour:
188
- m_ObjectHideFlags: 0
189
- m_CorrespondingSourceObject: {fileID: 0}
190
- m_PrefabInstance: {fileID: 0}
191
- m_PrefabAsset: {fileID: 0}
192
- m_GameObject: {fileID: 635883761041762155}
193
- m_Enabled: 1
194
- m_EditorHideFlags: 0
195
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
196
- m_Name:
197
- m_EditorClassIdentifier:
198
- m_Material: {fileID: 0}
199
- m_Color: {r: 0, g: 0, b: 0, a: 0.40392157}
200
- m_RaycastTarget: 1
201
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
202
- m_Maskable: 1
203
- m_OnCullStateChanged:
204
- m_PersistentCalls:
205
- m_Calls: []
206
- m_Sprite: {fileID: 0}
207
- m_Type: 0
208
- m_PreserveAspect: 0
209
- m_FillCenter: 1
210
- m_FillMethod: 4
211
- m_FillAmount: 1
212
- m_FillClockwise: 1
213
- m_FillOrigin: 0
214
- m_UseSpriteMesh: 0
215
- m_PixelsPerUnitMultiplier: 1
216
51
  --- !u!114 &8347906190293275121
217
52
  MonoBehaviour:
218
53
  m_ObjectHideFlags: 0
@@ -262,11 +97,12 @@ RectTransform:
262
97
  m_ConstrainProportionsScale: 0
263
98
  m_Children: []
264
99
  m_Father: {fileID: 635883761041762154}
100
+ m_RootOrder: 0
265
101
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
266
102
  m_AnchorMin: {x: 0, y: 1}
267
103
  m_AnchorMax: {x: 1, y: 1}
268
- m_AnchoredPosition: {x: 0, y: -60}
269
- m_SizeDelta: {x: -20, y: 80}
104
+ m_AnchoredPosition: {x: 0, y: -35}
105
+ m_SizeDelta: {x: -135.1417, y: 80}
270
106
  m_Pivot: {x: 0.5, y: 1}
271
107
  --- !u!222 &2401240392370045580
272
108
  CanvasRenderer:
@@ -296,8 +132,11 @@ MonoBehaviour:
296
132
  m_OnCullStateChanged:
297
133
  m_PersistentCalls:
298
134
  m_Calls: []
299
- m_text: Here you can create lobbies using different player's contexts, also find,
300
- join and display their info.
135
+ m_text: The Beamable Lobbies feature allows players to create and join virtual
136
+ spaces before entering a multiplayer match or game session. The host of the lobby
137
+ can restrict the lobby to either open or closed. Open lobbies are public and
138
+ can be joined by any player in the game while closed lobbies require players
139
+ to join by passcode.
301
140
  m_isRightToLeft: 0
302
141
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
303
142
  m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
@@ -330,8 +169,8 @@ MonoBehaviour:
330
169
  m_enableAutoSizing: 0
331
170
  m_fontSizeMin: 18
332
171
  m_fontSizeMax: 72
333
- m_fontStyle: 0
334
- m_HorizontalAlignment: 1
172
+ m_fontStyle: 1
173
+ m_HorizontalAlignment: 2
335
174
  m_VerticalAlignment: 256
336
175
  m_textAlignment: 65535
337
176
  m_characterSpacing: 0
@@ -375,7 +214,7 @@ GameObject:
375
214
  serializedVersion: 6
376
215
  m_Component:
377
216
  - component: {fileID: 3139525776721366113}
378
- - component: {fileID: 8496590385392749632}
217
+ - component: {fileID: 5633591537565142060}
379
218
  m_Layer: 5
380
219
  m_Name: Container_Players
381
220
  m_TagString: Untagged
@@ -394,15 +233,20 @@ RectTransform:
394
233
  m_LocalPosition: {x: 0, y: 0, z: 0}
395
234
  m_LocalScale: {x: 1, y: 1, z: 1}
396
235
  m_ConstrainProportionsScale: 0
397
- m_Children: []
236
+ m_Children:
237
+ - {fileID: 3161344602332467087}
238
+ - {fileID: 3828932958756658892}
239
+ - {fileID: 8748696936170202594}
240
+ - {fileID: 8991745861702163849}
398
241
  m_Father: {fileID: 635883761041762154}
242
+ m_RootOrder: 1
399
243
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
400
244
  m_AnchorMin: {x: 0, y: 0}
401
245
  m_AnchorMax: {x: 1, y: 1}
402
- m_AnchoredPosition: {x: 0, y: -75}
403
- m_SizeDelta: {x: 0, y: -150}
246
+ m_AnchoredPosition: {x: 0, y: -96.52861}
247
+ m_SizeDelta: {x: -60, y: -253.0573}
404
248
  m_Pivot: {x: 0.5, y: 0.5}
405
- --- !u!114 &8496590385392749632
249
+ --- !u!114 &5633591537565142060
406
250
  MonoBehaviour:
407
251
  m_ObjectHideFlags: 0
408
252
  m_CorrespondingSourceObject: {fileID: 0}
@@ -411,18 +255,2326 @@ MonoBehaviour:
411
255
  m_GameObject: {fileID: 6561303893504556193}
412
256
  m_Enabled: 1
413
257
  m_EditorHideFlags: 0
414
- m_Script: {fileID: 11500000, guid: 8a8695521f0d02e499659fee002a26c2, type: 3}
258
+ m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3}
415
259
  m_Name:
416
- m_EditorClassIdentifier:
260
+ m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.HorizontalLayoutGroup
417
261
  m_Padding:
418
262
  m_Left: 0
419
263
  m_Right: 0
420
264
  m_Top: 0
421
265
  m_Bottom: 0
422
266
  m_ChildAlignment: 4
423
- m_StartCorner: 0
424
- m_StartAxis: 0
425
- m_CellSize: {x: 360, y: 520}
426
- m_Spacing: {x: 20, y: 20}
427
- m_Constraint: 0
428
- m_ConstraintCount: 2
267
+ m_Spacing: 30
268
+ m_ChildForceExpandWidth: 1
269
+ m_ChildForceExpandHeight: 0
270
+ m_ChildControlWidth: 1
271
+ m_ChildControlHeight: 0
272
+ m_ChildScaleWidth: 1
273
+ m_ChildScaleHeight: 0
274
+ m_ReverseArrangement: 0
275
+ --- !u!1001 &2487828484342668334
276
+ PrefabInstance:
277
+ m_ObjectHideFlags: 0
278
+ serializedVersion: 2
279
+ m_Modification:
280
+ m_TransformParent: {fileID: 3139525776721366113}
281
+ m_Modifications:
282
+ - target: {fileID: 519362217943666642, guid: deb82f223236e4b748e13185fc0d02bc,
283
+ type: 3}
284
+ propertyPath: m_fontAsset
285
+ value:
286
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
287
+ type: 2}
288
+ - target: {fileID: 519362217943666642, guid: deb82f223236e4b748e13185fc0d02bc,
289
+ type: 3}
290
+ propertyPath: m_fontStyle
291
+ value: 1
292
+ objectReference: {fileID: 0}
293
+ - target: {fileID: 519362217943666642, guid: deb82f223236e4b748e13185fc0d02bc,
294
+ type: 3}
295
+ propertyPath: m_hasFontAssetChanged
296
+ value: 1
297
+ objectReference: {fileID: 0}
298
+ - target: {fileID: 519362217943666642, guid: deb82f223236e4b748e13185fc0d02bc,
299
+ type: 3}
300
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
301
+ value: 1801810542
302
+ objectReference: {fileID: 0}
303
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
304
+ type: 3}
305
+ propertyPath: m_Pivot.x
306
+ value: 0.5
307
+ objectReference: {fileID: 0}
308
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
309
+ type: 3}
310
+ propertyPath: m_Pivot.y
311
+ value: 0.5
312
+ objectReference: {fileID: 0}
313
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
314
+ type: 3}
315
+ propertyPath: m_AnchorMax.x
316
+ value: 0
317
+ objectReference: {fileID: 0}
318
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
319
+ type: 3}
320
+ propertyPath: m_AnchorMax.y
321
+ value: 0
322
+ objectReference: {fileID: 0}
323
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
324
+ type: 3}
325
+ propertyPath: m_AnchorMin.x
326
+ value: 0
327
+ objectReference: {fileID: 0}
328
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
329
+ type: 3}
330
+ propertyPath: m_AnchorMin.y
331
+ value: 0
332
+ objectReference: {fileID: 0}
333
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
334
+ type: 3}
335
+ propertyPath: m_SizeDelta.x
336
+ value: 320
337
+ objectReference: {fileID: 0}
338
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
339
+ type: 3}
340
+ propertyPath: m_SizeDelta.y
341
+ value: 520
342
+ objectReference: {fileID: 0}
343
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
344
+ type: 3}
345
+ propertyPath: m_LocalPosition.x
346
+ value: 0
347
+ objectReference: {fileID: 0}
348
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
349
+ type: 3}
350
+ propertyPath: m_LocalPosition.y
351
+ value: 0
352
+ objectReference: {fileID: 0}
353
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
354
+ type: 3}
355
+ propertyPath: m_LocalPosition.z
356
+ value: 0
357
+ objectReference: {fileID: 0}
358
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
359
+ type: 3}
360
+ propertyPath: m_LocalRotation.w
361
+ value: 1
362
+ objectReference: {fileID: 0}
363
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
364
+ type: 3}
365
+ propertyPath: m_LocalRotation.x
366
+ value: 0
367
+ objectReference: {fileID: 0}
368
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
369
+ type: 3}
370
+ propertyPath: m_LocalRotation.y
371
+ value: 0
372
+ objectReference: {fileID: 0}
373
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
374
+ type: 3}
375
+ propertyPath: m_LocalRotation.z
376
+ value: 0
377
+ objectReference: {fileID: 0}
378
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
379
+ type: 3}
380
+ propertyPath: m_AnchoredPosition.x
381
+ value: 800
382
+ objectReference: {fileID: 0}
383
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
384
+ type: 3}
385
+ propertyPath: m_AnchoredPosition.y
386
+ value: 0
387
+ objectReference: {fileID: 0}
388
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
389
+ type: 3}
390
+ propertyPath: m_LocalEulerAnglesHint.x
391
+ value: 0
392
+ objectReference: {fileID: 0}
393
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
394
+ type: 3}
395
+ propertyPath: m_LocalEulerAnglesHint.y
396
+ value: 0
397
+ objectReference: {fileID: 0}
398
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
399
+ type: 3}
400
+ propertyPath: m_LocalEulerAnglesHint.z
401
+ value: 0
402
+ objectReference: {fileID: 0}
403
+ - target: {fileID: 829060059673910893, guid: deb82f223236e4b748e13185fc0d02bc,
404
+ type: 3}
405
+ propertyPath: m_AnchorMax.y
406
+ value: 0
407
+ objectReference: {fileID: 0}
408
+ - target: {fileID: 829060059673910893, guid: deb82f223236e4b748e13185fc0d02bc,
409
+ type: 3}
410
+ propertyPath: m_AnchorMin.y
411
+ value: 0
412
+ objectReference: {fileID: 0}
413
+ - target: {fileID: 829060059673910893, guid: deb82f223236e4b748e13185fc0d02bc,
414
+ type: 3}
415
+ propertyPath: m_SizeDelta.x
416
+ value: 280
417
+ objectReference: {fileID: 0}
418
+ - target: {fileID: 829060059673910893, guid: deb82f223236e4b748e13185fc0d02bc,
419
+ type: 3}
420
+ propertyPath: m_AnchoredPosition.x
421
+ value: 140
422
+ objectReference: {fileID: 0}
423
+ - target: {fileID: 829060059673910893, guid: deb82f223236e4b748e13185fc0d02bc,
424
+ type: 3}
425
+ propertyPath: m_AnchoredPosition.y
426
+ value: -80
427
+ objectReference: {fileID: 0}
428
+ - target: {fileID: 1062620656346552983, guid: deb82f223236e4b748e13185fc0d02bc,
429
+ type: 3}
430
+ propertyPath: m_fontAsset
431
+ value:
432
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
433
+ type: 2}
434
+ - target: {fileID: 1062620656346552983, guid: deb82f223236e4b748e13185fc0d02bc,
435
+ type: 3}
436
+ propertyPath: m_fontStyle
437
+ value: 1
438
+ objectReference: {fileID: 0}
439
+ - target: {fileID: 1062620656346552983, guid: deb82f223236e4b748e13185fc0d02bc,
440
+ type: 3}
441
+ propertyPath: m_hasFontAssetChanged
442
+ value: 1
443
+ objectReference: {fileID: 0}
444
+ - target: {fileID: 1062620656346552983, guid: deb82f223236e4b748e13185fc0d02bc,
445
+ type: 3}
446
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
447
+ value: 1801810542
448
+ objectReference: {fileID: 0}
449
+ - target: {fileID: 1317945616623285728, guid: deb82f223236e4b748e13185fc0d02bc,
450
+ type: 3}
451
+ propertyPath: m_fontAsset
452
+ value:
453
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
454
+ type: 2}
455
+ - target: {fileID: 1317945616623285728, guid: deb82f223236e4b748e13185fc0d02bc,
456
+ type: 3}
457
+ propertyPath: m_fontStyle
458
+ value: 1
459
+ objectReference: {fileID: 0}
460
+ - target: {fileID: 1317945616623285728, guid: deb82f223236e4b748e13185fc0d02bc,
461
+ type: 3}
462
+ propertyPath: m_hasFontAssetChanged
463
+ value: 1
464
+ objectReference: {fileID: 0}
465
+ - target: {fileID: 1317945616623285728, guid: deb82f223236e4b748e13185fc0d02bc,
466
+ type: 3}
467
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
468
+ value: 1801810542
469
+ objectReference: {fileID: 0}
470
+ - target: {fileID: 1350146157826212841, guid: deb82f223236e4b748e13185fc0d02bc,
471
+ type: 3}
472
+ propertyPath: m_AnchorMax.y
473
+ value: 0
474
+ objectReference: {fileID: 0}
475
+ - target: {fileID: 1350146157826212841, guid: deb82f223236e4b748e13185fc0d02bc,
476
+ type: 3}
477
+ propertyPath: m_AnchorMin.y
478
+ value: 0
479
+ objectReference: {fileID: 0}
480
+ - target: {fileID: 1350146157826212841, guid: deb82f223236e4b748e13185fc0d02bc,
481
+ type: 3}
482
+ propertyPath: m_SizeDelta.x
483
+ value: 280
484
+ objectReference: {fileID: 0}
485
+ - target: {fileID: 1350146157826212841, guid: deb82f223236e4b748e13185fc0d02bc,
486
+ type: 3}
487
+ propertyPath: m_AnchoredPosition.x
488
+ value: 140
489
+ objectReference: {fileID: 0}
490
+ - target: {fileID: 1350146157826212841, guid: deb82f223236e4b748e13185fc0d02bc,
491
+ type: 3}
492
+ propertyPath: m_AnchoredPosition.y
493
+ value: -92.8
494
+ objectReference: {fileID: 0}
495
+ - target: {fileID: 1794117858962595376, guid: deb82f223236e4b748e13185fc0d02bc,
496
+ type: 3}
497
+ propertyPath: m_fontAsset
498
+ value:
499
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
500
+ type: 2}
501
+ - target: {fileID: 1794117858962595376, guid: deb82f223236e4b748e13185fc0d02bc,
502
+ type: 3}
503
+ propertyPath: m_fontStyle
504
+ value: 1
505
+ objectReference: {fileID: 0}
506
+ - target: {fileID: 1794117858962595376, guid: deb82f223236e4b748e13185fc0d02bc,
507
+ type: 3}
508
+ propertyPath: m_hasFontAssetChanged
509
+ value: 1
510
+ objectReference: {fileID: 0}
511
+ - target: {fileID: 1794117858962595376, guid: deb82f223236e4b748e13185fc0d02bc,
512
+ type: 3}
513
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
514
+ value: 1801810542
515
+ objectReference: {fileID: 0}
516
+ - target: {fileID: 1917508839531016529, guid: deb82f223236e4b748e13185fc0d02bc,
517
+ type: 3}
518
+ propertyPath: m_fontAsset
519
+ value:
520
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
521
+ type: 2}
522
+ - target: {fileID: 1917508839531016529, guid: deb82f223236e4b748e13185fc0d02bc,
523
+ type: 3}
524
+ propertyPath: m_fontStyle
525
+ value: 1
526
+ objectReference: {fileID: 0}
527
+ - target: {fileID: 1917508839531016529, guid: deb82f223236e4b748e13185fc0d02bc,
528
+ type: 3}
529
+ propertyPath: m_hasFontAssetChanged
530
+ value: 1
531
+ objectReference: {fileID: 0}
532
+ - target: {fileID: 1917508839531016529, guid: deb82f223236e4b748e13185fc0d02bc,
533
+ type: 3}
534
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
535
+ value: 1801810542
536
+ objectReference: {fileID: 0}
537
+ - target: {fileID: 4180314848952589119, guid: deb82f223236e4b748e13185fc0d02bc,
538
+ type: 3}
539
+ propertyPath: m_Name
540
+ value: PlayerLobby (1)
541
+ objectReference: {fileID: 0}
542
+ - target: {fileID: 4180314848952589119, guid: deb82f223236e4b748e13185fc0d02bc,
543
+ type: 3}
544
+ propertyPath: m_IsActive
545
+ value: 0
546
+ objectReference: {fileID: 0}
547
+ - target: {fileID: 4341432247808423581, guid: deb82f223236e4b748e13185fc0d02bc,
548
+ type: 3}
549
+ propertyPath: m_AnchorMax.y
550
+ value: 0
551
+ objectReference: {fileID: 0}
552
+ - target: {fileID: 4341432247808423581, guid: deb82f223236e4b748e13185fc0d02bc,
553
+ type: 3}
554
+ propertyPath: m_AnchorMin.y
555
+ value: 0
556
+ objectReference: {fileID: 0}
557
+ - target: {fileID: 4341432247808423581, guid: deb82f223236e4b748e13185fc0d02bc,
558
+ type: 3}
559
+ propertyPath: m_SizeDelta.x
560
+ value: 280
561
+ objectReference: {fileID: 0}
562
+ - target: {fileID: 4341432247808423581, guid: deb82f223236e4b748e13185fc0d02bc,
563
+ type: 3}
564
+ propertyPath: m_AnchoredPosition.x
565
+ value: 140
566
+ objectReference: {fileID: 0}
567
+ - target: {fileID: 4341432247808423581, guid: deb82f223236e4b748e13185fc0d02bc,
568
+ type: 3}
569
+ propertyPath: m_AnchoredPosition.y
570
+ value: -110
571
+ objectReference: {fileID: 0}
572
+ - target: {fileID: 4522758634274718689, guid: deb82f223236e4b748e13185fc0d02bc,
573
+ type: 3}
574
+ propertyPath: m_AnchorMax.y
575
+ value: 1
576
+ objectReference: {fileID: 0}
577
+ - target: {fileID: 4522758634274718689, guid: deb82f223236e4b748e13185fc0d02bc,
578
+ type: 3}
579
+ propertyPath: m_AnchorMin.y
580
+ value: 1
581
+ objectReference: {fileID: 0}
582
+ - target: {fileID: 4522758634274718689, guid: deb82f223236e4b748e13185fc0d02bc,
583
+ type: 3}
584
+ propertyPath: m_SizeDelta.x
585
+ value: 280
586
+ objectReference: {fileID: 0}
587
+ - target: {fileID: 4522758634274718689, guid: deb82f223236e4b748e13185fc0d02bc,
588
+ type: 3}
589
+ propertyPath: m_AnchoredPosition.x
590
+ value: 140
591
+ objectReference: {fileID: 0}
592
+ - target: {fileID: 4522758634274718689, guid: deb82f223236e4b748e13185fc0d02bc,
593
+ type: 3}
594
+ propertyPath: m_AnchoredPosition.y
595
+ value: -148.6013
596
+ objectReference: {fileID: 0}
597
+ - target: {fileID: 4749422711813132023, guid: deb82f223236e4b748e13185fc0d02bc,
598
+ type: 3}
599
+ propertyPath: m_AnchorMax.y
600
+ value: 0
601
+ objectReference: {fileID: 0}
602
+ - target: {fileID: 4749422711813132023, guid: deb82f223236e4b748e13185fc0d02bc,
603
+ type: 3}
604
+ propertyPath: m_AnchorMin.y
605
+ value: 0
606
+ objectReference: {fileID: 0}
607
+ - target: {fileID: 4749422711813132023, guid: deb82f223236e4b748e13185fc0d02bc,
608
+ type: 3}
609
+ propertyPath: m_SizeDelta.x
610
+ value: 280
611
+ objectReference: {fileID: 0}
612
+ - target: {fileID: 4749422711813132023, guid: deb82f223236e4b748e13185fc0d02bc,
613
+ type: 3}
614
+ propertyPath: m_AnchoredPosition.x
615
+ value: 140
616
+ objectReference: {fileID: 0}
617
+ - target: {fileID: 4749422711813132023, guid: deb82f223236e4b748e13185fc0d02bc,
618
+ type: 3}
619
+ propertyPath: m_AnchoredPosition.y
620
+ value: -142.8
621
+ objectReference: {fileID: 0}
622
+ - target: {fileID: 4902132247774974139, guid: deb82f223236e4b748e13185fc0d02bc,
623
+ type: 3}
624
+ propertyPath: m_fontAsset
625
+ value:
626
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
627
+ type: 2}
628
+ - target: {fileID: 4902132247774974139, guid: deb82f223236e4b748e13185fc0d02bc,
629
+ type: 3}
630
+ propertyPath: m_fontStyle
631
+ value: 1
632
+ objectReference: {fileID: 0}
633
+ - target: {fileID: 4902132247774974139, guid: deb82f223236e4b748e13185fc0d02bc,
634
+ type: 3}
635
+ propertyPath: m_hasFontAssetChanged
636
+ value: 1
637
+ objectReference: {fileID: 0}
638
+ - target: {fileID: 4902132247774974139, guid: deb82f223236e4b748e13185fc0d02bc,
639
+ type: 3}
640
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
641
+ value: 1801810542
642
+ objectReference: {fileID: 0}
643
+ - target: {fileID: 5273814887718094653, guid: deb82f223236e4b748e13185fc0d02bc,
644
+ type: 3}
645
+ propertyPath: m_fontAsset
646
+ value:
647
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
648
+ type: 2}
649
+ - target: {fileID: 5273814887718094653, guid: deb82f223236e4b748e13185fc0d02bc,
650
+ type: 3}
651
+ propertyPath: m_fontStyle
652
+ value: 1
653
+ objectReference: {fileID: 0}
654
+ - target: {fileID: 5273814887718094653, guid: deb82f223236e4b748e13185fc0d02bc,
655
+ type: 3}
656
+ propertyPath: m_hasFontAssetChanged
657
+ value: 1
658
+ objectReference: {fileID: 0}
659
+ - target: {fileID: 5273814887718094653, guid: deb82f223236e4b748e13185fc0d02bc,
660
+ type: 3}
661
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
662
+ value: 1801810542
663
+ objectReference: {fileID: 0}
664
+ - target: {fileID: 5618761470379609141, guid: deb82f223236e4b748e13185fc0d02bc,
665
+ type: 3}
666
+ propertyPath: m_AnchorMax.y
667
+ value: 1
668
+ objectReference: {fileID: 0}
669
+ - target: {fileID: 5618761470379609141, guid: deb82f223236e4b748e13185fc0d02bc,
670
+ type: 3}
671
+ propertyPath: m_AnchorMin.y
672
+ value: 1
673
+ objectReference: {fileID: 0}
674
+ - target: {fileID: 5618761470379609141, guid: deb82f223236e4b748e13185fc0d02bc,
675
+ type: 3}
676
+ propertyPath: m_SizeDelta.x
677
+ value: 280
678
+ objectReference: {fileID: 0}
679
+ - target: {fileID: 5618761470379609141, guid: deb82f223236e4b748e13185fc0d02bc,
680
+ type: 3}
681
+ propertyPath: m_AnchoredPosition.x
682
+ value: 140
683
+ objectReference: {fileID: 0}
684
+ - target: {fileID: 5832368342074962142, guid: deb82f223236e4b748e13185fc0d02bc,
685
+ type: 3}
686
+ propertyPath: m_fontAsset
687
+ value:
688
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
689
+ type: 2}
690
+ - target: {fileID: 5832368342074962142, guid: deb82f223236e4b748e13185fc0d02bc,
691
+ type: 3}
692
+ propertyPath: m_fontStyle
693
+ value: 1
694
+ objectReference: {fileID: 0}
695
+ - target: {fileID: 5832368342074962142, guid: deb82f223236e4b748e13185fc0d02bc,
696
+ type: 3}
697
+ propertyPath: m_hasFontAssetChanged
698
+ value: 1
699
+ objectReference: {fileID: 0}
700
+ - target: {fileID: 5832368342074962142, guid: deb82f223236e4b748e13185fc0d02bc,
701
+ type: 3}
702
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
703
+ value: 1801810542
704
+ objectReference: {fileID: 0}
705
+ - target: {fileID: 7201387136957850023, guid: deb82f223236e4b748e13185fc0d02bc,
706
+ type: 3}
707
+ propertyPath: m_AnchorMax.y
708
+ value: 0
709
+ objectReference: {fileID: 0}
710
+ - target: {fileID: 7201387136957850023, guid: deb82f223236e4b748e13185fc0d02bc,
711
+ type: 3}
712
+ propertyPath: m_AnchorMin.y
713
+ value: 0
714
+ objectReference: {fileID: 0}
715
+ - target: {fileID: 7201387136957850023, guid: deb82f223236e4b748e13185fc0d02bc,
716
+ type: 3}
717
+ propertyPath: m_SizeDelta.x
718
+ value: 280
719
+ objectReference: {fileID: 0}
720
+ - target: {fileID: 7201387136957850023, guid: deb82f223236e4b748e13185fc0d02bc,
721
+ type: 3}
722
+ propertyPath: m_AnchoredPosition.x
723
+ value: 140
724
+ objectReference: {fileID: 0}
725
+ - target: {fileID: 7201387136957850023, guid: deb82f223236e4b748e13185fc0d02bc,
726
+ type: 3}
727
+ propertyPath: m_AnchoredPosition.y
728
+ value: -192.8
729
+ objectReference: {fileID: 0}
730
+ - target: {fileID: 7651647862843390645, guid: deb82f223236e4b748e13185fc0d02bc,
731
+ type: 3}
732
+ propertyPath: m_AnchorMax.y
733
+ value: 0
734
+ objectReference: {fileID: 0}
735
+ - target: {fileID: 7651647862843390645, guid: deb82f223236e4b748e13185fc0d02bc,
736
+ type: 3}
737
+ propertyPath: m_AnchorMin.y
738
+ value: 0
739
+ objectReference: {fileID: 0}
740
+ - target: {fileID: 7651647862843390645, guid: deb82f223236e4b748e13185fc0d02bc,
741
+ type: 3}
742
+ propertyPath: m_SizeDelta.x
743
+ value: 280
744
+ objectReference: {fileID: 0}
745
+ - target: {fileID: 7651647862843390645, guid: deb82f223236e4b748e13185fc0d02bc,
746
+ type: 3}
747
+ propertyPath: m_AnchoredPosition.x
748
+ value: 140
749
+ objectReference: {fileID: 0}
750
+ - target: {fileID: 7651647862843390645, guid: deb82f223236e4b748e13185fc0d02bc,
751
+ type: 3}
752
+ propertyPath: m_AnchoredPosition.y
753
+ value: -50
754
+ objectReference: {fileID: 0}
755
+ - target: {fileID: 7924890539738852758, guid: deb82f223236e4b748e13185fc0d02bc,
756
+ type: 3}
757
+ propertyPath: m_AnchorMax.y
758
+ value: 0
759
+ objectReference: {fileID: 0}
760
+ - target: {fileID: 7924890539738852758, guid: deb82f223236e4b748e13185fc0d02bc,
761
+ type: 3}
762
+ propertyPath: m_AnchorMin.y
763
+ value: 0
764
+ objectReference: {fileID: 0}
765
+ - target: {fileID: 7924890539738852758, guid: deb82f223236e4b748e13185fc0d02bc,
766
+ type: 3}
767
+ propertyPath: m_SizeDelta.x
768
+ value: 280
769
+ objectReference: {fileID: 0}
770
+ - target: {fileID: 7924890539738852758, guid: deb82f223236e4b748e13185fc0d02bc,
771
+ type: 3}
772
+ propertyPath: m_AnchoredPosition.x
773
+ value: 140
774
+ objectReference: {fileID: 0}
775
+ - target: {fileID: 7924890539738852758, guid: deb82f223236e4b748e13185fc0d02bc,
776
+ type: 3}
777
+ propertyPath: m_AnchoredPosition.y
778
+ value: -20
779
+ objectReference: {fileID: 0}
780
+ - target: {fileID: 7998557631194091983, guid: deb82f223236e4b748e13185fc0d02bc,
781
+ type: 3}
782
+ propertyPath: m_AnchorMax.y
783
+ value: 0
784
+ objectReference: {fileID: 0}
785
+ - target: {fileID: 7998557631194091983, guid: deb82f223236e4b748e13185fc0d02bc,
786
+ type: 3}
787
+ propertyPath: m_AnchorMin.y
788
+ value: 0
789
+ objectReference: {fileID: 0}
790
+ - target: {fileID: 7998557631194091983, guid: deb82f223236e4b748e13185fc0d02bc,
791
+ type: 3}
792
+ propertyPath: m_SizeDelta.x
793
+ value: 280
794
+ objectReference: {fileID: 0}
795
+ - target: {fileID: 7998557631194091983, guid: deb82f223236e4b748e13185fc0d02bc,
796
+ type: 3}
797
+ propertyPath: m_AnchoredPosition.x
798
+ value: 140
799
+ objectReference: {fileID: 0}
800
+ - target: {fileID: 7998557631194091983, guid: deb82f223236e4b748e13185fc0d02bc,
801
+ type: 3}
802
+ propertyPath: m_AnchoredPosition.y
803
+ value: -42.800003
804
+ objectReference: {fileID: 0}
805
+ - target: {fileID: 8303519354294939117, guid: deb82f223236e4b748e13185fc0d02bc,
806
+ type: 3}
807
+ propertyPath: m_fontAsset
808
+ value:
809
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
810
+ type: 2}
811
+ - target: {fileID: 8303519354294939117, guid: deb82f223236e4b748e13185fc0d02bc,
812
+ type: 3}
813
+ propertyPath: m_fontStyle
814
+ value: 1
815
+ objectReference: {fileID: 0}
816
+ - target: {fileID: 8303519354294939117, guid: deb82f223236e4b748e13185fc0d02bc,
817
+ type: 3}
818
+ propertyPath: m_hasFontAssetChanged
819
+ value: 1
820
+ objectReference: {fileID: 0}
821
+ - target: {fileID: 8303519354294939117, guid: deb82f223236e4b748e13185fc0d02bc,
822
+ type: 3}
823
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
824
+ value: 1801810542
825
+ objectReference: {fileID: 0}
826
+ - target: {fileID: 8399470327619900774, guid: deb82f223236e4b748e13185fc0d02bc,
827
+ type: 3}
828
+ propertyPath: m_AnchorMax.y
829
+ value: 1
830
+ objectReference: {fileID: 0}
831
+ - target: {fileID: 8399470327619900774, guid: deb82f223236e4b748e13185fc0d02bc,
832
+ type: 3}
833
+ propertyPath: m_AnchorMin.y
834
+ value: 1
835
+ objectReference: {fileID: 0}
836
+ - target: {fileID: 8399470327619900774, guid: deb82f223236e4b748e13185fc0d02bc,
837
+ type: 3}
838
+ propertyPath: m_SizeDelta.x
839
+ value: 280
840
+ objectReference: {fileID: 0}
841
+ - target: {fileID: 8399470327619900774, guid: deb82f223236e4b748e13185fc0d02bc,
842
+ type: 3}
843
+ propertyPath: m_AnchoredPosition.x
844
+ value: 140
845
+ objectReference: {fileID: 0}
846
+ - target: {fileID: 8399470327619900774, guid: deb82f223236e4b748e13185fc0d02bc,
847
+ type: 3}
848
+ propertyPath: m_AnchoredPosition.y
849
+ value: -460.00262
850
+ objectReference: {fileID: 0}
851
+ m_RemovedComponents: []
852
+ m_SourcePrefab: {fileID: 100100000, guid: deb82f223236e4b748e13185fc0d02bc, type: 3}
853
+ --- !u!224 &3161344602332467087 stripped
854
+ RectTransform:
855
+ m_CorrespondingSourceObject: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
856
+ type: 3}
857
+ m_PrefabInstance: {fileID: 2487828484342668334}
858
+ m_PrefabAsset: {fileID: 0}
859
+ --- !u!1001 &4358018535122668909
860
+ PrefabInstance:
861
+ m_ObjectHideFlags: 0
862
+ serializedVersion: 2
863
+ m_Modification:
864
+ m_TransformParent: {fileID: 3139525776721366113}
865
+ m_Modifications:
866
+ - target: {fileID: 519362217943666642, guid: deb82f223236e4b748e13185fc0d02bc,
867
+ type: 3}
868
+ propertyPath: m_fontAsset
869
+ value:
870
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
871
+ type: 2}
872
+ - target: {fileID: 519362217943666642, guid: deb82f223236e4b748e13185fc0d02bc,
873
+ type: 3}
874
+ propertyPath: m_fontStyle
875
+ value: 1
876
+ objectReference: {fileID: 0}
877
+ - target: {fileID: 519362217943666642, guid: deb82f223236e4b748e13185fc0d02bc,
878
+ type: 3}
879
+ propertyPath: m_hasFontAssetChanged
880
+ value: 1
881
+ objectReference: {fileID: 0}
882
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
883
+ type: 3}
884
+ propertyPath: m_Pivot.x
885
+ value: 0.5
886
+ objectReference: {fileID: 0}
887
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
888
+ type: 3}
889
+ propertyPath: m_Pivot.y
890
+ value: 0.5
891
+ objectReference: {fileID: 0}
892
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
893
+ type: 3}
894
+ propertyPath: m_RootOrder
895
+ value: 1
896
+ objectReference: {fileID: 0}
897
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
898
+ type: 3}
899
+ propertyPath: m_AnchorMax.x
900
+ value: 0
901
+ objectReference: {fileID: 0}
902
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
903
+ type: 3}
904
+ propertyPath: m_AnchorMax.y
905
+ value: 1
906
+ objectReference: {fileID: 0}
907
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
908
+ type: 3}
909
+ propertyPath: m_AnchorMin.x
910
+ value: 0
911
+ objectReference: {fileID: 0}
912
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
913
+ type: 3}
914
+ propertyPath: m_AnchorMin.y
915
+ value: 1
916
+ objectReference: {fileID: 0}
917
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
918
+ type: 3}
919
+ propertyPath: m_SizeDelta.x
920
+ value: 320
921
+ objectReference: {fileID: 0}
922
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
923
+ type: 3}
924
+ propertyPath: m_SizeDelta.y
925
+ value: 520
926
+ objectReference: {fileID: 0}
927
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
928
+ type: 3}
929
+ propertyPath: m_LocalPosition.x
930
+ value: 0
931
+ objectReference: {fileID: 0}
932
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
933
+ type: 3}
934
+ propertyPath: m_LocalPosition.y
935
+ value: 0
936
+ objectReference: {fileID: 0}
937
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
938
+ type: 3}
939
+ propertyPath: m_LocalPosition.z
940
+ value: 0
941
+ objectReference: {fileID: 0}
942
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
943
+ type: 3}
944
+ propertyPath: m_LocalRotation.w
945
+ value: 1
946
+ objectReference: {fileID: 0}
947
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
948
+ type: 3}
949
+ propertyPath: m_LocalRotation.x
950
+ value: 0
951
+ objectReference: {fileID: 0}
952
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
953
+ type: 3}
954
+ propertyPath: m_LocalRotation.y
955
+ value: 0
956
+ objectReference: {fileID: 0}
957
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
958
+ type: 3}
959
+ propertyPath: m_LocalRotation.z
960
+ value: 0
961
+ objectReference: {fileID: 0}
962
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
963
+ type: 3}
964
+ propertyPath: m_AnchoredPosition.x
965
+ value: 160
966
+ objectReference: {fileID: 0}
967
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
968
+ type: 3}
969
+ propertyPath: m_AnchoredPosition.y
970
+ value: -260
971
+ objectReference: {fileID: 0}
972
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
973
+ type: 3}
974
+ propertyPath: m_LocalEulerAnglesHint.x
975
+ value: 0
976
+ objectReference: {fileID: 0}
977
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
978
+ type: 3}
979
+ propertyPath: m_LocalEulerAnglesHint.y
980
+ value: 0
981
+ objectReference: {fileID: 0}
982
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
983
+ type: 3}
984
+ propertyPath: m_LocalEulerAnglesHint.z
985
+ value: 0
986
+ objectReference: {fileID: 0}
987
+ - target: {fileID: 829060059673910893, guid: deb82f223236e4b748e13185fc0d02bc,
988
+ type: 3}
989
+ propertyPath: m_AnchorMax.y
990
+ value: 1
991
+ objectReference: {fileID: 0}
992
+ - target: {fileID: 829060059673910893, guid: deb82f223236e4b748e13185fc0d02bc,
993
+ type: 3}
994
+ propertyPath: m_AnchorMin.y
995
+ value: 1
996
+ objectReference: {fileID: 0}
997
+ - target: {fileID: 829060059673910893, guid: deb82f223236e4b748e13185fc0d02bc,
998
+ type: 3}
999
+ propertyPath: m_SizeDelta.x
1000
+ value: 280
1001
+ objectReference: {fileID: 0}
1002
+ - target: {fileID: 829060059673910893, guid: deb82f223236e4b748e13185fc0d02bc,
1003
+ type: 3}
1004
+ propertyPath: m_AnchoredPosition.x
1005
+ value: 140
1006
+ objectReference: {fileID: 0}
1007
+ - target: {fileID: 829060059673910893, guid: deb82f223236e4b748e13185fc0d02bc,
1008
+ type: 3}
1009
+ propertyPath: m_AnchoredPosition.y
1010
+ value: -80
1011
+ objectReference: {fileID: 0}
1012
+ - target: {fileID: 1062620656346552983, guid: deb82f223236e4b748e13185fc0d02bc,
1013
+ type: 3}
1014
+ propertyPath: m_fontAsset
1015
+ value:
1016
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
1017
+ type: 2}
1018
+ - target: {fileID: 1062620656346552983, guid: deb82f223236e4b748e13185fc0d02bc,
1019
+ type: 3}
1020
+ propertyPath: m_fontStyle
1021
+ value: 1
1022
+ objectReference: {fileID: 0}
1023
+ - target: {fileID: 1062620656346552983, guid: deb82f223236e4b748e13185fc0d02bc,
1024
+ type: 3}
1025
+ propertyPath: m_hasFontAssetChanged
1026
+ value: 1
1027
+ objectReference: {fileID: 0}
1028
+ - target: {fileID: 1317945616623285728, guid: deb82f223236e4b748e13185fc0d02bc,
1029
+ type: 3}
1030
+ propertyPath: m_fontAsset
1031
+ value:
1032
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
1033
+ type: 2}
1034
+ - target: {fileID: 1317945616623285728, guid: deb82f223236e4b748e13185fc0d02bc,
1035
+ type: 3}
1036
+ propertyPath: m_fontStyle
1037
+ value: 1
1038
+ objectReference: {fileID: 0}
1039
+ - target: {fileID: 1317945616623285728, guid: deb82f223236e4b748e13185fc0d02bc,
1040
+ type: 3}
1041
+ propertyPath: m_hasFontAssetChanged
1042
+ value: 1
1043
+ objectReference: {fileID: 0}
1044
+ - target: {fileID: 1350146157826212841, guid: deb82f223236e4b748e13185fc0d02bc,
1045
+ type: 3}
1046
+ propertyPath: m_AnchorMax.y
1047
+ value: 1
1048
+ objectReference: {fileID: 0}
1049
+ - target: {fileID: 1350146157826212841, guid: deb82f223236e4b748e13185fc0d02bc,
1050
+ type: 3}
1051
+ propertyPath: m_AnchorMin.y
1052
+ value: 1
1053
+ objectReference: {fileID: 0}
1054
+ - target: {fileID: 1350146157826212841, guid: deb82f223236e4b748e13185fc0d02bc,
1055
+ type: 3}
1056
+ propertyPath: m_SizeDelta.x
1057
+ value: 280
1058
+ objectReference: {fileID: 0}
1059
+ - target: {fileID: 1350146157826212841, guid: deb82f223236e4b748e13185fc0d02bc,
1060
+ type: 3}
1061
+ propertyPath: m_AnchoredPosition.x
1062
+ value: 140
1063
+ objectReference: {fileID: 0}
1064
+ - target: {fileID: 1350146157826212841, guid: deb82f223236e4b748e13185fc0d02bc,
1065
+ type: 3}
1066
+ propertyPath: m_AnchoredPosition.y
1067
+ value: -92.8
1068
+ objectReference: {fileID: 0}
1069
+ - target: {fileID: 1794117858962595376, guid: deb82f223236e4b748e13185fc0d02bc,
1070
+ type: 3}
1071
+ propertyPath: m_fontAsset
1072
+ value:
1073
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
1074
+ type: 2}
1075
+ - target: {fileID: 1794117858962595376, guid: deb82f223236e4b748e13185fc0d02bc,
1076
+ type: 3}
1077
+ propertyPath: m_fontStyle
1078
+ value: 1
1079
+ objectReference: {fileID: 0}
1080
+ - target: {fileID: 1794117858962595376, guid: deb82f223236e4b748e13185fc0d02bc,
1081
+ type: 3}
1082
+ propertyPath: m_hasFontAssetChanged
1083
+ value: 1
1084
+ objectReference: {fileID: 0}
1085
+ - target: {fileID: 1917508839531016529, guid: deb82f223236e4b748e13185fc0d02bc,
1086
+ type: 3}
1087
+ propertyPath: m_fontAsset
1088
+ value:
1089
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
1090
+ type: 2}
1091
+ - target: {fileID: 1917508839531016529, guid: deb82f223236e4b748e13185fc0d02bc,
1092
+ type: 3}
1093
+ propertyPath: m_fontStyle
1094
+ value: 1
1095
+ objectReference: {fileID: 0}
1096
+ - target: {fileID: 1917508839531016529, guid: deb82f223236e4b748e13185fc0d02bc,
1097
+ type: 3}
1098
+ propertyPath: m_hasFontAssetChanged
1099
+ value: 1
1100
+ objectReference: {fileID: 0}
1101
+ - target: {fileID: 4180314848952589119, guid: deb82f223236e4b748e13185fc0d02bc,
1102
+ type: 3}
1103
+ propertyPath: m_Name
1104
+ value: PlayerLobby
1105
+ objectReference: {fileID: 0}
1106
+ - target: {fileID: 4180314848952589119, guid: deb82f223236e4b748e13185fc0d02bc,
1107
+ type: 3}
1108
+ propertyPath: m_IsActive
1109
+ value: 0
1110
+ objectReference: {fileID: 0}
1111
+ - target: {fileID: 4341432247808423581, guid: deb82f223236e4b748e13185fc0d02bc,
1112
+ type: 3}
1113
+ propertyPath: m_AnchorMax.y
1114
+ value: 1
1115
+ objectReference: {fileID: 0}
1116
+ - target: {fileID: 4341432247808423581, guid: deb82f223236e4b748e13185fc0d02bc,
1117
+ type: 3}
1118
+ propertyPath: m_AnchorMin.y
1119
+ value: 1
1120
+ objectReference: {fileID: 0}
1121
+ - target: {fileID: 4341432247808423581, guid: deb82f223236e4b748e13185fc0d02bc,
1122
+ type: 3}
1123
+ propertyPath: m_SizeDelta.x
1124
+ value: 280
1125
+ objectReference: {fileID: 0}
1126
+ - target: {fileID: 4341432247808423581, guid: deb82f223236e4b748e13185fc0d02bc,
1127
+ type: 3}
1128
+ propertyPath: m_AnchoredPosition.x
1129
+ value: 140
1130
+ objectReference: {fileID: 0}
1131
+ - target: {fileID: 4341432247808423581, guid: deb82f223236e4b748e13185fc0d02bc,
1132
+ type: 3}
1133
+ propertyPath: m_AnchoredPosition.y
1134
+ value: -110
1135
+ objectReference: {fileID: 0}
1136
+ - target: {fileID: 4522758634274718689, guid: deb82f223236e4b748e13185fc0d02bc,
1137
+ type: 3}
1138
+ propertyPath: m_AnchorMax.y
1139
+ value: 1
1140
+ objectReference: {fileID: 0}
1141
+ - target: {fileID: 4522758634274718689, guid: deb82f223236e4b748e13185fc0d02bc,
1142
+ type: 3}
1143
+ propertyPath: m_AnchorMin.y
1144
+ value: 1
1145
+ objectReference: {fileID: 0}
1146
+ - target: {fileID: 4522758634274718689, guid: deb82f223236e4b748e13185fc0d02bc,
1147
+ type: 3}
1148
+ propertyPath: m_SizeDelta.x
1149
+ value: 280
1150
+ objectReference: {fileID: 0}
1151
+ - target: {fileID: 4522758634274718689, guid: deb82f223236e4b748e13185fc0d02bc,
1152
+ type: 3}
1153
+ propertyPath: m_AnchoredPosition.x
1154
+ value: 140
1155
+ objectReference: {fileID: 0}
1156
+ - target: {fileID: 4522758634274718689, guid: deb82f223236e4b748e13185fc0d02bc,
1157
+ type: 3}
1158
+ propertyPath: m_AnchoredPosition.y
1159
+ value: -148.6013
1160
+ objectReference: {fileID: 0}
1161
+ - target: {fileID: 4749422711813132023, guid: deb82f223236e4b748e13185fc0d02bc,
1162
+ type: 3}
1163
+ propertyPath: m_AnchorMax.y
1164
+ value: 1
1165
+ objectReference: {fileID: 0}
1166
+ - target: {fileID: 4749422711813132023, guid: deb82f223236e4b748e13185fc0d02bc,
1167
+ type: 3}
1168
+ propertyPath: m_AnchorMin.y
1169
+ value: 1
1170
+ objectReference: {fileID: 0}
1171
+ - target: {fileID: 4749422711813132023, guid: deb82f223236e4b748e13185fc0d02bc,
1172
+ type: 3}
1173
+ propertyPath: m_SizeDelta.x
1174
+ value: 280
1175
+ objectReference: {fileID: 0}
1176
+ - target: {fileID: 4749422711813132023, guid: deb82f223236e4b748e13185fc0d02bc,
1177
+ type: 3}
1178
+ propertyPath: m_AnchoredPosition.x
1179
+ value: 140
1180
+ objectReference: {fileID: 0}
1181
+ - target: {fileID: 4749422711813132023, guid: deb82f223236e4b748e13185fc0d02bc,
1182
+ type: 3}
1183
+ propertyPath: m_AnchoredPosition.y
1184
+ value: -142.8
1185
+ objectReference: {fileID: 0}
1186
+ - target: {fileID: 4902132247774974139, guid: deb82f223236e4b748e13185fc0d02bc,
1187
+ type: 3}
1188
+ propertyPath: m_fontAsset
1189
+ value:
1190
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
1191
+ type: 2}
1192
+ - target: {fileID: 4902132247774974139, guid: deb82f223236e4b748e13185fc0d02bc,
1193
+ type: 3}
1194
+ propertyPath: m_fontStyle
1195
+ value: 1
1196
+ objectReference: {fileID: 0}
1197
+ - target: {fileID: 4902132247774974139, guid: deb82f223236e4b748e13185fc0d02bc,
1198
+ type: 3}
1199
+ propertyPath: m_hasFontAssetChanged
1200
+ value: 1
1201
+ objectReference: {fileID: 0}
1202
+ - target: {fileID: 5273814887718094653, guid: deb82f223236e4b748e13185fc0d02bc,
1203
+ type: 3}
1204
+ propertyPath: m_fontAsset
1205
+ value:
1206
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
1207
+ type: 2}
1208
+ - target: {fileID: 5273814887718094653, guid: deb82f223236e4b748e13185fc0d02bc,
1209
+ type: 3}
1210
+ propertyPath: m_fontStyle
1211
+ value: 1
1212
+ objectReference: {fileID: 0}
1213
+ - target: {fileID: 5273814887718094653, guid: deb82f223236e4b748e13185fc0d02bc,
1214
+ type: 3}
1215
+ propertyPath: m_hasFontAssetChanged
1216
+ value: 1
1217
+ objectReference: {fileID: 0}
1218
+ - target: {fileID: 5618761470379609141, guid: deb82f223236e4b748e13185fc0d02bc,
1219
+ type: 3}
1220
+ propertyPath: m_AnchorMax.y
1221
+ value: 1
1222
+ objectReference: {fileID: 0}
1223
+ - target: {fileID: 5618761470379609141, guid: deb82f223236e4b748e13185fc0d02bc,
1224
+ type: 3}
1225
+ propertyPath: m_AnchorMin.y
1226
+ value: 1
1227
+ objectReference: {fileID: 0}
1228
+ - target: {fileID: 5618761470379609141, guid: deb82f223236e4b748e13185fc0d02bc,
1229
+ type: 3}
1230
+ propertyPath: m_SizeDelta.x
1231
+ value: 280
1232
+ objectReference: {fileID: 0}
1233
+ - target: {fileID: 5618761470379609141, guid: deb82f223236e4b748e13185fc0d02bc,
1234
+ type: 3}
1235
+ propertyPath: m_AnchoredPosition.x
1236
+ value: 140
1237
+ objectReference: {fileID: 0}
1238
+ - target: {fileID: 5832368342074962142, guid: deb82f223236e4b748e13185fc0d02bc,
1239
+ type: 3}
1240
+ propertyPath: m_fontAsset
1241
+ value:
1242
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
1243
+ type: 2}
1244
+ - target: {fileID: 5832368342074962142, guid: deb82f223236e4b748e13185fc0d02bc,
1245
+ type: 3}
1246
+ propertyPath: m_fontStyle
1247
+ value: 1
1248
+ objectReference: {fileID: 0}
1249
+ - target: {fileID: 5832368342074962142, guid: deb82f223236e4b748e13185fc0d02bc,
1250
+ type: 3}
1251
+ propertyPath: m_hasFontAssetChanged
1252
+ value: 1
1253
+ objectReference: {fileID: 0}
1254
+ - target: {fileID: 7201387136957850023, guid: deb82f223236e4b748e13185fc0d02bc,
1255
+ type: 3}
1256
+ propertyPath: m_AnchorMax.y
1257
+ value: 1
1258
+ objectReference: {fileID: 0}
1259
+ - target: {fileID: 7201387136957850023, guid: deb82f223236e4b748e13185fc0d02bc,
1260
+ type: 3}
1261
+ propertyPath: m_AnchorMin.y
1262
+ value: 1
1263
+ objectReference: {fileID: 0}
1264
+ - target: {fileID: 7201387136957850023, guid: deb82f223236e4b748e13185fc0d02bc,
1265
+ type: 3}
1266
+ propertyPath: m_SizeDelta.x
1267
+ value: 280
1268
+ objectReference: {fileID: 0}
1269
+ - target: {fileID: 7201387136957850023, guid: deb82f223236e4b748e13185fc0d02bc,
1270
+ type: 3}
1271
+ propertyPath: m_AnchoredPosition.x
1272
+ value: 140
1273
+ objectReference: {fileID: 0}
1274
+ - target: {fileID: 7201387136957850023, guid: deb82f223236e4b748e13185fc0d02bc,
1275
+ type: 3}
1276
+ propertyPath: m_AnchoredPosition.y
1277
+ value: -192.8
1278
+ objectReference: {fileID: 0}
1279
+ - target: {fileID: 7651647862843390645, guid: deb82f223236e4b748e13185fc0d02bc,
1280
+ type: 3}
1281
+ propertyPath: m_AnchorMax.y
1282
+ value: 1
1283
+ objectReference: {fileID: 0}
1284
+ - target: {fileID: 7651647862843390645, guid: deb82f223236e4b748e13185fc0d02bc,
1285
+ type: 3}
1286
+ propertyPath: m_AnchorMin.y
1287
+ value: 1
1288
+ objectReference: {fileID: 0}
1289
+ - target: {fileID: 7651647862843390645, guid: deb82f223236e4b748e13185fc0d02bc,
1290
+ type: 3}
1291
+ propertyPath: m_SizeDelta.x
1292
+ value: 280
1293
+ objectReference: {fileID: 0}
1294
+ - target: {fileID: 7651647862843390645, guid: deb82f223236e4b748e13185fc0d02bc,
1295
+ type: 3}
1296
+ propertyPath: m_AnchoredPosition.x
1297
+ value: 140
1298
+ objectReference: {fileID: 0}
1299
+ - target: {fileID: 7651647862843390645, guid: deb82f223236e4b748e13185fc0d02bc,
1300
+ type: 3}
1301
+ propertyPath: m_AnchoredPosition.y
1302
+ value: -50
1303
+ objectReference: {fileID: 0}
1304
+ - target: {fileID: 7924890539738852758, guid: deb82f223236e4b748e13185fc0d02bc,
1305
+ type: 3}
1306
+ propertyPath: m_AnchorMax.y
1307
+ value: 1
1308
+ objectReference: {fileID: 0}
1309
+ - target: {fileID: 7924890539738852758, guid: deb82f223236e4b748e13185fc0d02bc,
1310
+ type: 3}
1311
+ propertyPath: m_AnchorMin.y
1312
+ value: 1
1313
+ objectReference: {fileID: 0}
1314
+ - target: {fileID: 7924890539738852758, guid: deb82f223236e4b748e13185fc0d02bc,
1315
+ type: 3}
1316
+ propertyPath: m_SizeDelta.x
1317
+ value: 280
1318
+ objectReference: {fileID: 0}
1319
+ - target: {fileID: 7924890539738852758, guid: deb82f223236e4b748e13185fc0d02bc,
1320
+ type: 3}
1321
+ propertyPath: m_AnchoredPosition.x
1322
+ value: 140
1323
+ objectReference: {fileID: 0}
1324
+ - target: {fileID: 7924890539738852758, guid: deb82f223236e4b748e13185fc0d02bc,
1325
+ type: 3}
1326
+ propertyPath: m_AnchoredPosition.y
1327
+ value: -20
1328
+ objectReference: {fileID: 0}
1329
+ - target: {fileID: 7998557631194091983, guid: deb82f223236e4b748e13185fc0d02bc,
1330
+ type: 3}
1331
+ propertyPath: m_AnchorMax.y
1332
+ value: 1
1333
+ objectReference: {fileID: 0}
1334
+ - target: {fileID: 7998557631194091983, guid: deb82f223236e4b748e13185fc0d02bc,
1335
+ type: 3}
1336
+ propertyPath: m_AnchorMin.y
1337
+ value: 1
1338
+ objectReference: {fileID: 0}
1339
+ - target: {fileID: 7998557631194091983, guid: deb82f223236e4b748e13185fc0d02bc,
1340
+ type: 3}
1341
+ propertyPath: m_SizeDelta.x
1342
+ value: 280
1343
+ objectReference: {fileID: 0}
1344
+ - target: {fileID: 7998557631194091983, guid: deb82f223236e4b748e13185fc0d02bc,
1345
+ type: 3}
1346
+ propertyPath: m_AnchoredPosition.x
1347
+ value: 140
1348
+ objectReference: {fileID: 0}
1349
+ - target: {fileID: 7998557631194091983, guid: deb82f223236e4b748e13185fc0d02bc,
1350
+ type: 3}
1351
+ propertyPath: m_AnchoredPosition.y
1352
+ value: -42.800003
1353
+ objectReference: {fileID: 0}
1354
+ - target: {fileID: 8303519354294939117, guid: deb82f223236e4b748e13185fc0d02bc,
1355
+ type: 3}
1356
+ propertyPath: m_fontAsset
1357
+ value:
1358
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
1359
+ type: 2}
1360
+ - target: {fileID: 8303519354294939117, guid: deb82f223236e4b748e13185fc0d02bc,
1361
+ type: 3}
1362
+ propertyPath: m_fontStyle
1363
+ value: 1
1364
+ objectReference: {fileID: 0}
1365
+ - target: {fileID: 8303519354294939117, guid: deb82f223236e4b748e13185fc0d02bc,
1366
+ type: 3}
1367
+ propertyPath: m_hasFontAssetChanged
1368
+ value: 1
1369
+ objectReference: {fileID: 0}
1370
+ - target: {fileID: 8399470327619900774, guid: deb82f223236e4b748e13185fc0d02bc,
1371
+ type: 3}
1372
+ propertyPath: m_AnchorMax.y
1373
+ value: 1
1374
+ objectReference: {fileID: 0}
1375
+ - target: {fileID: 8399470327619900774, guid: deb82f223236e4b748e13185fc0d02bc,
1376
+ type: 3}
1377
+ propertyPath: m_AnchorMin.y
1378
+ value: 1
1379
+ objectReference: {fileID: 0}
1380
+ - target: {fileID: 8399470327619900774, guid: deb82f223236e4b748e13185fc0d02bc,
1381
+ type: 3}
1382
+ propertyPath: m_SizeDelta.x
1383
+ value: 280
1384
+ objectReference: {fileID: 0}
1385
+ - target: {fileID: 8399470327619900774, guid: deb82f223236e4b748e13185fc0d02bc,
1386
+ type: 3}
1387
+ propertyPath: m_AnchoredPosition.x
1388
+ value: 140
1389
+ objectReference: {fileID: 0}
1390
+ - target: {fileID: 8399470327619900774, guid: deb82f223236e4b748e13185fc0d02bc,
1391
+ type: 3}
1392
+ propertyPath: m_AnchoredPosition.y
1393
+ value: -460.00262
1394
+ objectReference: {fileID: 0}
1395
+ m_RemovedComponents: []
1396
+ m_SourcePrefab: {fileID: 100100000, guid: deb82f223236e4b748e13185fc0d02bc, type: 3}
1397
+ --- !u!224 &3828932958756658892 stripped
1398
+ RectTransform:
1399
+ m_CorrespondingSourceObject: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1400
+ type: 3}
1401
+ m_PrefabInstance: {fileID: 4358018535122668909}
1402
+ m_PrefabAsset: {fileID: 0}
1403
+ --- !u!1001 &8084046522243544643
1404
+ PrefabInstance:
1405
+ m_ObjectHideFlags: 0
1406
+ serializedVersion: 2
1407
+ m_Modification:
1408
+ m_TransformParent: {fileID: 3139525776721366113}
1409
+ m_Modifications:
1410
+ - target: {fileID: 519362217943666642, guid: deb82f223236e4b748e13185fc0d02bc,
1411
+ type: 3}
1412
+ propertyPath: m_fontAsset
1413
+ value:
1414
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
1415
+ type: 2}
1416
+ - target: {fileID: 519362217943666642, guid: deb82f223236e4b748e13185fc0d02bc,
1417
+ type: 3}
1418
+ propertyPath: m_fontStyle
1419
+ value: 1
1420
+ objectReference: {fileID: 0}
1421
+ - target: {fileID: 519362217943666642, guid: deb82f223236e4b748e13185fc0d02bc,
1422
+ type: 3}
1423
+ propertyPath: m_hasFontAssetChanged
1424
+ value: 1
1425
+ objectReference: {fileID: 0}
1426
+ - target: {fileID: 519362217943666642, guid: deb82f223236e4b748e13185fc0d02bc,
1427
+ type: 3}
1428
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
1429
+ value: 1801810542
1430
+ objectReference: {fileID: 0}
1431
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1432
+ type: 3}
1433
+ propertyPath: m_Pivot.x
1434
+ value: 0.5
1435
+ objectReference: {fileID: 0}
1436
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1437
+ type: 3}
1438
+ propertyPath: m_Pivot.y
1439
+ value: 0.5
1440
+ objectReference: {fileID: 0}
1441
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1442
+ type: 3}
1443
+ propertyPath: m_RootOrder
1444
+ value: 2
1445
+ objectReference: {fileID: 0}
1446
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1447
+ type: 3}
1448
+ propertyPath: m_AnchorMax.x
1449
+ value: 0
1450
+ objectReference: {fileID: 0}
1451
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1452
+ type: 3}
1453
+ propertyPath: m_AnchorMax.y
1454
+ value: 0
1455
+ objectReference: {fileID: 0}
1456
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1457
+ type: 3}
1458
+ propertyPath: m_AnchorMin.x
1459
+ value: 0
1460
+ objectReference: {fileID: 0}
1461
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1462
+ type: 3}
1463
+ propertyPath: m_AnchorMin.y
1464
+ value: 0
1465
+ objectReference: {fileID: 0}
1466
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1467
+ type: 3}
1468
+ propertyPath: m_SizeDelta.x
1469
+ value: 320
1470
+ objectReference: {fileID: 0}
1471
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1472
+ type: 3}
1473
+ propertyPath: m_SizeDelta.y
1474
+ value: 520
1475
+ objectReference: {fileID: 0}
1476
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1477
+ type: 3}
1478
+ propertyPath: m_LocalPosition.x
1479
+ value: 0
1480
+ objectReference: {fileID: 0}
1481
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1482
+ type: 3}
1483
+ propertyPath: m_LocalPosition.y
1484
+ value: 0
1485
+ objectReference: {fileID: 0}
1486
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1487
+ type: 3}
1488
+ propertyPath: m_LocalPosition.z
1489
+ value: 0
1490
+ objectReference: {fileID: 0}
1491
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1492
+ type: 3}
1493
+ propertyPath: m_LocalRotation.w
1494
+ value: 1
1495
+ objectReference: {fileID: 0}
1496
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1497
+ type: 3}
1498
+ propertyPath: m_LocalRotation.x
1499
+ value: 0
1500
+ objectReference: {fileID: 0}
1501
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1502
+ type: 3}
1503
+ propertyPath: m_LocalRotation.y
1504
+ value: 0
1505
+ objectReference: {fileID: 0}
1506
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1507
+ type: 3}
1508
+ propertyPath: m_LocalRotation.z
1509
+ value: 0
1510
+ objectReference: {fileID: 0}
1511
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1512
+ type: 3}
1513
+ propertyPath: m_AnchoredPosition.x
1514
+ value: 1120
1515
+ objectReference: {fileID: 0}
1516
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1517
+ type: 3}
1518
+ propertyPath: m_AnchoredPosition.y
1519
+ value: 0
1520
+ objectReference: {fileID: 0}
1521
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1522
+ type: 3}
1523
+ propertyPath: m_LocalEulerAnglesHint.x
1524
+ value: 0
1525
+ objectReference: {fileID: 0}
1526
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1527
+ type: 3}
1528
+ propertyPath: m_LocalEulerAnglesHint.y
1529
+ value: 0
1530
+ objectReference: {fileID: 0}
1531
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1532
+ type: 3}
1533
+ propertyPath: m_LocalEulerAnglesHint.z
1534
+ value: 0
1535
+ objectReference: {fileID: 0}
1536
+ - target: {fileID: 829060059673910893, guid: deb82f223236e4b748e13185fc0d02bc,
1537
+ type: 3}
1538
+ propertyPath: m_AnchorMax.y
1539
+ value: 0
1540
+ objectReference: {fileID: 0}
1541
+ - target: {fileID: 829060059673910893, guid: deb82f223236e4b748e13185fc0d02bc,
1542
+ type: 3}
1543
+ propertyPath: m_AnchorMin.y
1544
+ value: 0
1545
+ objectReference: {fileID: 0}
1546
+ - target: {fileID: 829060059673910893, guid: deb82f223236e4b748e13185fc0d02bc,
1547
+ type: 3}
1548
+ propertyPath: m_SizeDelta.x
1549
+ value: 280
1550
+ objectReference: {fileID: 0}
1551
+ - target: {fileID: 829060059673910893, guid: deb82f223236e4b748e13185fc0d02bc,
1552
+ type: 3}
1553
+ propertyPath: m_AnchoredPosition.x
1554
+ value: 140
1555
+ objectReference: {fileID: 0}
1556
+ - target: {fileID: 829060059673910893, guid: deb82f223236e4b748e13185fc0d02bc,
1557
+ type: 3}
1558
+ propertyPath: m_AnchoredPosition.y
1559
+ value: -80
1560
+ objectReference: {fileID: 0}
1561
+ - target: {fileID: 1062620656346552983, guid: deb82f223236e4b748e13185fc0d02bc,
1562
+ type: 3}
1563
+ propertyPath: m_fontAsset
1564
+ value:
1565
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
1566
+ type: 2}
1567
+ - target: {fileID: 1062620656346552983, guid: deb82f223236e4b748e13185fc0d02bc,
1568
+ type: 3}
1569
+ propertyPath: m_fontStyle
1570
+ value: 1
1571
+ objectReference: {fileID: 0}
1572
+ - target: {fileID: 1062620656346552983, guid: deb82f223236e4b748e13185fc0d02bc,
1573
+ type: 3}
1574
+ propertyPath: m_hasFontAssetChanged
1575
+ value: 1
1576
+ objectReference: {fileID: 0}
1577
+ - target: {fileID: 1062620656346552983, guid: deb82f223236e4b748e13185fc0d02bc,
1578
+ type: 3}
1579
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
1580
+ value: 1801810542
1581
+ objectReference: {fileID: 0}
1582
+ - target: {fileID: 1317945616623285728, guid: deb82f223236e4b748e13185fc0d02bc,
1583
+ type: 3}
1584
+ propertyPath: m_fontAsset
1585
+ value:
1586
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
1587
+ type: 2}
1588
+ - target: {fileID: 1317945616623285728, guid: deb82f223236e4b748e13185fc0d02bc,
1589
+ type: 3}
1590
+ propertyPath: m_fontStyle
1591
+ value: 1
1592
+ objectReference: {fileID: 0}
1593
+ - target: {fileID: 1317945616623285728, guid: deb82f223236e4b748e13185fc0d02bc,
1594
+ type: 3}
1595
+ propertyPath: m_hasFontAssetChanged
1596
+ value: 1
1597
+ objectReference: {fileID: 0}
1598
+ - target: {fileID: 1317945616623285728, guid: deb82f223236e4b748e13185fc0d02bc,
1599
+ type: 3}
1600
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
1601
+ value: 1801810542
1602
+ objectReference: {fileID: 0}
1603
+ - target: {fileID: 1350146157826212841, guid: deb82f223236e4b748e13185fc0d02bc,
1604
+ type: 3}
1605
+ propertyPath: m_AnchorMax.y
1606
+ value: 0
1607
+ objectReference: {fileID: 0}
1608
+ - target: {fileID: 1350146157826212841, guid: deb82f223236e4b748e13185fc0d02bc,
1609
+ type: 3}
1610
+ propertyPath: m_AnchorMin.y
1611
+ value: 0
1612
+ objectReference: {fileID: 0}
1613
+ - target: {fileID: 1350146157826212841, guid: deb82f223236e4b748e13185fc0d02bc,
1614
+ type: 3}
1615
+ propertyPath: m_SizeDelta.x
1616
+ value: 280
1617
+ objectReference: {fileID: 0}
1618
+ - target: {fileID: 1350146157826212841, guid: deb82f223236e4b748e13185fc0d02bc,
1619
+ type: 3}
1620
+ propertyPath: m_AnchoredPosition.x
1621
+ value: 140
1622
+ objectReference: {fileID: 0}
1623
+ - target: {fileID: 1350146157826212841, guid: deb82f223236e4b748e13185fc0d02bc,
1624
+ type: 3}
1625
+ propertyPath: m_AnchoredPosition.y
1626
+ value: -92.8
1627
+ objectReference: {fileID: 0}
1628
+ - target: {fileID: 1794117858962595376, guid: deb82f223236e4b748e13185fc0d02bc,
1629
+ type: 3}
1630
+ propertyPath: m_fontAsset
1631
+ value:
1632
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
1633
+ type: 2}
1634
+ - target: {fileID: 1794117858962595376, guid: deb82f223236e4b748e13185fc0d02bc,
1635
+ type: 3}
1636
+ propertyPath: m_fontStyle
1637
+ value: 1
1638
+ objectReference: {fileID: 0}
1639
+ - target: {fileID: 1794117858962595376, guid: deb82f223236e4b748e13185fc0d02bc,
1640
+ type: 3}
1641
+ propertyPath: m_hasFontAssetChanged
1642
+ value: 1
1643
+ objectReference: {fileID: 0}
1644
+ - target: {fileID: 1794117858962595376, guid: deb82f223236e4b748e13185fc0d02bc,
1645
+ type: 3}
1646
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
1647
+ value: 1801810542
1648
+ objectReference: {fileID: 0}
1649
+ - target: {fileID: 1917508839531016529, guid: deb82f223236e4b748e13185fc0d02bc,
1650
+ type: 3}
1651
+ propertyPath: m_fontAsset
1652
+ value:
1653
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
1654
+ type: 2}
1655
+ - target: {fileID: 1917508839531016529, guid: deb82f223236e4b748e13185fc0d02bc,
1656
+ type: 3}
1657
+ propertyPath: m_fontStyle
1658
+ value: 1
1659
+ objectReference: {fileID: 0}
1660
+ - target: {fileID: 1917508839531016529, guid: deb82f223236e4b748e13185fc0d02bc,
1661
+ type: 3}
1662
+ propertyPath: m_hasFontAssetChanged
1663
+ value: 1
1664
+ objectReference: {fileID: 0}
1665
+ - target: {fileID: 1917508839531016529, guid: deb82f223236e4b748e13185fc0d02bc,
1666
+ type: 3}
1667
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
1668
+ value: 1801810542
1669
+ objectReference: {fileID: 0}
1670
+ - target: {fileID: 4180314848952589119, guid: deb82f223236e4b748e13185fc0d02bc,
1671
+ type: 3}
1672
+ propertyPath: m_Name
1673
+ value: PlayerLobby (2)
1674
+ objectReference: {fileID: 0}
1675
+ - target: {fileID: 4180314848952589119, guid: deb82f223236e4b748e13185fc0d02bc,
1676
+ type: 3}
1677
+ propertyPath: m_IsActive
1678
+ value: 0
1679
+ objectReference: {fileID: 0}
1680
+ - target: {fileID: 4341432247808423581, guid: deb82f223236e4b748e13185fc0d02bc,
1681
+ type: 3}
1682
+ propertyPath: m_AnchorMax.y
1683
+ value: 0
1684
+ objectReference: {fileID: 0}
1685
+ - target: {fileID: 4341432247808423581, guid: deb82f223236e4b748e13185fc0d02bc,
1686
+ type: 3}
1687
+ propertyPath: m_AnchorMin.y
1688
+ value: 0
1689
+ objectReference: {fileID: 0}
1690
+ - target: {fileID: 4341432247808423581, guid: deb82f223236e4b748e13185fc0d02bc,
1691
+ type: 3}
1692
+ propertyPath: m_SizeDelta.x
1693
+ value: 280
1694
+ objectReference: {fileID: 0}
1695
+ - target: {fileID: 4341432247808423581, guid: deb82f223236e4b748e13185fc0d02bc,
1696
+ type: 3}
1697
+ propertyPath: m_AnchoredPosition.x
1698
+ value: 140
1699
+ objectReference: {fileID: 0}
1700
+ - target: {fileID: 4341432247808423581, guid: deb82f223236e4b748e13185fc0d02bc,
1701
+ type: 3}
1702
+ propertyPath: m_AnchoredPosition.y
1703
+ value: -110
1704
+ objectReference: {fileID: 0}
1705
+ - target: {fileID: 4522758634274718689, guid: deb82f223236e4b748e13185fc0d02bc,
1706
+ type: 3}
1707
+ propertyPath: m_AnchorMax.y
1708
+ value: 1
1709
+ objectReference: {fileID: 0}
1710
+ - target: {fileID: 4522758634274718689, guid: deb82f223236e4b748e13185fc0d02bc,
1711
+ type: 3}
1712
+ propertyPath: m_AnchorMin.y
1713
+ value: 1
1714
+ objectReference: {fileID: 0}
1715
+ - target: {fileID: 4522758634274718689, guid: deb82f223236e4b748e13185fc0d02bc,
1716
+ type: 3}
1717
+ propertyPath: m_SizeDelta.x
1718
+ value: 280
1719
+ objectReference: {fileID: 0}
1720
+ - target: {fileID: 4522758634274718689, guid: deb82f223236e4b748e13185fc0d02bc,
1721
+ type: 3}
1722
+ propertyPath: m_AnchoredPosition.x
1723
+ value: 140
1724
+ objectReference: {fileID: 0}
1725
+ - target: {fileID: 4522758634274718689, guid: deb82f223236e4b748e13185fc0d02bc,
1726
+ type: 3}
1727
+ propertyPath: m_AnchoredPosition.y
1728
+ value: -148.6013
1729
+ objectReference: {fileID: 0}
1730
+ - target: {fileID: 4749422711813132023, guid: deb82f223236e4b748e13185fc0d02bc,
1731
+ type: 3}
1732
+ propertyPath: m_AnchorMax.y
1733
+ value: 0
1734
+ objectReference: {fileID: 0}
1735
+ - target: {fileID: 4749422711813132023, guid: deb82f223236e4b748e13185fc0d02bc,
1736
+ type: 3}
1737
+ propertyPath: m_AnchorMin.y
1738
+ value: 0
1739
+ objectReference: {fileID: 0}
1740
+ - target: {fileID: 4749422711813132023, guid: deb82f223236e4b748e13185fc0d02bc,
1741
+ type: 3}
1742
+ propertyPath: m_SizeDelta.x
1743
+ value: 280
1744
+ objectReference: {fileID: 0}
1745
+ - target: {fileID: 4749422711813132023, guid: deb82f223236e4b748e13185fc0d02bc,
1746
+ type: 3}
1747
+ propertyPath: m_AnchoredPosition.x
1748
+ value: 140
1749
+ objectReference: {fileID: 0}
1750
+ - target: {fileID: 4749422711813132023, guid: deb82f223236e4b748e13185fc0d02bc,
1751
+ type: 3}
1752
+ propertyPath: m_AnchoredPosition.y
1753
+ value: -142.8
1754
+ objectReference: {fileID: 0}
1755
+ - target: {fileID: 4902132247774974139, guid: deb82f223236e4b748e13185fc0d02bc,
1756
+ type: 3}
1757
+ propertyPath: m_fontAsset
1758
+ value:
1759
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
1760
+ type: 2}
1761
+ - target: {fileID: 4902132247774974139, guid: deb82f223236e4b748e13185fc0d02bc,
1762
+ type: 3}
1763
+ propertyPath: m_fontStyle
1764
+ value: 1
1765
+ objectReference: {fileID: 0}
1766
+ - target: {fileID: 4902132247774974139, guid: deb82f223236e4b748e13185fc0d02bc,
1767
+ type: 3}
1768
+ propertyPath: m_hasFontAssetChanged
1769
+ value: 1
1770
+ objectReference: {fileID: 0}
1771
+ - target: {fileID: 4902132247774974139, guid: deb82f223236e4b748e13185fc0d02bc,
1772
+ type: 3}
1773
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
1774
+ value: 1801810542
1775
+ objectReference: {fileID: 0}
1776
+ - target: {fileID: 5273814887718094653, guid: deb82f223236e4b748e13185fc0d02bc,
1777
+ type: 3}
1778
+ propertyPath: m_fontAsset
1779
+ value:
1780
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
1781
+ type: 2}
1782
+ - target: {fileID: 5273814887718094653, guid: deb82f223236e4b748e13185fc0d02bc,
1783
+ type: 3}
1784
+ propertyPath: m_fontStyle
1785
+ value: 1
1786
+ objectReference: {fileID: 0}
1787
+ - target: {fileID: 5273814887718094653, guid: deb82f223236e4b748e13185fc0d02bc,
1788
+ type: 3}
1789
+ propertyPath: m_hasFontAssetChanged
1790
+ value: 1
1791
+ objectReference: {fileID: 0}
1792
+ - target: {fileID: 5273814887718094653, guid: deb82f223236e4b748e13185fc0d02bc,
1793
+ type: 3}
1794
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
1795
+ value: 1801810542
1796
+ objectReference: {fileID: 0}
1797
+ - target: {fileID: 5618761470379609141, guid: deb82f223236e4b748e13185fc0d02bc,
1798
+ type: 3}
1799
+ propertyPath: m_AnchorMax.y
1800
+ value: 1
1801
+ objectReference: {fileID: 0}
1802
+ - target: {fileID: 5618761470379609141, guid: deb82f223236e4b748e13185fc0d02bc,
1803
+ type: 3}
1804
+ propertyPath: m_AnchorMin.y
1805
+ value: 1
1806
+ objectReference: {fileID: 0}
1807
+ - target: {fileID: 5618761470379609141, guid: deb82f223236e4b748e13185fc0d02bc,
1808
+ type: 3}
1809
+ propertyPath: m_SizeDelta.x
1810
+ value: 280
1811
+ objectReference: {fileID: 0}
1812
+ - target: {fileID: 5618761470379609141, guid: deb82f223236e4b748e13185fc0d02bc,
1813
+ type: 3}
1814
+ propertyPath: m_AnchoredPosition.x
1815
+ value: 140
1816
+ objectReference: {fileID: 0}
1817
+ - target: {fileID: 5832368342074962142, guid: deb82f223236e4b748e13185fc0d02bc,
1818
+ type: 3}
1819
+ propertyPath: m_fontAsset
1820
+ value:
1821
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
1822
+ type: 2}
1823
+ - target: {fileID: 5832368342074962142, guid: deb82f223236e4b748e13185fc0d02bc,
1824
+ type: 3}
1825
+ propertyPath: m_fontStyle
1826
+ value: 1
1827
+ objectReference: {fileID: 0}
1828
+ - target: {fileID: 5832368342074962142, guid: deb82f223236e4b748e13185fc0d02bc,
1829
+ type: 3}
1830
+ propertyPath: m_hasFontAssetChanged
1831
+ value: 1
1832
+ objectReference: {fileID: 0}
1833
+ - target: {fileID: 5832368342074962142, guid: deb82f223236e4b748e13185fc0d02bc,
1834
+ type: 3}
1835
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
1836
+ value: 1801810542
1837
+ objectReference: {fileID: 0}
1838
+ - target: {fileID: 7201387136957850023, guid: deb82f223236e4b748e13185fc0d02bc,
1839
+ type: 3}
1840
+ propertyPath: m_AnchorMax.y
1841
+ value: 0
1842
+ objectReference: {fileID: 0}
1843
+ - target: {fileID: 7201387136957850023, guid: deb82f223236e4b748e13185fc0d02bc,
1844
+ type: 3}
1845
+ propertyPath: m_AnchorMin.y
1846
+ value: 0
1847
+ objectReference: {fileID: 0}
1848
+ - target: {fileID: 7201387136957850023, guid: deb82f223236e4b748e13185fc0d02bc,
1849
+ type: 3}
1850
+ propertyPath: m_SizeDelta.x
1851
+ value: 280
1852
+ objectReference: {fileID: 0}
1853
+ - target: {fileID: 7201387136957850023, guid: deb82f223236e4b748e13185fc0d02bc,
1854
+ type: 3}
1855
+ propertyPath: m_AnchoredPosition.x
1856
+ value: 140
1857
+ objectReference: {fileID: 0}
1858
+ - target: {fileID: 7201387136957850023, guid: deb82f223236e4b748e13185fc0d02bc,
1859
+ type: 3}
1860
+ propertyPath: m_AnchoredPosition.y
1861
+ value: -192.8
1862
+ objectReference: {fileID: 0}
1863
+ - target: {fileID: 7651647862843390645, guid: deb82f223236e4b748e13185fc0d02bc,
1864
+ type: 3}
1865
+ propertyPath: m_AnchorMax.y
1866
+ value: 0
1867
+ objectReference: {fileID: 0}
1868
+ - target: {fileID: 7651647862843390645, guid: deb82f223236e4b748e13185fc0d02bc,
1869
+ type: 3}
1870
+ propertyPath: m_AnchorMin.y
1871
+ value: 0
1872
+ objectReference: {fileID: 0}
1873
+ - target: {fileID: 7651647862843390645, guid: deb82f223236e4b748e13185fc0d02bc,
1874
+ type: 3}
1875
+ propertyPath: m_SizeDelta.x
1876
+ value: 280
1877
+ objectReference: {fileID: 0}
1878
+ - target: {fileID: 7651647862843390645, guid: deb82f223236e4b748e13185fc0d02bc,
1879
+ type: 3}
1880
+ propertyPath: m_AnchoredPosition.x
1881
+ value: 140
1882
+ objectReference: {fileID: 0}
1883
+ - target: {fileID: 7651647862843390645, guid: deb82f223236e4b748e13185fc0d02bc,
1884
+ type: 3}
1885
+ propertyPath: m_AnchoredPosition.y
1886
+ value: -50
1887
+ objectReference: {fileID: 0}
1888
+ - target: {fileID: 7924890539738852758, guid: deb82f223236e4b748e13185fc0d02bc,
1889
+ type: 3}
1890
+ propertyPath: m_AnchorMax.y
1891
+ value: 0
1892
+ objectReference: {fileID: 0}
1893
+ - target: {fileID: 7924890539738852758, guid: deb82f223236e4b748e13185fc0d02bc,
1894
+ type: 3}
1895
+ propertyPath: m_AnchorMin.y
1896
+ value: 0
1897
+ objectReference: {fileID: 0}
1898
+ - target: {fileID: 7924890539738852758, guid: deb82f223236e4b748e13185fc0d02bc,
1899
+ type: 3}
1900
+ propertyPath: m_SizeDelta.x
1901
+ value: 280
1902
+ objectReference: {fileID: 0}
1903
+ - target: {fileID: 7924890539738852758, guid: deb82f223236e4b748e13185fc0d02bc,
1904
+ type: 3}
1905
+ propertyPath: m_AnchoredPosition.x
1906
+ value: 140
1907
+ objectReference: {fileID: 0}
1908
+ - target: {fileID: 7924890539738852758, guid: deb82f223236e4b748e13185fc0d02bc,
1909
+ type: 3}
1910
+ propertyPath: m_AnchoredPosition.y
1911
+ value: -20
1912
+ objectReference: {fileID: 0}
1913
+ - target: {fileID: 7998557631194091983, guid: deb82f223236e4b748e13185fc0d02bc,
1914
+ type: 3}
1915
+ propertyPath: m_AnchorMax.y
1916
+ value: 0
1917
+ objectReference: {fileID: 0}
1918
+ - target: {fileID: 7998557631194091983, guid: deb82f223236e4b748e13185fc0d02bc,
1919
+ type: 3}
1920
+ propertyPath: m_AnchorMin.y
1921
+ value: 0
1922
+ objectReference: {fileID: 0}
1923
+ - target: {fileID: 7998557631194091983, guid: deb82f223236e4b748e13185fc0d02bc,
1924
+ type: 3}
1925
+ propertyPath: m_SizeDelta.x
1926
+ value: 280
1927
+ objectReference: {fileID: 0}
1928
+ - target: {fileID: 7998557631194091983, guid: deb82f223236e4b748e13185fc0d02bc,
1929
+ type: 3}
1930
+ propertyPath: m_AnchoredPosition.x
1931
+ value: 140
1932
+ objectReference: {fileID: 0}
1933
+ - target: {fileID: 7998557631194091983, guid: deb82f223236e4b748e13185fc0d02bc,
1934
+ type: 3}
1935
+ propertyPath: m_AnchoredPosition.y
1936
+ value: -42.800003
1937
+ objectReference: {fileID: 0}
1938
+ - target: {fileID: 8303519354294939117, guid: deb82f223236e4b748e13185fc0d02bc,
1939
+ type: 3}
1940
+ propertyPath: m_fontAsset
1941
+ value:
1942
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
1943
+ type: 2}
1944
+ - target: {fileID: 8303519354294939117, guid: deb82f223236e4b748e13185fc0d02bc,
1945
+ type: 3}
1946
+ propertyPath: m_fontStyle
1947
+ value: 1
1948
+ objectReference: {fileID: 0}
1949
+ - target: {fileID: 8303519354294939117, guid: deb82f223236e4b748e13185fc0d02bc,
1950
+ type: 3}
1951
+ propertyPath: m_hasFontAssetChanged
1952
+ value: 1
1953
+ objectReference: {fileID: 0}
1954
+ - target: {fileID: 8303519354294939117, guid: deb82f223236e4b748e13185fc0d02bc,
1955
+ type: 3}
1956
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
1957
+ value: 1801810542
1958
+ objectReference: {fileID: 0}
1959
+ - target: {fileID: 8399470327619900774, guid: deb82f223236e4b748e13185fc0d02bc,
1960
+ type: 3}
1961
+ propertyPath: m_AnchorMax.y
1962
+ value: 1
1963
+ objectReference: {fileID: 0}
1964
+ - target: {fileID: 8399470327619900774, guid: deb82f223236e4b748e13185fc0d02bc,
1965
+ type: 3}
1966
+ propertyPath: m_AnchorMin.y
1967
+ value: 1
1968
+ objectReference: {fileID: 0}
1969
+ - target: {fileID: 8399470327619900774, guid: deb82f223236e4b748e13185fc0d02bc,
1970
+ type: 3}
1971
+ propertyPath: m_SizeDelta.x
1972
+ value: 280
1973
+ objectReference: {fileID: 0}
1974
+ - target: {fileID: 8399470327619900774, guid: deb82f223236e4b748e13185fc0d02bc,
1975
+ type: 3}
1976
+ propertyPath: m_AnchoredPosition.x
1977
+ value: 140
1978
+ objectReference: {fileID: 0}
1979
+ - target: {fileID: 8399470327619900774, guid: deb82f223236e4b748e13185fc0d02bc,
1980
+ type: 3}
1981
+ propertyPath: m_AnchoredPosition.y
1982
+ value: -460.00262
1983
+ objectReference: {fileID: 0}
1984
+ m_RemovedComponents: []
1985
+ m_SourcePrefab: {fileID: 100100000, guid: deb82f223236e4b748e13185fc0d02bc, type: 3}
1986
+ --- !u!224 &8748696936170202594 stripped
1987
+ RectTransform:
1988
+ m_CorrespondingSourceObject: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
1989
+ type: 3}
1990
+ m_PrefabInstance: {fileID: 8084046522243544643}
1991
+ m_PrefabAsset: {fileID: 0}
1992
+ --- !u!1001 &8471492731203440168
1993
+ PrefabInstance:
1994
+ m_ObjectHideFlags: 0
1995
+ serializedVersion: 2
1996
+ m_Modification:
1997
+ m_TransformParent: {fileID: 3139525776721366113}
1998
+ m_Modifications:
1999
+ - target: {fileID: 519362217943666642, guid: deb82f223236e4b748e13185fc0d02bc,
2000
+ type: 3}
2001
+ propertyPath: m_fontAsset
2002
+ value:
2003
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
2004
+ type: 2}
2005
+ - target: {fileID: 519362217943666642, guid: deb82f223236e4b748e13185fc0d02bc,
2006
+ type: 3}
2007
+ propertyPath: m_fontStyle
2008
+ value: 1
2009
+ objectReference: {fileID: 0}
2010
+ - target: {fileID: 519362217943666642, guid: deb82f223236e4b748e13185fc0d02bc,
2011
+ type: 3}
2012
+ propertyPath: m_hasFontAssetChanged
2013
+ value: 1
2014
+ objectReference: {fileID: 0}
2015
+ - target: {fileID: 519362217943666642, guid: deb82f223236e4b748e13185fc0d02bc,
2016
+ type: 3}
2017
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
2018
+ value: 1801810542
2019
+ objectReference: {fileID: 0}
2020
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
2021
+ type: 3}
2022
+ propertyPath: m_Pivot.x
2023
+ value: 0.5
2024
+ objectReference: {fileID: 0}
2025
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
2026
+ type: 3}
2027
+ propertyPath: m_Pivot.y
2028
+ value: 0.5
2029
+ objectReference: {fileID: 0}
2030
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
2031
+ type: 3}
2032
+ propertyPath: m_RootOrder
2033
+ value: 3
2034
+ objectReference: {fileID: 0}
2035
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
2036
+ type: 3}
2037
+ propertyPath: m_AnchorMax.x
2038
+ value: 0
2039
+ objectReference: {fileID: 0}
2040
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
2041
+ type: 3}
2042
+ propertyPath: m_AnchorMax.y
2043
+ value: 0
2044
+ objectReference: {fileID: 0}
2045
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
2046
+ type: 3}
2047
+ propertyPath: m_AnchorMin.x
2048
+ value: 0
2049
+ objectReference: {fileID: 0}
2050
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
2051
+ type: 3}
2052
+ propertyPath: m_AnchorMin.y
2053
+ value: 0
2054
+ objectReference: {fileID: 0}
2055
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
2056
+ type: 3}
2057
+ propertyPath: m_SizeDelta.x
2058
+ value: 320
2059
+ objectReference: {fileID: 0}
2060
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
2061
+ type: 3}
2062
+ propertyPath: m_SizeDelta.y
2063
+ value: 520
2064
+ objectReference: {fileID: 0}
2065
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
2066
+ type: 3}
2067
+ propertyPath: m_LocalPosition.x
2068
+ value: 0
2069
+ objectReference: {fileID: 0}
2070
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
2071
+ type: 3}
2072
+ propertyPath: m_LocalPosition.y
2073
+ value: 0
2074
+ objectReference: {fileID: 0}
2075
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
2076
+ type: 3}
2077
+ propertyPath: m_LocalPosition.z
2078
+ value: 0
2079
+ objectReference: {fileID: 0}
2080
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
2081
+ type: 3}
2082
+ propertyPath: m_LocalRotation.w
2083
+ value: 1
2084
+ objectReference: {fileID: 0}
2085
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
2086
+ type: 3}
2087
+ propertyPath: m_LocalRotation.x
2088
+ value: 0
2089
+ objectReference: {fileID: 0}
2090
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
2091
+ type: 3}
2092
+ propertyPath: m_LocalRotation.y
2093
+ value: 0
2094
+ objectReference: {fileID: 0}
2095
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
2096
+ type: 3}
2097
+ propertyPath: m_LocalRotation.z
2098
+ value: 0
2099
+ objectReference: {fileID: 0}
2100
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
2101
+ type: 3}
2102
+ propertyPath: m_AnchoredPosition.x
2103
+ value: 1440
2104
+ objectReference: {fileID: 0}
2105
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
2106
+ type: 3}
2107
+ propertyPath: m_AnchoredPosition.y
2108
+ value: 0
2109
+ objectReference: {fileID: 0}
2110
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
2111
+ type: 3}
2112
+ propertyPath: m_LocalEulerAnglesHint.x
2113
+ value: 0
2114
+ objectReference: {fileID: 0}
2115
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
2116
+ type: 3}
2117
+ propertyPath: m_LocalEulerAnglesHint.y
2118
+ value: 0
2119
+ objectReference: {fileID: 0}
2120
+ - target: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
2121
+ type: 3}
2122
+ propertyPath: m_LocalEulerAnglesHint.z
2123
+ value: 0
2124
+ objectReference: {fileID: 0}
2125
+ - target: {fileID: 829060059673910893, guid: deb82f223236e4b748e13185fc0d02bc,
2126
+ type: 3}
2127
+ propertyPath: m_AnchorMax.y
2128
+ value: 0
2129
+ objectReference: {fileID: 0}
2130
+ - target: {fileID: 829060059673910893, guid: deb82f223236e4b748e13185fc0d02bc,
2131
+ type: 3}
2132
+ propertyPath: m_AnchorMin.y
2133
+ value: 0
2134
+ objectReference: {fileID: 0}
2135
+ - target: {fileID: 829060059673910893, guid: deb82f223236e4b748e13185fc0d02bc,
2136
+ type: 3}
2137
+ propertyPath: m_SizeDelta.x
2138
+ value: 280
2139
+ objectReference: {fileID: 0}
2140
+ - target: {fileID: 829060059673910893, guid: deb82f223236e4b748e13185fc0d02bc,
2141
+ type: 3}
2142
+ propertyPath: m_AnchoredPosition.x
2143
+ value: 140
2144
+ objectReference: {fileID: 0}
2145
+ - target: {fileID: 829060059673910893, guid: deb82f223236e4b748e13185fc0d02bc,
2146
+ type: 3}
2147
+ propertyPath: m_AnchoredPosition.y
2148
+ value: -80
2149
+ objectReference: {fileID: 0}
2150
+ - target: {fileID: 1062620656346552983, guid: deb82f223236e4b748e13185fc0d02bc,
2151
+ type: 3}
2152
+ propertyPath: m_fontAsset
2153
+ value:
2154
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
2155
+ type: 2}
2156
+ - target: {fileID: 1062620656346552983, guid: deb82f223236e4b748e13185fc0d02bc,
2157
+ type: 3}
2158
+ propertyPath: m_fontStyle
2159
+ value: 1
2160
+ objectReference: {fileID: 0}
2161
+ - target: {fileID: 1062620656346552983, guid: deb82f223236e4b748e13185fc0d02bc,
2162
+ type: 3}
2163
+ propertyPath: m_hasFontAssetChanged
2164
+ value: 1
2165
+ objectReference: {fileID: 0}
2166
+ - target: {fileID: 1062620656346552983, guid: deb82f223236e4b748e13185fc0d02bc,
2167
+ type: 3}
2168
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
2169
+ value: 1801810542
2170
+ objectReference: {fileID: 0}
2171
+ - target: {fileID: 1317945616623285728, guid: deb82f223236e4b748e13185fc0d02bc,
2172
+ type: 3}
2173
+ propertyPath: m_fontAsset
2174
+ value:
2175
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
2176
+ type: 2}
2177
+ - target: {fileID: 1317945616623285728, guid: deb82f223236e4b748e13185fc0d02bc,
2178
+ type: 3}
2179
+ propertyPath: m_fontStyle
2180
+ value: 1
2181
+ objectReference: {fileID: 0}
2182
+ - target: {fileID: 1317945616623285728, guid: deb82f223236e4b748e13185fc0d02bc,
2183
+ type: 3}
2184
+ propertyPath: m_hasFontAssetChanged
2185
+ value: 1
2186
+ objectReference: {fileID: 0}
2187
+ - target: {fileID: 1317945616623285728, guid: deb82f223236e4b748e13185fc0d02bc,
2188
+ type: 3}
2189
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
2190
+ value: 1801810542
2191
+ objectReference: {fileID: 0}
2192
+ - target: {fileID: 1350146157826212841, guid: deb82f223236e4b748e13185fc0d02bc,
2193
+ type: 3}
2194
+ propertyPath: m_AnchorMax.y
2195
+ value: 0
2196
+ objectReference: {fileID: 0}
2197
+ - target: {fileID: 1350146157826212841, guid: deb82f223236e4b748e13185fc0d02bc,
2198
+ type: 3}
2199
+ propertyPath: m_AnchorMin.y
2200
+ value: 0
2201
+ objectReference: {fileID: 0}
2202
+ - target: {fileID: 1350146157826212841, guid: deb82f223236e4b748e13185fc0d02bc,
2203
+ type: 3}
2204
+ propertyPath: m_SizeDelta.x
2205
+ value: 280
2206
+ objectReference: {fileID: 0}
2207
+ - target: {fileID: 1350146157826212841, guid: deb82f223236e4b748e13185fc0d02bc,
2208
+ type: 3}
2209
+ propertyPath: m_AnchoredPosition.x
2210
+ value: 140
2211
+ objectReference: {fileID: 0}
2212
+ - target: {fileID: 1350146157826212841, guid: deb82f223236e4b748e13185fc0d02bc,
2213
+ type: 3}
2214
+ propertyPath: m_AnchoredPosition.y
2215
+ value: -92.8
2216
+ objectReference: {fileID: 0}
2217
+ - target: {fileID: 1794117858962595376, guid: deb82f223236e4b748e13185fc0d02bc,
2218
+ type: 3}
2219
+ propertyPath: m_fontAsset
2220
+ value:
2221
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
2222
+ type: 2}
2223
+ - target: {fileID: 1794117858962595376, guid: deb82f223236e4b748e13185fc0d02bc,
2224
+ type: 3}
2225
+ propertyPath: m_fontStyle
2226
+ value: 1
2227
+ objectReference: {fileID: 0}
2228
+ - target: {fileID: 1794117858962595376, guid: deb82f223236e4b748e13185fc0d02bc,
2229
+ type: 3}
2230
+ propertyPath: m_hasFontAssetChanged
2231
+ value: 1
2232
+ objectReference: {fileID: 0}
2233
+ - target: {fileID: 1794117858962595376, guid: deb82f223236e4b748e13185fc0d02bc,
2234
+ type: 3}
2235
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
2236
+ value: 1801810542
2237
+ objectReference: {fileID: 0}
2238
+ - target: {fileID: 1917508839531016529, guid: deb82f223236e4b748e13185fc0d02bc,
2239
+ type: 3}
2240
+ propertyPath: m_fontAsset
2241
+ value:
2242
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
2243
+ type: 2}
2244
+ - target: {fileID: 1917508839531016529, guid: deb82f223236e4b748e13185fc0d02bc,
2245
+ type: 3}
2246
+ propertyPath: m_fontStyle
2247
+ value: 1
2248
+ objectReference: {fileID: 0}
2249
+ - target: {fileID: 1917508839531016529, guid: deb82f223236e4b748e13185fc0d02bc,
2250
+ type: 3}
2251
+ propertyPath: m_hasFontAssetChanged
2252
+ value: 1
2253
+ objectReference: {fileID: 0}
2254
+ - target: {fileID: 1917508839531016529, guid: deb82f223236e4b748e13185fc0d02bc,
2255
+ type: 3}
2256
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
2257
+ value: 1801810542
2258
+ objectReference: {fileID: 0}
2259
+ - target: {fileID: 4180314848952589119, guid: deb82f223236e4b748e13185fc0d02bc,
2260
+ type: 3}
2261
+ propertyPath: m_Name
2262
+ value: PlayerLobby (3)
2263
+ objectReference: {fileID: 0}
2264
+ - target: {fileID: 4180314848952589119, guid: deb82f223236e4b748e13185fc0d02bc,
2265
+ type: 3}
2266
+ propertyPath: m_IsActive
2267
+ value: 0
2268
+ objectReference: {fileID: 0}
2269
+ - target: {fileID: 4341432247808423581, guid: deb82f223236e4b748e13185fc0d02bc,
2270
+ type: 3}
2271
+ propertyPath: m_AnchorMax.y
2272
+ value: 0
2273
+ objectReference: {fileID: 0}
2274
+ - target: {fileID: 4341432247808423581, guid: deb82f223236e4b748e13185fc0d02bc,
2275
+ type: 3}
2276
+ propertyPath: m_AnchorMin.y
2277
+ value: 0
2278
+ objectReference: {fileID: 0}
2279
+ - target: {fileID: 4341432247808423581, guid: deb82f223236e4b748e13185fc0d02bc,
2280
+ type: 3}
2281
+ propertyPath: m_SizeDelta.x
2282
+ value: 280
2283
+ objectReference: {fileID: 0}
2284
+ - target: {fileID: 4341432247808423581, guid: deb82f223236e4b748e13185fc0d02bc,
2285
+ type: 3}
2286
+ propertyPath: m_AnchoredPosition.x
2287
+ value: 140
2288
+ objectReference: {fileID: 0}
2289
+ - target: {fileID: 4341432247808423581, guid: deb82f223236e4b748e13185fc0d02bc,
2290
+ type: 3}
2291
+ propertyPath: m_AnchoredPosition.y
2292
+ value: -110
2293
+ objectReference: {fileID: 0}
2294
+ - target: {fileID: 4522758634274718689, guid: deb82f223236e4b748e13185fc0d02bc,
2295
+ type: 3}
2296
+ propertyPath: m_AnchorMax.y
2297
+ value: 1
2298
+ objectReference: {fileID: 0}
2299
+ - target: {fileID: 4522758634274718689, guid: deb82f223236e4b748e13185fc0d02bc,
2300
+ type: 3}
2301
+ propertyPath: m_AnchorMin.y
2302
+ value: 1
2303
+ objectReference: {fileID: 0}
2304
+ - target: {fileID: 4522758634274718689, guid: deb82f223236e4b748e13185fc0d02bc,
2305
+ type: 3}
2306
+ propertyPath: m_SizeDelta.x
2307
+ value: 280
2308
+ objectReference: {fileID: 0}
2309
+ - target: {fileID: 4522758634274718689, guid: deb82f223236e4b748e13185fc0d02bc,
2310
+ type: 3}
2311
+ propertyPath: m_AnchoredPosition.x
2312
+ value: 140
2313
+ objectReference: {fileID: 0}
2314
+ - target: {fileID: 4522758634274718689, guid: deb82f223236e4b748e13185fc0d02bc,
2315
+ type: 3}
2316
+ propertyPath: m_AnchoredPosition.y
2317
+ value: -148.6013
2318
+ objectReference: {fileID: 0}
2319
+ - target: {fileID: 4749422711813132023, guid: deb82f223236e4b748e13185fc0d02bc,
2320
+ type: 3}
2321
+ propertyPath: m_AnchorMax.y
2322
+ value: 0
2323
+ objectReference: {fileID: 0}
2324
+ - target: {fileID: 4749422711813132023, guid: deb82f223236e4b748e13185fc0d02bc,
2325
+ type: 3}
2326
+ propertyPath: m_AnchorMin.y
2327
+ value: 0
2328
+ objectReference: {fileID: 0}
2329
+ - target: {fileID: 4749422711813132023, guid: deb82f223236e4b748e13185fc0d02bc,
2330
+ type: 3}
2331
+ propertyPath: m_SizeDelta.x
2332
+ value: 280
2333
+ objectReference: {fileID: 0}
2334
+ - target: {fileID: 4749422711813132023, guid: deb82f223236e4b748e13185fc0d02bc,
2335
+ type: 3}
2336
+ propertyPath: m_AnchoredPosition.x
2337
+ value: 140
2338
+ objectReference: {fileID: 0}
2339
+ - target: {fileID: 4749422711813132023, guid: deb82f223236e4b748e13185fc0d02bc,
2340
+ type: 3}
2341
+ propertyPath: m_AnchoredPosition.y
2342
+ value: -142.8
2343
+ objectReference: {fileID: 0}
2344
+ - target: {fileID: 4902132247774974139, guid: deb82f223236e4b748e13185fc0d02bc,
2345
+ type: 3}
2346
+ propertyPath: m_fontAsset
2347
+ value:
2348
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
2349
+ type: 2}
2350
+ - target: {fileID: 4902132247774974139, guid: deb82f223236e4b748e13185fc0d02bc,
2351
+ type: 3}
2352
+ propertyPath: m_fontStyle
2353
+ value: 1
2354
+ objectReference: {fileID: 0}
2355
+ - target: {fileID: 4902132247774974139, guid: deb82f223236e4b748e13185fc0d02bc,
2356
+ type: 3}
2357
+ propertyPath: m_hasFontAssetChanged
2358
+ value: 1
2359
+ objectReference: {fileID: 0}
2360
+ - target: {fileID: 4902132247774974139, guid: deb82f223236e4b748e13185fc0d02bc,
2361
+ type: 3}
2362
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
2363
+ value: 1801810542
2364
+ objectReference: {fileID: 0}
2365
+ - target: {fileID: 5273814887718094653, guid: deb82f223236e4b748e13185fc0d02bc,
2366
+ type: 3}
2367
+ propertyPath: m_fontAsset
2368
+ value:
2369
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
2370
+ type: 2}
2371
+ - target: {fileID: 5273814887718094653, guid: deb82f223236e4b748e13185fc0d02bc,
2372
+ type: 3}
2373
+ propertyPath: m_fontStyle
2374
+ value: 1
2375
+ objectReference: {fileID: 0}
2376
+ - target: {fileID: 5273814887718094653, guid: deb82f223236e4b748e13185fc0d02bc,
2377
+ type: 3}
2378
+ propertyPath: m_hasFontAssetChanged
2379
+ value: 1
2380
+ objectReference: {fileID: 0}
2381
+ - target: {fileID: 5273814887718094653, guid: deb82f223236e4b748e13185fc0d02bc,
2382
+ type: 3}
2383
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
2384
+ value: 1801810542
2385
+ objectReference: {fileID: 0}
2386
+ - target: {fileID: 5618761470379609141, guid: deb82f223236e4b748e13185fc0d02bc,
2387
+ type: 3}
2388
+ propertyPath: m_AnchorMax.y
2389
+ value: 1
2390
+ objectReference: {fileID: 0}
2391
+ - target: {fileID: 5618761470379609141, guid: deb82f223236e4b748e13185fc0d02bc,
2392
+ type: 3}
2393
+ propertyPath: m_AnchorMin.y
2394
+ value: 1
2395
+ objectReference: {fileID: 0}
2396
+ - target: {fileID: 5618761470379609141, guid: deb82f223236e4b748e13185fc0d02bc,
2397
+ type: 3}
2398
+ propertyPath: m_SizeDelta.x
2399
+ value: 280
2400
+ objectReference: {fileID: 0}
2401
+ - target: {fileID: 5618761470379609141, guid: deb82f223236e4b748e13185fc0d02bc,
2402
+ type: 3}
2403
+ propertyPath: m_AnchoredPosition.x
2404
+ value: 140
2405
+ objectReference: {fileID: 0}
2406
+ - target: {fileID: 5832368342074962142, guid: deb82f223236e4b748e13185fc0d02bc,
2407
+ type: 3}
2408
+ propertyPath: m_fontAsset
2409
+ value:
2410
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
2411
+ type: 2}
2412
+ - target: {fileID: 5832368342074962142, guid: deb82f223236e4b748e13185fc0d02bc,
2413
+ type: 3}
2414
+ propertyPath: m_fontStyle
2415
+ value: 1
2416
+ objectReference: {fileID: 0}
2417
+ - target: {fileID: 5832368342074962142, guid: deb82f223236e4b748e13185fc0d02bc,
2418
+ type: 3}
2419
+ propertyPath: m_hasFontAssetChanged
2420
+ value: 1
2421
+ objectReference: {fileID: 0}
2422
+ - target: {fileID: 5832368342074962142, guid: deb82f223236e4b748e13185fc0d02bc,
2423
+ type: 3}
2424
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
2425
+ value: 1801810542
2426
+ objectReference: {fileID: 0}
2427
+ - target: {fileID: 7201387136957850023, guid: deb82f223236e4b748e13185fc0d02bc,
2428
+ type: 3}
2429
+ propertyPath: m_AnchorMax.y
2430
+ value: 0
2431
+ objectReference: {fileID: 0}
2432
+ - target: {fileID: 7201387136957850023, guid: deb82f223236e4b748e13185fc0d02bc,
2433
+ type: 3}
2434
+ propertyPath: m_AnchorMin.y
2435
+ value: 0
2436
+ objectReference: {fileID: 0}
2437
+ - target: {fileID: 7201387136957850023, guid: deb82f223236e4b748e13185fc0d02bc,
2438
+ type: 3}
2439
+ propertyPath: m_SizeDelta.x
2440
+ value: 280
2441
+ objectReference: {fileID: 0}
2442
+ - target: {fileID: 7201387136957850023, guid: deb82f223236e4b748e13185fc0d02bc,
2443
+ type: 3}
2444
+ propertyPath: m_AnchoredPosition.x
2445
+ value: 140
2446
+ objectReference: {fileID: 0}
2447
+ - target: {fileID: 7201387136957850023, guid: deb82f223236e4b748e13185fc0d02bc,
2448
+ type: 3}
2449
+ propertyPath: m_AnchoredPosition.y
2450
+ value: -192.8
2451
+ objectReference: {fileID: 0}
2452
+ - target: {fileID: 7651647862843390645, guid: deb82f223236e4b748e13185fc0d02bc,
2453
+ type: 3}
2454
+ propertyPath: m_AnchorMax.y
2455
+ value: 0
2456
+ objectReference: {fileID: 0}
2457
+ - target: {fileID: 7651647862843390645, guid: deb82f223236e4b748e13185fc0d02bc,
2458
+ type: 3}
2459
+ propertyPath: m_AnchorMin.y
2460
+ value: 0
2461
+ objectReference: {fileID: 0}
2462
+ - target: {fileID: 7651647862843390645, guid: deb82f223236e4b748e13185fc0d02bc,
2463
+ type: 3}
2464
+ propertyPath: m_SizeDelta.x
2465
+ value: 280
2466
+ objectReference: {fileID: 0}
2467
+ - target: {fileID: 7651647862843390645, guid: deb82f223236e4b748e13185fc0d02bc,
2468
+ type: 3}
2469
+ propertyPath: m_AnchoredPosition.x
2470
+ value: 140
2471
+ objectReference: {fileID: 0}
2472
+ - target: {fileID: 7651647862843390645, guid: deb82f223236e4b748e13185fc0d02bc,
2473
+ type: 3}
2474
+ propertyPath: m_AnchoredPosition.y
2475
+ value: -50
2476
+ objectReference: {fileID: 0}
2477
+ - target: {fileID: 7924890539738852758, guid: deb82f223236e4b748e13185fc0d02bc,
2478
+ type: 3}
2479
+ propertyPath: m_AnchorMax.y
2480
+ value: 0
2481
+ objectReference: {fileID: 0}
2482
+ - target: {fileID: 7924890539738852758, guid: deb82f223236e4b748e13185fc0d02bc,
2483
+ type: 3}
2484
+ propertyPath: m_AnchorMin.y
2485
+ value: 0
2486
+ objectReference: {fileID: 0}
2487
+ - target: {fileID: 7924890539738852758, guid: deb82f223236e4b748e13185fc0d02bc,
2488
+ type: 3}
2489
+ propertyPath: m_SizeDelta.x
2490
+ value: 280
2491
+ objectReference: {fileID: 0}
2492
+ - target: {fileID: 7924890539738852758, guid: deb82f223236e4b748e13185fc0d02bc,
2493
+ type: 3}
2494
+ propertyPath: m_AnchoredPosition.x
2495
+ value: 140
2496
+ objectReference: {fileID: 0}
2497
+ - target: {fileID: 7924890539738852758, guid: deb82f223236e4b748e13185fc0d02bc,
2498
+ type: 3}
2499
+ propertyPath: m_AnchoredPosition.y
2500
+ value: -20
2501
+ objectReference: {fileID: 0}
2502
+ - target: {fileID: 7998557631194091983, guid: deb82f223236e4b748e13185fc0d02bc,
2503
+ type: 3}
2504
+ propertyPath: m_AnchorMax.y
2505
+ value: 0
2506
+ objectReference: {fileID: 0}
2507
+ - target: {fileID: 7998557631194091983, guid: deb82f223236e4b748e13185fc0d02bc,
2508
+ type: 3}
2509
+ propertyPath: m_AnchorMin.y
2510
+ value: 0
2511
+ objectReference: {fileID: 0}
2512
+ - target: {fileID: 7998557631194091983, guid: deb82f223236e4b748e13185fc0d02bc,
2513
+ type: 3}
2514
+ propertyPath: m_SizeDelta.x
2515
+ value: 280
2516
+ objectReference: {fileID: 0}
2517
+ - target: {fileID: 7998557631194091983, guid: deb82f223236e4b748e13185fc0d02bc,
2518
+ type: 3}
2519
+ propertyPath: m_AnchoredPosition.x
2520
+ value: 140
2521
+ objectReference: {fileID: 0}
2522
+ - target: {fileID: 7998557631194091983, guid: deb82f223236e4b748e13185fc0d02bc,
2523
+ type: 3}
2524
+ propertyPath: m_AnchoredPosition.y
2525
+ value: -42.800003
2526
+ objectReference: {fileID: 0}
2527
+ - target: {fileID: 8303519354294939117, guid: deb82f223236e4b748e13185fc0d02bc,
2528
+ type: 3}
2529
+ propertyPath: m_fontAsset
2530
+ value:
2531
+ objectReference: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee,
2532
+ type: 2}
2533
+ - target: {fileID: 8303519354294939117, guid: deb82f223236e4b748e13185fc0d02bc,
2534
+ type: 3}
2535
+ propertyPath: m_fontStyle
2536
+ value: 1
2537
+ objectReference: {fileID: 0}
2538
+ - target: {fileID: 8303519354294939117, guid: deb82f223236e4b748e13185fc0d02bc,
2539
+ type: 3}
2540
+ propertyPath: m_hasFontAssetChanged
2541
+ value: 1
2542
+ objectReference: {fileID: 0}
2543
+ - target: {fileID: 8303519354294939117, guid: deb82f223236e4b748e13185fc0d02bc,
2544
+ type: 3}
2545
+ propertyPath: m_ActiveFontFeatures.Array.data[0]
2546
+ value: 1801810542
2547
+ objectReference: {fileID: 0}
2548
+ - target: {fileID: 8399470327619900774, guid: deb82f223236e4b748e13185fc0d02bc,
2549
+ type: 3}
2550
+ propertyPath: m_AnchorMax.y
2551
+ value: 1
2552
+ objectReference: {fileID: 0}
2553
+ - target: {fileID: 8399470327619900774, guid: deb82f223236e4b748e13185fc0d02bc,
2554
+ type: 3}
2555
+ propertyPath: m_AnchorMin.y
2556
+ value: 1
2557
+ objectReference: {fileID: 0}
2558
+ - target: {fileID: 8399470327619900774, guid: deb82f223236e4b748e13185fc0d02bc,
2559
+ type: 3}
2560
+ propertyPath: m_SizeDelta.x
2561
+ value: 280
2562
+ objectReference: {fileID: 0}
2563
+ - target: {fileID: 8399470327619900774, guid: deb82f223236e4b748e13185fc0d02bc,
2564
+ type: 3}
2565
+ propertyPath: m_AnchoredPosition.x
2566
+ value: 140
2567
+ objectReference: {fileID: 0}
2568
+ - target: {fileID: 8399470327619900774, guid: deb82f223236e4b748e13185fc0d02bc,
2569
+ type: 3}
2570
+ propertyPath: m_AnchoredPosition.y
2571
+ value: -460.00262
2572
+ objectReference: {fileID: 0}
2573
+ m_RemovedComponents: []
2574
+ m_SourcePrefab: {fileID: 100100000, guid: deb82f223236e4b748e13185fc0d02bc, type: 3}
2575
+ --- !u!224 &8991745861702163849 stripped
2576
+ RectTransform:
2577
+ m_CorrespondingSourceObject: {fileID: 673799390858040225, guid: deb82f223236e4b748e13185fc0d02bc,
2578
+ type: 3}
2579
+ m_PrefabInstance: {fileID: 8471492731203440168}
2580
+ m_PrefabAsset: {fileID: 0}