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
@@ -35,8 +35,8 @@ RectTransform:
35
35
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
36
36
  m_AnchorMin: {x: 0, y: 0.5}
37
37
  m_AnchorMax: {x: 0, y: 0.5}
38
- m_AnchoredPosition: {x: 150, y: 0}
39
- m_SizeDelta: {x: 300, y: 80}
38
+ m_AnchoredPosition: {x: 104.41733, y: 0}
39
+ m_SizeDelta: {x: 208.8346, y: 40}
40
40
  m_Pivot: {x: 0.5, y: 0.5}
41
41
  --- !u!222 &3738557962987001228
42
42
  CanvasRenderer:
@@ -69,7 +69,8 @@ MonoBehaviour:
69
69
  m_text: 'Size:'
70
70
  m_isRightToLeft: 0
71
71
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
72
- m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
72
+ m_sharedMaterial: {fileID: -8116913167181615731, guid: e8dc0ebc54e472548a685f67d318d23f,
73
+ type: 2}
73
74
  m_fontSharedMaterials: []
74
75
  m_fontMaterial: {fileID: 0}
75
76
  m_fontMaterials: []
@@ -93,13 +94,13 @@ MonoBehaviour:
93
94
  m_faceColor:
94
95
  serializedVersion: 2
95
96
  rgba: 4294967295
96
- m_fontSize: 71.6
97
- m_fontSizeBase: 36
97
+ m_fontSize: 30
98
+ m_fontSizeBase: 30
98
99
  m_fontWeight: 400
99
- m_enableAutoSizing: 1
100
+ m_enableAutoSizing: 0
100
101
  m_fontSizeMin: 18
101
102
  m_fontSizeMax: 72
102
- m_fontStyle: 0
103
+ m_fontStyle: 1
103
104
  m_HorizontalAlignment: 4
104
105
  m_VerticalAlignment: 512
105
106
  m_textAlignment: 65535
@@ -109,7 +110,7 @@ MonoBehaviour:
109
110
  m_lineSpacingMax: 0
110
111
  m_paragraphSpacing: 0
111
112
  m_charWidthMaxAdj: 0
112
- m_enableWordWrapping: 1
113
+ m_enableWordWrapping: 0
113
114
  m_wordWrappingRatios: 0.4
114
115
  m_overflowMode: 0
115
116
  m_linkedTextComponent: {fileID: 0}
@@ -132,7 +133,7 @@ MonoBehaviour:
132
133
  m_margin: {x: 0, y: 0, z: 0, w: 0}
133
134
  m_isUsingLegacyAnimationComponent: 0
134
135
  m_isVolumetricText: 0
135
- m_hasFontAssetChanged: 0
136
+ m_hasFontAssetChanged: 1
136
137
  m_baseMaterial: {fileID: 0}
137
138
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
138
139
  --- !u!1 &121142285314014601
@@ -201,10 +202,11 @@ MonoBehaviour:
201
202
  m_OnCullStateChanged:
202
203
  m_PersistentCalls:
203
204
  m_Calls: []
204
- m_text: Use this
205
+ m_text: Use Local Data
205
206
  m_isRightToLeft: 0
206
207
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
207
- m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
208
+ m_sharedMaterial: {fileID: -8116913167181615731, guid: e8dc0ebc54e472548a685f67d318d23f,
209
+ type: 2}
208
210
  m_fontSharedMaterials: []
209
211
  m_fontMaterial: {fileID: 0}
210
212
  m_fontMaterials: []
@@ -234,7 +236,7 @@ MonoBehaviour:
234
236
  m_enableAutoSizing: 0
235
237
  m_fontSizeMin: 18
236
238
  m_fontSizeMax: 72
237
- m_fontStyle: 0
239
+ m_fontStyle: 1
238
240
  m_HorizontalAlignment: 2
239
241
  m_VerticalAlignment: 512
240
242
  m_textAlignment: 65535
@@ -244,7 +246,7 @@ MonoBehaviour:
244
246
  m_lineSpacingMax: 0
245
247
  m_paragraphSpacing: 0
246
248
  m_charWidthMaxAdj: 0
247
- m_enableWordWrapping: 1
249
+ m_enableWordWrapping: 0
248
250
  m_wordWrappingRatios: 0.4
249
251
  m_overflowMode: 0
250
252
  m_linkedTextComponent: {fileID: 0}
@@ -267,7 +269,7 @@ MonoBehaviour:
267
269
  m_margin: {x: 0, y: 0, z: 0, w: 0}
268
270
  m_isUsingLegacyAnimationComponent: 0
269
271
  m_isVolumetricText: 0
270
- m_hasFontAssetChanged: 0
272
+ m_hasFontAssetChanged: 1
271
273
  m_baseMaterial: {fileID: 0}
272
274
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
273
275
  --- !u!1 &140866339897032702
@@ -305,8 +307,8 @@ RectTransform:
305
307
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
306
308
  m_AnchorMin: {x: 0, y: 0.5}
307
309
  m_AnchorMax: {x: 0, y: 0.5}
308
- m_AnchoredPosition: {x: 600.087, y: 0}
309
- m_SizeDelta: {x: 550, y: 80}
310
+ m_AnchoredPosition: {x: 428.6092, y: 0}
311
+ m_SizeDelta: {x: 408.4793, y: 40}
310
312
  m_Pivot: {x: 0.5, y: 0.5}
311
313
  --- !u!222 &8708416425650680499
312
314
  CanvasRenderer:
@@ -339,7 +341,8 @@ MonoBehaviour:
339
341
  m_text: Value
340
342
  m_isRightToLeft: 0
341
343
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
342
- m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
344
+ m_sharedMaterial: {fileID: -8116913167181615731, guid: e8dc0ebc54e472548a685f67d318d23f,
345
+ type: 2}
343
346
  m_fontSharedMaterials: []
344
347
  m_fontMaterial: {fileID: 0}
345
348
  m_fontMaterials: []
@@ -363,15 +366,15 @@ MonoBehaviour:
363
366
  m_faceColor:
364
367
  serializedVersion: 2
365
368
  rgba: 4294967295
366
- m_fontSize: 71.6
367
- m_fontSizeBase: 36
369
+ m_fontSize: 25
370
+ m_fontSizeBase: 25
368
371
  m_fontWeight: 400
369
372
  m_enableAutoSizing: 1
370
- m_fontSizeMin: 18
371
- m_fontSizeMax: 72
373
+ m_fontSizeMin: 15
374
+ m_fontSizeMax: 25
372
375
  m_fontStyle: 0
373
376
  m_HorizontalAlignment: 1
374
- m_VerticalAlignment: 256
377
+ m_VerticalAlignment: 512
375
378
  m_textAlignment: 65535
376
379
  m_characterSpacing: 0
377
380
  m_wordSpacing: 0
@@ -379,7 +382,7 @@ MonoBehaviour:
379
382
  m_lineSpacingMax: 0
380
383
  m_paragraphSpacing: 0
381
384
  m_charWidthMaxAdj: 0
382
- m_enableWordWrapping: 1
385
+ m_enableWordWrapping: 0
383
386
  m_wordWrappingRatios: 0.4
384
387
  m_overflowMode: 0
385
388
  m_linkedTextComponent: {fileID: 0}
@@ -402,7 +405,7 @@ MonoBehaviour:
402
405
  m_margin: {x: 0, y: 0, z: 0, w: 0}
403
406
  m_isUsingLegacyAnimationComponent: 0
404
407
  m_isVolumetricText: 0
405
- m_hasFontAssetChanged: 0
408
+ m_hasFontAssetChanged: 1
406
409
  m_baseMaterial: {fileID: 0}
407
410
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
408
411
  --- !u!1 &224201481518436984
@@ -439,12 +442,12 @@ RectTransform:
439
442
  - {fileID: 5671971099534195326}
440
443
  - {fileID: 3869093306991227496}
441
444
  m_Father: {fileID: 4006703200713162677}
442
- m_RootOrder: 2
445
+ m_RootOrder: 3
443
446
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
444
447
  m_AnchorMin: {x: 0, y: 1}
445
448
  m_AnchorMax: {x: 0, y: 1}
446
- m_AnchoredPosition: {x: 1525.761, y: -540}
447
- m_SizeDelta: {x: 917.17395, y: 680}
449
+ m_AnchoredPosition: {x: 1218.608, y: -448.92725}
450
+ m_SizeDelta: {x: 712.40533, y: 497.8545}
448
451
  m_Pivot: {x: 0.5, y: 0.5}
449
452
  --- !u!222 &3520678302922798130
450
453
  CanvasRenderer:
@@ -467,14 +470,14 @@ MonoBehaviour:
467
470
  m_Name:
468
471
  m_EditorClassIdentifier:
469
472
  m_Material: {fileID: 0}
470
- m_Color: {r: 1, g: 1, b: 1, a: 0.392}
473
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
471
474
  m_RaycastTarget: 1
472
475
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
473
476
  m_Maskable: 1
474
477
  m_OnCullStateChanged:
475
478
  m_PersistentCalls:
476
479
  m_Calls: []
477
- m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0}
480
+ m_Sprite: {fileID: 21300000, guid: c67b2dc399757344d9e3f98c9a324730, type: 3}
478
481
  m_Type: 1
479
482
  m_PreserveAspect: 0
480
483
  m_FillCenter: 1
@@ -483,7 +486,7 @@ MonoBehaviour:
483
486
  m_FillClockwise: 1
484
487
  m_FillOrigin: 0
485
488
  m_UseSpriteMesh: 0
486
- m_PixelsPerUnitMultiplier: 1
489
+ m_PixelsPerUnitMultiplier: 3
487
490
  --- !u!1 &457253912347021486
488
491
  GameObject:
489
492
  m_ObjectHideFlags: 0
@@ -519,8 +522,8 @@ RectTransform:
519
522
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
520
523
  m_AnchorMin: {x: 0, y: 1}
521
524
  m_AnchorMax: {x: 0, y: 1}
522
- m_AnchoredPosition: {x: 0, y: -240}
523
- m_SizeDelta: {x: 0, y: 80}
525
+ m_AnchoredPosition: {x: 311.9606, y: -140}
526
+ m_SizeDelta: {x: 623.9212, y: 40}
524
527
  m_Pivot: {x: 0.5, y: 0.5}
525
528
  --- !u!1 &529660550595129674
526
529
  GameObject:
@@ -557,8 +560,8 @@ RectTransform:
557
560
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
558
561
  m_AnchorMin: {x: 0, y: 0.5}
559
562
  m_AnchorMax: {x: 0, y: 0.5}
560
- m_AnchoredPosition: {x: 600.087, y: 0}
561
- m_SizeDelta: {x: 550, y: 80}
563
+ m_AnchoredPosition: {x: 425.14316, y: 0}
564
+ m_SizeDelta: {x: 386.4258, y: 40}
562
565
  m_Pivot: {x: 0.5, y: 0.5}
563
566
  --- !u!222 &6981634960504874422
564
567
  CanvasRenderer:
@@ -591,7 +594,8 @@ MonoBehaviour:
591
594
  m_text: Value
592
595
  m_isRightToLeft: 0
593
596
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
594
- m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
597
+ m_sharedMaterial: {fileID: -8116913167181615731, guid: e8dc0ebc54e472548a685f67d318d23f,
598
+ type: 2}
595
599
  m_fontSharedMaterials: []
596
600
  m_fontMaterial: {fileID: 0}
597
601
  m_fontMaterials: []
@@ -615,15 +619,15 @@ MonoBehaviour:
615
619
  m_faceColor:
616
620
  serializedVersion: 2
617
621
  rgba: 4294967295
618
- m_fontSize: 71.6
619
- m_fontSizeBase: 36
622
+ m_fontSize: 30
623
+ m_fontSizeBase: 30
620
624
  m_fontWeight: 400
621
625
  m_enableAutoSizing: 1
622
- m_fontSizeMin: 18
623
- m_fontSizeMax: 72
626
+ m_fontSizeMin: 15
627
+ m_fontSizeMax: 30
624
628
  m_fontStyle: 0
625
629
  m_HorizontalAlignment: 1
626
- m_VerticalAlignment: 256
630
+ m_VerticalAlignment: 512
627
631
  m_textAlignment: 65535
628
632
  m_characterSpacing: 0
629
633
  m_wordSpacing: 0
@@ -631,7 +635,7 @@ MonoBehaviour:
631
635
  m_lineSpacingMax: 0
632
636
  m_paragraphSpacing: 0
633
637
  m_charWidthMaxAdj: 0
634
- m_enableWordWrapping: 1
638
+ m_enableWordWrapping: 0
635
639
  m_wordWrappingRatios: 0.4
636
640
  m_overflowMode: 0
637
641
  m_linkedTextComponent: {fileID: 0}
@@ -654,7 +658,7 @@ MonoBehaviour:
654
658
  m_margin: {x: 0, y: 0, z: 0, w: 0}
655
659
  m_isUsingLegacyAnimationComponent: 0
656
660
  m_isVolumetricText: 0
657
- m_hasFontAssetChanged: 0
661
+ m_hasFontAssetChanged: 1
658
662
  m_baseMaterial: {fileID: 0}
659
663
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
660
664
  --- !u!1 &635883761041762155
@@ -668,7 +672,6 @@ GameObject:
668
672
  - component: {fileID: 635883761041762154}
669
673
  - component: {fileID: 8789708553362360361}
670
674
  - component: {fileID: 635883761041762152}
671
- - component: {fileID: 635883761041762153}
672
675
  m_Layer: 5
673
676
  m_Name: HomePage
674
677
  m_TagString: Untagged
@@ -688,13 +691,15 @@ RectTransform:
688
691
  m_LocalScale: {x: 1, y: 1, z: 1}
689
692
  m_ConstrainProportionsScale: 0
690
693
  m_Children:
694
+ - {fileID: 2103088632608135601}
695
+ - {fileID: 4237927707244662816}
696
+ - {fileID: 8535982542353518912}
697
+ - {fileID: 3926565731079161751}
691
698
  - {fileID: 8252200912230221115}
692
699
  - {fileID: 8308873473696877731}
693
700
  - {fileID: 6276430876606665999}
694
701
  - {fileID: 3559295305712485210}
695
702
  - {fileID: 1229157888939033911}
696
- - {fileID: 8535982542353518912}
697
- - {fileID: 3926565731079161751}
698
703
  m_Father: {fileID: 0}
699
704
  m_RootOrder: 0
700
705
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
@@ -741,36 +746,6 @@ CanvasRenderer:
741
746
  m_PrefabAsset: {fileID: 0}
742
747
  m_GameObject: {fileID: 635883761041762155}
743
748
  m_CullTransparentMesh: 1
744
- --- !u!114 &635883761041762153
745
- MonoBehaviour:
746
- m_ObjectHideFlags: 0
747
- m_CorrespondingSourceObject: {fileID: 0}
748
- m_PrefabInstance: {fileID: 0}
749
- m_PrefabAsset: {fileID: 0}
750
- m_GameObject: {fileID: 635883761041762155}
751
- m_Enabled: 1
752
- m_EditorHideFlags: 0
753
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
754
- m_Name:
755
- m_EditorClassIdentifier:
756
- m_Material: {fileID: 0}
757
- m_Color: {r: 0, g: 0, b: 0, a: 0.40392157}
758
- m_RaycastTarget: 1
759
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
760
- m_Maskable: 1
761
- m_OnCullStateChanged:
762
- m_PersistentCalls:
763
- m_Calls: []
764
- m_Sprite: {fileID: 0}
765
- m_Type: 0
766
- m_PreserveAspect: 0
767
- m_FillCenter: 1
768
- m_FillMethod: 4
769
- m_FillAmount: 1
770
- m_FillClockwise: 1
771
- m_FillOrigin: 0
772
- m_UseSpriteMesh: 0
773
- m_PixelsPerUnitMultiplier: 1
774
749
  --- !u!1 &680856500707757241
775
750
  GameObject:
776
751
  m_ObjectHideFlags: 0
@@ -882,8 +857,8 @@ RectTransform:
882
857
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
883
858
  m_AnchorMin: {x: 0, y: 1}
884
859
  m_AnchorMax: {x: 0, y: 1}
885
- m_AnchoredPosition: {x: 0, y: -140}
886
- m_SizeDelta: {x: 0, y: 80}
860
+ m_AnchoredPosition: {x: 311.9606, y: -80}
861
+ m_SizeDelta: {x: 623.9212, y: 40}
887
862
  m_Pivot: {x: 0.5, y: 0.5}
888
863
  --- !u!1 &737212161254350475
889
864
  GameObject:
@@ -954,12 +929,12 @@ RectTransform:
954
929
  m_ConstrainProportionsScale: 0
955
930
  m_Children: []
956
931
  m_Father: {fileID: 635883761041762154}
957
- m_RootOrder: 6
932
+ m_RootOrder: 3
958
933
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
959
934
  m_AnchorMin: {x: 0, y: 1}
960
- m_AnchorMax: {x: 1, y: 1}
961
- m_AnchoredPosition: {x: 0, y: -47}
962
- m_SizeDelta: {x: -90, y: 50}
935
+ m_AnchorMax: {x: 0, y: 1}
936
+ m_AnchoredPosition: {x: 368, y: -462.99988}
937
+ m_SizeDelta: {x: 559.7952, y: 50}
963
938
  m_Pivot: {x: 0.5, y: 1}
964
939
  --- !u!222 &7128329508651662516
965
940
  CanvasRenderer:
@@ -1032,7 +1007,7 @@ MonoBehaviour:
1032
1007
  m_lineSpacingMax: 0
1033
1008
  m_paragraphSpacing: 0
1034
1009
  m_charWidthMaxAdj: 0
1035
- m_enableWordWrapping: 1
1010
+ m_enableWordWrapping: 0
1036
1011
  m_wordWrappingRatios: 0.4
1037
1012
  m_overflowMode: 0
1038
1013
  m_linkedTextComponent: {fileID: 0}
@@ -1111,12 +1086,12 @@ RectTransform:
1111
1086
  m_Children:
1112
1087
  - {fileID: 4027130973822934141}
1113
1088
  m_Father: {fileID: 635883761041762154}
1114
- m_RootOrder: 2
1089
+ m_RootOrder: 6
1115
1090
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1116
- m_AnchorMin: {x: 0.5, y: 0.5}
1117
- m_AnchorMax: {x: 0.5, y: 0.5}
1118
- m_AnchoredPosition: {x: 0, y: -105.000015}
1119
- m_SizeDelta: {x: 659.7, y: 96.5}
1091
+ m_AnchorMin: {x: 1, y: 0.5}
1092
+ m_AnchorMax: {x: 1, y: 0.5}
1093
+ m_AnchoredPosition: {x: -387.99994, y: -112.99978}
1094
+ m_SizeDelta: {x: 507.6089, y: 96.5}
1120
1095
  m_Pivot: {x: 0.5, y: 0}
1121
1096
  --- !u!222 &3178723525763361221
1122
1097
  CanvasRenderer:
@@ -1139,14 +1114,14 @@ MonoBehaviour:
1139
1114
  m_Name:
1140
1115
  m_EditorClassIdentifier:
1141
1116
  m_Material: {fileID: 0}
1142
- m_Color: {r: 0.4433962, g: 0.4433962, b: 0.4433962, a: 0.4627451}
1117
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
1143
1118
  m_RaycastTarget: 1
1144
1119
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
1145
1120
  m_Maskable: 1
1146
1121
  m_OnCullStateChanged:
1147
1122
  m_PersistentCalls:
1148
1123
  m_Calls: []
1149
- m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
1124
+ m_Sprite: {fileID: 21300000, guid: 721c765a3d97c0b4f865bac8223d1404, type: 3}
1150
1125
  m_Type: 1
1151
1126
  m_PreserveAspect: 0
1152
1127
  m_FillCenter: 1
@@ -1155,7 +1130,7 @@ MonoBehaviour:
1155
1130
  m_FillClockwise: 1
1156
1131
  m_FillOrigin: 0
1157
1132
  m_UseSpriteMesh: 0
1158
- m_PixelsPerUnitMultiplier: 1
1133
+ m_PixelsPerUnitMultiplier: 4
1159
1134
  --- !u!114 &6938077742665649791
1160
1135
  MonoBehaviour:
1161
1136
  m_ObjectHideFlags: 0
@@ -1235,8 +1210,8 @@ RectTransform:
1235
1210
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1236
1211
  m_AnchorMin: {x: 0, y: 1}
1237
1212
  m_AnchorMax: {x: 0, y: 1}
1238
- m_AnchoredPosition: {x: 446.5, y: -40}
1239
- m_SizeDelta: {x: 893, y: 80}
1213
+ m_AnchoredPosition: {x: 311.9606, y: -20}
1214
+ m_SizeDelta: {x: 623.9212, y: 40}
1240
1215
  m_Pivot: {x: 0.5, y: 0.5}
1241
1216
  --- !u!1 &1303792005671237284
1242
1217
  GameObject:
@@ -1348,10 +1323,10 @@ RectTransform:
1348
1323
  m_Father: {fileID: 4006703200713162677}
1349
1324
  m_RootOrder: 0
1350
1325
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1351
- m_AnchorMin: {x: 0, y: 1}
1352
- m_AnchorMax: {x: 0, y: 1}
1353
- m_AnchoredPosition: {x: 1043, y: -153}
1354
- m_SizeDelta: {x: 641.444, y: 75.799}
1326
+ m_AnchorMin: {x: 0.5, y: 1}
1327
+ m_AnchorMax: {x: 0.5, y: 1}
1328
+ m_AnchoredPosition: {x: 0, y: -153}
1329
+ m_SizeDelta: {x: 550.41, y: 75.799}
1355
1330
  m_Pivot: {x: 0.5, y: 0.5}
1356
1331
  --- !u!222 &4280597952950180008
1357
1332
  CanvasRenderer:
@@ -1384,7 +1359,8 @@ MonoBehaviour:
1384
1359
  m_text: FileName
1385
1360
  m_isRightToLeft: 0
1386
1361
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
1387
- m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
1362
+ m_sharedMaterial: {fileID: -8116913167181615731, guid: e8dc0ebc54e472548a685f67d318d23f,
1363
+ type: 2}
1388
1364
  m_fontSharedMaterials: []
1389
1365
  m_fontMaterial: {fileID: 0}
1390
1366
  m_fontMaterials: []
@@ -1408,10 +1384,10 @@ MonoBehaviour:
1408
1384
  m_faceColor:
1409
1385
  serializedVersion: 2
1410
1386
  rgba: 4294967295
1411
- m_fontSize: 67.8
1412
- m_fontSizeBase: 36
1387
+ m_fontSize: 50
1388
+ m_fontSizeBase: 50
1413
1389
  m_fontWeight: 400
1414
- m_enableAutoSizing: 1
1390
+ m_enableAutoSizing: 0
1415
1391
  m_fontSizeMin: 18
1416
1392
  m_fontSizeMax: 72
1417
1393
  m_fontStyle: 1
@@ -1424,7 +1400,7 @@ MonoBehaviour:
1424
1400
  m_lineSpacingMax: 0
1425
1401
  m_paragraphSpacing: 0
1426
1402
  m_charWidthMaxAdj: 0
1427
- m_enableWordWrapping: 1
1403
+ m_enableWordWrapping: 0
1428
1404
  m_wordWrappingRatios: 0.4
1429
1405
  m_overflowMode: 0
1430
1406
  m_linkedTextComponent: {fileID: 0}
@@ -1447,7 +1423,7 @@ MonoBehaviour:
1447
1423
  m_margin: {x: 0, y: 0, z: 0, w: 0}
1448
1424
  m_isUsingLegacyAnimationComponent: 0
1449
1425
  m_isVolumetricText: 0
1450
- m_hasFontAssetChanged: 0
1426
+ m_hasFontAssetChanged: 1
1451
1427
  m_baseMaterial: {fileID: 0}
1452
1428
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
1453
1429
  --- !u!114 &4977343309030919175
@@ -1470,6 +1446,162 @@ MonoBehaviour:
1470
1446
  m_FlexibleWidth: -1
1471
1447
  m_FlexibleHeight: -1
1472
1448
  m_LayoutPriority: 1
1449
+ --- !u!1 &1584870849662194991
1450
+ GameObject:
1451
+ m_ObjectHideFlags: 0
1452
+ m_CorrespondingSourceObject: {fileID: 0}
1453
+ m_PrefabInstance: {fileID: 0}
1454
+ m_PrefabAsset: {fileID: 0}
1455
+ serializedVersion: 6
1456
+ m_Component:
1457
+ - component: {fileID: 4237927707244662816}
1458
+ - component: {fileID: 3979069841574318293}
1459
+ - component: {fileID: 6939010265280501419}
1460
+ - component: {fileID: 1616348060361430687}
1461
+ m_Layer: 5
1462
+ m_Name: Label
1463
+ m_TagString: Untagged
1464
+ m_Icon: {fileID: 0}
1465
+ m_NavMeshLayer: 0
1466
+ m_StaticEditorFlags: 0
1467
+ m_IsActive: 1
1468
+ --- !u!224 &4237927707244662816
1469
+ RectTransform:
1470
+ m_ObjectHideFlags: 0
1471
+ m_CorrespondingSourceObject: {fileID: 0}
1472
+ m_PrefabInstance: {fileID: 0}
1473
+ m_PrefabAsset: {fileID: 0}
1474
+ m_GameObject: {fileID: 1584870849662194991}
1475
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
1476
+ m_LocalPosition: {x: 0, y: 0, z: 0}
1477
+ m_LocalScale: {x: 1, y: 1, z: 1}
1478
+ m_ConstrainProportionsScale: 0
1479
+ m_Children: []
1480
+ m_Father: {fileID: 635883761041762154}
1481
+ m_RootOrder: 1
1482
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1483
+ m_AnchorMin: {x: 0.5, y: 1}
1484
+ m_AnchorMax: {x: 0.5, y: 1}
1485
+ m_AnchoredPosition: {x: -0.0007324219, y: -22}
1486
+ m_SizeDelta: {x: 884.6582, y: 54.0001}
1487
+ m_Pivot: {x: 0.5, y: 1}
1488
+ --- !u!222 &3979069841574318293
1489
+ CanvasRenderer:
1490
+ m_ObjectHideFlags: 0
1491
+ m_CorrespondingSourceObject: {fileID: 0}
1492
+ m_PrefabInstance: {fileID: 0}
1493
+ m_PrefabAsset: {fileID: 0}
1494
+ m_GameObject: {fileID: 1584870849662194991}
1495
+ m_CullTransparentMesh: 1
1496
+ --- !u!114 &6939010265280501419
1497
+ MonoBehaviour:
1498
+ m_ObjectHideFlags: 0
1499
+ m_CorrespondingSourceObject: {fileID: 0}
1500
+ m_PrefabInstance: {fileID: 0}
1501
+ m_PrefabAsset: {fileID: 0}
1502
+ m_GameObject: {fileID: 1584870849662194991}
1503
+ m_Enabled: 1
1504
+ m_EditorHideFlags: 0
1505
+ m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
1506
+ m_Name:
1507
+ m_EditorClassIdentifier:
1508
+ m_Material: {fileID: 0}
1509
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
1510
+ m_RaycastTarget: 1
1511
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
1512
+ m_Maskable: 1
1513
+ m_OnCullStateChanged:
1514
+ m_PersistentCalls:
1515
+ m_Calls: []
1516
+ m_text: Beamable's Cloud Save
1517
+ m_isRightToLeft: 0
1518
+ m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
1519
+ m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
1520
+ m_fontSharedMaterials: []
1521
+ m_fontMaterial: {fileID: 0}
1522
+ m_fontMaterials: []
1523
+ m_fontColor32:
1524
+ serializedVersion: 2
1525
+ rgba: 4294967295
1526
+ m_fontColor: {r: 1, g: 1, b: 1, a: 1}
1527
+ m_enableVertexGradient: 0
1528
+ m_colorMode: 3
1529
+ m_fontColorGradient:
1530
+ topLeft: {r: 1, g: 1, b: 1, a: 1}
1531
+ topRight: {r: 1, g: 1, b: 1, a: 1}
1532
+ bottomLeft: {r: 1, g: 1, b: 1, a: 1}
1533
+ bottomRight: {r: 1, g: 1, b: 1, a: 1}
1534
+ m_fontColorGradientPreset: {fileID: 0}
1535
+ m_spriteAsset: {fileID: 0}
1536
+ m_tintAllSprites: 0
1537
+ m_StyleSheet: {fileID: 0}
1538
+ m_TextStyleHashCode: -1183493901
1539
+ m_overrideHtmlColors: 0
1540
+ m_faceColor:
1541
+ serializedVersion: 2
1542
+ rgba: 4294967295
1543
+ m_fontSize: 50
1544
+ m_fontSizeBase: 50
1545
+ m_fontWeight: 400
1546
+ m_enableAutoSizing: 0
1547
+ m_fontSizeMin: 18
1548
+ m_fontSizeMax: 72
1549
+ m_fontStyle: 1
1550
+ m_HorizontalAlignment: 2
1551
+ m_VerticalAlignment: 512
1552
+ m_textAlignment: 65535
1553
+ m_characterSpacing: 0
1554
+ m_wordSpacing: 0
1555
+ m_lineSpacing: 0
1556
+ m_lineSpacingMax: 0
1557
+ m_paragraphSpacing: 0
1558
+ m_charWidthMaxAdj: 0
1559
+ m_enableWordWrapping: 0
1560
+ m_wordWrappingRatios: 0.4
1561
+ m_overflowMode: 0
1562
+ m_linkedTextComponent: {fileID: 0}
1563
+ parentLinkedComponent: {fileID: 0}
1564
+ m_enableKerning: 1
1565
+ m_enableExtraPadding: 0
1566
+ checkPaddingRequired: 0
1567
+ m_isRichText: 1
1568
+ m_parseCtrlCharacters: 1
1569
+ m_isOrthographic: 1
1570
+ m_isCullingEnabled: 0
1571
+ m_horizontalMapping: 0
1572
+ m_verticalMapping: 0
1573
+ m_uvLineOffset: 0
1574
+ m_geometrySortingOrder: 0
1575
+ m_IsTextObjectScaleStatic: 0
1576
+ m_VertexBufferAutoSizeReduction: 0
1577
+ m_useMaxVisibleDescender: 1
1578
+ m_pageToDisplay: 1
1579
+ m_margin: {x: 0, y: 0, z: 0, w: -7.9999886}
1580
+ m_isUsingLegacyAnimationComponent: 0
1581
+ m_isVolumetricText: 0
1582
+ m_hasFontAssetChanged: 0
1583
+ m_baseMaterial: {fileID: 0}
1584
+ m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
1585
+ --- !u!114 &1616348060361430687
1586
+ MonoBehaviour:
1587
+ m_ObjectHideFlags: 0
1588
+ m_CorrespondingSourceObject: {fileID: 0}
1589
+ m_PrefabInstance: {fileID: 0}
1590
+ m_PrefabAsset: {fileID: 0}
1591
+ m_GameObject: {fileID: 1584870849662194991}
1592
+ m_Enabled: 1
1593
+ m_EditorHideFlags: 0
1594
+ m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
1595
+ m_Name:
1596
+ m_EditorClassIdentifier:
1597
+ m_IgnoreLayout: 0
1598
+ m_MinWidth: -1
1599
+ m_MinHeight: -1
1600
+ m_PreferredWidth: -1
1601
+ m_PreferredHeight: -1
1602
+ m_FlexibleWidth: 1
1603
+ m_FlexibleHeight: -1
1604
+ m_LayoutPriority: 1
1473
1605
  --- !u!1 &1650376995526691874
1474
1606
  GameObject:
1475
1607
  m_ObjectHideFlags: 0
@@ -1536,7 +1668,7 @@ MonoBehaviour:
1536
1668
  m_OnCullStateChanged:
1537
1669
  m_PersistentCalls:
1538
1670
  m_Calls: []
1539
- m_text: Init Service
1671
+ m_text: Initialize Service
1540
1672
  m_isRightToLeft: 0
1541
1673
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
1542
1674
  m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
@@ -1569,7 +1701,7 @@ MonoBehaviour:
1569
1701
  m_enableAutoSizing: 0
1570
1702
  m_fontSizeMin: 18
1571
1703
  m_fontSizeMax: 72
1572
- m_fontStyle: 0
1704
+ m_fontStyle: 1
1573
1705
  m_HorizontalAlignment: 2
1574
1706
  m_VerticalAlignment: 512
1575
1707
  m_textAlignment: 65535
@@ -1579,7 +1711,7 @@ MonoBehaviour:
1579
1711
  m_lineSpacingMax: 0
1580
1712
  m_paragraphSpacing: 0
1581
1713
  m_charWidthMaxAdj: 0
1582
- m_enableWordWrapping: 1
1714
+ m_enableWordWrapping: 0
1583
1715
  m_wordWrappingRatios: 0.4
1584
1716
  m_overflowMode: 0
1585
1717
  m_linkedTextComponent: {fileID: 0}
@@ -1638,12 +1770,12 @@ RectTransform:
1638
1770
  m_Children:
1639
1771
  - {fileID: 2534679962175836816}
1640
1772
  m_Father: {fileID: 635883761041762154}
1641
- m_RootOrder: 1
1773
+ m_RootOrder: 5
1642
1774
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1643
- m_AnchorMin: {x: 0.5, y: 0.5}
1644
- m_AnchorMax: {x: 0.5, y: 0.5}
1645
- m_AnchoredPosition: {x: 0, y: 14.999985}
1646
- m_SizeDelta: {x: 659.7, y: 96.5}
1775
+ m_AnchorMin: {x: 1, y: 0.5}
1776
+ m_AnchorMax: {x: 1, y: 0.5}
1777
+ m_AnchoredPosition: {x: -388, y: 7.000206}
1778
+ m_SizeDelta: {x: 507.6089, y: 96.5}
1647
1779
  m_Pivot: {x: 0.5, y: 0}
1648
1780
  --- !u!222 &5029439205054339876
1649
1781
  CanvasRenderer:
@@ -1666,14 +1798,14 @@ MonoBehaviour:
1666
1798
  m_Name:
1667
1799
  m_EditorClassIdentifier:
1668
1800
  m_Material: {fileID: 0}
1669
- m_Color: {r: 0.4433962, g: 0.4433962, b: 0.4433962, a: 0.4627451}
1801
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
1670
1802
  m_RaycastTarget: 1
1671
1803
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
1672
1804
  m_Maskable: 1
1673
1805
  m_OnCullStateChanged:
1674
1806
  m_PersistentCalls:
1675
1807
  m_Calls: []
1676
- m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
1808
+ m_Sprite: {fileID: 21300000, guid: 721c765a3d97c0b4f865bac8223d1404, type: 3}
1677
1809
  m_Type: 1
1678
1810
  m_PreserveAspect: 0
1679
1811
  m_FillCenter: 1
@@ -1682,7 +1814,7 @@ MonoBehaviour:
1682
1814
  m_FillClockwise: 1
1683
1815
  m_FillOrigin: 0
1684
1816
  m_UseSpriteMesh: 0
1685
- m_PixelsPerUnitMultiplier: 1
1817
+ m_PixelsPerUnitMultiplier: 4
1686
1818
  --- !u!114 &7097799627446739624
1687
1819
  MonoBehaviour:
1688
1820
  m_ObjectHideFlags: 0
@@ -1920,7 +2052,7 @@ MonoBehaviour:
1920
2052
  m_OnCullStateChanged:
1921
2053
  m_PersistentCalls:
1922
2054
  m_Calls: []
1923
- m_text: Go to Serializable <T> Manager
2055
+ m_text: Serializable <T> Manager
1924
2056
  m_isRightToLeft: 0
1925
2057
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
1926
2058
  m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
@@ -1953,7 +2085,7 @@ MonoBehaviour:
1953
2085
  m_enableAutoSizing: 0
1954
2086
  m_fontSizeMin: 18
1955
2087
  m_fontSizeMax: 72
1956
- m_fontStyle: 0
2088
+ m_fontStyle: 1
1957
2089
  m_HorizontalAlignment: 2
1958
2090
  m_VerticalAlignment: 512
1959
2091
  m_textAlignment: 65535
@@ -1963,7 +2095,7 @@ MonoBehaviour:
1963
2095
  m_lineSpacingMax: 0
1964
2096
  m_paragraphSpacing: 0
1965
2097
  m_charWidthMaxAdj: 0
1966
- m_enableWordWrapping: 1
2098
+ m_enableWordWrapping: 0
1967
2099
  m_wordWrappingRatios: 0.4
1968
2100
  m_overflowMode: 0
1969
2101
  m_linkedTextComponent: {fileID: 0}
@@ -2022,12 +2154,12 @@ RectTransform:
2022
2154
  m_Children:
2023
2155
  - {fileID: 437497035507502049}
2024
2156
  m_Father: {fileID: 635883761041762154}
2025
- m_RootOrder: 0
2157
+ m_RootOrder: 4
2026
2158
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
2027
- m_AnchorMin: {x: 0.5, y: 0.5}
2028
- m_AnchorMax: {x: 0.5, y: 0.5}
2029
- m_AnchoredPosition: {x: 0, y: 135}
2030
- m_SizeDelta: {x: 659.7, y: 96.5}
2159
+ m_AnchorMin: {x: 0, y: 0.5}
2160
+ m_AnchorMax: {x: 0, y: 0.5}
2161
+ m_AnchoredPosition: {x: 377.10077, y: -162.54474}
2162
+ m_SizeDelta: {x: 541.6, y: 96.5}
2031
2163
  m_Pivot: {x: 0.5, y: 0}
2032
2164
  --- !u!222 &5417878894058439021
2033
2165
  CanvasRenderer:
@@ -2050,14 +2182,14 @@ MonoBehaviour:
2050
2182
  m_Name:
2051
2183
  m_EditorClassIdentifier:
2052
2184
  m_Material: {fileID: 0}
2053
- m_Color: {r: 0.4433962, g: 0.4433962, b: 0.4433962, a: 0.4627451}
2185
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
2054
2186
  m_RaycastTarget: 1
2055
2187
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
2056
2188
  m_Maskable: 1
2057
2189
  m_OnCullStateChanged:
2058
2190
  m_PersistentCalls:
2059
2191
  m_Calls: []
2060
- m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
2192
+ m_Sprite: {fileID: 21300000, guid: 721c765a3d97c0b4f865bac8223d1404, type: 3}
2061
2193
  m_Type: 1
2062
2194
  m_PreserveAspect: 0
2063
2195
  m_FillCenter: 1
@@ -2066,7 +2198,7 @@ MonoBehaviour:
2066
2198
  m_FillClockwise: 1
2067
2199
  m_FillOrigin: 0
2068
2200
  m_UseSpriteMesh: 0
2069
- m_PixelsPerUnitMultiplier: 1
2201
+ m_PixelsPerUnitMultiplier: 4
2070
2202
  --- !u!114 &6773152224469355316
2071
2203
  MonoBehaviour:
2072
2204
  m_ObjectHideFlags: 0
@@ -2146,8 +2278,8 @@ RectTransform:
2146
2278
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
2147
2279
  m_AnchorMin: {x: 0, y: 0.5}
2148
2280
  m_AnchorMax: {x: 0, y: 0.5}
2149
- m_AnchoredPosition: {x: 600.087, y: 0}
2150
- m_SizeDelta: {x: 550, y: 80}
2281
+ m_AnchoredPosition: {x: 425.14316, y: 0}
2282
+ m_SizeDelta: {x: 386.4258, y: 40}
2151
2283
  m_Pivot: {x: 0.5, y: 0.5}
2152
2284
  --- !u!222 &1846468603333238440
2153
2285
  CanvasRenderer:
@@ -2180,7 +2312,8 @@ MonoBehaviour:
2180
2312
  m_text: Value
2181
2313
  m_isRightToLeft: 0
2182
2314
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
2183
- m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
2315
+ m_sharedMaterial: {fileID: -8116913167181615731, guid: e8dc0ebc54e472548a685f67d318d23f,
2316
+ type: 2}
2184
2317
  m_fontSharedMaterials: []
2185
2318
  m_fontMaterial: {fileID: 0}
2186
2319
  m_fontMaterials: []
@@ -2204,15 +2337,15 @@ MonoBehaviour:
2204
2337
  m_faceColor:
2205
2338
  serializedVersion: 2
2206
2339
  rgba: 4294967295
2207
- m_fontSize: 71.6
2208
- m_fontSizeBase: 36
2340
+ m_fontSize: 30
2341
+ m_fontSizeBase: 30
2209
2342
  m_fontWeight: 400
2210
2343
  m_enableAutoSizing: 1
2211
- m_fontSizeMin: 18
2212
- m_fontSizeMax: 72
2344
+ m_fontSizeMin: 15
2345
+ m_fontSizeMax: 30
2213
2346
  m_fontStyle: 0
2214
2347
  m_HorizontalAlignment: 1
2215
- m_VerticalAlignment: 256
2348
+ m_VerticalAlignment: 512
2216
2349
  m_textAlignment: 65535
2217
2350
  m_characterSpacing: 0
2218
2351
  m_wordSpacing: 0
@@ -2220,7 +2353,7 @@ MonoBehaviour:
2220
2353
  m_lineSpacingMax: 0
2221
2354
  m_paragraphSpacing: 0
2222
2355
  m_charWidthMaxAdj: 0
2223
- m_enableWordWrapping: 1
2356
+ m_enableWordWrapping: 0
2224
2357
  m_wordWrappingRatios: 0.4
2225
2358
  m_overflowMode: 0
2226
2359
  m_linkedTextComponent: {fileID: 0}
@@ -2243,7 +2376,7 @@ MonoBehaviour:
2243
2376
  m_margin: {x: 0, y: 0, z: 0, w: 0}
2244
2377
  m_isUsingLegacyAnimationComponent: 0
2245
2378
  m_isVolumetricText: 0
2246
- m_hasFontAssetChanged: 0
2379
+ m_hasFontAssetChanged: 1
2247
2380
  m_baseMaterial: {fileID: 0}
2248
2381
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
2249
2382
  --- !u!1 &2795757161442554909
@@ -2281,8 +2414,8 @@ RectTransform:
2281
2414
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
2282
2415
  m_AnchorMin: {x: 0, y: 0.5}
2283
2416
  m_AnchorMax: {x: 0, y: 0.5}
2284
- m_AnchoredPosition: {x: 150, y: 0}
2285
- m_SizeDelta: {x: 300, y: 80}
2417
+ m_AnchoredPosition: {x: 105.21308, y: 0}
2418
+ m_SizeDelta: {x: 210.4262, y: 40}
2286
2419
  m_Pivot: {x: 0.5, y: 0.5}
2287
2420
  --- !u!222 &291285269075214248
2288
2421
  CanvasRenderer:
@@ -2315,7 +2448,8 @@ MonoBehaviour:
2315
2448
  m_text: 'Checksum:'
2316
2449
  m_isRightToLeft: 0
2317
2450
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
2318
- m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
2451
+ m_sharedMaterial: {fileID: -8116913167181615731, guid: e8dc0ebc54e472548a685f67d318d23f,
2452
+ type: 2}
2319
2453
  m_fontSharedMaterials: []
2320
2454
  m_fontMaterial: {fileID: 0}
2321
2455
  m_fontMaterials: []
@@ -2339,13 +2473,13 @@ MonoBehaviour:
2339
2473
  m_faceColor:
2340
2474
  serializedVersion: 2
2341
2475
  rgba: 4294967295
2342
- m_fontSize: 59.4
2343
- m_fontSizeBase: 36
2476
+ m_fontSize: 30
2477
+ m_fontSizeBase: 30
2344
2478
  m_fontWeight: 400
2345
- m_enableAutoSizing: 1
2479
+ m_enableAutoSizing: 0
2346
2480
  m_fontSizeMin: 18
2347
2481
  m_fontSizeMax: 72
2348
- m_fontStyle: 0
2482
+ m_fontStyle: 1
2349
2483
  m_HorizontalAlignment: 4
2350
2484
  m_VerticalAlignment: 512
2351
2485
  m_textAlignment: 65535
@@ -2355,7 +2489,7 @@ MonoBehaviour:
2355
2489
  m_lineSpacingMax: 0
2356
2490
  m_paragraphSpacing: 0
2357
2491
  m_charWidthMaxAdj: 0
2358
- m_enableWordWrapping: 1
2492
+ m_enableWordWrapping: 0
2359
2493
  m_wordWrappingRatios: 0.4
2360
2494
  m_overflowMode: 0
2361
2495
  m_linkedTextComponent: {fileID: 0}
@@ -2378,7 +2512,7 @@ MonoBehaviour:
2378
2512
  m_margin: {x: 0, y: 0, z: 0, w: 0}
2379
2513
  m_isUsingLegacyAnimationComponent: 0
2380
2514
  m_isVolumetricText: 0
2381
- m_hasFontAssetChanged: 0
2515
+ m_hasFontAssetChanged: 1
2382
2516
  m_baseMaterial: {fileID: 0}
2383
2517
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
2384
2518
  --- !u!1 &3111625107273582264
@@ -2416,8 +2550,8 @@ RectTransform:
2416
2550
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
2417
2551
  m_AnchorMin: {x: 0, y: 0.5}
2418
2552
  m_AnchorMax: {x: 0, y: 0.5}
2419
- m_AnchoredPosition: {x: 150, y: 0}
2420
- m_SizeDelta: {x: 300, y: 80}
2553
+ m_AnchoredPosition: {x: 105.21308, y: 0}
2554
+ m_SizeDelta: {x: 210.4262, y: 40}
2421
2555
  m_Pivot: {x: 0.5, y: 0.5}
2422
2556
  --- !u!222 &7295081532504343385
2423
2557
  CanvasRenderer:
@@ -2447,10 +2581,11 @@ MonoBehaviour:
2447
2581
  m_OnCullStateChanged:
2448
2582
  m_PersistentCalls:
2449
2583
  m_Calls: []
2450
- m_text: 'Last modified:'
2584
+ m_text: 'Last Modified:'
2451
2585
  m_isRightToLeft: 0
2452
2586
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
2453
- m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
2587
+ m_sharedMaterial: {fileID: -8116913167181615731, guid: e8dc0ebc54e472548a685f67d318d23f,
2588
+ type: 2}
2454
2589
  m_fontSharedMaterials: []
2455
2590
  m_fontMaterial: {fileID: 0}
2456
2591
  m_fontMaterials: []
@@ -2474,13 +2609,13 @@ MonoBehaviour:
2474
2609
  m_faceColor:
2475
2610
  serializedVersion: 2
2476
2611
  rgba: 4294967295
2477
- m_fontSize: 47.75
2478
- m_fontSizeBase: 36
2612
+ m_fontSize: 30
2613
+ m_fontSizeBase: 30
2479
2614
  m_fontWeight: 400
2480
- m_enableAutoSizing: 1
2615
+ m_enableAutoSizing: 0
2481
2616
  m_fontSizeMin: 18
2482
2617
  m_fontSizeMax: 72
2483
- m_fontStyle: 0
2618
+ m_fontStyle: 1
2484
2619
  m_HorizontalAlignment: 4
2485
2620
  m_VerticalAlignment: 512
2486
2621
  m_textAlignment: 65535
@@ -2490,7 +2625,7 @@ MonoBehaviour:
2490
2625
  m_lineSpacingMax: 0
2491
2626
  m_paragraphSpacing: 0
2492
2627
  m_charWidthMaxAdj: 0
2493
- m_enableWordWrapping: 1
2628
+ m_enableWordWrapping: 0
2494
2629
  m_wordWrappingRatios: 0.4
2495
2630
  m_overflowMode: 0
2496
2631
  m_linkedTextComponent: {fileID: 0}
@@ -2513,9 +2648,166 @@ MonoBehaviour:
2513
2648
  m_margin: {x: 0, y: 0, z: 0, w: 0}
2514
2649
  m_isUsingLegacyAnimationComponent: 0
2515
2650
  m_isVolumetricText: 0
2516
- m_hasFontAssetChanged: 0
2651
+ m_hasFontAssetChanged: 1
2652
+ m_baseMaterial: {fileID: 0}
2653
+ m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
2654
+ --- !u!1 &3192886984073476975
2655
+ GameObject:
2656
+ m_ObjectHideFlags: 0
2657
+ m_CorrespondingSourceObject: {fileID: 0}
2658
+ m_PrefabInstance: {fileID: 0}
2659
+ m_PrefabAsset: {fileID: 0}
2660
+ serializedVersion: 6
2661
+ m_Component:
2662
+ - component: {fileID: 920554427867359167}
2663
+ - component: {fileID: 2460172571872571203}
2664
+ - component: {fileID: 6331024787211914075}
2665
+ - component: {fileID: 3539538620042883912}
2666
+ m_Layer: 5
2667
+ m_Name: Label
2668
+ m_TagString: Untagged
2669
+ m_Icon: {fileID: 0}
2670
+ m_NavMeshLayer: 0
2671
+ m_StaticEditorFlags: 0
2672
+ m_IsActive: 1
2673
+ --- !u!224 &920554427867359167
2674
+ RectTransform:
2675
+ m_ObjectHideFlags: 0
2676
+ m_CorrespondingSourceObject: {fileID: 0}
2677
+ m_PrefabInstance: {fileID: 0}
2678
+ m_PrefabAsset: {fileID: 0}
2679
+ m_GameObject: {fileID: 3192886984073476975}
2680
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
2681
+ m_LocalPosition: {x: 0, y: 0, z: 0}
2682
+ m_LocalScale: {x: 1, y: 1, z: 1}
2683
+ m_ConstrainProportionsScale: 0
2684
+ m_Children: []
2685
+ m_Father: {fileID: 4006703200713162677}
2686
+ m_RootOrder: 1
2687
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
2688
+ m_AnchorMin: {x: 0.5, y: 1}
2689
+ m_AnchorMax: {x: 0.5, y: 1}
2690
+ m_AnchoredPosition: {x: 0, y: -56}
2691
+ m_SizeDelta: {x: 665.45, y: 75.799}
2692
+ m_Pivot: {x: 0.5, y: 0.5}
2693
+ --- !u!222 &2460172571872571203
2694
+ CanvasRenderer:
2695
+ m_ObjectHideFlags: 0
2696
+ m_CorrespondingSourceObject: {fileID: 0}
2697
+ m_PrefabInstance: {fileID: 0}
2698
+ m_PrefabAsset: {fileID: 0}
2699
+ m_GameObject: {fileID: 3192886984073476975}
2700
+ m_CullTransparentMesh: 1
2701
+ --- !u!114 &6331024787211914075
2702
+ MonoBehaviour:
2703
+ m_ObjectHideFlags: 0
2704
+ m_CorrespondingSourceObject: {fileID: 0}
2705
+ m_PrefabInstance: {fileID: 0}
2706
+ m_PrefabAsset: {fileID: 0}
2707
+ m_GameObject: {fileID: 3192886984073476975}
2708
+ m_Enabled: 1
2709
+ m_EditorHideFlags: 0
2710
+ m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
2711
+ m_Name:
2712
+ m_EditorClassIdentifier:
2713
+ m_Material: {fileID: 0}
2714
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
2715
+ m_RaycastTarget: 1
2716
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
2717
+ m_Maskable: 1
2718
+ m_OnCullStateChanged:
2719
+ m_PersistentCalls:
2720
+ m_Calls: []
2721
+ m_text: Resolve Conflict
2722
+ m_isRightToLeft: 0
2723
+ m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
2724
+ m_sharedMaterial: {fileID: -8116913167181615731, guid: e8dc0ebc54e472548a685f67d318d23f,
2725
+ type: 2}
2726
+ m_fontSharedMaterials: []
2727
+ m_fontMaterial: {fileID: 0}
2728
+ m_fontMaterials: []
2729
+ m_fontColor32:
2730
+ serializedVersion: 2
2731
+ rgba: 4294967295
2732
+ m_fontColor: {r: 1, g: 1, b: 1, a: 1}
2733
+ m_enableVertexGradient: 0
2734
+ m_colorMode: 3
2735
+ m_fontColorGradient:
2736
+ topLeft: {r: 1, g: 1, b: 1, a: 1}
2737
+ topRight: {r: 1, g: 1, b: 1, a: 1}
2738
+ bottomLeft: {r: 1, g: 1, b: 1, a: 1}
2739
+ bottomRight: {r: 1, g: 1, b: 1, a: 1}
2740
+ m_fontColorGradientPreset: {fileID: 0}
2741
+ m_spriteAsset: {fileID: 0}
2742
+ m_tintAllSprites: 0
2743
+ m_StyleSheet: {fileID: 0}
2744
+ m_TextStyleHashCode: -1183493901
2745
+ m_overrideHtmlColors: 0
2746
+ m_faceColor:
2747
+ serializedVersion: 2
2748
+ rgba: 4294967295
2749
+ m_fontSize: 63.15
2750
+ m_fontSizeBase: 36
2751
+ m_fontWeight: 400
2752
+ m_enableAutoSizing: 1
2753
+ m_fontSizeMin: 18
2754
+ m_fontSizeMax: 72
2755
+ m_fontStyle: 1
2756
+ m_HorizontalAlignment: 2
2757
+ m_VerticalAlignment: 512
2758
+ m_textAlignment: 65535
2759
+ m_characterSpacing: 0
2760
+ m_wordSpacing: 0
2761
+ m_lineSpacing: 0
2762
+ m_lineSpacingMax: 0
2763
+ m_paragraphSpacing: 0
2764
+ m_charWidthMaxAdj: 0
2765
+ m_enableWordWrapping: 0
2766
+ m_wordWrappingRatios: 0.4
2767
+ m_overflowMode: 0
2768
+ m_linkedTextComponent: {fileID: 0}
2769
+ parentLinkedComponent: {fileID: 0}
2770
+ m_enableKerning: 1
2771
+ m_enableExtraPadding: 0
2772
+ checkPaddingRequired: 0
2773
+ m_isRichText: 1
2774
+ m_parseCtrlCharacters: 1
2775
+ m_isOrthographic: 1
2776
+ m_isCullingEnabled: 0
2777
+ m_horizontalMapping: 0
2778
+ m_verticalMapping: 0
2779
+ m_uvLineOffset: 0
2780
+ m_geometrySortingOrder: 0
2781
+ m_IsTextObjectScaleStatic: 0
2782
+ m_VertexBufferAutoSizeReduction: 0
2783
+ m_useMaxVisibleDescender: 1
2784
+ m_pageToDisplay: 1
2785
+ m_margin: {x: 0, y: 0, z: 0, w: 0}
2786
+ m_isUsingLegacyAnimationComponent: 0
2787
+ m_isVolumetricText: 0
2788
+ m_hasFontAssetChanged: 1
2517
2789
  m_baseMaterial: {fileID: 0}
2518
2790
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
2791
+ --- !u!114 &3539538620042883912
2792
+ MonoBehaviour:
2793
+ m_ObjectHideFlags: 0
2794
+ m_CorrespondingSourceObject: {fileID: 0}
2795
+ m_PrefabInstance: {fileID: 0}
2796
+ m_PrefabAsset: {fileID: 0}
2797
+ m_GameObject: {fileID: 3192886984073476975}
2798
+ m_Enabled: 1
2799
+ m_EditorHideFlags: 0
2800
+ m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
2801
+ m_Name:
2802
+ m_EditorClassIdentifier:
2803
+ m_IgnoreLayout: 1
2804
+ m_MinWidth: -1
2805
+ m_MinHeight: -1
2806
+ m_PreferredWidth: -1
2807
+ m_PreferredHeight: -1
2808
+ m_FlexibleWidth: -1
2809
+ m_FlexibleHeight: -1
2810
+ m_LayoutPriority: 1
2519
2811
  --- !u!1 &3378442782245853552
2520
2812
  GameObject:
2521
2813
  m_ObjectHideFlags: 0
@@ -2678,8 +2970,8 @@ RectTransform:
2678
2970
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
2679
2971
  m_AnchorMin: {x: 0, y: 0.5}
2680
2972
  m_AnchorMax: {x: 0, y: 0.5}
2681
- m_AnchoredPosition: {x: 600.087, y: 0}
2682
- m_SizeDelta: {x: 550, y: 80}
2973
+ m_AnchoredPosition: {x: 428.6092, y: 0}
2974
+ m_SizeDelta: {x: 408.4793, y: 40}
2683
2975
  m_Pivot: {x: 0.5, y: 0.5}
2684
2976
  --- !u!222 &3850271429400936529
2685
2977
  CanvasRenderer:
@@ -2712,7 +3004,8 @@ MonoBehaviour:
2712
3004
  m_text: Value
2713
3005
  m_isRightToLeft: 0
2714
3006
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
2715
- m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
3007
+ m_sharedMaterial: {fileID: -8116913167181615731, guid: e8dc0ebc54e472548a685f67d318d23f,
3008
+ type: 2}
2716
3009
  m_fontSharedMaterials: []
2717
3010
  m_fontMaterial: {fileID: 0}
2718
3011
  m_fontMaterials: []
@@ -2736,15 +3029,15 @@ MonoBehaviour:
2736
3029
  m_faceColor:
2737
3030
  serializedVersion: 2
2738
3031
  rgba: 4294967295
2739
- m_fontSize: 71.6
2740
- m_fontSizeBase: 36
3032
+ m_fontSize: 25
3033
+ m_fontSizeBase: 25
2741
3034
  m_fontWeight: 400
2742
3035
  m_enableAutoSizing: 1
2743
- m_fontSizeMin: 18
2744
- m_fontSizeMax: 72
3036
+ m_fontSizeMin: 15
3037
+ m_fontSizeMax: 25
2745
3038
  m_fontStyle: 0
2746
3039
  m_HorizontalAlignment: 1
2747
- m_VerticalAlignment: 256
3040
+ m_VerticalAlignment: 512
2748
3041
  m_textAlignment: 65535
2749
3042
  m_characterSpacing: 0
2750
3043
  m_wordSpacing: 0
@@ -2752,7 +3045,7 @@ MonoBehaviour:
2752
3045
  m_lineSpacingMax: 0
2753
3046
  m_paragraphSpacing: 0
2754
3047
  m_charWidthMaxAdj: 0
2755
- m_enableWordWrapping: 1
3048
+ m_enableWordWrapping: 0
2756
3049
  m_wordWrappingRatios: 0.4
2757
3050
  m_overflowMode: 0
2758
3051
  m_linkedTextComponent: {fileID: 0}
@@ -2775,7 +3068,7 @@ MonoBehaviour:
2775
3068
  m_margin: {x: 0, y: 0, z: 0, w: 0}
2776
3069
  m_isUsingLegacyAnimationComponent: 0
2777
3070
  m_isVolumetricText: 0
2778
- m_hasFontAssetChanged: 0
3071
+ m_hasFontAssetChanged: 1
2779
3072
  m_baseMaterial: {fileID: 0}
2780
3073
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
2781
3074
  --- !u!1 &3529805476743472090
@@ -2844,7 +3137,7 @@ MonoBehaviour:
2844
3137
  m_OnCullStateChanged:
2845
3138
  m_PersistentCalls:
2846
3139
  m_Calls: []
2847
- m_text: Go to Byte File Manager
3140
+ m_text: Byte File Manager
2848
3141
  m_isRightToLeft: 0
2849
3142
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
2850
3143
  m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
@@ -2877,7 +3170,7 @@ MonoBehaviour:
2877
3170
  m_enableAutoSizing: 0
2878
3171
  m_fontSizeMin: 18
2879
3172
  m_fontSizeMax: 72
2880
- m_fontStyle: 0
3173
+ m_fontStyle: 1
2881
3174
  m_HorizontalAlignment: 2
2882
3175
  m_VerticalAlignment: 512
2883
3176
  m_textAlignment: 65535
@@ -2887,7 +3180,7 @@ MonoBehaviour:
2887
3180
  m_lineSpacingMax: 0
2888
3181
  m_paragraphSpacing: 0
2889
3182
  m_charWidthMaxAdj: 0
2890
- m_enableWordWrapping: 1
3183
+ m_enableWordWrapping: 0
2891
3184
  m_wordWrappingRatios: 0.4
2892
3185
  m_overflowMode: 0
2893
3186
  m_linkedTextComponent: {fileID: 0}
@@ -2948,8 +3241,8 @@ RectTransform:
2948
3241
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
2949
3242
  m_AnchorMin: {x: 0, y: 0.5}
2950
3243
  m_AnchorMax: {x: 0, y: 0.5}
2951
- m_AnchoredPosition: {x: 600.087, y: 0}
2952
- m_SizeDelta: {x: 550, y: 80}
3244
+ m_AnchoredPosition: {x: 428.6092, y: -0.000016212}
3245
+ m_SizeDelta: {x: 408.4793, y: 40}
2953
3246
  m_Pivot: {x: 0.5, y: 0.5}
2954
3247
  --- !u!222 &6448352779627943070
2955
3248
  CanvasRenderer:
@@ -2982,7 +3275,8 @@ MonoBehaviour:
2982
3275
  m_text: Value
2983
3276
  m_isRightToLeft: 0
2984
3277
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
2985
- m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
3278
+ m_sharedMaterial: {fileID: -8116913167181615731, guid: e8dc0ebc54e472548a685f67d318d23f,
3279
+ type: 2}
2986
3280
  m_fontSharedMaterials: []
2987
3281
  m_fontMaterial: {fileID: 0}
2988
3282
  m_fontMaterials: []
@@ -3006,15 +3300,15 @@ MonoBehaviour:
3006
3300
  m_faceColor:
3007
3301
  serializedVersion: 2
3008
3302
  rgba: 4294967295
3009
- m_fontSize: 71.6
3010
- m_fontSizeBase: 36
3303
+ m_fontSize: 25
3304
+ m_fontSizeBase: 25
3011
3305
  m_fontWeight: 400
3012
3306
  m_enableAutoSizing: 1
3013
- m_fontSizeMin: 18
3014
- m_fontSizeMax: 72
3307
+ m_fontSizeMin: 15
3308
+ m_fontSizeMax: 25
3015
3309
  m_fontStyle: 0
3016
3310
  m_HorizontalAlignment: 1
3017
- m_VerticalAlignment: 256
3311
+ m_VerticalAlignment: 512
3018
3312
  m_textAlignment: 65535
3019
3313
  m_characterSpacing: 0
3020
3314
  m_wordSpacing: 0
@@ -3022,7 +3316,7 @@ MonoBehaviour:
3022
3316
  m_lineSpacingMax: 0
3023
3317
  m_paragraphSpacing: 0
3024
3318
  m_charWidthMaxAdj: 0
3025
- m_enableWordWrapping: 1
3319
+ m_enableWordWrapping: 0
3026
3320
  m_wordWrappingRatios: 0.4
3027
3321
  m_overflowMode: 0
3028
3322
  m_linkedTextComponent: {fileID: 0}
@@ -3045,7 +3339,7 @@ MonoBehaviour:
3045
3339
  m_margin: {x: 0, y: 0, z: 0, w: 0}
3046
3340
  m_isUsingLegacyAnimationComponent: 0
3047
3341
  m_isVolumetricText: 0
3048
- m_hasFontAssetChanged: 0
3342
+ m_hasFontAssetChanged: 1
3049
3343
  m_baseMaterial: {fileID: 0}
3050
3344
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
3051
3345
  --- !u!1 &4657767217169285441
@@ -3083,8 +3377,8 @@ RectTransform:
3083
3377
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
3084
3378
  m_AnchorMin: {x: 0, y: 0.5}
3085
3379
  m_AnchorMax: {x: 0, y: 0.5}
3086
- m_AnchoredPosition: {x: 150, y: 0}
3087
- m_SizeDelta: {x: 300, y: 80}
3380
+ m_AnchoredPosition: {x: 104.41733, y: 0}
3381
+ m_SizeDelta: {x: 208.8346, y: 40}
3088
3382
  m_Pivot: {x: 0.5, y: 0.5}
3089
3383
  --- !u!222 &6967907516150374505
3090
3384
  CanvasRenderer:
@@ -3117,7 +3411,8 @@ MonoBehaviour:
3117
3411
  m_text: 'Checksum:'
3118
3412
  m_isRightToLeft: 0
3119
3413
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
3120
- m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
3414
+ m_sharedMaterial: {fileID: -8116913167181615731, guid: e8dc0ebc54e472548a685f67d318d23f,
3415
+ type: 2}
3121
3416
  m_fontSharedMaterials: []
3122
3417
  m_fontMaterial: {fileID: 0}
3123
3418
  m_fontMaterials: []
@@ -3141,13 +3436,13 @@ MonoBehaviour:
3141
3436
  m_faceColor:
3142
3437
  serializedVersion: 2
3143
3438
  rgba: 4294967295
3144
- m_fontSize: 59.4
3145
- m_fontSizeBase: 36
3439
+ m_fontSize: 30
3440
+ m_fontSizeBase: 30
3146
3441
  m_fontWeight: 400
3147
- m_enableAutoSizing: 1
3442
+ m_enableAutoSizing: 0
3148
3443
  m_fontSizeMin: 18
3149
3444
  m_fontSizeMax: 72
3150
- m_fontStyle: 0
3445
+ m_fontStyle: 1
3151
3446
  m_HorizontalAlignment: 4
3152
3447
  m_VerticalAlignment: 512
3153
3448
  m_textAlignment: 65535
@@ -3157,7 +3452,7 @@ MonoBehaviour:
3157
3452
  m_lineSpacingMax: 0
3158
3453
  m_paragraphSpacing: 0
3159
3454
  m_charWidthMaxAdj: 0
3160
- m_enableWordWrapping: 1
3455
+ m_enableWordWrapping: 0
3161
3456
  m_wordWrappingRatios: 0.4
3162
3457
  m_overflowMode: 0
3163
3458
  m_linkedTextComponent: {fileID: 0}
@@ -3180,7 +3475,7 @@ MonoBehaviour:
3180
3475
  m_margin: {x: 0, y: 0, z: 0, w: 0}
3181
3476
  m_isUsingLegacyAnimationComponent: 0
3182
3477
  m_isVolumetricText: 0
3183
- m_hasFontAssetChanged: 0
3478
+ m_hasFontAssetChanged: 1
3184
3479
  m_baseMaterial: {fileID: 0}
3185
3480
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
3186
3481
  --- !u!1 &4850233190113608668
@@ -3251,8 +3546,9 @@ MonoBehaviour:
3251
3546
  m_Calls: []
3252
3547
  m_text: Cloud Data
3253
3548
  m_isRightToLeft: 0
3254
- m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
3255
- m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
3549
+ m_fontAsset: {fileID: 11400000, guid: e8dc0ebc54e472548a685f67d318d23f, type: 2}
3550
+ m_sharedMaterial: {fileID: -8116913167181615731, guid: e8dc0ebc54e472548a685f67d318d23f,
3551
+ type: 2}
3256
3552
  m_fontSharedMaterials: []
3257
3553
  m_fontMaterial: {fileID: 0}
3258
3554
  m_fontMaterials: []
@@ -3276,8 +3572,8 @@ MonoBehaviour:
3276
3572
  m_faceColor:
3277
3573
  serializedVersion: 2
3278
3574
  rgba: 4294967295
3279
- m_fontSize: 36
3280
- m_fontSizeBase: 36
3575
+ m_fontSize: 40
3576
+ m_fontSizeBase: 40
3281
3577
  m_fontWeight: 400
3282
3578
  m_enableAutoSizing: 0
3283
3579
  m_fontSizeMin: 18
@@ -3292,7 +3588,7 @@ MonoBehaviour:
3292
3588
  m_lineSpacingMax: 0
3293
3589
  m_paragraphSpacing: 0
3294
3590
  m_charWidthMaxAdj: 0
3295
- m_enableWordWrapping: 1
3591
+ m_enableWordWrapping: 0
3296
3592
  m_wordWrappingRatios: 0.4
3297
3593
  m_overflowMode: 0
3298
3594
  m_linkedTextComponent: {fileID: 0}
@@ -3356,8 +3652,8 @@ RectTransform:
3356
3652
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
3357
3653
  m_AnchorMin: {x: 0, y: 1}
3358
3654
  m_AnchorMax: {x: 1, y: 1}
3359
- m_AnchoredPosition: {x: 0, y: 0}
3360
- m_SizeDelta: {x: -7.17395, y: 280}
3655
+ m_AnchoredPosition: {x: -0, y: 0}
3656
+ m_SizeDelta: {x: -11.484131, y: 160}
3361
3657
  m_Pivot: {x: 0, y: 1}
3362
3658
  --- !u!114 &3469925667430685677
3363
3659
  MonoBehaviour:
@@ -3409,7 +3705,6 @@ GameObject:
3409
3705
  m_Component:
3410
3706
  - component: {fileID: 6110197735363753084}
3411
3707
  - component: {fileID: 5408921220029050190}
3412
- - component: {fileID: 3127065451156251441}
3413
3708
  - component: {fileID: 8358888045790311088}
3414
3709
  m_Layer: 5
3415
3710
  m_Name: Content
@@ -3437,8 +3732,8 @@ RectTransform:
3437
3732
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
3438
3733
  m_AnchorMin: {x: 0, y: 0.13168876}
3439
3734
  m_AnchorMax: {x: 1, y: 1}
3440
- m_AnchoredPosition: {x: 0, y: -52.71576}
3441
- m_SizeDelta: {x: 0, y: -105.43151}
3735
+ m_AnchoredPosition: {x: 0, y: -50}
3736
+ m_SizeDelta: {x: -60, y: -100}
3442
3737
  m_Pivot: {x: 0.5, y: 0.5}
3443
3738
  --- !u!222 &5408921220029050190
3444
3739
  CanvasRenderer:
@@ -3448,36 +3743,6 @@ CanvasRenderer:
3448
3743
  m_PrefabAsset: {fileID: 0}
3449
3744
  m_GameObject: {fileID: 5454535632013252653}
3450
3745
  m_CullTransparentMesh: 1
3451
- --- !u!114 &3127065451156251441
3452
- MonoBehaviour:
3453
- m_ObjectHideFlags: 0
3454
- m_CorrespondingSourceObject: {fileID: 0}
3455
- m_PrefabInstance: {fileID: 0}
3456
- m_PrefabAsset: {fileID: 0}
3457
- m_GameObject: {fileID: 5454535632013252653}
3458
- m_Enabled: 1
3459
- m_EditorHideFlags: 0
3460
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
3461
- m_Name:
3462
- m_EditorClassIdentifier:
3463
- m_Material: {fileID: 0}
3464
- m_Color: {r: 0, g: 0, b: 0, a: 0.392}
3465
- m_RaycastTarget: 1
3466
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
3467
- m_Maskable: 1
3468
- m_OnCullStateChanged:
3469
- m_PersistentCalls:
3470
- m_Calls: []
3471
- m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0}
3472
- m_Type: 1
3473
- m_PreserveAspect: 0
3474
- m_FillCenter: 1
3475
- m_FillMethod: 4
3476
- m_FillAmount: 1
3477
- m_FillClockwise: 1
3478
- m_FillOrigin: 0
3479
- m_UseSpriteMesh: 0
3480
- m_PixelsPerUnitMultiplier: 1
3481
3746
  --- !u!114 &8358888045790311088
3482
3747
  MonoBehaviour:
3483
3748
  m_ObjectHideFlags: 0
@@ -3574,7 +3839,7 @@ MonoBehaviour:
3574
3839
  m_OnCullStateChanged:
3575
3840
  m_PersistentCalls:
3576
3841
  m_Calls: []
3577
- m_text: Go to String FIle Manager
3842
+ m_text: String FIle Manager
3578
3843
  m_isRightToLeft: 0
3579
3844
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
3580
3845
  m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
@@ -3607,7 +3872,7 @@ MonoBehaviour:
3607
3872
  m_enableAutoSizing: 0
3608
3873
  m_fontSizeMin: 18
3609
3874
  m_fontSizeMax: 72
3610
- m_fontStyle: 0
3875
+ m_fontStyle: 1
3611
3876
  m_HorizontalAlignment: 2
3612
3877
  m_VerticalAlignment: 512
3613
3878
  m_textAlignment: 65535
@@ -3617,7 +3882,7 @@ MonoBehaviour:
3617
3882
  m_lineSpacingMax: 0
3618
3883
  m_paragraphSpacing: 0
3619
3884
  m_charWidthMaxAdj: 0
3620
- m_enableWordWrapping: 1
3885
+ m_enableWordWrapping: 0
3621
3886
  m_wordWrappingRatios: 0.4
3622
3887
  m_overflowMode: 0
3623
3888
  m_linkedTextComponent: {fileID: 0}
@@ -3712,7 +3977,8 @@ MonoBehaviour:
3712
3977
  m_text: Local Data
3713
3978
  m_isRightToLeft: 0
3714
3979
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
3715
- m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
3980
+ m_sharedMaterial: {fileID: -8116913167181615731, guid: e8dc0ebc54e472548a685f67d318d23f,
3981
+ type: 2}
3716
3982
  m_fontSharedMaterials: []
3717
3983
  m_fontMaterial: {fileID: 0}
3718
3984
  m_fontMaterials: []
@@ -3736,8 +4002,8 @@ MonoBehaviour:
3736
4002
  m_faceColor:
3737
4003
  serializedVersion: 2
3738
4004
  rgba: 4294967295
3739
- m_fontSize: 36
3740
- m_fontSizeBase: 36
4005
+ m_fontSize: 40
4006
+ m_fontSizeBase: 40
3741
4007
  m_fontWeight: 400
3742
4008
  m_enableAutoSizing: 0
3743
4009
  m_fontSizeMin: 18
@@ -3752,7 +4018,7 @@ MonoBehaviour:
3752
4018
  m_lineSpacingMax: 0
3753
4019
  m_paragraphSpacing: 0
3754
4020
  m_charWidthMaxAdj: 0
3755
- m_enableWordWrapping: 1
4021
+ m_enableWordWrapping: 0
3756
4022
  m_wordWrappingRatios: 0.4
3757
4023
  m_overflowMode: 0
3758
4024
  m_linkedTextComponent: {fileID: 0}
@@ -3775,7 +4041,7 @@ MonoBehaviour:
3775
4041
  m_margin: {x: 0, y: 0, z: 0, w: 0}
3776
4042
  m_isUsingLegacyAnimationComponent: 0
3777
4043
  m_isVolumetricText: 0
3778
- m_hasFontAssetChanged: 0
4044
+ m_hasFontAssetChanged: 1
3779
4045
  m_baseMaterial: {fileID: 0}
3780
4046
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
3781
4047
  --- !u!1 &6101080170219209652
@@ -3813,8 +4079,8 @@ RectTransform:
3813
4079
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
3814
4080
  m_AnchorMin: {x: 0, y: 1}
3815
4081
  m_AnchorMax: {x: 0, y: 1}
3816
- m_AnchoredPosition: {x: 0, y: -240}
3817
- m_SizeDelta: {x: 0, y: 80}
4082
+ m_AnchoredPosition: {x: 0, y: -140}
4083
+ m_SizeDelta: {x: 0, y: 40}
3818
4084
  m_Pivot: {x: 0.5, y: 0.5}
3819
4085
  --- !u!1 &6192426202829523415
3820
4086
  GameObject:
@@ -3855,7 +4121,7 @@ RectTransform:
3855
4121
  m_AnchorMin: {x: 0, y: 1}
3856
4122
  m_AnchorMax: {x: 1, y: 1}
3857
4123
  m_AnchoredPosition: {x: 0, y: 0}
3858
- m_SizeDelta: {x: -7.17395, y: 280}
4124
+ m_SizeDelta: {x: -15.153259, y: 160}
3859
4125
  m_Pivot: {x: 0, y: 1}
3860
4126
  --- !u!114 &6732976737574865891
3861
4127
  MonoBehaviour:
@@ -3932,8 +4198,8 @@ RectTransform:
3932
4198
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
3933
4199
  m_AnchorMin: {x: 0, y: 1}
3934
4200
  m_AnchorMax: {x: 0, y: 1}
3935
- m_AnchoredPosition: {x: 446.5, y: -40}
3936
- m_SizeDelta: {x: 893, y: 80}
4201
+ m_AnchoredPosition: {x: 310.12604, y: -20}
4202
+ m_SizeDelta: {x: 620.2521, y: 40}
3937
4203
  m_Pivot: {x: 0.5, y: 0.5}
3938
4204
  --- !u!1 &6765107924731814362
3939
4205
  GameObject:
@@ -4061,8 +4327,8 @@ RectTransform:
4061
4327
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
4062
4328
  m_AnchorMin: {x: 0, y: 1}
4063
4329
  m_AnchorMax: {x: 0, y: 1}
4064
- m_AnchoredPosition: {x: 0, y: -140}
4065
- m_SizeDelta: {x: 0, y: 80}
4330
+ m_AnchoredPosition: {x: 0, y: -80}
4331
+ m_SizeDelta: {x: 0, y: 40}
4066
4332
  m_Pivot: {x: 0.5, y: 0.5}
4067
4333
  --- !u!1 &6989881469107270251
4068
4334
  GameObject:
@@ -4096,12 +4362,12 @@ RectTransform:
4096
4362
  m_Children:
4097
4363
  - {fileID: 4006703200713162677}
4098
4364
  m_Father: {fileID: 635883761041762154}
4099
- m_RootOrder: 4
4365
+ m_RootOrder: 8
4100
4366
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
4101
4367
  m_AnchorMin: {x: 0, y: 0}
4102
4368
  m_AnchorMax: {x: 1, y: 1}
4103
- m_AnchoredPosition: {x: 0, y: 0}
4104
- m_SizeDelta: {x: 0, y: 0}
4369
+ m_AnchoredPosition: {x: 1.0351562, y: 4.528015}
4370
+ m_SizeDelta: {x: -84.8867, y: -53.056}
4105
4371
  m_Pivot: {x: 0.5, y: 0.5}
4106
4372
  --- !u!222 &440698246067137594
4107
4373
  CanvasRenderer:
@@ -4124,14 +4390,14 @@ MonoBehaviour:
4124
4390
  m_Name:
4125
4391
  m_EditorClassIdentifier:
4126
4392
  m_Material: {fileID: 0}
4127
- m_Color: {r: 0, g: 0, b: 0, a: 1}
4393
+ m_Color: {r: 0.6792453, g: 0.6792453, b: 0.6792453, a: 1}
4128
4394
  m_RaycastTarget: 1
4129
4395
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
4130
4396
  m_Maskable: 1
4131
4397
  m_OnCullStateChanged:
4132
4398
  m_PersistentCalls:
4133
4399
  m_Calls: []
4134
- m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0}
4400
+ m_Sprite: {fileID: 21300000, guid: c67b2dc399757344d9e3f98c9a324730, type: 3}
4135
4401
  m_Type: 1
4136
4402
  m_PreserveAspect: 0
4137
4403
  m_FillCenter: 1
@@ -4140,7 +4406,165 @@ MonoBehaviour:
4140
4406
  m_FillClockwise: 1
4141
4407
  m_FillOrigin: 0
4142
4408
  m_UseSpriteMesh: 0
4143
- m_PixelsPerUnitMultiplier: 1
4409
+ m_PixelsPerUnitMultiplier: 4
4410
+ --- !u!1 &7021759799490561711
4411
+ GameObject:
4412
+ m_ObjectHideFlags: 0
4413
+ m_CorrespondingSourceObject: {fileID: 0}
4414
+ m_PrefabInstance: {fileID: 0}
4415
+ m_PrefabAsset: {fileID: 0}
4416
+ serializedVersion: 6
4417
+ m_Component:
4418
+ - component: {fileID: 2103088632608135601}
4419
+ - component: {fileID: 1022030940575084909}
4420
+ - component: {fileID: 6557177030480385979}
4421
+ - component: {fileID: 8550232142780278196}
4422
+ m_Layer: 5
4423
+ m_Name: Label
4424
+ m_TagString: Untagged
4425
+ m_Icon: {fileID: 0}
4426
+ m_NavMeshLayer: 0
4427
+ m_StaticEditorFlags: 0
4428
+ m_IsActive: 1
4429
+ --- !u!224 &2103088632608135601
4430
+ RectTransform:
4431
+ m_ObjectHideFlags: 0
4432
+ m_CorrespondingSourceObject: {fileID: 0}
4433
+ m_PrefabInstance: {fileID: 0}
4434
+ m_PrefabAsset: {fileID: 0}
4435
+ m_GameObject: {fileID: 7021759799490561711}
4436
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
4437
+ m_LocalPosition: {x: 0, y: 0, z: 0}
4438
+ m_LocalScale: {x: 1, y: 1, z: 1}
4439
+ m_ConstrainProportionsScale: 0
4440
+ m_Children: []
4441
+ m_Father: {fileID: 635883761041762154}
4442
+ m_RootOrder: 0
4443
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
4444
+ m_AnchorMin: {x: 0.5, y: 1}
4445
+ m_AnchorMax: {x: 0.5, y: 1}
4446
+ m_AnchoredPosition: {x: -6.1502686, y: -91}
4447
+ m_SizeDelta: {x: 1271.0393, y: 163.1087}
4448
+ m_Pivot: {x: 0.5, y: 1}
4449
+ --- !u!222 &1022030940575084909
4450
+ CanvasRenderer:
4451
+ m_ObjectHideFlags: 0
4452
+ m_CorrespondingSourceObject: {fileID: 0}
4453
+ m_PrefabInstance: {fileID: 0}
4454
+ m_PrefabAsset: {fileID: 0}
4455
+ m_GameObject: {fileID: 7021759799490561711}
4456
+ m_CullTransparentMesh: 1
4457
+ --- !u!114 &6557177030480385979
4458
+ MonoBehaviour:
4459
+ m_ObjectHideFlags: 0
4460
+ m_CorrespondingSourceObject: {fileID: 0}
4461
+ m_PrefabInstance: {fileID: 0}
4462
+ m_PrefabAsset: {fileID: 0}
4463
+ m_GameObject: {fileID: 7021759799490561711}
4464
+ m_Enabled: 1
4465
+ m_EditorHideFlags: 0
4466
+ m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
4467
+ m_Name:
4468
+ m_EditorClassIdentifier:
4469
+ m_Material: {fileID: 0}
4470
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
4471
+ m_RaycastTarget: 1
4472
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
4473
+ m_Maskable: 1
4474
+ m_OnCullStateChanged:
4475
+ m_PersistentCalls:
4476
+ m_Calls: []
4477
+ m_text: Beamable's Cloud Save feature provides secure, cross-platform storage for
4478
+ player game data. In this sample you can explore multiple ways to save data in
4479
+ the system such as "String", "Byte" and "Serializable" Types.
4480
+ m_isRightToLeft: 0
4481
+ m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
4482
+ m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
4483
+ m_fontSharedMaterials: []
4484
+ m_fontMaterial: {fileID: 0}
4485
+ m_fontMaterials: []
4486
+ m_fontColor32:
4487
+ serializedVersion: 2
4488
+ rgba: 4294967295
4489
+ m_fontColor: {r: 1, g: 1, b: 1, a: 1}
4490
+ m_enableVertexGradient: 0
4491
+ m_colorMode: 3
4492
+ m_fontColorGradient:
4493
+ topLeft: {r: 1, g: 1, b: 1, a: 1}
4494
+ topRight: {r: 1, g: 1, b: 1, a: 1}
4495
+ bottomLeft: {r: 1, g: 1, b: 1, a: 1}
4496
+ bottomRight: {r: 1, g: 1, b: 1, a: 1}
4497
+ m_fontColorGradientPreset: {fileID: 0}
4498
+ m_spriteAsset: {fileID: 0}
4499
+ m_tintAllSprites: 0
4500
+ m_StyleSheet: {fileID: 0}
4501
+ m_TextStyleHashCode: -1183493901
4502
+ m_overrideHtmlColors: 0
4503
+ m_faceColor:
4504
+ serializedVersion: 2
4505
+ rgba: 4294967295
4506
+ m_fontSize: 30
4507
+ m_fontSizeBase: 30
4508
+ m_fontWeight: 400
4509
+ m_enableAutoSizing: 0
4510
+ m_fontSizeMin: 18
4511
+ m_fontSizeMax: 72
4512
+ m_fontStyle: 1
4513
+ m_HorizontalAlignment: 2
4514
+ m_VerticalAlignment: 512
4515
+ m_textAlignment: 65535
4516
+ m_characterSpacing: 0
4517
+ m_wordSpacing: 0
4518
+ m_lineSpacing: 0
4519
+ m_lineSpacingMax: 0
4520
+ m_paragraphSpacing: 0
4521
+ m_charWidthMaxAdj: 0
4522
+ m_enableWordWrapping: 1
4523
+ m_wordWrappingRatios: 0.4
4524
+ m_overflowMode: 0
4525
+ m_linkedTextComponent: {fileID: 0}
4526
+ parentLinkedComponent: {fileID: 0}
4527
+ m_enableKerning: 1
4528
+ m_enableExtraPadding: 0
4529
+ checkPaddingRequired: 0
4530
+ m_isRichText: 1
4531
+ m_parseCtrlCharacters: 1
4532
+ m_isOrthographic: 1
4533
+ m_isCullingEnabled: 0
4534
+ m_horizontalMapping: 0
4535
+ m_verticalMapping: 0
4536
+ m_uvLineOffset: 0
4537
+ m_geometrySortingOrder: 0
4538
+ m_IsTextObjectScaleStatic: 0
4539
+ m_VertexBufferAutoSizeReduction: 0
4540
+ m_useMaxVisibleDescender: 1
4541
+ m_pageToDisplay: 1
4542
+ m_margin: {x: 0, y: 0, z: 0, w: -2.0001373}
4543
+ m_isUsingLegacyAnimationComponent: 0
4544
+ m_isVolumetricText: 0
4545
+ m_hasFontAssetChanged: 0
4546
+ m_baseMaterial: {fileID: 0}
4547
+ m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
4548
+ --- !u!114 &8550232142780278196
4549
+ MonoBehaviour:
4550
+ m_ObjectHideFlags: 0
4551
+ m_CorrespondingSourceObject: {fileID: 0}
4552
+ m_PrefabInstance: {fileID: 0}
4553
+ m_PrefabAsset: {fileID: 0}
4554
+ m_GameObject: {fileID: 7021759799490561711}
4555
+ m_Enabled: 1
4556
+ m_EditorHideFlags: 0
4557
+ m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3}
4558
+ m_Name:
4559
+ m_EditorClassIdentifier:
4560
+ m_IgnoreLayout: 0
4561
+ m_MinWidth: -1
4562
+ m_MinHeight: -1
4563
+ m_PreferredWidth: -1
4564
+ m_PreferredHeight: -1
4565
+ m_FlexibleWidth: 1
4566
+ m_FlexibleHeight: -1
4567
+ m_LayoutPriority: 1
4144
4568
  --- !u!1 &7187852305296729483
4145
4569
  GameObject:
4146
4570
  m_ObjectHideFlags: 0
@@ -4215,8 +4639,8 @@ RectTransform:
4215
4639
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
4216
4640
  m_AnchorMin: {x: 0.5, y: 0}
4217
4641
  m_AnchorMax: {x: 0.5, y: 0}
4218
- m_AnchoredPosition: {x: 0, y: 18}
4219
- m_SizeDelta: {x: 200, y: 50}
4642
+ m_AnchoredPosition: {x: 0, y: -108}
4643
+ m_SizeDelta: {x: 400, y: 60}
4220
4644
  m_Pivot: {x: 0.5, y: 0}
4221
4645
  --- !u!222 &6395919697506070215
4222
4646
  CanvasRenderer:
@@ -4239,14 +4663,14 @@ MonoBehaviour:
4239
4663
  m_Name:
4240
4664
  m_EditorClassIdentifier:
4241
4665
  m_Material: {fileID: 0}
4242
- m_Color: {r: 0.4433962, g: 0.4433962, b: 0.4433962, a: 0.4627451}
4666
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
4243
4667
  m_RaycastTarget: 1
4244
4668
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
4245
4669
  m_Maskable: 1
4246
4670
  m_OnCullStateChanged:
4247
4671
  m_PersistentCalls:
4248
4672
  m_Calls: []
4249
- m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
4673
+ m_Sprite: {fileID: 21300000, guid: 721c765a3d97c0b4f865bac8223d1404, type: 3}
4250
4674
  m_Type: 1
4251
4675
  m_PreserveAspect: 0
4252
4676
  m_FillCenter: 1
@@ -4255,7 +4679,7 @@ MonoBehaviour:
4255
4679
  m_FillClockwise: 1
4256
4680
  m_FillOrigin: 0
4257
4681
  m_UseSpriteMesh: 0
4258
- m_PixelsPerUnitMultiplier: 1
4682
+ m_PixelsPerUnitMultiplier: 4
4259
4683
  --- !u!114 &8318235638134547522
4260
4684
  MonoBehaviour:
4261
4685
  m_ObjectHideFlags: 0
@@ -4337,8 +4761,8 @@ RectTransform:
4337
4761
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
4338
4762
  m_AnchorMin: {x: 0.5, y: 0}
4339
4763
  m_AnchorMax: {x: 0.5, y: 0}
4340
- m_AnchoredPosition: {x: 0, y: 18}
4341
- m_SizeDelta: {x: 200, y: 50}
4764
+ m_AnchoredPosition: {x: 0, y: -108}
4765
+ m_SizeDelta: {x: 400, y: 60}
4342
4766
  m_Pivot: {x: 0.5, y: 0}
4343
4767
  --- !u!222 &8241578334518102073
4344
4768
  CanvasRenderer:
@@ -4361,14 +4785,14 @@ MonoBehaviour:
4361
4785
  m_Name:
4362
4786
  m_EditorClassIdentifier:
4363
4787
  m_Material: {fileID: 0}
4364
- m_Color: {r: 0.4433962, g: 0.4433962, b: 0.4433962, a: 0.4627451}
4788
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
4365
4789
  m_RaycastTarget: 1
4366
4790
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
4367
4791
  m_Maskable: 1
4368
4792
  m_OnCullStateChanged:
4369
4793
  m_PersistentCalls:
4370
4794
  m_Calls: []
4371
- m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
4795
+ m_Sprite: {fileID: 21300000, guid: 721c765a3d97c0b4f865bac8223d1404, type: 3}
4372
4796
  m_Type: 1
4373
4797
  m_PreserveAspect: 0
4374
4798
  m_FillCenter: 1
@@ -4377,7 +4801,7 @@ MonoBehaviour:
4377
4801
  m_FillClockwise: 1
4378
4802
  m_FillOrigin: 0
4379
4803
  m_UseSpriteMesh: 0
4380
- m_PixelsPerUnitMultiplier: 1
4804
+ m_PixelsPerUnitMultiplier: 4
4381
4805
  --- !u!114 &9055297097401450295
4382
4806
  MonoBehaviour:
4383
4807
  m_ObjectHideFlags: 0
@@ -4545,12 +4969,12 @@ RectTransform:
4545
4969
  m_ConstrainProportionsScale: 0
4546
4970
  m_Children: []
4547
4971
  m_Father: {fileID: 635883761041762154}
4548
- m_RootOrder: 5
4972
+ m_RootOrder: 2
4549
4973
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
4550
4974
  m_AnchorMin: {x: 0, y: 1}
4551
- m_AnchorMax: {x: 1, y: 1}
4552
- m_AnchoredPosition: {x: 0, y: 0}
4553
- m_SizeDelta: {x: -90, y: 50}
4975
+ m_AnchorMax: {x: 0, y: 1}
4976
+ m_AnchoredPosition: {x: 368, y: -392}
4977
+ m_SizeDelta: {x: 559.7952, y: 50}
4554
4978
  m_Pivot: {x: 0.5, y: 1}
4555
4979
  --- !u!222 &3134619846263849889
4556
4980
  CanvasRenderer:
@@ -4623,7 +5047,7 @@ MonoBehaviour:
4623
5047
  m_lineSpacingMax: 0
4624
5048
  m_paragraphSpacing: 0
4625
5049
  m_charWidthMaxAdj: 0
4626
- m_enableWordWrapping: 1
5050
+ m_enableWordWrapping: 0
4627
5051
  m_wordWrappingRatios: 0.4
4628
5052
  m_overflowMode: 0
4629
5053
  m_linkedTextComponent: {fileID: 0}
@@ -4679,7 +5103,6 @@ GameObject:
4679
5103
  m_Component:
4680
5104
  - component: {fileID: 5671971099534195326}
4681
5105
  - component: {fileID: 2011503436199510931}
4682
- - component: {fileID: 4248121458454434143}
4683
5106
  - component: {fileID: 3754412915991625068}
4684
5107
  m_Layer: 5
4685
5108
  m_Name: Content
@@ -4707,8 +5130,8 @@ RectTransform:
4707
5130
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
4708
5131
  m_AnchorMin: {x: 0, y: 0.13168876}
4709
5132
  m_AnchorMax: {x: 1, y: 1}
4710
- m_AnchoredPosition: {x: 0, y: -52.71576}
4711
- m_SizeDelta: {x: 0, y: -105.43151}
5133
+ m_AnchoredPosition: {x: 0, y: -50}
5134
+ m_SizeDelta: {x: -60, y: -100}
4712
5135
  m_Pivot: {x: 0.5, y: 0.5}
4713
5136
  --- !u!222 &2011503436199510931
4714
5137
  CanvasRenderer:
@@ -4718,36 +5141,6 @@ CanvasRenderer:
4718
5141
  m_PrefabAsset: {fileID: 0}
4719
5142
  m_GameObject: {fileID: 7760428340987440966}
4720
5143
  m_CullTransparentMesh: 1
4721
- --- !u!114 &4248121458454434143
4722
- MonoBehaviour:
4723
- m_ObjectHideFlags: 0
4724
- m_CorrespondingSourceObject: {fileID: 0}
4725
- m_PrefabInstance: {fileID: 0}
4726
- m_PrefabAsset: {fileID: 0}
4727
- m_GameObject: {fileID: 7760428340987440966}
4728
- m_Enabled: 1
4729
- m_EditorHideFlags: 0
4730
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
4731
- m_Name:
4732
- m_EditorClassIdentifier:
4733
- m_Material: {fileID: 0}
4734
- m_Color: {r: 0, g: 0, b: 0, a: 0.392}
4735
- m_RaycastTarget: 1
4736
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
4737
- m_Maskable: 1
4738
- m_OnCullStateChanged:
4739
- m_PersistentCalls:
4740
- m_Calls: []
4741
- m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0}
4742
- m_Type: 1
4743
- m_PreserveAspect: 0
4744
- m_FillCenter: 1
4745
- m_FillMethod: 4
4746
- m_FillAmount: 1
4747
- m_FillClockwise: 1
4748
- m_FillOrigin: 0
4749
- m_UseSpriteMesh: 0
4750
- m_PixelsPerUnitMultiplier: 1
4751
5144
  --- !u!114 &3754412915991625068
4752
5145
  MonoBehaviour:
4753
5146
  m_ObjectHideFlags: 0
@@ -4844,10 +5237,11 @@ MonoBehaviour:
4844
5237
  m_OnCullStateChanged:
4845
5238
  m_PersistentCalls:
4846
5239
  m_Calls: []
4847
- m_text: Use this
5240
+ m_text: Use Cloud Data
4848
5241
  m_isRightToLeft: 0
4849
5242
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
4850
- m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
5243
+ m_sharedMaterial: {fileID: -8116913167181615731, guid: e8dc0ebc54e472548a685f67d318d23f,
5244
+ type: 2}
4851
5245
  m_fontSharedMaterials: []
4852
5246
  m_fontMaterial: {fileID: 0}
4853
5247
  m_fontMaterials: []
@@ -4877,7 +5271,7 @@ MonoBehaviour:
4877
5271
  m_enableAutoSizing: 0
4878
5272
  m_fontSizeMin: 18
4879
5273
  m_fontSizeMax: 72
4880
- m_fontStyle: 0
5274
+ m_fontStyle: 1
4881
5275
  m_HorizontalAlignment: 2
4882
5276
  m_VerticalAlignment: 512
4883
5277
  m_textAlignment: 65535
@@ -4887,7 +5281,7 @@ MonoBehaviour:
4887
5281
  m_lineSpacingMax: 0
4888
5282
  m_paragraphSpacing: 0
4889
5283
  m_charWidthMaxAdj: 0
4890
- m_enableWordWrapping: 1
5284
+ m_enableWordWrapping: 0
4891
5285
  m_wordWrappingRatios: 0.4
4892
5286
  m_overflowMode: 0
4893
5287
  m_linkedTextComponent: {fileID: 0}
@@ -4910,7 +5304,7 @@ MonoBehaviour:
4910
5304
  m_margin: {x: 0, y: 0, z: 0, w: 0}
4911
5305
  m_isUsingLegacyAnimationComponent: 0
4912
5306
  m_isVolumetricText: 0
4913
- m_hasFontAssetChanged: 0
5307
+ m_hasFontAssetChanged: 1
4914
5308
  m_baseMaterial: {fileID: 0}
4915
5309
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
4916
5310
  --- !u!1 &8155927549691240431
@@ -4946,12 +5340,12 @@ RectTransform:
4946
5340
  m_Children:
4947
5341
  - {fileID: 2723462823076888619}
4948
5342
  m_Father: {fileID: 635883761041762154}
4949
- m_RootOrder: 3
5343
+ m_RootOrder: 7
4950
5344
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
4951
- m_AnchorMin: {x: 0.5, y: 0.5}
4952
- m_AnchorMax: {x: 0.5, y: 0.5}
4953
- m_AnchoredPosition: {x: 0, y: -225.00002}
4954
- m_SizeDelta: {x: 659.7, y: 96.5}
5345
+ m_AnchorMin: {x: 1, y: 0.5}
5346
+ m_AnchorMax: {x: 1, y: 0.5}
5347
+ m_AnchoredPosition: {x: -387.99994, y: -232.99979}
5348
+ m_SizeDelta: {x: 507.6089, y: 96.5}
4955
5349
  m_Pivot: {x: 0.5, y: 0}
4956
5350
  --- !u!222 &8606827784230151458
4957
5351
  CanvasRenderer:
@@ -4974,14 +5368,14 @@ MonoBehaviour:
4974
5368
  m_Name:
4975
5369
  m_EditorClassIdentifier:
4976
5370
  m_Material: {fileID: 0}
4977
- m_Color: {r: 0.4433962, g: 0.4433962, b: 0.4433962, a: 0.4627451}
5371
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
4978
5372
  m_RaycastTarget: 1
4979
5373
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
4980
5374
  m_Maskable: 1
4981
5375
  m_OnCullStateChanged:
4982
5376
  m_PersistentCalls:
4983
5377
  m_Calls: []
4984
- m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
5378
+ m_Sprite: {fileID: 21300000, guid: 721c765a3d97c0b4f865bac8223d1404, type: 3}
4985
5379
  m_Type: 1
4986
5380
  m_PreserveAspect: 0
4987
5381
  m_FillCenter: 1
@@ -4990,7 +5384,7 @@ MonoBehaviour:
4990
5384
  m_FillClockwise: 1
4991
5385
  m_FillOrigin: 0
4992
5386
  m_UseSpriteMesh: 0
4993
- m_PixelsPerUnitMultiplier: 1
5387
+ m_PixelsPerUnitMultiplier: 4
4994
5388
  --- !u!114 &6956599867106975422
4995
5389
  MonoBehaviour:
4996
5390
  m_ObjectHideFlags: 0
@@ -5065,6 +5459,7 @@ RectTransform:
5065
5459
  m_ConstrainProportionsScale: 0
5066
5460
  m_Children:
5067
5461
  - {fileID: 3788109898908899715}
5462
+ - {fileID: 920554427867359167}
5068
5463
  - {fileID: 1507157777282565319}
5069
5464
  - {fileID: 1979298680826510928}
5070
5465
  m_Father: {fileID: 1229157888939033911}
@@ -5136,8 +5531,8 @@ RectTransform:
5136
5531
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
5137
5532
  m_AnchorMin: {x: 0, y: 0.5}
5138
5533
  m_AnchorMax: {x: 0, y: 0.5}
5139
- m_AnchoredPosition: {x: 600.087, y: 0}
5140
- m_SizeDelta: {x: 550, y: 80}
5534
+ m_AnchoredPosition: {x: 425.14307, y: 0}
5535
+ m_SizeDelta: {x: 386.4258, y: 40}
5141
5536
  m_Pivot: {x: 0.5, y: 0.5}
5142
5537
  --- !u!222 &4222109651267911085
5143
5538
  CanvasRenderer:
@@ -5170,7 +5565,8 @@ MonoBehaviour:
5170
5565
  m_text: Value
5171
5566
  m_isRightToLeft: 0
5172
5567
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
5173
- m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
5568
+ m_sharedMaterial: {fileID: -8116913167181615731, guid: e8dc0ebc54e472548a685f67d318d23f,
5569
+ type: 2}
5174
5570
  m_fontSharedMaterials: []
5175
5571
  m_fontMaterial: {fileID: 0}
5176
5572
  m_fontMaterials: []
@@ -5194,15 +5590,15 @@ MonoBehaviour:
5194
5590
  m_faceColor:
5195
5591
  serializedVersion: 2
5196
5592
  rgba: 4294967295
5197
- m_fontSize: 71.6
5198
- m_fontSizeBase: 36
5593
+ m_fontSize: 30
5594
+ m_fontSizeBase: 30
5199
5595
  m_fontWeight: 400
5200
5596
  m_enableAutoSizing: 1
5201
- m_fontSizeMin: 18
5202
- m_fontSizeMax: 72
5597
+ m_fontSizeMin: 15
5598
+ m_fontSizeMax: 30
5203
5599
  m_fontStyle: 0
5204
5600
  m_HorizontalAlignment: 1
5205
- m_VerticalAlignment: 256
5601
+ m_VerticalAlignment: 512
5206
5602
  m_textAlignment: 65535
5207
5603
  m_characterSpacing: 0
5208
5604
  m_wordSpacing: 0
@@ -5210,7 +5606,7 @@ MonoBehaviour:
5210
5606
  m_lineSpacingMax: 0
5211
5607
  m_paragraphSpacing: 0
5212
5608
  m_charWidthMaxAdj: 0
5213
- m_enableWordWrapping: 1
5609
+ m_enableWordWrapping: 0
5214
5610
  m_wordWrappingRatios: 0.4
5215
5611
  m_overflowMode: 0
5216
5612
  m_linkedTextComponent: {fileID: 0}
@@ -5233,7 +5629,7 @@ MonoBehaviour:
5233
5629
  m_margin: {x: 0, y: 0, z: 0, w: 0}
5234
5630
  m_isUsingLegacyAnimationComponent: 0
5235
5631
  m_isVolumetricText: 0
5236
- m_hasFontAssetChanged: 0
5632
+ m_hasFontAssetChanged: 1
5237
5633
  m_baseMaterial: {fileID: 0}
5238
5634
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
5239
5635
  --- !u!1 &8696642109754500687
@@ -5270,12 +5666,12 @@ RectTransform:
5270
5666
  - {fileID: 6110197735363753084}
5271
5667
  - {fileID: 7222648886523985541}
5272
5668
  m_Father: {fileID: 4006703200713162677}
5273
- m_RootOrder: 1
5669
+ m_RootOrder: 2
5274
5670
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
5275
5671
  m_AnchorMin: {x: 0, y: 1}
5276
5672
  m_AnchorMax: {x: 0, y: 1}
5277
- m_AnchoredPosition: {x: 558.587, y: -540}
5278
- m_SizeDelta: {x: 917.17395, y: 680}
5673
+ m_AnchoredPosition: {x: 456.20267, y: -448.92725}
5674
+ m_SizeDelta: {x: 712.40533, y: 497.8545}
5279
5675
  m_Pivot: {x: 0.5, y: 0.5}
5280
5676
  --- !u!222 &2506003650193009539
5281
5677
  CanvasRenderer:
@@ -5298,14 +5694,14 @@ MonoBehaviour:
5298
5694
  m_Name:
5299
5695
  m_EditorClassIdentifier:
5300
5696
  m_Material: {fileID: 0}
5301
- m_Color: {r: 1, g: 1, b: 1, a: 0.392}
5697
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
5302
5698
  m_RaycastTarget: 1
5303
5699
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
5304
5700
  m_Maskable: 1
5305
5701
  m_OnCullStateChanged:
5306
5702
  m_PersistentCalls:
5307
5703
  m_Calls: []
5308
- m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0}
5704
+ m_Sprite: {fileID: 21300000, guid: c67b2dc399757344d9e3f98c9a324730, type: 3}
5309
5705
  m_Type: 1
5310
5706
  m_PreserveAspect: 0
5311
5707
  m_FillCenter: 1
@@ -5314,7 +5710,7 @@ MonoBehaviour:
5314
5710
  m_FillClockwise: 1
5315
5711
  m_FillOrigin: 0
5316
5712
  m_UseSpriteMesh: 0
5317
- m_PixelsPerUnitMultiplier: 1
5713
+ m_PixelsPerUnitMultiplier: 3
5318
5714
  --- !u!1 &8865779001895112933
5319
5715
  GameObject:
5320
5716
  m_ObjectHideFlags: 0
@@ -5350,8 +5746,8 @@ RectTransform:
5350
5746
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
5351
5747
  m_AnchorMin: {x: 0, y: 0.5}
5352
5748
  m_AnchorMax: {x: 0, y: 0.5}
5353
- m_AnchoredPosition: {x: 150, y: 0}
5354
- m_SizeDelta: {x: 300, y: 80}
5749
+ m_AnchoredPosition: {x: 104.41733, y: -0.000016212}
5750
+ m_SizeDelta: {x: 208.8346, y: 40}
5355
5751
  m_Pivot: {x: 0.5, y: 0.5}
5356
5752
  --- !u!222 &9093608322644119501
5357
5753
  CanvasRenderer:
@@ -5381,10 +5777,11 @@ MonoBehaviour:
5381
5777
  m_OnCullStateChanged:
5382
5778
  m_PersistentCalls:
5383
5779
  m_Calls: []
5384
- m_text: 'Last modified:'
5780
+ m_text: 'Last Modified:'
5385
5781
  m_isRightToLeft: 0
5386
5782
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
5387
- m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
5783
+ m_sharedMaterial: {fileID: -8116913167181615731, guid: e8dc0ebc54e472548a685f67d318d23f,
5784
+ type: 2}
5388
5785
  m_fontSharedMaterials: []
5389
5786
  m_fontMaterial: {fileID: 0}
5390
5787
  m_fontMaterials: []
@@ -5408,13 +5805,13 @@ MonoBehaviour:
5408
5805
  m_faceColor:
5409
5806
  serializedVersion: 2
5410
5807
  rgba: 4294967295
5411
- m_fontSize: 47.75
5412
- m_fontSizeBase: 36
5808
+ m_fontSize: 30
5809
+ m_fontSizeBase: 30
5413
5810
  m_fontWeight: 400
5414
- m_enableAutoSizing: 1
5811
+ m_enableAutoSizing: 0
5415
5812
  m_fontSizeMin: 18
5416
5813
  m_fontSizeMax: 72
5417
- m_fontStyle: 0
5814
+ m_fontStyle: 1
5418
5815
  m_HorizontalAlignment: 4
5419
5816
  m_VerticalAlignment: 512
5420
5817
  m_textAlignment: 65535
@@ -5424,7 +5821,7 @@ MonoBehaviour:
5424
5821
  m_lineSpacingMax: 0
5425
5822
  m_paragraphSpacing: 0
5426
5823
  m_charWidthMaxAdj: 0
5427
- m_enableWordWrapping: 1
5824
+ m_enableWordWrapping: 0
5428
5825
  m_wordWrappingRatios: 0.4
5429
5826
  m_overflowMode: 0
5430
5827
  m_linkedTextComponent: {fileID: 0}
@@ -5447,7 +5844,7 @@ MonoBehaviour:
5447
5844
  m_margin: {x: 0, y: 0, z: 0, w: 0}
5448
5845
  m_isUsingLegacyAnimationComponent: 0
5449
5846
  m_isVolumetricText: 0
5450
- m_hasFontAssetChanged: 0
5847
+ m_hasFontAssetChanged: 1
5451
5848
  m_baseMaterial: {fileID: 0}
5452
5849
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
5453
5850
  --- !u!1 &8929249103894462865
@@ -5485,8 +5882,8 @@ RectTransform:
5485
5882
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
5486
5883
  m_AnchorMin: {x: 0, y: 0.5}
5487
5884
  m_AnchorMax: {x: 0, y: 0.5}
5488
- m_AnchoredPosition: {x: 150, y: 0}
5489
- m_SizeDelta: {x: 300, y: 80}
5885
+ m_AnchoredPosition: {x: 105.21307, y: 0}
5886
+ m_SizeDelta: {x: 210.4262, y: 40}
5490
5887
  m_Pivot: {x: 0.5, y: 0.5}
5491
5888
  --- !u!222 &9183853083326105998
5492
5889
  CanvasRenderer:
@@ -5519,7 +5916,8 @@ MonoBehaviour:
5519
5916
  m_text: 'Size:'
5520
5917
  m_isRightToLeft: 0
5521
5918
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
5522
- m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
5919
+ m_sharedMaterial: {fileID: -8116913167181615731, guid: e8dc0ebc54e472548a685f67d318d23f,
5920
+ type: 2}
5523
5921
  m_fontSharedMaterials: []
5524
5922
  m_fontMaterial: {fileID: 0}
5525
5923
  m_fontMaterials: []
@@ -5543,13 +5941,13 @@ MonoBehaviour:
5543
5941
  m_faceColor:
5544
5942
  serializedVersion: 2
5545
5943
  rgba: 4294967295
5546
- m_fontSize: 71.6
5547
- m_fontSizeBase: 36
5944
+ m_fontSize: 30
5945
+ m_fontSizeBase: 30
5548
5946
  m_fontWeight: 400
5549
- m_enableAutoSizing: 1
5947
+ m_enableAutoSizing: 0
5550
5948
  m_fontSizeMin: 18
5551
5949
  m_fontSizeMax: 72
5552
- m_fontStyle: 0
5950
+ m_fontStyle: 1
5553
5951
  m_HorizontalAlignment: 4
5554
5952
  m_VerticalAlignment: 512
5555
5953
  m_textAlignment: 65535
@@ -5559,7 +5957,7 @@ MonoBehaviour:
5559
5957
  m_lineSpacingMax: 0
5560
5958
  m_paragraphSpacing: 0
5561
5959
  m_charWidthMaxAdj: 0
5562
- m_enableWordWrapping: 1
5960
+ m_enableWordWrapping: 0
5563
5961
  m_wordWrappingRatios: 0.4
5564
5962
  m_overflowMode: 0
5565
5963
  m_linkedTextComponent: {fileID: 0}
@@ -5582,6 +5980,6 @@ MonoBehaviour:
5582
5980
  m_margin: {x: 0, y: 0, z: 0, w: 0}
5583
5981
  m_isUsingLegacyAnimationComponent: 0
5584
5982
  m_isVolumetricText: 0
5585
- m_hasFontAssetChanged: 0
5983
+ m_hasFontAssetChanged: 1
5586
5984
  m_baseMaterial: {fileID: 0}
5587
5985
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}