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
@@ -10,7 +10,6 @@ GameObject:
10
10
  m_Component:
11
11
  - component: {fileID: 635883761041762154}
12
12
  - component: {fileID: 635883761041762152}
13
- - component: {fileID: 635883761041762153}
14
13
  - component: {fileID: 412766552429667}
15
14
  m_Layer: 5
16
15
  m_Name: HomePage
@@ -31,6 +30,7 @@ RectTransform:
31
30
  m_LocalScale: {x: 1, y: 1, z: 1}
32
31
  m_ConstrainProportionsScale: 0
33
32
  m_Children:
33
+ - {fileID: 8062107758696902095}
34
34
  - {fileID: 8535982542353518912}
35
35
  - {fileID: 7780697867551246536}
36
36
  - {fileID: 1511056309289187427}
@@ -38,6 +38,7 @@ RectTransform:
38
38
  - {fileID: 6541488344771481123}
39
39
  - {fileID: 6964861376977152746}
40
40
  m_Father: {fileID: 0}
41
+ m_RootOrder: 0
41
42
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
42
43
  m_AnchorMin: {x: 0, y: 0}
43
44
  m_AnchorMax: {x: 1, y: 1}
@@ -52,36 +53,6 @@ CanvasRenderer:
52
53
  m_PrefabAsset: {fileID: 0}
53
54
  m_GameObject: {fileID: 635883761041762155}
54
55
  m_CullTransparentMesh: 1
55
- --- !u!114 &635883761041762153
56
- MonoBehaviour:
57
- m_ObjectHideFlags: 0
58
- m_CorrespondingSourceObject: {fileID: 0}
59
- m_PrefabInstance: {fileID: 0}
60
- m_PrefabAsset: {fileID: 0}
61
- m_GameObject: {fileID: 635883761041762155}
62
- m_Enabled: 1
63
- m_EditorHideFlags: 0
64
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
65
- m_Name:
66
- m_EditorClassIdentifier:
67
- m_Material: {fileID: 0}
68
- m_Color: {r: 0, g: 0, b: 0, a: 0.40392157}
69
- m_RaycastTarget: 1
70
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
71
- m_Maskable: 1
72
- m_OnCullStateChanged:
73
- m_PersistentCalls:
74
- m_Calls: []
75
- m_Sprite: {fileID: 0}
76
- m_Type: 0
77
- m_PreserveAspect: 0
78
- m_FillCenter: 1
79
- m_FillMethod: 4
80
- m_FillAmount: 1
81
- m_FillClockwise: 1
82
- m_FillOrigin: 0
83
- m_UseSpriteMesh: 0
84
- m_PixelsPerUnitMultiplier: 1
85
56
  --- !u!114 &412766552429667
86
57
  MonoBehaviour:
87
58
  m_ObjectHideFlags: 0
@@ -133,6 +104,7 @@ RectTransform:
133
104
  m_ConstrainProportionsScale: 0
134
105
  m_Children: []
135
106
  m_Father: {fileID: 584377091044222971}
107
+ m_RootOrder: 0
136
108
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
137
109
  m_AnchorMin: {x: 0, y: 0}
138
110
  m_AnchorMax: {x: 0, y: 0}
@@ -210,11 +182,12 @@ RectTransform:
210
182
  m_Children:
211
183
  - {fileID: 2534679962175836816}
212
184
  m_Father: {fileID: 635883761041762154}
185
+ m_RootOrder: 4
213
186
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
214
- m_AnchorMin: {x: 0.5, y: 0}
215
- m_AnchorMax: {x: 0.5, y: 0}
216
- m_AnchoredPosition: {x: -118, y: 40}
217
- m_SizeDelta: {x: 220, y: 50}
187
+ m_AnchorMin: {x: 0.5, y: 1}
188
+ m_AnchorMax: {x: 0.5, y: 1}
189
+ m_AnchoredPosition: {x: 211, y: -346}
190
+ m_SizeDelta: {x: 300, y: 70}
218
191
  m_Pivot: {x: 0.5, y: 0}
219
192
  --- !u!222 &5029439205054339876
220
193
  CanvasRenderer:
@@ -235,16 +208,16 @@ MonoBehaviour:
235
208
  m_EditorHideFlags: 0
236
209
  m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
237
210
  m_Name:
238
- m_EditorClassIdentifier:
211
+ m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image
239
212
  m_Material: {fileID: 0}
240
- m_Color: {r: 0.4433962, g: 0.4433962, b: 0.4433962, a: 0.4627451}
213
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
241
214
  m_RaycastTarget: 1
242
215
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
243
216
  m_Maskable: 1
244
217
  m_OnCullStateChanged:
245
218
  m_PersistentCalls:
246
219
  m_Calls: []
247
- m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
220
+ m_Sprite: {fileID: 21300000, guid: 721c765a3d97c0b4f865bac8223d1404, type: 3}
248
221
  m_Type: 1
249
222
  m_PreserveAspect: 0
250
223
  m_FillCenter: 1
@@ -253,7 +226,7 @@ MonoBehaviour:
253
226
  m_FillClockwise: 1
254
227
  m_FillOrigin: 0
255
228
  m_UseSpriteMesh: 0
256
- m_PixelsPerUnitMultiplier: 1
229
+ m_PixelsPerUnitMultiplier: 4
257
230
  --- !u!114 &7097799627446739624
258
231
  MonoBehaviour:
259
232
  m_ObjectHideFlags: 0
@@ -328,6 +301,7 @@ RectTransform:
328
301
  m_Children:
329
302
  - {fileID: 6584178527825851439}
330
303
  m_Father: {fileID: 8114354545917896014}
304
+ m_RootOrder: 0
331
305
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
332
306
  m_AnchorMin: {x: 0, y: 0}
333
307
  m_AnchorMax: {x: 1, y: 1}
@@ -365,6 +339,7 @@ RectTransform:
365
339
  m_ConstrainProportionsScale: 0
366
340
  m_Children: []
367
341
  m_Father: {fileID: 1584998108369062064}
342
+ m_RootOrder: 0
368
343
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
369
344
  m_AnchorMin: {x: 0, y: 0}
370
345
  m_AnchorMax: {x: 0, y: 0}
@@ -409,6 +384,163 @@ MonoBehaviour:
409
384
  m_FillOrigin: 0
410
385
  m_UseSpriteMesh: 0
411
386
  m_PixelsPerUnitMultiplier: 1
387
+ --- !u!1 &2616455559071832941
388
+ GameObject:
389
+ m_ObjectHideFlags: 0
390
+ m_CorrespondingSourceObject: {fileID: 0}
391
+ m_PrefabInstance: {fileID: 0}
392
+ m_PrefabAsset: {fileID: 0}
393
+ serializedVersion: 6
394
+ m_Component:
395
+ - component: {fileID: 8062107758696902095}
396
+ - component: {fileID: 8266613049097247756}
397
+ - component: {fileID: 8246602928247040255}
398
+ - component: {fileID: 619035222843986147}
399
+ m_Layer: 5
400
+ m_Name: Description
401
+ m_TagString: Untagged
402
+ m_Icon: {fileID: 0}
403
+ m_NavMeshLayer: 0
404
+ m_StaticEditorFlags: 0
405
+ m_IsActive: 1
406
+ --- !u!224 &8062107758696902095
407
+ RectTransform:
408
+ m_ObjectHideFlags: 0
409
+ m_CorrespondingSourceObject: {fileID: 0}
410
+ m_PrefabInstance: {fileID: 0}
411
+ m_PrefabAsset: {fileID: 0}
412
+ m_GameObject: {fileID: 2616455559071832941}
413
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
414
+ m_LocalPosition: {x: 0, y: 0, z: 0}
415
+ m_LocalScale: {x: 1, y: 1, z: 1}
416
+ m_ConstrainProportionsScale: 0
417
+ m_Children: []
418
+ m_Father: {fileID: 635883761041762154}
419
+ m_RootOrder: 0
420
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
421
+ m_AnchorMin: {x: 0, y: 1}
422
+ m_AnchorMax: {x: 1, y: 1}
423
+ m_AnchoredPosition: {x: 0, y: -25}
424
+ m_SizeDelta: {x: -90, y: 115}
425
+ m_Pivot: {x: 0.5, y: 1}
426
+ --- !u!222 &8266613049097247756
427
+ CanvasRenderer:
428
+ m_ObjectHideFlags: 0
429
+ m_CorrespondingSourceObject: {fileID: 0}
430
+ m_PrefabInstance: {fileID: 0}
431
+ m_PrefabAsset: {fileID: 0}
432
+ m_GameObject: {fileID: 2616455559071832941}
433
+ m_CullTransparentMesh: 1
434
+ --- !u!114 &8246602928247040255
435
+ MonoBehaviour:
436
+ m_ObjectHideFlags: 0
437
+ m_CorrespondingSourceObject: {fileID: 0}
438
+ m_PrefabInstance: {fileID: 0}
439
+ m_PrefabAsset: {fileID: 0}
440
+ m_GameObject: {fileID: 2616455559071832941}
441
+ m_Enabled: 1
442
+ m_EditorHideFlags: 0
443
+ m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
444
+ m_Name:
445
+ m_EditorClassIdentifier:
446
+ m_Material: {fileID: 0}
447
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
448
+ m_RaycastTarget: 1
449
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
450
+ m_Maskable: 1
451
+ m_OnCullStateChanged:
452
+ m_PersistentCalls:
453
+ m_Calls: []
454
+ m_text: The Beamable Inventory system is designed to manage player inventories,
455
+ allowing for the addition and removal of items and currencies.
456
+ m_isRightToLeft: 0
457
+ m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
458
+ m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
459
+ m_fontSharedMaterials: []
460
+ m_fontMaterial: {fileID: 0}
461
+ m_fontMaterials: []
462
+ m_fontColor32:
463
+ serializedVersion: 2
464
+ rgba: 4294967295
465
+ m_fontColor: {r: 1, g: 1, b: 1, a: 1}
466
+ m_enableVertexGradient: 0
467
+ m_colorMode: 3
468
+ m_fontColorGradient:
469
+ topLeft: {r: 1, g: 1, b: 1, a: 1}
470
+ topRight: {r: 1, g: 1, b: 1, a: 1}
471
+ bottomLeft: {r: 1, g: 1, b: 1, a: 1}
472
+ bottomRight: {r: 1, g: 1, b: 1, a: 1}
473
+ m_fontColorGradientPreset: {fileID: 0}
474
+ m_spriteAsset: {fileID: 0}
475
+ m_tintAllSprites: 0
476
+ m_StyleSheet: {fileID: 0}
477
+ m_TextStyleHashCode: -1183493901
478
+ m_overrideHtmlColors: 0
479
+ m_faceColor:
480
+ serializedVersion: 2
481
+ rgba: 4294967295
482
+ m_fontSize: 36
483
+ m_fontSizeBase: 36
484
+ m_fontWeight: 400
485
+ m_enableAutoSizing: 0
486
+ m_fontSizeMin: 18
487
+ m_fontSizeMax: 72
488
+ m_fontStyle: 1
489
+ m_HorizontalAlignment: 2
490
+ m_VerticalAlignment: 512
491
+ m_textAlignment: 65535
492
+ m_characterSpacing: 0
493
+ m_wordSpacing: 0
494
+ m_lineSpacing: 0
495
+ m_lineSpacingMax: 0
496
+ m_paragraphSpacing: 0
497
+ m_charWidthMaxAdj: 0
498
+ m_enableWordWrapping: 1
499
+ m_wordWrappingRatios: 0.4
500
+ m_overflowMode: 0
501
+ m_linkedTextComponent: {fileID: 0}
502
+ parentLinkedComponent: {fileID: 0}
503
+ m_enableKerning: 1
504
+ m_enableExtraPadding: 0
505
+ checkPaddingRequired: 0
506
+ m_isRichText: 1
507
+ m_parseCtrlCharacters: 1
508
+ m_isOrthographic: 1
509
+ m_isCullingEnabled: 0
510
+ m_horizontalMapping: 0
511
+ m_verticalMapping: 0
512
+ m_uvLineOffset: 0
513
+ m_geometrySortingOrder: 0
514
+ m_IsTextObjectScaleStatic: 0
515
+ m_VertexBufferAutoSizeReduction: 0
516
+ m_useMaxVisibleDescender: 1
517
+ m_pageToDisplay: 1
518
+ m_margin: {x: 0, y: 0, z: 0, w: 0}
519
+ m_isUsingLegacyAnimationComponent: 0
520
+ m_isVolumetricText: 0
521
+ m_hasFontAssetChanged: 0
522
+ m_baseMaterial: {fileID: 0}
523
+ m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
524
+ --- !u!114 &619035222843986147
525
+ MonoBehaviour:
526
+ m_ObjectHideFlags: 0
527
+ m_CorrespondingSourceObject: {fileID: 0}
528
+ m_PrefabInstance: {fileID: 0}
529
+ m_PrefabAsset: {fileID: 0}
530
+ m_GameObject: {fileID: 2616455559071832941}
531
+ m_Enabled: 1
532
+ m_EditorHideFlags: 0
533
+ m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
534
+ m_Name:
535
+ m_EditorClassIdentifier:
536
+ m_IgnoreLayout: 0
537
+ m_MinWidth: -1
538
+ m_MinHeight: -1
539
+ m_PreferredWidth: -1
540
+ m_PreferredHeight: -1
541
+ m_FlexibleWidth: 1
542
+ m_FlexibleHeight: -1
543
+ m_LayoutPriority: 1
412
544
  --- !u!1 &2967795585212079177
413
545
  GameObject:
414
546
  m_ObjectHideFlags: 0
@@ -439,11 +571,12 @@ RectTransform:
439
571
  m_LocalScale: {x: 1, y: 1, z: 1}
440
572
  m_ConstrainProportionsScale: 0
441
573
  m_Children:
442
- - {fileID: 166134060727977876}
443
574
  - {fileID: 4720268962249039616}
444
575
  - {fileID: 6292697818686726773}
576
+ - {fileID: 166134060727977876}
445
577
  - {fileID: 3337663821819485816}
446
578
  m_Father: {fileID: 1220103211916169604}
579
+ m_RootOrder: 0
447
580
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
448
581
  m_AnchorMin: {x: 0, y: 1}
449
582
  m_AnchorMax: {x: 1, y: 1}
@@ -523,6 +656,7 @@ RectTransform:
523
656
  m_Children:
524
657
  - {fileID: 5739712124588241270}
525
658
  m_Father: {fileID: 7780697867551246536}
659
+ m_RootOrder: 0
526
660
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
527
661
  m_AnchorMin: {x: 0, y: 0}
528
662
  m_AnchorMax: {x: 0, y: 0}
@@ -614,11 +748,12 @@ RectTransform:
614
748
  - {fileID: 7959132808205707366}
615
749
  - {fileID: 8114354545917896014}
616
750
  m_Father: {fileID: 635883761041762154}
751
+ m_RootOrder: 2
617
752
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
618
753
  m_AnchorMin: {x: 0, y: 0.8}
619
754
  m_AnchorMax: {x: 1, y: 0.8}
620
- m_AnchoredPosition: {x: 0, y: -50}
621
- m_SizeDelta: {x: 0, y: 530}
755
+ m_AnchoredPosition: {x: 0, y: -189.99998}
756
+ m_SizeDelta: {x: -113.802, y: 530}
622
757
  m_Pivot: {x: 0.5, y: 1}
623
758
  --- !u!222 &6698583036240746263
624
759
  CanvasRenderer:
@@ -722,11 +857,12 @@ RectTransform:
722
857
  - {fileID: 1220103211916169604}
723
858
  - {fileID: 7516761969040241131}
724
859
  m_Father: {fileID: 635883761041762154}
860
+ m_RootOrder: 3
725
861
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
726
862
  m_AnchorMin: {x: 0, y: 0.8}
727
863
  m_AnchorMax: {x: 1, y: 0.8}
728
- m_AnchoredPosition: {x: 0, y: -50}
729
- m_SizeDelta: {x: 0, y: 530}
864
+ m_AnchoredPosition: {x: 0, y: -189.99998}
865
+ m_SizeDelta: {x: -113.802, y: 530}
730
866
  m_Pivot: {x: 0.5, y: 1}
731
867
  --- !u!222 &7006817734259035124
732
868
  CanvasRenderer:
@@ -829,11 +965,12 @@ RectTransform:
829
965
  m_Children:
830
966
  - {fileID: 6151344399199310485}
831
967
  m_Father: {fileID: 635883761041762154}
968
+ m_RootOrder: 6
832
969
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
833
- m_AnchorMin: {x: 0.5, y: 1}
834
- m_AnchorMax: {x: 0.5, y: 1}
835
- m_AnchoredPosition: {x: 0, y: -80}
836
- m_SizeDelta: {x: 180, y: 50}
970
+ m_AnchorMin: {x: 1, y: 0.5}
971
+ m_AnchorMax: {x: 1, y: 0.5}
972
+ m_AnchoredPosition: {x: -159.85992, y: 285}
973
+ m_SizeDelta: {x: 232.95996, y: 60}
837
974
  m_Pivot: {x: 0.5, y: 1}
838
975
  --- !u!222 &1032846502671717600
839
976
  CanvasRenderer:
@@ -856,14 +993,14 @@ MonoBehaviour:
856
993
  m_Name:
857
994
  m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image
858
995
  m_Material: {fileID: 0}
859
- m_Color: {r: 0.4433962, g: 0.4433962, b: 0.4433962, a: 0.4627451}
996
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
860
997
  m_RaycastTarget: 1
861
998
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
862
999
  m_Maskable: 1
863
1000
  m_OnCullStateChanged:
864
1001
  m_PersistentCalls:
865
1002
  m_Calls: []
866
- m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
1003
+ m_Sprite: {fileID: 21300000, guid: 721c765a3d97c0b4f865bac8223d1404, type: 3}
867
1004
  m_Type: 1
868
1005
  m_PreserveAspect: 0
869
1006
  m_FillCenter: 1
@@ -872,7 +1009,7 @@ MonoBehaviour:
872
1009
  m_FillClockwise: 1
873
1010
  m_FillOrigin: 0
874
1011
  m_UseSpriteMesh: 0
875
- m_PixelsPerUnitMultiplier: 1
1012
+ m_PixelsPerUnitMultiplier: 4
876
1013
  --- !u!114 &2758243966744213498
877
1014
  MonoBehaviour:
878
1015
  m_ObjectHideFlags: 0
@@ -948,9 +1085,10 @@ RectTransform:
948
1085
  m_ConstrainProportionsScale: 0
949
1086
  m_Children:
950
1087
  - {fileID: 5434952706488925749}
951
- - {fileID: 1463883435393356259}
952
1088
  - {fileID: 2236076581914442814}
1089
+ - {fileID: 1463883435393356259}
953
1090
  m_Father: {fileID: 7959132808205707366}
1091
+ m_RootOrder: 0
954
1092
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
955
1093
  m_AnchorMin: {x: 0, y: 1}
956
1094
  m_AnchorMax: {x: 1, y: 1}
@@ -1027,6 +1165,7 @@ RectTransform:
1027
1165
  m_Children:
1028
1166
  - {fileID: 2016362598615932258}
1029
1167
  m_Father: {fileID: 7516761969040241131}
1168
+ m_RootOrder: 0
1030
1169
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1031
1170
  m_AnchorMin: {x: 0, y: 0}
1032
1171
  m_AnchorMax: {x: 1, y: 1}
@@ -1066,6 +1205,7 @@ RectTransform:
1066
1205
  m_Children:
1067
1206
  - {fileID: 1584998108369062064}
1068
1207
  m_Father: {fileID: 7780697867551246536}
1208
+ m_RootOrder: 1
1069
1209
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1070
1210
  m_AnchorMin: {x: 1, y: 0}
1071
1211
  m_AnchorMax: {x: 1, y: 1}
@@ -1190,6 +1330,7 @@ RectTransform:
1190
1330
  m_ConstrainProportionsScale: 0
1191
1331
  m_Children: []
1192
1332
  m_Father: {fileID: 8308873473696877731}
1333
+ m_RootOrder: 0
1193
1334
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1194
1335
  m_AnchorMin: {x: 0, y: 0}
1195
1336
  m_AnchorMax: {x: 1, y: 1}
@@ -1251,13 +1392,13 @@ MonoBehaviour:
1251
1392
  m_faceColor:
1252
1393
  serializedVersion: 2
1253
1394
  rgba: 4294967295
1254
- m_fontSize: 24
1255
- m_fontSizeBase: 24
1395
+ m_fontSize: 30
1396
+ m_fontSizeBase: 30
1256
1397
  m_fontWeight: 400
1257
1398
  m_enableAutoSizing: 0
1258
1399
  m_fontSizeMin: 18
1259
1400
  m_fontSizeMax: 72
1260
- m_fontStyle: 0
1401
+ m_fontStyle: 1
1261
1402
  m_HorizontalAlignment: 2
1262
1403
  m_VerticalAlignment: 512
1263
1404
  m_textAlignment: 65535
@@ -1267,17 +1408,15 @@ MonoBehaviour:
1267
1408
  m_lineSpacingMax: 0
1268
1409
  m_paragraphSpacing: 0
1269
1410
  m_charWidthMaxAdj: 0
1270
- m_TextWrappingMode: 1
1411
+ m_enableWordWrapping: 0
1271
1412
  m_wordWrappingRatios: 0.4
1272
1413
  m_overflowMode: 0
1273
1414
  m_linkedTextComponent: {fileID: 0}
1274
1415
  parentLinkedComponent: {fileID: 0}
1275
1416
  m_enableKerning: 1
1276
- m_ActiveFontFeatures: 6e72656b
1277
1417
  m_enableExtraPadding: 0
1278
1418
  checkPaddingRequired: 0
1279
1419
  m_isRichText: 1
1280
- m_EmojiFallbackSupport: 1
1281
1420
  m_parseCtrlCharacters: 1
1282
1421
  m_isOrthographic: 1
1283
1422
  m_isCullingEnabled: 0
@@ -1328,6 +1467,7 @@ RectTransform:
1328
1467
  m_Children:
1329
1468
  - {fileID: 464270301072575444}
1330
1469
  m_Father: {fileID: 1511056309289187427}
1470
+ m_RootOrder: 0
1331
1471
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1332
1472
  m_AnchorMin: {x: 0, y: 0}
1333
1473
  m_AnchorMax: {x: 0, y: 0}
@@ -1418,11 +1558,12 @@ RectTransform:
1418
1558
  m_Children:
1419
1559
  - {fileID: 4335553581915834483}
1420
1560
  m_Father: {fileID: 635883761041762154}
1561
+ m_RootOrder: 5
1421
1562
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1422
- m_AnchorMin: {x: 0.5, y: 0}
1423
- m_AnchorMax: {x: 0.5, y: 0}
1424
- m_AnchoredPosition: {x: 121, y: 40}
1425
- m_SizeDelta: {x: 220, y: 50}
1563
+ m_AnchorMin: {x: 0.5, y: 1}
1564
+ m_AnchorMax: {x: 0.5, y: 1}
1565
+ m_AnchoredPosition: {x: -132.43976, y: -346}
1566
+ m_SizeDelta: {x: 300, y: 70}
1426
1567
  m_Pivot: {x: 0.5, y: 0}
1427
1568
  --- !u!222 &9180099072672125360
1428
1569
  CanvasRenderer:
@@ -1443,16 +1584,16 @@ MonoBehaviour:
1443
1584
  m_EditorHideFlags: 0
1444
1585
  m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
1445
1586
  m_Name:
1446
- m_EditorClassIdentifier:
1587
+ m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image
1447
1588
  m_Material: {fileID: 0}
1448
- m_Color: {r: 0.4433962, g: 0.4433962, b: 0.4433962, a: 0.4627451}
1589
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
1449
1590
  m_RaycastTarget: 1
1450
1591
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
1451
1592
  m_Maskable: 1
1452
1593
  m_OnCullStateChanged:
1453
1594
  m_PersistentCalls:
1454
1595
  m_Calls: []
1455
- m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
1596
+ m_Sprite: {fileID: 21300000, guid: 721c765a3d97c0b4f865bac8223d1404, type: 3}
1456
1597
  m_Type: 1
1457
1598
  m_PreserveAspect: 0
1458
1599
  m_FillCenter: 1
@@ -1461,7 +1602,7 @@ MonoBehaviour:
1461
1602
  m_FillClockwise: 1
1462
1603
  m_FillOrigin: 0
1463
1604
  m_UseSpriteMesh: 0
1464
- m_PixelsPerUnitMultiplier: 1
1605
+ m_PixelsPerUnitMultiplier: 4
1465
1606
  --- !u!114 &4960568938097421393
1466
1607
  MonoBehaviour:
1467
1608
  m_ObjectHideFlags: 0
@@ -1539,6 +1680,7 @@ RectTransform:
1539
1680
  m_Children:
1540
1681
  - {fileID: 584377091044222971}
1541
1682
  m_Father: {fileID: 1511056309289187427}
1683
+ m_RootOrder: 1
1542
1684
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1543
1685
  m_AnchorMin: {x: 1, y: 0}
1544
1686
  m_AnchorMax: {x: 1, y: 1}
@@ -1663,6 +1805,7 @@ RectTransform:
1663
1805
  m_ConstrainProportionsScale: 0
1664
1806
  m_Children: []
1665
1807
  m_Father: {fileID: 6964861376977152746}
1808
+ m_RootOrder: 0
1666
1809
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1667
1810
  m_AnchorMin: {x: 0, y: 0}
1668
1811
  m_AnchorMax: {x: 1, y: 1}
@@ -1697,7 +1840,7 @@ MonoBehaviour:
1697
1840
  m_OnCullStateChanged:
1698
1841
  m_PersistentCalls:
1699
1842
  m_Calls: []
1700
- m_text: View In Portal
1843
+ m_text: Open Portal
1701
1844
  m_isRightToLeft: 0
1702
1845
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
1703
1846
  m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
@@ -1724,13 +1867,13 @@ MonoBehaviour:
1724
1867
  m_faceColor:
1725
1868
  serializedVersion: 2
1726
1869
  rgba: 4294967295
1727
- m_fontSize: 24
1728
- m_fontSizeBase: 24
1870
+ m_fontSize: 30
1871
+ m_fontSizeBase: 30
1729
1872
  m_fontWeight: 400
1730
1873
  m_enableAutoSizing: 0
1731
1874
  m_fontSizeMin: 18
1732
1875
  m_fontSizeMax: 72
1733
- m_fontStyle: 0
1876
+ m_fontStyle: 1
1734
1877
  m_HorizontalAlignment: 2
1735
1878
  m_VerticalAlignment: 512
1736
1879
  m_textAlignment: 65535
@@ -1740,17 +1883,15 @@ MonoBehaviour:
1740
1883
  m_lineSpacingMax: 0
1741
1884
  m_paragraphSpacing: 0
1742
1885
  m_charWidthMaxAdj: 0
1743
- m_TextWrappingMode: 1
1886
+ m_enableWordWrapping: 0
1744
1887
  m_wordWrappingRatios: 0.4
1745
1888
  m_overflowMode: 0
1746
1889
  m_linkedTextComponent: {fileID: 0}
1747
1890
  parentLinkedComponent: {fileID: 0}
1748
1891
  m_enableKerning: 0
1749
- m_ActiveFontFeatures: 6e72656b
1750
1892
  m_enableExtraPadding: 0
1751
1893
  checkPaddingRequired: 0
1752
1894
  m_isRichText: 1
1753
- m_EmojiFallbackSupport: 1
1754
1895
  m_parseCtrlCharacters: 1
1755
1896
  m_isOrthographic: 1
1756
1897
  m_isCullingEnabled: 0
@@ -1800,11 +1941,12 @@ RectTransform:
1800
1941
  m_ConstrainProportionsScale: 0
1801
1942
  m_Children: []
1802
1943
  m_Father: {fileID: 635883761041762154}
1944
+ m_RootOrder: 1
1803
1945
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1804
- m_AnchorMin: {x: 0, y: 1}
1805
- m_AnchorMax: {x: 1, y: 1}
1806
- m_AnchoredPosition: {x: 0, y: 0}
1807
- m_SizeDelta: {x: -90, y: 50}
1946
+ m_AnchorMin: {x: 0, y: 0.5}
1947
+ m_AnchorMax: {x: 0, y: 0.5}
1948
+ m_AnchoredPosition: {x: 414.45, y: 280}
1949
+ m_SizeDelta: {x: 715.1, y: 50}
1808
1950
  m_Pivot: {x: 0.5, y: 1}
1809
1951
  --- !u!222 &3134619846263849889
1810
1952
  CanvasRenderer:
@@ -1868,7 +2010,7 @@ MonoBehaviour:
1868
2010
  m_fontSizeMin: 18
1869
2011
  m_fontSizeMax: 72
1870
2012
  m_fontStyle: 1
1871
- m_HorizontalAlignment: 2
2013
+ m_HorizontalAlignment: 1
1872
2014
  m_VerticalAlignment: 512
1873
2015
  m_textAlignment: 65535
1874
2016
  m_characterSpacing: 0
@@ -1877,17 +2019,15 @@ MonoBehaviour:
1877
2019
  m_lineSpacingMax: 0
1878
2020
  m_paragraphSpacing: 0
1879
2021
  m_charWidthMaxAdj: 0
1880
- m_TextWrappingMode: 1
2022
+ m_enableWordWrapping: 0
1881
2023
  m_wordWrappingRatios: 0.4
1882
2024
  m_overflowMode: 0
1883
2025
  m_linkedTextComponent: {fileID: 0}
1884
2026
  parentLinkedComponent: {fileID: 0}
1885
2027
  m_enableKerning: 1
1886
- m_ActiveFontFeatures: 6e72656b
1887
2028
  m_enableExtraPadding: 0
1888
2029
  checkPaddingRequired: 0
1889
2030
  m_isRichText: 1
1890
- m_EmojiFallbackSupport: 1
1891
2031
  m_parseCtrlCharacters: 1
1892
2032
  m_isOrthographic: 1
1893
2033
  m_isCullingEnabled: 0
@@ -1956,6 +2096,7 @@ RectTransform:
1956
2096
  m_ConstrainProportionsScale: 0
1957
2097
  m_Children: []
1958
2098
  m_Father: {fileID: 6541488344771481123}
2099
+ m_RootOrder: 0
1959
2100
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1960
2101
  m_AnchorMin: {x: 0, y: 0}
1961
2102
  m_AnchorMax: {x: 1, y: 1}
@@ -2017,13 +2158,13 @@ MonoBehaviour:
2017
2158
  m_faceColor:
2018
2159
  serializedVersion: 2
2019
2160
  rgba: 4294967295
2020
- m_fontSize: 24
2021
- m_fontSizeBase: 24
2161
+ m_fontSize: 30
2162
+ m_fontSizeBase: 30
2022
2163
  m_fontWeight: 400
2023
2164
  m_enableAutoSizing: 0
2024
2165
  m_fontSizeMin: 18
2025
2166
  m_fontSizeMax: 72
2026
- m_fontStyle: 0
2167
+ m_fontStyle: 1
2027
2168
  m_HorizontalAlignment: 2
2028
2169
  m_VerticalAlignment: 512
2029
2170
  m_textAlignment: 65535
@@ -2033,17 +2174,15 @@ MonoBehaviour:
2033
2174
  m_lineSpacingMax: 0
2034
2175
  m_paragraphSpacing: 0
2035
2176
  m_charWidthMaxAdj: 0
2036
- m_TextWrappingMode: 1
2177
+ m_enableWordWrapping: 0
2037
2178
  m_wordWrappingRatios: 0.4
2038
2179
  m_overflowMode: 0
2039
2180
  m_linkedTextComponent: {fileID: 0}
2040
2181
  parentLinkedComponent: {fileID: 0}
2041
2182
  m_enableKerning: 1
2042
- m_ActiveFontFeatures: 6e72656b
2043
2183
  m_enableExtraPadding: 0
2044
2184
  checkPaddingRequired: 0
2045
2185
  m_isRichText: 1
2046
- m_EmojiFallbackSupport: 1
2047
2186
  m_parseCtrlCharacters: 1
2048
2187
  m_isOrthographic: 1
2049
2188
  m_isCullingEnabled: 0
@@ -2066,13 +2205,42 @@ PrefabInstance:
2066
2205
  m_ObjectHideFlags: 0
2067
2206
  serializedVersion: 2
2068
2207
  m_Modification:
2069
- serializedVersion: 3
2070
2208
  m_TransformParent: {fileID: 5739712124588241270}
2071
2209
  m_Modifications:
2072
- - target: {fileID: 2098431368448208046, guid: 0c9135b46e00444278ee4a2447e52d53,
2210
+ - target: {fileID: 2324818010811886262, guid: 0c9135b46e00444278ee4a2447e52d53,
2211
+ type: 3}
2212
+ propertyPath: m_AnchorMax.y
2213
+ value: 0
2214
+ objectReference: {fileID: 0}
2215
+ - target: {fileID: 2324818010811886262, guid: 0c9135b46e00444278ee4a2447e52d53,
2216
+ type: 3}
2217
+ propertyPath: m_AnchorMin.y
2218
+ value: 0
2219
+ objectReference: {fileID: 0}
2220
+ - target: {fileID: 2324818010811886262, guid: 0c9135b46e00444278ee4a2447e52d53,
2221
+ type: 3}
2222
+ propertyPath: m_AnchoredPosition.y
2223
+ value: 0
2224
+ objectReference: {fileID: 0}
2225
+ - target: {fileID: 2672318735609524403, guid: 0c9135b46e00444278ee4a2447e52d53,
2226
+ type: 3}
2227
+ propertyPath: m_AnchorMax.y
2228
+ value: 0
2229
+ objectReference: {fileID: 0}
2230
+ - target: {fileID: 2672318735609524403, guid: 0c9135b46e00444278ee4a2447e52d53,
2231
+ type: 3}
2232
+ propertyPath: m_AnchorMin.y
2233
+ value: 0
2234
+ objectReference: {fileID: 0}
2235
+ - target: {fileID: 2672318735609524403, guid: 0c9135b46e00444278ee4a2447e52d53,
2236
+ type: 3}
2237
+ propertyPath: m_AnchoredPosition.x
2238
+ value: 0
2239
+ objectReference: {fileID: 0}
2240
+ - target: {fileID: 2672318735609524403, guid: 0c9135b46e00444278ee4a2447e52d53,
2073
2241
  type: 3}
2074
- propertyPath: 'm_ActiveFontFeatures.Array.data[0]'
2075
- value: 1801810542
2242
+ propertyPath: m_AnchoredPosition.y
2243
+ value: 0
2076
2244
  objectReference: {fileID: 0}
2077
2245
  - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
2078
2246
  type: 3}
@@ -2179,15 +2347,52 @@ PrefabInstance:
2179
2347
  propertyPath: m_Name
2180
2348
  value: ItemDisplay
2181
2349
  objectReference: {fileID: 0}
2182
- - target: {fileID: 5391917194349311978, guid: 0c9135b46e00444278ee4a2447e52d53,
2350
+ - target: {fileID: 5391917194349311979, guid: 0c9135b46e00444278ee4a2447e52d53,
2351
+ type: 3}
2352
+ propertyPath: m_AnchorMax.y
2353
+ value: 0
2354
+ objectReference: {fileID: 0}
2355
+ - target: {fileID: 5391917194349311979, guid: 0c9135b46e00444278ee4a2447e52d53,
2356
+ type: 3}
2357
+ propertyPath: m_AnchorMin.y
2358
+ value: 0
2359
+ objectReference: {fileID: 0}
2360
+ - target: {fileID: 5391917194349311979, guid: 0c9135b46e00444278ee4a2447e52d53,
2361
+ type: 3}
2362
+ propertyPath: m_SizeDelta.x
2363
+ value: 0
2364
+ objectReference: {fileID: 0}
2365
+ - target: {fileID: 5391917194349311979, guid: 0c9135b46e00444278ee4a2447e52d53,
2366
+ type: 3}
2367
+ propertyPath: m_AnchoredPosition.x
2368
+ value: 0
2369
+ objectReference: {fileID: 0}
2370
+ - target: {fileID: 5879033942466260015, guid: 0c9135b46e00444278ee4a2447e52d53,
2371
+ type: 3}
2372
+ propertyPath: m_AnchorMax.y
2373
+ value: 0
2374
+ objectReference: {fileID: 0}
2375
+ - target: {fileID: 5879033942466260015, guid: 0c9135b46e00444278ee4a2447e52d53,
2376
+ type: 3}
2377
+ propertyPath: m_AnchorMin.y
2378
+ value: 0
2379
+ objectReference: {fileID: 0}
2380
+ - target: {fileID: 5879033942466260015, guid: 0c9135b46e00444278ee4a2447e52d53,
2381
+ type: 3}
2382
+ propertyPath: m_SizeDelta.x
2383
+ value: 0
2384
+ objectReference: {fileID: 0}
2385
+ - target: {fileID: 5879033942466260015, guid: 0c9135b46e00444278ee4a2447e52d53,
2386
+ type: 3}
2387
+ propertyPath: m_AnchoredPosition.x
2388
+ value: 0
2389
+ objectReference: {fileID: 0}
2390
+ - target: {fileID: 5879033942466260015, guid: 0c9135b46e00444278ee4a2447e52d53,
2183
2391
  type: 3}
2184
- propertyPath: 'm_ActiveFontFeatures.Array.data[0]'
2185
- value: 1801810542
2392
+ propertyPath: m_AnchoredPosition.y
2393
+ value: 0
2186
2394
  objectReference: {fileID: 0}
2187
2395
  m_RemovedComponents: []
2188
- m_RemovedGameObjects: []
2189
- m_AddedGameObjects: []
2190
- m_AddedComponents: []
2191
2396
  m_SourcePrefab: {fileID: 100100000, guid: 0c9135b46e00444278ee4a2447e52d53, type: 3}
2192
2397
  --- !u!224 &5434952706488925749 stripped
2193
2398
  RectTransform:
@@ -2200,15 +2405,44 @@ PrefabInstance:
2200
2405
  m_ObjectHideFlags: 0
2201
2406
  serializedVersion: 2
2202
2407
  m_Modification:
2203
- serializedVersion: 3
2204
2408
  m_TransformParent: {fileID: 464270301072575444}
2205
2409
  m_Modifications:
2206
- - target: {fileID: 2098431368448208046, guid: b77895e168ab44fe3afb46107a02e625,
2410
+ - target: {fileID: 2324818010811886262, guid: b77895e168ab44fe3afb46107a02e625,
2207
2411
  type: 3}
2208
- propertyPath: 'm_ActiveFontFeatures.Array.data[0]'
2209
- value: 1801810542
2412
+ propertyPath: m_AnchorMax.y
2413
+ value: 0
2210
2414
  objectReference: {fileID: 0}
2211
- - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2415
+ - target: {fileID: 2324818010811886262, guid: b77895e168ab44fe3afb46107a02e625,
2416
+ type: 3}
2417
+ propertyPath: m_AnchorMin.y
2418
+ value: 0
2419
+ objectReference: {fileID: 0}
2420
+ - target: {fileID: 2324818010811886262, guid: b77895e168ab44fe3afb46107a02e625,
2421
+ type: 3}
2422
+ propertyPath: m_AnchoredPosition.y
2423
+ value: 0
2424
+ objectReference: {fileID: 0}
2425
+ - target: {fileID: 3036184042501949033, guid: b77895e168ab44fe3afb46107a02e625,
2426
+ type: 3}
2427
+ propertyPath: m_AnchorMax.y
2428
+ value: 0
2429
+ objectReference: {fileID: 0}
2430
+ - target: {fileID: 3036184042501949033, guid: b77895e168ab44fe3afb46107a02e625,
2431
+ type: 3}
2432
+ propertyPath: m_AnchorMin.y
2433
+ value: 0
2434
+ objectReference: {fileID: 0}
2435
+ - target: {fileID: 3036184042501949033, guid: b77895e168ab44fe3afb46107a02e625,
2436
+ type: 3}
2437
+ propertyPath: m_AnchoredPosition.x
2438
+ value: 0
2439
+ objectReference: {fileID: 0}
2440
+ - target: {fileID: 3036184042501949033, guid: b77895e168ab44fe3afb46107a02e625,
2441
+ type: 3}
2442
+ propertyPath: m_AnchoredPosition.y
2443
+ value: 0
2444
+ objectReference: {fileID: 0}
2445
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2212
2446
  type: 3}
2213
2447
  propertyPath: m_Pivot.x
2214
2448
  value: 0.5
@@ -2218,6 +2452,11 @@ PrefabInstance:
2218
2452
  propertyPath: m_Pivot.y
2219
2453
  value: 0.5
2220
2454
  objectReference: {fileID: 0}
2455
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2456
+ type: 3}
2457
+ propertyPath: m_RootOrder
2458
+ value: 0
2459
+ objectReference: {fileID: 0}
2221
2460
  - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2222
2461
  type: 3}
2223
2462
  propertyPath: m_AnchorMax.x
@@ -2313,15 +2552,52 @@ PrefabInstance:
2313
2552
  propertyPath: m_Name
2314
2553
  value: CurrencyDisplay (1)
2315
2554
  objectReference: {fileID: 0}
2316
- - target: {fileID: 5391917194349311978, guid: b77895e168ab44fe3afb46107a02e625,
2555
+ - target: {fileID: 5391917194349311979, guid: b77895e168ab44fe3afb46107a02e625,
2556
+ type: 3}
2557
+ propertyPath: m_AnchorMax.y
2558
+ value: 0
2559
+ objectReference: {fileID: 0}
2560
+ - target: {fileID: 5391917194349311979, guid: b77895e168ab44fe3afb46107a02e625,
2561
+ type: 3}
2562
+ propertyPath: m_AnchorMin.y
2563
+ value: 0
2564
+ objectReference: {fileID: 0}
2565
+ - target: {fileID: 5391917194349311979, guid: b77895e168ab44fe3afb46107a02e625,
2566
+ type: 3}
2567
+ propertyPath: m_SizeDelta.x
2568
+ value: 0
2569
+ objectReference: {fileID: 0}
2570
+ - target: {fileID: 5391917194349311979, guid: b77895e168ab44fe3afb46107a02e625,
2571
+ type: 3}
2572
+ propertyPath: m_AnchoredPosition.x
2573
+ value: 0
2574
+ objectReference: {fileID: 0}
2575
+ - target: {fileID: 5879033942466260015, guid: b77895e168ab44fe3afb46107a02e625,
2576
+ type: 3}
2577
+ propertyPath: m_AnchorMax.y
2578
+ value: 0
2579
+ objectReference: {fileID: 0}
2580
+ - target: {fileID: 5879033942466260015, guid: b77895e168ab44fe3afb46107a02e625,
2581
+ type: 3}
2582
+ propertyPath: m_AnchorMin.y
2583
+ value: 0
2584
+ objectReference: {fileID: 0}
2585
+ - target: {fileID: 5879033942466260015, guid: b77895e168ab44fe3afb46107a02e625,
2586
+ type: 3}
2587
+ propertyPath: m_SizeDelta.x
2588
+ value: 0
2589
+ objectReference: {fileID: 0}
2590
+ - target: {fileID: 5879033942466260015, guid: b77895e168ab44fe3afb46107a02e625,
2591
+ type: 3}
2592
+ propertyPath: m_AnchoredPosition.x
2593
+ value: 0
2594
+ objectReference: {fileID: 0}
2595
+ - target: {fileID: 5879033942466260015, guid: b77895e168ab44fe3afb46107a02e625,
2317
2596
  type: 3}
2318
- propertyPath: 'm_ActiveFontFeatures.Array.data[0]'
2319
- value: 1801810542
2597
+ propertyPath: m_AnchoredPosition.y
2598
+ value: 0
2320
2599
  objectReference: {fileID: 0}
2321
2600
  m_RemovedComponents: []
2322
- m_RemovedGameObjects: []
2323
- m_AddedGameObjects: []
2324
- m_AddedComponents: []
2325
2601
  m_SourcePrefab: {fileID: 100100000, guid: b77895e168ab44fe3afb46107a02e625, type: 3}
2326
2602
  --- !u!224 &4720268962249039616 stripped
2327
2603
  RectTransform:
@@ -2334,147 +2610,152 @@ PrefabInstance:
2334
2610
  m_ObjectHideFlags: 0
2335
2611
  serializedVersion: 2
2336
2612
  m_Modification:
2337
- serializedVersion: 3
2338
2613
  m_TransformParent: {fileID: 464270301072575444}
2339
2614
  m_Modifications:
2340
- - target: {fileID: 2098431368448208046, guid: b77895e168ab44fe3afb46107a02e625,
2615
+ - target: {fileID: 2072264701142551445, guid: b77895e168ab44fe3afb46107a02e625,
2616
+ type: 3}
2617
+ propertyPath: m_AnchorMax.y
2618
+ value: 0
2619
+ objectReference: {fileID: 0}
2620
+ - target: {fileID: 2072264701142551445, guid: b77895e168ab44fe3afb46107a02e625,
2341
2621
  type: 3}
2342
- propertyPath: 'm_ActiveFontFeatures.Array.data[0]'
2343
- value: 1801810542
2622
+ propertyPath: m_AnchorMin.y
2623
+ value: 0
2344
2624
  objectReference: {fileID: 0}
2345
- - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2625
+ - target: {fileID: 2072264701142551445, guid: b77895e168ab44fe3afb46107a02e625,
2346
2626
  type: 3}
2347
- propertyPath: m_Pivot.x
2348
- value: 0.5
2627
+ propertyPath: m_SizeDelta.x
2628
+ value: 0
2349
2629
  objectReference: {fileID: 0}
2350
- - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2630
+ - target: {fileID: 2072264701142551445, guid: b77895e168ab44fe3afb46107a02e625,
2351
2631
  type: 3}
2352
- propertyPath: m_Pivot.y
2353
- value: 0.5
2632
+ propertyPath: m_AnchoredPosition.x
2633
+ value: 0
2354
2634
  objectReference: {fileID: 0}
2355
- - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2635
+ - target: {fileID: 2072264701142551445, guid: b77895e168ab44fe3afb46107a02e625,
2356
2636
  type: 3}
2357
- propertyPath: m_AnchorMax.x
2637
+ propertyPath: m_AnchoredPosition.y
2358
2638
  value: 0
2359
2639
  objectReference: {fileID: 0}
2360
- - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2640
+ - target: {fileID: 2324818010811886262, guid: b77895e168ab44fe3afb46107a02e625,
2361
2641
  type: 3}
2362
2642
  propertyPath: m_AnchorMax.y
2363
2643
  value: 0
2364
2644
  objectReference: {fileID: 0}
2365
- - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2645
+ - target: {fileID: 2324818010811886262, guid: b77895e168ab44fe3afb46107a02e625,
2366
2646
  type: 3}
2367
- propertyPath: m_AnchorMin.x
2647
+ propertyPath: m_AnchorMin.y
2368
2648
  value: 0
2369
2649
  objectReference: {fileID: 0}
2370
- - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2650
+ - target: {fileID: 2324818010811886262, guid: b77895e168ab44fe3afb46107a02e625,
2371
2651
  type: 3}
2372
- propertyPath: m_AnchorMin.y
2652
+ propertyPath: m_AnchoredPosition.y
2373
2653
  value: 0
2374
2654
  objectReference: {fileID: 0}
2375
- - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2655
+ - target: {fileID: 2579277915501623318, guid: b77895e168ab44fe3afb46107a02e625,
2376
2656
  type: 3}
2377
- propertyPath: m_SizeDelta.x
2657
+ propertyPath: m_AnchorMax.y
2378
2658
  value: 0
2379
2659
  objectReference: {fileID: 0}
2380
- - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2660
+ - target: {fileID: 2579277915501623318, guid: b77895e168ab44fe3afb46107a02e625,
2381
2661
  type: 3}
2382
- propertyPath: m_SizeDelta.y
2662
+ propertyPath: m_AnchorMin.y
2383
2663
  value: 0
2384
2664
  objectReference: {fileID: 0}
2385
- - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2665
+ - target: {fileID: 2579277915501623318, guid: b77895e168ab44fe3afb46107a02e625,
2386
2666
  type: 3}
2387
- propertyPath: m_LocalPosition.x
2667
+ propertyPath: m_SizeDelta.x
2388
2668
  value: 0
2389
2669
  objectReference: {fileID: 0}
2390
- - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2670
+ - target: {fileID: 2579277915501623318, guid: b77895e168ab44fe3afb46107a02e625,
2391
2671
  type: 3}
2392
- propertyPath: m_LocalPosition.y
2672
+ propertyPath: m_AnchoredPosition.x
2393
2673
  value: 0
2394
2674
  objectReference: {fileID: 0}
2395
- - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2675
+ - target: {fileID: 3036184042501949033, guid: b77895e168ab44fe3afb46107a02e625,
2396
2676
  type: 3}
2397
- propertyPath: m_LocalPosition.z
2677
+ propertyPath: m_AnchorMax.y
2398
2678
  value: 0
2399
2679
  objectReference: {fileID: 0}
2400
- - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2680
+ - target: {fileID: 3036184042501949033, guid: b77895e168ab44fe3afb46107a02e625,
2401
2681
  type: 3}
2402
- propertyPath: m_LocalRotation.w
2403
- value: 1
2682
+ propertyPath: m_AnchorMin.y
2683
+ value: 0
2404
2684
  objectReference: {fileID: 0}
2405
- - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2685
+ - target: {fileID: 3036184042501949033, guid: b77895e168ab44fe3afb46107a02e625,
2406
2686
  type: 3}
2407
- propertyPath: m_LocalRotation.x
2687
+ propertyPath: m_AnchoredPosition.x
2408
2688
  value: 0
2409
2689
  objectReference: {fileID: 0}
2410
- - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2690
+ - target: {fileID: 3036184042501949033, guid: b77895e168ab44fe3afb46107a02e625,
2411
2691
  type: 3}
2412
- propertyPath: m_LocalRotation.y
2692
+ propertyPath: m_AnchoredPosition.y
2413
2693
  value: 0
2414
2694
  objectReference: {fileID: 0}
2415
- - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2695
+ - target: {fileID: 3608485760012491867, guid: b77895e168ab44fe3afb46107a02e625,
2416
2696
  type: 3}
2417
- propertyPath: m_LocalRotation.z
2697
+ propertyPath: m_AnchorMax.y
2418
2698
  value: 0
2419
2699
  objectReference: {fileID: 0}
2420
- - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2700
+ - target: {fileID: 3608485760012491867, guid: b77895e168ab44fe3afb46107a02e625,
2701
+ type: 3}
2702
+ propertyPath: m_AnchorMin.y
2703
+ value: 0
2704
+ objectReference: {fileID: 0}
2705
+ - target: {fileID: 3608485760012491867, guid: b77895e168ab44fe3afb46107a02e625,
2421
2706
  type: 3}
2422
2707
  propertyPath: m_AnchoredPosition.x
2423
2708
  value: 0
2424
2709
  objectReference: {fileID: 0}
2425
- - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2710
+ - target: {fileID: 3608485760012491867, guid: b77895e168ab44fe3afb46107a02e625,
2426
2711
  type: 3}
2427
2712
  propertyPath: m_AnchoredPosition.y
2428
2713
  value: 0
2429
2714
  objectReference: {fileID: 0}
2430
- - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2715
+ - target: {fileID: 4596519341252614809, guid: b77895e168ab44fe3afb46107a02e625,
2431
2716
  type: 3}
2432
- propertyPath: m_LocalEulerAnglesHint.x
2717
+ propertyPath: m_AnchorMax.y
2433
2718
  value: 0
2434
2719
  objectReference: {fileID: 0}
2435
- - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2720
+ - target: {fileID: 4596519341252614809, guid: b77895e168ab44fe3afb46107a02e625,
2436
2721
  type: 3}
2437
- propertyPath: m_LocalEulerAnglesHint.y
2722
+ propertyPath: m_AnchorMin.y
2438
2723
  value: 0
2439
2724
  objectReference: {fileID: 0}
2440
- - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2725
+ - target: {fileID: 4596519341252614809, guid: b77895e168ab44fe3afb46107a02e625,
2441
2726
  type: 3}
2442
- propertyPath: m_LocalEulerAnglesHint.z
2727
+ propertyPath: m_SizeDelta.x
2443
2728
  value: 0
2444
2729
  objectReference: {fileID: 0}
2445
- - target: {fileID: 5391917194244900913, guid: b77895e168ab44fe3afb46107a02e625,
2730
+ - target: {fileID: 4596519341252614809, guid: b77895e168ab44fe3afb46107a02e625,
2446
2731
  type: 3}
2447
- propertyPath: m_Name
2448
- value: CurrencyDisplay (2)
2732
+ propertyPath: m_AnchoredPosition.x
2733
+ value: 0
2449
2734
  objectReference: {fileID: 0}
2450
- - target: {fileID: 5391917194349311978, guid: b77895e168ab44fe3afb46107a02e625,
2735
+ - target: {fileID: 4596519341252614809, guid: b77895e168ab44fe3afb46107a02e625,
2451
2736
  type: 3}
2452
- propertyPath: 'm_ActiveFontFeatures.Array.data[0]'
2453
- value: 1801810542
2737
+ propertyPath: m_AnchoredPosition.y
2738
+ value: 0
2454
2739
  objectReference: {fileID: 0}
2455
- m_RemovedComponents: []
2456
- m_RemovedGameObjects: []
2457
- m_AddedGameObjects: []
2458
- m_AddedComponents: []
2459
- m_SourcePrefab: {fileID: 100100000, guid: b77895e168ab44fe3afb46107a02e625, type: 3}
2460
- --- !u!224 &6292697818686726773 stripped
2461
- RectTransform:
2462
- m_CorrespondingSourceObject: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2463
- type: 3}
2464
- m_PrefabInstance: {fileID: 2127906077570460229}
2465
- m_PrefabAsset: {fileID: 0}
2466
- --- !u!1001 &5232560523274424228
2467
- PrefabInstance:
2468
- m_ObjectHideFlags: 0
2469
- serializedVersion: 2
2470
- m_Modification:
2471
- serializedVersion: 3
2472
- m_TransformParent: {fileID: 464270301072575444}
2473
- m_Modifications:
2474
- - target: {fileID: 2098431368448208046, guid: b77895e168ab44fe3afb46107a02e625,
2740
+ - target: {fileID: 5123061830255464326, guid: b77895e168ab44fe3afb46107a02e625,
2741
+ type: 3}
2742
+ propertyPath: m_AnchorMax.y
2743
+ value: 0
2744
+ objectReference: {fileID: 0}
2745
+ - target: {fileID: 5123061830255464326, guid: b77895e168ab44fe3afb46107a02e625,
2746
+ type: 3}
2747
+ propertyPath: m_AnchorMin.y
2748
+ value: 0
2749
+ objectReference: {fileID: 0}
2750
+ - target: {fileID: 5123061830255464326, guid: b77895e168ab44fe3afb46107a02e625,
2751
+ type: 3}
2752
+ propertyPath: m_SizeDelta.x
2753
+ value: 0
2754
+ objectReference: {fileID: 0}
2755
+ - target: {fileID: 5123061830255464326, guid: b77895e168ab44fe3afb46107a02e625,
2475
2756
  type: 3}
2476
- propertyPath: 'm_ActiveFontFeatures.Array.data[0]'
2477
- value: 1801810542
2757
+ propertyPath: m_AnchoredPosition.x
2758
+ value: 0
2478
2759
  objectReference: {fileID: 0}
2479
2760
  - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2480
2761
  type: 3}
@@ -2486,6 +2767,11 @@ PrefabInstance:
2486
2767
  propertyPath: m_Pivot.y
2487
2768
  value: 0.5
2488
2769
  objectReference: {fileID: 0}
2770
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2771
+ type: 3}
2772
+ propertyPath: m_RootOrder
2773
+ value: 1
2774
+ objectReference: {fileID: 0}
2489
2775
  - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2490
2776
  type: 3}
2491
2777
  propertyPath: m_AnchorMax.x
@@ -2579,151 +2865,614 @@ PrefabInstance:
2579
2865
  - target: {fileID: 5391917194244900913, guid: b77895e168ab44fe3afb46107a02e625,
2580
2866
  type: 3}
2581
2867
  propertyPath: m_Name
2582
- value: CurrencyDisplay
2583
- objectReference: {fileID: 0}
2584
- - target: {fileID: 5391917194349311978, guid: b77895e168ab44fe3afb46107a02e625,
2585
- type: 3}
2586
- propertyPath: 'm_ActiveFontFeatures.Array.data[0]'
2587
- value: 1801810542
2588
- objectReference: {fileID: 0}
2589
- m_RemovedComponents: []
2590
- m_RemovedGameObjects: []
2591
- m_AddedGameObjects: []
2592
- m_AddedComponents: []
2593
- m_SourcePrefab: {fileID: 100100000, guid: b77895e168ab44fe3afb46107a02e625, type: 3}
2594
- --- !u!224 &166134060727977876 stripped
2595
- RectTransform:
2596
- m_CorrespondingSourceObject: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2597
- type: 3}
2598
- m_PrefabInstance: {fileID: 5232560523274424228}
2599
- m_PrefabAsset: {fileID: 0}
2600
- --- !u!1001 &6186771416564478990
2601
- PrefabInstance:
2602
- m_ObjectHideFlags: 0
2603
- serializedVersion: 2
2604
- m_Modification:
2605
- serializedVersion: 3
2606
- m_TransformParent: {fileID: 5739712124588241270}
2607
- m_Modifications:
2608
- - target: {fileID: 2098431368448208046, guid: 0c9135b46e00444278ee4a2447e52d53,
2609
- type: 3}
2610
- propertyPath: 'm_ActiveFontFeatures.Array.data[0]'
2611
- value: 1801810542
2868
+ value: CurrencyDisplay (2)
2612
2869
  objectReference: {fileID: 0}
2613
- - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
2870
+ - target: {fileID: 5391917194349311979, guid: b77895e168ab44fe3afb46107a02e625,
2614
2871
  type: 3}
2615
- propertyPath: m_Pivot.x
2616
- value: 0.5
2872
+ propertyPath: m_AnchorMax.y
2873
+ value: 0
2617
2874
  objectReference: {fileID: 0}
2618
- - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
2875
+ - target: {fileID: 5391917194349311979, guid: b77895e168ab44fe3afb46107a02e625,
2619
2876
  type: 3}
2620
- propertyPath: m_Pivot.y
2621
- value: 0.5
2877
+ propertyPath: m_AnchorMin.y
2878
+ value: 0
2622
2879
  objectReference: {fileID: 0}
2623
- - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
2880
+ - target: {fileID: 5391917194349311979, guid: b77895e168ab44fe3afb46107a02e625,
2624
2881
  type: 3}
2625
- propertyPath: m_AnchorMax.x
2882
+ propertyPath: m_SizeDelta.x
2626
2883
  value: 0
2627
2884
  objectReference: {fileID: 0}
2628
- - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
2885
+ - target: {fileID: 5391917194349311979, guid: b77895e168ab44fe3afb46107a02e625,
2629
2886
  type: 3}
2630
- propertyPath: m_AnchorMax.y
2887
+ propertyPath: m_AnchoredPosition.x
2631
2888
  value: 0
2632
2889
  objectReference: {fileID: 0}
2633
- - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
2890
+ - target: {fileID: 5879033942466260015, guid: b77895e168ab44fe3afb46107a02e625,
2634
2891
  type: 3}
2635
- propertyPath: m_AnchorMin.x
2892
+ propertyPath: m_AnchorMax.y
2636
2893
  value: 0
2637
2894
  objectReference: {fileID: 0}
2638
- - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
2895
+ - target: {fileID: 5879033942466260015, guid: b77895e168ab44fe3afb46107a02e625,
2639
2896
  type: 3}
2640
2897
  propertyPath: m_AnchorMin.y
2641
2898
  value: 0
2642
2899
  objectReference: {fileID: 0}
2643
- - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
2900
+ - target: {fileID: 5879033942466260015, guid: b77895e168ab44fe3afb46107a02e625,
2644
2901
  type: 3}
2645
2902
  propertyPath: m_SizeDelta.x
2646
2903
  value: 0
2647
2904
  objectReference: {fileID: 0}
2648
- - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
2905
+ - target: {fileID: 5879033942466260015, guid: b77895e168ab44fe3afb46107a02e625,
2649
2906
  type: 3}
2650
- propertyPath: m_SizeDelta.y
2907
+ propertyPath: m_AnchoredPosition.x
2651
2908
  value: 0
2652
2909
  objectReference: {fileID: 0}
2653
- - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
2910
+ - target: {fileID: 5879033942466260015, guid: b77895e168ab44fe3afb46107a02e625,
2654
2911
  type: 3}
2655
- propertyPath: m_LocalPosition.x
2912
+ propertyPath: m_AnchoredPosition.y
2656
2913
  value: 0
2657
2914
  objectReference: {fileID: 0}
2658
- - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
2915
+ - target: {fileID: 7892739283145380869, guid: b77895e168ab44fe3afb46107a02e625,
2659
2916
  type: 3}
2660
- propertyPath: m_LocalPosition.y
2917
+ propertyPath: m_AnchorMax.y
2661
2918
  value: 0
2662
2919
  objectReference: {fileID: 0}
2663
- - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
2920
+ - target: {fileID: 7892739283145380869, guid: b77895e168ab44fe3afb46107a02e625,
2664
2921
  type: 3}
2665
- propertyPath: m_LocalPosition.z
2922
+ propertyPath: m_AnchorMin.y
2666
2923
  value: 0
2667
2924
  objectReference: {fileID: 0}
2668
- - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
2925
+ - target: {fileID: 7892739283145380869, guid: b77895e168ab44fe3afb46107a02e625,
2669
2926
  type: 3}
2670
- propertyPath: m_LocalRotation.w
2671
- value: 1
2927
+ propertyPath: m_AnchoredPosition.x
2928
+ value: 0
2672
2929
  objectReference: {fileID: 0}
2673
- - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
2930
+ - target: {fileID: 7892739283145380869, guid: b77895e168ab44fe3afb46107a02e625,
2674
2931
  type: 3}
2675
- propertyPath: m_LocalRotation.x
2932
+ propertyPath: m_AnchoredPosition.y
2676
2933
  value: 0
2677
2934
  objectReference: {fileID: 0}
2678
- - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
2935
+ m_RemovedComponents: []
2936
+ m_SourcePrefab: {fileID: 100100000, guid: b77895e168ab44fe3afb46107a02e625, type: 3}
2937
+ --- !u!224 &6292697818686726773 stripped
2938
+ RectTransform:
2939
+ m_CorrespondingSourceObject: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2940
+ type: 3}
2941
+ m_PrefabInstance: {fileID: 2127906077570460229}
2942
+ m_PrefabAsset: {fileID: 0}
2943
+ --- !u!1001 &5232560523274424228
2944
+ PrefabInstance:
2945
+ m_ObjectHideFlags: 0
2946
+ serializedVersion: 2
2947
+ m_Modification:
2948
+ m_TransformParent: {fileID: 464270301072575444}
2949
+ m_Modifications:
2950
+ - target: {fileID: 2072264701142551445, guid: b77895e168ab44fe3afb46107a02e625,
2679
2951
  type: 3}
2680
- propertyPath: m_LocalRotation.y
2952
+ propertyPath: m_AnchorMax.y
2681
2953
  value: 0
2682
2954
  objectReference: {fileID: 0}
2683
- - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
2955
+ - target: {fileID: 2072264701142551445, guid: b77895e168ab44fe3afb46107a02e625,
2684
2956
  type: 3}
2685
- propertyPath: m_LocalRotation.z
2957
+ propertyPath: m_AnchorMin.y
2958
+ value: 0
2959
+ objectReference: {fileID: 0}
2960
+ - target: {fileID: 2072264701142551445, guid: b77895e168ab44fe3afb46107a02e625,
2961
+ type: 3}
2962
+ propertyPath: m_SizeDelta.x
2963
+ value: 0
2964
+ objectReference: {fileID: 0}
2965
+ - target: {fileID: 2072264701142551445, guid: b77895e168ab44fe3afb46107a02e625,
2966
+ type: 3}
2967
+ propertyPath: m_AnchoredPosition.x
2968
+ value: 0
2969
+ objectReference: {fileID: 0}
2970
+ - target: {fileID: 2072264701142551445, guid: b77895e168ab44fe3afb46107a02e625,
2971
+ type: 3}
2972
+ propertyPath: m_AnchoredPosition.y
2973
+ value: 0
2974
+ objectReference: {fileID: 0}
2975
+ - target: {fileID: 2324818010811886262, guid: b77895e168ab44fe3afb46107a02e625,
2976
+ type: 3}
2977
+ propertyPath: m_AnchorMax.y
2978
+ value: 0
2979
+ objectReference: {fileID: 0}
2980
+ - target: {fileID: 2324818010811886262, guid: b77895e168ab44fe3afb46107a02e625,
2981
+ type: 3}
2982
+ propertyPath: m_AnchorMin.y
2983
+ value: 0
2984
+ objectReference: {fileID: 0}
2985
+ - target: {fileID: 2324818010811886262, guid: b77895e168ab44fe3afb46107a02e625,
2986
+ type: 3}
2987
+ propertyPath: m_AnchoredPosition.y
2988
+ value: 0
2989
+ objectReference: {fileID: 0}
2990
+ - target: {fileID: 2579277915501623318, guid: b77895e168ab44fe3afb46107a02e625,
2991
+ type: 3}
2992
+ propertyPath: m_AnchorMax.y
2993
+ value: 0
2994
+ objectReference: {fileID: 0}
2995
+ - target: {fileID: 2579277915501623318, guid: b77895e168ab44fe3afb46107a02e625,
2996
+ type: 3}
2997
+ propertyPath: m_AnchorMin.y
2998
+ value: 0
2999
+ objectReference: {fileID: 0}
3000
+ - target: {fileID: 2579277915501623318, guid: b77895e168ab44fe3afb46107a02e625,
3001
+ type: 3}
3002
+ propertyPath: m_SizeDelta.x
3003
+ value: 0
3004
+ objectReference: {fileID: 0}
3005
+ - target: {fileID: 2579277915501623318, guid: b77895e168ab44fe3afb46107a02e625,
3006
+ type: 3}
3007
+ propertyPath: m_AnchoredPosition.x
3008
+ value: 0
3009
+ objectReference: {fileID: 0}
3010
+ - target: {fileID: 3036184042501949033, guid: b77895e168ab44fe3afb46107a02e625,
3011
+ type: 3}
3012
+ propertyPath: m_AnchorMax.y
3013
+ value: 0
3014
+ objectReference: {fileID: 0}
3015
+ - target: {fileID: 3036184042501949033, guid: b77895e168ab44fe3afb46107a02e625,
3016
+ type: 3}
3017
+ propertyPath: m_AnchorMin.y
3018
+ value: 0
3019
+ objectReference: {fileID: 0}
3020
+ - target: {fileID: 3036184042501949033, guid: b77895e168ab44fe3afb46107a02e625,
3021
+ type: 3}
3022
+ propertyPath: m_AnchoredPosition.x
3023
+ value: 0
3024
+ objectReference: {fileID: 0}
3025
+ - target: {fileID: 3036184042501949033, guid: b77895e168ab44fe3afb46107a02e625,
3026
+ type: 3}
3027
+ propertyPath: m_AnchoredPosition.y
3028
+ value: 0
3029
+ objectReference: {fileID: 0}
3030
+ - target: {fileID: 3608485760012491867, guid: b77895e168ab44fe3afb46107a02e625,
3031
+ type: 3}
3032
+ propertyPath: m_AnchorMax.y
3033
+ value: 0
3034
+ objectReference: {fileID: 0}
3035
+ - target: {fileID: 3608485760012491867, guid: b77895e168ab44fe3afb46107a02e625,
3036
+ type: 3}
3037
+ propertyPath: m_AnchorMin.y
3038
+ value: 0
3039
+ objectReference: {fileID: 0}
3040
+ - target: {fileID: 3608485760012491867, guid: b77895e168ab44fe3afb46107a02e625,
3041
+ type: 3}
3042
+ propertyPath: m_AnchoredPosition.x
3043
+ value: 0
3044
+ objectReference: {fileID: 0}
3045
+ - target: {fileID: 3608485760012491867, guid: b77895e168ab44fe3afb46107a02e625,
3046
+ type: 3}
3047
+ propertyPath: m_AnchoredPosition.y
3048
+ value: 0
3049
+ objectReference: {fileID: 0}
3050
+ - target: {fileID: 4596519341252614809, guid: b77895e168ab44fe3afb46107a02e625,
3051
+ type: 3}
3052
+ propertyPath: m_AnchorMax.y
3053
+ value: 0
3054
+ objectReference: {fileID: 0}
3055
+ - target: {fileID: 4596519341252614809, guid: b77895e168ab44fe3afb46107a02e625,
3056
+ type: 3}
3057
+ propertyPath: m_AnchorMin.y
3058
+ value: 0
3059
+ objectReference: {fileID: 0}
3060
+ - target: {fileID: 4596519341252614809, guid: b77895e168ab44fe3afb46107a02e625,
3061
+ type: 3}
3062
+ propertyPath: m_SizeDelta.x
3063
+ value: 0
3064
+ objectReference: {fileID: 0}
3065
+ - target: {fileID: 4596519341252614809, guid: b77895e168ab44fe3afb46107a02e625,
3066
+ type: 3}
3067
+ propertyPath: m_AnchoredPosition.x
3068
+ value: 0
3069
+ objectReference: {fileID: 0}
3070
+ - target: {fileID: 4596519341252614809, guid: b77895e168ab44fe3afb46107a02e625,
3071
+ type: 3}
3072
+ propertyPath: m_AnchoredPosition.y
3073
+ value: 0
3074
+ objectReference: {fileID: 0}
3075
+ - target: {fileID: 5123061830255464326, guid: b77895e168ab44fe3afb46107a02e625,
3076
+ type: 3}
3077
+ propertyPath: m_AnchorMax.y
3078
+ value: 0
3079
+ objectReference: {fileID: 0}
3080
+ - target: {fileID: 5123061830255464326, guid: b77895e168ab44fe3afb46107a02e625,
3081
+ type: 3}
3082
+ propertyPath: m_AnchorMin.y
3083
+ value: 0
3084
+ objectReference: {fileID: 0}
3085
+ - target: {fileID: 5123061830255464326, guid: b77895e168ab44fe3afb46107a02e625,
3086
+ type: 3}
3087
+ propertyPath: m_SizeDelta.x
3088
+ value: 0
3089
+ objectReference: {fileID: 0}
3090
+ - target: {fileID: 5123061830255464326, guid: b77895e168ab44fe3afb46107a02e625,
3091
+ type: 3}
3092
+ propertyPath: m_AnchoredPosition.x
3093
+ value: 0
3094
+ objectReference: {fileID: 0}
3095
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3096
+ type: 3}
3097
+ propertyPath: m_Pivot.x
3098
+ value: 0.5
3099
+ objectReference: {fileID: 0}
3100
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3101
+ type: 3}
3102
+ propertyPath: m_Pivot.y
3103
+ value: 0.5
3104
+ objectReference: {fileID: 0}
3105
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3106
+ type: 3}
3107
+ propertyPath: m_RootOrder
3108
+ value: 2
3109
+ objectReference: {fileID: 0}
3110
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3111
+ type: 3}
3112
+ propertyPath: m_AnchorMax.x
3113
+ value: 0
3114
+ objectReference: {fileID: 0}
3115
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3116
+ type: 3}
3117
+ propertyPath: m_AnchorMax.y
3118
+ value: 0
3119
+ objectReference: {fileID: 0}
3120
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3121
+ type: 3}
3122
+ propertyPath: m_AnchorMin.x
3123
+ value: 0
3124
+ objectReference: {fileID: 0}
3125
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3126
+ type: 3}
3127
+ propertyPath: m_AnchorMin.y
3128
+ value: 0
3129
+ objectReference: {fileID: 0}
3130
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3131
+ type: 3}
3132
+ propertyPath: m_SizeDelta.x
3133
+ value: 0
3134
+ objectReference: {fileID: 0}
3135
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3136
+ type: 3}
3137
+ propertyPath: m_SizeDelta.y
3138
+ value: 0
3139
+ objectReference: {fileID: 0}
3140
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3141
+ type: 3}
3142
+ propertyPath: m_LocalPosition.x
3143
+ value: 0
3144
+ objectReference: {fileID: 0}
3145
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3146
+ type: 3}
3147
+ propertyPath: m_LocalPosition.y
3148
+ value: 0
3149
+ objectReference: {fileID: 0}
3150
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3151
+ type: 3}
3152
+ propertyPath: m_LocalPosition.z
3153
+ value: 0
3154
+ objectReference: {fileID: 0}
3155
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3156
+ type: 3}
3157
+ propertyPath: m_LocalRotation.w
3158
+ value: 1
3159
+ objectReference: {fileID: 0}
3160
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3161
+ type: 3}
3162
+ propertyPath: m_LocalRotation.x
3163
+ value: 0
3164
+ objectReference: {fileID: 0}
3165
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3166
+ type: 3}
3167
+ propertyPath: m_LocalRotation.y
3168
+ value: 0
3169
+ objectReference: {fileID: 0}
3170
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3171
+ type: 3}
3172
+ propertyPath: m_LocalRotation.z
3173
+ value: 0
3174
+ objectReference: {fileID: 0}
3175
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3176
+ type: 3}
3177
+ propertyPath: m_AnchoredPosition.x
3178
+ value: 0
3179
+ objectReference: {fileID: 0}
3180
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3181
+ type: 3}
3182
+ propertyPath: m_AnchoredPosition.y
3183
+ value: 0
3184
+ objectReference: {fileID: 0}
3185
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3186
+ type: 3}
3187
+ propertyPath: m_LocalEulerAnglesHint.x
3188
+ value: 0
3189
+ objectReference: {fileID: 0}
3190
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3191
+ type: 3}
3192
+ propertyPath: m_LocalEulerAnglesHint.y
3193
+ value: 0
3194
+ objectReference: {fileID: 0}
3195
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3196
+ type: 3}
3197
+ propertyPath: m_LocalEulerAnglesHint.z
3198
+ value: 0
3199
+ objectReference: {fileID: 0}
3200
+ - target: {fileID: 5391917194244900913, guid: b77895e168ab44fe3afb46107a02e625,
3201
+ type: 3}
3202
+ propertyPath: m_Name
3203
+ value: CurrencyDisplay
3204
+ objectReference: {fileID: 0}
3205
+ - target: {fileID: 5391917194349311979, guid: b77895e168ab44fe3afb46107a02e625,
3206
+ type: 3}
3207
+ propertyPath: m_AnchorMax.y
3208
+ value: 0
3209
+ objectReference: {fileID: 0}
3210
+ - target: {fileID: 5391917194349311979, guid: b77895e168ab44fe3afb46107a02e625,
3211
+ type: 3}
3212
+ propertyPath: m_AnchorMin.y
3213
+ value: 0
3214
+ objectReference: {fileID: 0}
3215
+ - target: {fileID: 5391917194349311979, guid: b77895e168ab44fe3afb46107a02e625,
3216
+ type: 3}
3217
+ propertyPath: m_SizeDelta.x
3218
+ value: 0
3219
+ objectReference: {fileID: 0}
3220
+ - target: {fileID: 5391917194349311979, guid: b77895e168ab44fe3afb46107a02e625,
3221
+ type: 3}
3222
+ propertyPath: m_AnchoredPosition.x
3223
+ value: 0
3224
+ objectReference: {fileID: 0}
3225
+ - target: {fileID: 5879033942466260015, guid: b77895e168ab44fe3afb46107a02e625,
3226
+ type: 3}
3227
+ propertyPath: m_AnchorMax.y
3228
+ value: 0
3229
+ objectReference: {fileID: 0}
3230
+ - target: {fileID: 5879033942466260015, guid: b77895e168ab44fe3afb46107a02e625,
3231
+ type: 3}
3232
+ propertyPath: m_AnchorMin.y
3233
+ value: 0
3234
+ objectReference: {fileID: 0}
3235
+ - target: {fileID: 5879033942466260015, guid: b77895e168ab44fe3afb46107a02e625,
3236
+ type: 3}
3237
+ propertyPath: m_SizeDelta.x
3238
+ value: 0
3239
+ objectReference: {fileID: 0}
3240
+ - target: {fileID: 5879033942466260015, guid: b77895e168ab44fe3afb46107a02e625,
3241
+ type: 3}
3242
+ propertyPath: m_AnchoredPosition.x
3243
+ value: 0
3244
+ objectReference: {fileID: 0}
3245
+ - target: {fileID: 5879033942466260015, guid: b77895e168ab44fe3afb46107a02e625,
3246
+ type: 3}
3247
+ propertyPath: m_AnchoredPosition.y
3248
+ value: 0
3249
+ objectReference: {fileID: 0}
3250
+ - target: {fileID: 7892739283145380869, guid: b77895e168ab44fe3afb46107a02e625,
3251
+ type: 3}
3252
+ propertyPath: m_AnchorMax.y
3253
+ value: 0
3254
+ objectReference: {fileID: 0}
3255
+ - target: {fileID: 7892739283145380869, guid: b77895e168ab44fe3afb46107a02e625,
3256
+ type: 3}
3257
+ propertyPath: m_AnchorMin.y
3258
+ value: 0
3259
+ objectReference: {fileID: 0}
3260
+ - target: {fileID: 7892739283145380869, guid: b77895e168ab44fe3afb46107a02e625,
3261
+ type: 3}
3262
+ propertyPath: m_AnchoredPosition.x
3263
+ value: 0
3264
+ objectReference: {fileID: 0}
3265
+ - target: {fileID: 7892739283145380869, guid: b77895e168ab44fe3afb46107a02e625,
3266
+ type: 3}
3267
+ propertyPath: m_AnchoredPosition.y
3268
+ value: 0
3269
+ objectReference: {fileID: 0}
3270
+ m_RemovedComponents: []
3271
+ m_SourcePrefab: {fileID: 100100000, guid: b77895e168ab44fe3afb46107a02e625, type: 3}
3272
+ --- !u!224 &166134060727977876 stripped
3273
+ RectTransform:
3274
+ m_CorrespondingSourceObject: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3275
+ type: 3}
3276
+ m_PrefabInstance: {fileID: 5232560523274424228}
3277
+ m_PrefabAsset: {fileID: 0}
3278
+ --- !u!1001 &6186771416564478990
3279
+ PrefabInstance:
3280
+ m_ObjectHideFlags: 0
3281
+ serializedVersion: 2
3282
+ m_Modification:
3283
+ m_TransformParent: {fileID: 5739712124588241270}
3284
+ m_Modifications:
3285
+ - target: {fileID: 2324818010811886262, guid: 0c9135b46e00444278ee4a2447e52d53,
3286
+ type: 3}
3287
+ propertyPath: m_AnchorMax.y
3288
+ value: 0
3289
+ objectReference: {fileID: 0}
3290
+ - target: {fileID: 2324818010811886262, guid: 0c9135b46e00444278ee4a2447e52d53,
3291
+ type: 3}
3292
+ propertyPath: m_AnchorMin.y
3293
+ value: 0
3294
+ objectReference: {fileID: 0}
3295
+ - target: {fileID: 2324818010811886262, guid: 0c9135b46e00444278ee4a2447e52d53,
3296
+ type: 3}
3297
+ propertyPath: m_AnchoredPosition.y
3298
+ value: 0
3299
+ objectReference: {fileID: 0}
3300
+ - target: {fileID: 2672318735609524403, guid: 0c9135b46e00444278ee4a2447e52d53,
3301
+ type: 3}
3302
+ propertyPath: m_AnchorMax.y
3303
+ value: 0
3304
+ objectReference: {fileID: 0}
3305
+ - target: {fileID: 2672318735609524403, guid: 0c9135b46e00444278ee4a2447e52d53,
3306
+ type: 3}
3307
+ propertyPath: m_AnchorMin.y
3308
+ value: 0
3309
+ objectReference: {fileID: 0}
3310
+ - target: {fileID: 2672318735609524403, guid: 0c9135b46e00444278ee4a2447e52d53,
3311
+ type: 3}
3312
+ propertyPath: m_AnchoredPosition.x
3313
+ value: 0
3314
+ objectReference: {fileID: 0}
3315
+ - target: {fileID: 2672318735609524403, guid: 0c9135b46e00444278ee4a2447e52d53,
3316
+ type: 3}
3317
+ propertyPath: m_AnchoredPosition.y
2686
3318
  value: 0
2687
3319
  objectReference: {fileID: 0}
2688
3320
  - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
2689
3321
  type: 3}
2690
- propertyPath: m_AnchoredPosition.x
3322
+ propertyPath: m_Pivot.x
3323
+ value: 0.5
3324
+ objectReference: {fileID: 0}
3325
+ - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3326
+ type: 3}
3327
+ propertyPath: m_Pivot.y
3328
+ value: 0.5
3329
+ objectReference: {fileID: 0}
3330
+ - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3331
+ type: 3}
3332
+ propertyPath: m_RootOrder
3333
+ value: 1
3334
+ objectReference: {fileID: 0}
3335
+ - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3336
+ type: 3}
3337
+ propertyPath: m_AnchorMax.x
3338
+ value: 0
3339
+ objectReference: {fileID: 0}
3340
+ - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3341
+ type: 3}
3342
+ propertyPath: m_AnchorMax.y
3343
+ value: 0
3344
+ objectReference: {fileID: 0}
3345
+ - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3346
+ type: 3}
3347
+ propertyPath: m_AnchorMin.x
3348
+ value: 0
3349
+ objectReference: {fileID: 0}
3350
+ - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3351
+ type: 3}
3352
+ propertyPath: m_AnchorMin.y
3353
+ value: 0
3354
+ objectReference: {fileID: 0}
3355
+ - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3356
+ type: 3}
3357
+ propertyPath: m_SizeDelta.x
3358
+ value: 0
3359
+ objectReference: {fileID: 0}
3360
+ - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3361
+ type: 3}
3362
+ propertyPath: m_SizeDelta.y
3363
+ value: 0
3364
+ objectReference: {fileID: 0}
3365
+ - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3366
+ type: 3}
3367
+ propertyPath: m_LocalPosition.x
3368
+ value: 0
3369
+ objectReference: {fileID: 0}
3370
+ - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3371
+ type: 3}
3372
+ propertyPath: m_LocalPosition.y
3373
+ value: 0
3374
+ objectReference: {fileID: 0}
3375
+ - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3376
+ type: 3}
3377
+ propertyPath: m_LocalPosition.z
3378
+ value: 0
3379
+ objectReference: {fileID: 0}
3380
+ - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3381
+ type: 3}
3382
+ propertyPath: m_LocalRotation.w
3383
+ value: 1
3384
+ objectReference: {fileID: 0}
3385
+ - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3386
+ type: 3}
3387
+ propertyPath: m_LocalRotation.x
3388
+ value: 0
3389
+ objectReference: {fileID: 0}
3390
+ - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3391
+ type: 3}
3392
+ propertyPath: m_LocalRotation.y
3393
+ value: 0
3394
+ objectReference: {fileID: 0}
3395
+ - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3396
+ type: 3}
3397
+ propertyPath: m_LocalRotation.z
3398
+ value: 0
3399
+ objectReference: {fileID: 0}
3400
+ - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3401
+ type: 3}
3402
+ propertyPath: m_AnchoredPosition.x
3403
+ value: 0
3404
+ objectReference: {fileID: 0}
3405
+ - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3406
+ type: 3}
3407
+ propertyPath: m_AnchoredPosition.y
3408
+ value: 0
3409
+ objectReference: {fileID: 0}
3410
+ - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3411
+ type: 3}
3412
+ propertyPath: m_LocalEulerAnglesHint.x
3413
+ value: 0
3414
+ objectReference: {fileID: 0}
3415
+ - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3416
+ type: 3}
3417
+ propertyPath: m_LocalEulerAnglesHint.y
3418
+ value: 0
3419
+ objectReference: {fileID: 0}
3420
+ - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3421
+ type: 3}
3422
+ propertyPath: m_LocalEulerAnglesHint.z
3423
+ value: 0
3424
+ objectReference: {fileID: 0}
3425
+ - target: {fileID: 5391917194244900913, guid: 0c9135b46e00444278ee4a2447e52d53,
3426
+ type: 3}
3427
+ propertyPath: m_Name
3428
+ value: ItemDisplay (2)
3429
+ objectReference: {fileID: 0}
3430
+ - target: {fileID: 5391917194349311979, guid: 0c9135b46e00444278ee4a2447e52d53,
3431
+ type: 3}
3432
+ propertyPath: m_AnchorMax.y
3433
+ value: 0
3434
+ objectReference: {fileID: 0}
3435
+ - target: {fileID: 5391917194349311979, guid: 0c9135b46e00444278ee4a2447e52d53,
3436
+ type: 3}
3437
+ propertyPath: m_AnchorMin.y
2691
3438
  value: 0
2692
3439
  objectReference: {fileID: 0}
2693
- - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3440
+ - target: {fileID: 5391917194349311979, guid: 0c9135b46e00444278ee4a2447e52d53,
2694
3441
  type: 3}
2695
- propertyPath: m_AnchoredPosition.y
3442
+ propertyPath: m_SizeDelta.x
2696
3443
  value: 0
2697
3444
  objectReference: {fileID: 0}
2698
- - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3445
+ - target: {fileID: 5391917194349311979, guid: 0c9135b46e00444278ee4a2447e52d53,
2699
3446
  type: 3}
2700
- propertyPath: m_LocalEulerAnglesHint.x
3447
+ propertyPath: m_AnchoredPosition.x
2701
3448
  value: 0
2702
3449
  objectReference: {fileID: 0}
2703
- - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3450
+ - target: {fileID: 5879033942466260015, guid: 0c9135b46e00444278ee4a2447e52d53,
2704
3451
  type: 3}
2705
- propertyPath: m_LocalEulerAnglesHint.y
3452
+ propertyPath: m_AnchorMax.y
2706
3453
  value: 0
2707
3454
  objectReference: {fileID: 0}
2708
- - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3455
+ - target: {fileID: 5879033942466260015, guid: 0c9135b46e00444278ee4a2447e52d53,
2709
3456
  type: 3}
2710
- propertyPath: m_LocalEulerAnglesHint.z
3457
+ propertyPath: m_AnchorMin.y
2711
3458
  value: 0
2712
3459
  objectReference: {fileID: 0}
2713
- - target: {fileID: 5391917194244900913, guid: 0c9135b46e00444278ee4a2447e52d53,
3460
+ - target: {fileID: 5879033942466260015, guid: 0c9135b46e00444278ee4a2447e52d53,
2714
3461
  type: 3}
2715
- propertyPath: m_Name
2716
- value: ItemDisplay (2)
3462
+ propertyPath: m_SizeDelta.x
3463
+ value: 0
3464
+ objectReference: {fileID: 0}
3465
+ - target: {fileID: 5879033942466260015, guid: 0c9135b46e00444278ee4a2447e52d53,
3466
+ type: 3}
3467
+ propertyPath: m_AnchoredPosition.x
3468
+ value: 0
2717
3469
  objectReference: {fileID: 0}
2718
- - target: {fileID: 5391917194349311978, guid: 0c9135b46e00444278ee4a2447e52d53,
3470
+ - target: {fileID: 5879033942466260015, guid: 0c9135b46e00444278ee4a2447e52d53,
2719
3471
  type: 3}
2720
- propertyPath: 'm_ActiveFontFeatures.Array.data[0]'
2721
- value: 1801810542
3472
+ propertyPath: m_AnchoredPosition.y
3473
+ value: 0
2722
3474
  objectReference: {fileID: 0}
2723
3475
  m_RemovedComponents: []
2724
- m_RemovedGameObjects: []
2725
- m_AddedGameObjects: []
2726
- m_AddedComponents: []
2727
3476
  m_SourcePrefab: {fileID: 100100000, guid: 0c9135b46e00444278ee4a2447e52d53, type: 3}
2728
3477
  --- !u!224 &2236076581914442814 stripped
2729
3478
  RectTransform:
@@ -2736,13 +3485,42 @@ PrefabInstance:
2736
3485
  m_ObjectHideFlags: 0
2737
3486
  serializedVersion: 2
2738
3487
  m_Modification:
2739
- serializedVersion: 3
2740
3488
  m_TransformParent: {fileID: 5739712124588241270}
2741
3489
  m_Modifications:
2742
- - target: {fileID: 2098431368448208046, guid: 0c9135b46e00444278ee4a2447e52d53,
3490
+ - target: {fileID: 2324818010811886262, guid: 0c9135b46e00444278ee4a2447e52d53,
3491
+ type: 3}
3492
+ propertyPath: m_AnchorMax.y
3493
+ value: 0
3494
+ objectReference: {fileID: 0}
3495
+ - target: {fileID: 2324818010811886262, guid: 0c9135b46e00444278ee4a2447e52d53,
3496
+ type: 3}
3497
+ propertyPath: m_AnchorMin.y
3498
+ value: 0
3499
+ objectReference: {fileID: 0}
3500
+ - target: {fileID: 2324818010811886262, guid: 0c9135b46e00444278ee4a2447e52d53,
3501
+ type: 3}
3502
+ propertyPath: m_AnchoredPosition.y
3503
+ value: 0
3504
+ objectReference: {fileID: 0}
3505
+ - target: {fileID: 2672318735609524403, guid: 0c9135b46e00444278ee4a2447e52d53,
3506
+ type: 3}
3507
+ propertyPath: m_AnchorMax.y
3508
+ value: 0
3509
+ objectReference: {fileID: 0}
3510
+ - target: {fileID: 2672318735609524403, guid: 0c9135b46e00444278ee4a2447e52d53,
3511
+ type: 3}
3512
+ propertyPath: m_AnchorMin.y
3513
+ value: 0
3514
+ objectReference: {fileID: 0}
3515
+ - target: {fileID: 2672318735609524403, guid: 0c9135b46e00444278ee4a2447e52d53,
3516
+ type: 3}
3517
+ propertyPath: m_AnchoredPosition.x
3518
+ value: 0
3519
+ objectReference: {fileID: 0}
3520
+ - target: {fileID: 2672318735609524403, guid: 0c9135b46e00444278ee4a2447e52d53,
2743
3521
  type: 3}
2744
- propertyPath: 'm_ActiveFontFeatures.Array.data[0]'
2745
- value: 1801810542
3522
+ propertyPath: m_AnchoredPosition.y
3523
+ value: 0
2746
3524
  objectReference: {fileID: 0}
2747
3525
  - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
2748
3526
  type: 3}
@@ -2754,6 +3532,11 @@ PrefabInstance:
2754
3532
  propertyPath: m_Pivot.y
2755
3533
  value: 0.5
2756
3534
  objectReference: {fileID: 0}
3535
+ - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
3536
+ type: 3}
3537
+ propertyPath: m_RootOrder
3538
+ value: 2
3539
+ objectReference: {fileID: 0}
2757
3540
  - target: {fileID: 5391917194244900912, guid: 0c9135b46e00444278ee4a2447e52d53,
2758
3541
  type: 3}
2759
3542
  propertyPath: m_AnchorMax.x
@@ -2849,15 +3632,52 @@ PrefabInstance:
2849
3632
  propertyPath: m_Name
2850
3633
  value: ItemDisplay (1)
2851
3634
  objectReference: {fileID: 0}
2852
- - target: {fileID: 5391917194349311978, guid: 0c9135b46e00444278ee4a2447e52d53,
3635
+ - target: {fileID: 5391917194349311979, guid: 0c9135b46e00444278ee4a2447e52d53,
3636
+ type: 3}
3637
+ propertyPath: m_AnchorMax.y
3638
+ value: 0
3639
+ objectReference: {fileID: 0}
3640
+ - target: {fileID: 5391917194349311979, guid: 0c9135b46e00444278ee4a2447e52d53,
3641
+ type: 3}
3642
+ propertyPath: m_AnchorMin.y
3643
+ value: 0
3644
+ objectReference: {fileID: 0}
3645
+ - target: {fileID: 5391917194349311979, guid: 0c9135b46e00444278ee4a2447e52d53,
3646
+ type: 3}
3647
+ propertyPath: m_SizeDelta.x
3648
+ value: 0
3649
+ objectReference: {fileID: 0}
3650
+ - target: {fileID: 5391917194349311979, guid: 0c9135b46e00444278ee4a2447e52d53,
3651
+ type: 3}
3652
+ propertyPath: m_AnchoredPosition.x
3653
+ value: 0
3654
+ objectReference: {fileID: 0}
3655
+ - target: {fileID: 5879033942466260015, guid: 0c9135b46e00444278ee4a2447e52d53,
3656
+ type: 3}
3657
+ propertyPath: m_AnchorMax.y
3658
+ value: 0
3659
+ objectReference: {fileID: 0}
3660
+ - target: {fileID: 5879033942466260015, guid: 0c9135b46e00444278ee4a2447e52d53,
3661
+ type: 3}
3662
+ propertyPath: m_AnchorMin.y
3663
+ value: 0
3664
+ objectReference: {fileID: 0}
3665
+ - target: {fileID: 5879033942466260015, guid: 0c9135b46e00444278ee4a2447e52d53,
3666
+ type: 3}
3667
+ propertyPath: m_SizeDelta.x
3668
+ value: 0
3669
+ objectReference: {fileID: 0}
3670
+ - target: {fileID: 5879033942466260015, guid: 0c9135b46e00444278ee4a2447e52d53,
3671
+ type: 3}
3672
+ propertyPath: m_AnchoredPosition.x
3673
+ value: 0
3674
+ objectReference: {fileID: 0}
3675
+ - target: {fileID: 5879033942466260015, guid: 0c9135b46e00444278ee4a2447e52d53,
2853
3676
  type: 3}
2854
- propertyPath: 'm_ActiveFontFeatures.Array.data[0]'
2855
- value: 1801810542
3677
+ propertyPath: m_AnchoredPosition.y
3678
+ value: 0
2856
3679
  objectReference: {fileID: 0}
2857
3680
  m_RemovedComponents: []
2858
- m_RemovedGameObjects: []
2859
- m_AddedGameObjects: []
2860
- m_AddedComponents: []
2861
3681
  m_SourcePrefab: {fileID: 100100000, guid: 0c9135b46e00444278ee4a2447e52d53, type: 3}
2862
3682
  --- !u!224 &1463883435393356259 stripped
2863
3683
  RectTransform:
@@ -2870,13 +3690,152 @@ PrefabInstance:
2870
3690
  m_ObjectHideFlags: 0
2871
3691
  serializedVersion: 2
2872
3692
  m_Modification:
2873
- serializedVersion: 3
2874
3693
  m_TransformParent: {fileID: 464270301072575444}
2875
3694
  m_Modifications:
2876
- - target: {fileID: 2098431368448208046, guid: b77895e168ab44fe3afb46107a02e625,
3695
+ - target: {fileID: 2072264701142551445, guid: b77895e168ab44fe3afb46107a02e625,
3696
+ type: 3}
3697
+ propertyPath: m_AnchorMax.y
3698
+ value: 0
3699
+ objectReference: {fileID: 0}
3700
+ - target: {fileID: 2072264701142551445, guid: b77895e168ab44fe3afb46107a02e625,
3701
+ type: 3}
3702
+ propertyPath: m_AnchorMin.y
3703
+ value: 0
3704
+ objectReference: {fileID: 0}
3705
+ - target: {fileID: 2072264701142551445, guid: b77895e168ab44fe3afb46107a02e625,
3706
+ type: 3}
3707
+ propertyPath: m_SizeDelta.x
3708
+ value: 0
3709
+ objectReference: {fileID: 0}
3710
+ - target: {fileID: 2072264701142551445, guid: b77895e168ab44fe3afb46107a02e625,
3711
+ type: 3}
3712
+ propertyPath: m_AnchoredPosition.x
3713
+ value: 0
3714
+ objectReference: {fileID: 0}
3715
+ - target: {fileID: 2072264701142551445, guid: b77895e168ab44fe3afb46107a02e625,
3716
+ type: 3}
3717
+ propertyPath: m_AnchoredPosition.y
3718
+ value: 0
3719
+ objectReference: {fileID: 0}
3720
+ - target: {fileID: 2324818010811886262, guid: b77895e168ab44fe3afb46107a02e625,
3721
+ type: 3}
3722
+ propertyPath: m_AnchorMax.y
3723
+ value: 0
3724
+ objectReference: {fileID: 0}
3725
+ - target: {fileID: 2324818010811886262, guid: b77895e168ab44fe3afb46107a02e625,
3726
+ type: 3}
3727
+ propertyPath: m_AnchorMin.y
3728
+ value: 0
3729
+ objectReference: {fileID: 0}
3730
+ - target: {fileID: 2324818010811886262, guid: b77895e168ab44fe3afb46107a02e625,
3731
+ type: 3}
3732
+ propertyPath: m_AnchoredPosition.y
3733
+ value: 0
3734
+ objectReference: {fileID: 0}
3735
+ - target: {fileID: 2579277915501623318, guid: b77895e168ab44fe3afb46107a02e625,
3736
+ type: 3}
3737
+ propertyPath: m_AnchorMax.y
3738
+ value: 0
3739
+ objectReference: {fileID: 0}
3740
+ - target: {fileID: 2579277915501623318, guid: b77895e168ab44fe3afb46107a02e625,
3741
+ type: 3}
3742
+ propertyPath: m_AnchorMin.y
3743
+ value: 0
3744
+ objectReference: {fileID: 0}
3745
+ - target: {fileID: 2579277915501623318, guid: b77895e168ab44fe3afb46107a02e625,
3746
+ type: 3}
3747
+ propertyPath: m_SizeDelta.x
3748
+ value: 0
3749
+ objectReference: {fileID: 0}
3750
+ - target: {fileID: 2579277915501623318, guid: b77895e168ab44fe3afb46107a02e625,
3751
+ type: 3}
3752
+ propertyPath: m_AnchoredPosition.x
3753
+ value: 0
3754
+ objectReference: {fileID: 0}
3755
+ - target: {fileID: 3036184042501949033, guid: b77895e168ab44fe3afb46107a02e625,
3756
+ type: 3}
3757
+ propertyPath: m_AnchorMax.y
3758
+ value: 0
3759
+ objectReference: {fileID: 0}
3760
+ - target: {fileID: 3036184042501949033, guid: b77895e168ab44fe3afb46107a02e625,
3761
+ type: 3}
3762
+ propertyPath: m_AnchorMin.y
3763
+ value: 0
3764
+ objectReference: {fileID: 0}
3765
+ - target: {fileID: 3036184042501949033, guid: b77895e168ab44fe3afb46107a02e625,
3766
+ type: 3}
3767
+ propertyPath: m_AnchoredPosition.x
3768
+ value: 0
3769
+ objectReference: {fileID: 0}
3770
+ - target: {fileID: 3036184042501949033, guid: b77895e168ab44fe3afb46107a02e625,
3771
+ type: 3}
3772
+ propertyPath: m_AnchoredPosition.y
3773
+ value: 0
3774
+ objectReference: {fileID: 0}
3775
+ - target: {fileID: 3608485760012491867, guid: b77895e168ab44fe3afb46107a02e625,
3776
+ type: 3}
3777
+ propertyPath: m_AnchorMax.y
3778
+ value: 0
3779
+ objectReference: {fileID: 0}
3780
+ - target: {fileID: 3608485760012491867, guid: b77895e168ab44fe3afb46107a02e625,
3781
+ type: 3}
3782
+ propertyPath: m_AnchorMin.y
3783
+ value: 0
3784
+ objectReference: {fileID: 0}
3785
+ - target: {fileID: 3608485760012491867, guid: b77895e168ab44fe3afb46107a02e625,
3786
+ type: 3}
3787
+ propertyPath: m_AnchoredPosition.x
3788
+ value: 0
3789
+ objectReference: {fileID: 0}
3790
+ - target: {fileID: 3608485760012491867, guid: b77895e168ab44fe3afb46107a02e625,
3791
+ type: 3}
3792
+ propertyPath: m_AnchoredPosition.y
3793
+ value: 0
3794
+ objectReference: {fileID: 0}
3795
+ - target: {fileID: 4596519341252614809, guid: b77895e168ab44fe3afb46107a02e625,
3796
+ type: 3}
3797
+ propertyPath: m_AnchorMax.y
3798
+ value: 0
3799
+ objectReference: {fileID: 0}
3800
+ - target: {fileID: 4596519341252614809, guid: b77895e168ab44fe3afb46107a02e625,
3801
+ type: 3}
3802
+ propertyPath: m_AnchorMin.y
3803
+ value: 0
3804
+ objectReference: {fileID: 0}
3805
+ - target: {fileID: 4596519341252614809, guid: b77895e168ab44fe3afb46107a02e625,
3806
+ type: 3}
3807
+ propertyPath: m_SizeDelta.x
3808
+ value: 0
3809
+ objectReference: {fileID: 0}
3810
+ - target: {fileID: 4596519341252614809, guid: b77895e168ab44fe3afb46107a02e625,
3811
+ type: 3}
3812
+ propertyPath: m_AnchoredPosition.x
3813
+ value: 0
3814
+ objectReference: {fileID: 0}
3815
+ - target: {fileID: 4596519341252614809, guid: b77895e168ab44fe3afb46107a02e625,
3816
+ type: 3}
3817
+ propertyPath: m_AnchoredPosition.y
3818
+ value: 0
3819
+ objectReference: {fileID: 0}
3820
+ - target: {fileID: 5123061830255464326, guid: b77895e168ab44fe3afb46107a02e625,
3821
+ type: 3}
3822
+ propertyPath: m_AnchorMax.y
3823
+ value: 0
3824
+ objectReference: {fileID: 0}
3825
+ - target: {fileID: 5123061830255464326, guid: b77895e168ab44fe3afb46107a02e625,
3826
+ type: 3}
3827
+ propertyPath: m_AnchorMin.y
3828
+ value: 0
3829
+ objectReference: {fileID: 0}
3830
+ - target: {fileID: 5123061830255464326, guid: b77895e168ab44fe3afb46107a02e625,
3831
+ type: 3}
3832
+ propertyPath: m_SizeDelta.x
3833
+ value: 0
3834
+ objectReference: {fileID: 0}
3835
+ - target: {fileID: 5123061830255464326, guid: b77895e168ab44fe3afb46107a02e625,
2877
3836
  type: 3}
2878
- propertyPath: 'm_ActiveFontFeatures.Array.data[0]'
2879
- value: 1801810542
3837
+ propertyPath: m_AnchoredPosition.x
3838
+ value: 0
2880
3839
  objectReference: {fileID: 0}
2881
3840
  - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2882
3841
  type: 3}
@@ -2888,6 +3847,11 @@ PrefabInstance:
2888
3847
  propertyPath: m_Pivot.y
2889
3848
  value: 0.5
2890
3849
  objectReference: {fileID: 0}
3850
+ - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
3851
+ type: 3}
3852
+ propertyPath: m_RootOrder
3853
+ value: 3
3854
+ objectReference: {fileID: 0}
2891
3855
  - target: {fileID: 5391917194244900912, guid: b77895e168ab44fe3afb46107a02e625,
2892
3856
  type: 3}
2893
3857
  propertyPath: m_AnchorMax.x
@@ -2983,15 +3947,72 @@ PrefabInstance:
2983
3947
  propertyPath: m_Name
2984
3948
  value: CurrencyDisplay (3)
2985
3949
  objectReference: {fileID: 0}
2986
- - target: {fileID: 5391917194349311978, guid: b77895e168ab44fe3afb46107a02e625,
3950
+ - target: {fileID: 5391917194349311979, guid: b77895e168ab44fe3afb46107a02e625,
3951
+ type: 3}
3952
+ propertyPath: m_AnchorMax.y
3953
+ value: 0
3954
+ objectReference: {fileID: 0}
3955
+ - target: {fileID: 5391917194349311979, guid: b77895e168ab44fe3afb46107a02e625,
3956
+ type: 3}
3957
+ propertyPath: m_AnchorMin.y
3958
+ value: 0
3959
+ objectReference: {fileID: 0}
3960
+ - target: {fileID: 5391917194349311979, guid: b77895e168ab44fe3afb46107a02e625,
3961
+ type: 3}
3962
+ propertyPath: m_SizeDelta.x
3963
+ value: 0
3964
+ objectReference: {fileID: 0}
3965
+ - target: {fileID: 5391917194349311979, guid: b77895e168ab44fe3afb46107a02e625,
3966
+ type: 3}
3967
+ propertyPath: m_AnchoredPosition.x
3968
+ value: 0
3969
+ objectReference: {fileID: 0}
3970
+ - target: {fileID: 5879033942466260015, guid: b77895e168ab44fe3afb46107a02e625,
3971
+ type: 3}
3972
+ propertyPath: m_AnchorMax.y
3973
+ value: 0
3974
+ objectReference: {fileID: 0}
3975
+ - target: {fileID: 5879033942466260015, guid: b77895e168ab44fe3afb46107a02e625,
3976
+ type: 3}
3977
+ propertyPath: m_AnchorMin.y
3978
+ value: 0
3979
+ objectReference: {fileID: 0}
3980
+ - target: {fileID: 5879033942466260015, guid: b77895e168ab44fe3afb46107a02e625,
3981
+ type: 3}
3982
+ propertyPath: m_SizeDelta.x
3983
+ value: 0
3984
+ objectReference: {fileID: 0}
3985
+ - target: {fileID: 5879033942466260015, guid: b77895e168ab44fe3afb46107a02e625,
3986
+ type: 3}
3987
+ propertyPath: m_AnchoredPosition.x
3988
+ value: 0
3989
+ objectReference: {fileID: 0}
3990
+ - target: {fileID: 5879033942466260015, guid: b77895e168ab44fe3afb46107a02e625,
3991
+ type: 3}
3992
+ propertyPath: m_AnchoredPosition.y
3993
+ value: 0
3994
+ objectReference: {fileID: 0}
3995
+ - target: {fileID: 7892739283145380869, guid: b77895e168ab44fe3afb46107a02e625,
3996
+ type: 3}
3997
+ propertyPath: m_AnchorMax.y
3998
+ value: 0
3999
+ objectReference: {fileID: 0}
4000
+ - target: {fileID: 7892739283145380869, guid: b77895e168ab44fe3afb46107a02e625,
4001
+ type: 3}
4002
+ propertyPath: m_AnchorMin.y
4003
+ value: 0
4004
+ objectReference: {fileID: 0}
4005
+ - target: {fileID: 7892739283145380869, guid: b77895e168ab44fe3afb46107a02e625,
4006
+ type: 3}
4007
+ propertyPath: m_AnchoredPosition.x
4008
+ value: 0
4009
+ objectReference: {fileID: 0}
4010
+ - target: {fileID: 7892739283145380869, guid: b77895e168ab44fe3afb46107a02e625,
2987
4011
  type: 3}
2988
- propertyPath: 'm_ActiveFontFeatures.Array.data[0]'
2989
- value: 1801810542
4012
+ propertyPath: m_AnchoredPosition.y
4013
+ value: 0
2990
4014
  objectReference: {fileID: 0}
2991
4015
  m_RemovedComponents: []
2992
- m_RemovedGameObjects: []
2993
- m_AddedGameObjects: []
2994
- m_AddedComponents: []
2995
4016
  m_SourcePrefab: {fileID: 100100000, guid: b77895e168ab44fe3afb46107a02e625, type: 3}
2996
4017
  --- !u!224 &3337663821819485816 stripped
2997
4018
  RectTransform: