com.beamable 5.0.1 → 5.1.0-PREVIEW.RC1

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 (658) 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 +17 -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/BeamCommand.cs +0 -6
  421. package/Editor/BeamCli/BeamWebCommand.cs +38 -8
  422. package/Editor/BeamCli/Commands/Beam.cs +7 -0
  423. package/Editor/BeamCli/Commands/BeamBeamableTypesSchema.cs +17 -0
  424. package/Editor/BeamCli/Commands/BeamBeamableTypesSchema.cs.meta +11 -0
  425. package/Editor/BeamCli/Commands/BeamComponentExtensionOption.cs +13 -0
  426. package/Editor/BeamCli/Commands/BeamComponentExtensionOption.cs.meta +11 -0
  427. package/Editor/BeamCli/Commands/BeamComponentSelectorOption.cs +13 -0
  428. package/Editor/BeamCli/Commands/BeamComponentSelectorOption.cs.meta +11 -0
  429. package/Editor/BeamCli/Commands/BeamContentFieldEntry.cs +14 -0
  430. package/Editor/BeamCli/Commands/BeamContentFieldEntry.cs.meta +11 -0
  431. package/Editor/BeamCli/Commands/BeamContentHistory.cs +97 -0
  432. package/Editor/BeamCli/Commands/BeamContentHistory.cs.meta +11 -0
  433. package/Editor/BeamCli/Commands/BeamContentHistoryChangelist.cs +11 -0
  434. package/Editor/BeamCli/Commands/BeamContentHistoryChangelist.cs.meta +11 -0
  435. package/Editor/BeamCli/Commands/BeamContentHistoryChangelistEntry.cs +23 -0
  436. package/Editor/BeamCli/Commands/BeamContentHistoryChangelistEntry.cs.meta +11 -0
  437. package/Editor/BeamCli/Commands/BeamContentHistoryChangelistPage.cs +12 -0
  438. package/Editor/BeamCli/Commands/BeamContentHistoryChangelistPage.cs.meta +11 -0
  439. package/Editor/BeamCli/Commands/BeamContentHistoryCommandEvent.cs +16 -0
  440. package/Editor/BeamCli/Commands/BeamContentHistoryCommandEvent.cs.meta +11 -0
  441. package/Editor/BeamCli/Commands/BeamContentHistoryEntriesPage.cs +15 -0
  442. package/Editor/BeamCli/Commands/BeamContentHistoryEntriesPage.cs.meta +11 -0
  443. package/Editor/BeamCli/Commands/BeamContentHistoryEntry.cs +16 -0
  444. package/Editor/BeamCli/Commands/BeamContentHistoryEntry.cs.meta +11 -0
  445. package/Editor/BeamCli/Commands/BeamContentHistoryRestoreCommandOutput.cs +12 -0
  446. package/Editor/BeamCli/Commands/BeamContentHistoryRestoreCommandOutput.cs.meta +11 -0
  447. package/Editor/BeamCli/Commands/BeamContentHistoryRestoreContent.cs +82 -0
  448. package/Editor/BeamCli/Commands/BeamContentHistoryRestoreContent.cs.meta +11 -0
  449. package/Editor/BeamCli/Commands/BeamContentHistorySyncChangelist.cs +71 -0
  450. package/Editor/BeamCli/Commands/BeamContentHistorySyncChangelist.cs.meta +11 -0
  451. package/Editor/BeamCli/Commands/BeamContentHistorySyncChangelistCommandOutput.cs +12 -0
  452. package/Editor/BeamCli/Commands/BeamContentHistorySyncChangelistCommandOutput.cs.meta +11 -0
  453. package/Editor/BeamCli/Commands/BeamContentHistorySyncContent.cs +82 -0
  454. package/Editor/BeamCli/Commands/BeamContentHistorySyncContent.cs.meta +11 -0
  455. package/Editor/BeamCli/Commands/BeamContentHistorySyncContentCommandOutput.cs +12 -0
  456. package/Editor/BeamCli/Commands/BeamContentHistorySyncContentCommandOutput.cs.meta +11 -0
  457. package/Editor/BeamCli/Commands/BeamContentSync.cs +7 -0
  458. package/Editor/BeamCli/Commands/BeamContentTypeEntry.cs +18 -0
  459. package/Editor/BeamCli/Commands/BeamContentTypeEntry.cs.meta +11 -0
  460. package/Editor/BeamCli/Commands/BeamDeployablePlan.cs +2 -0
  461. package/Editor/BeamCli/Commands/BeamDeploymentDiffSummary.cs +3 -0
  462. package/Editor/BeamCli/Commands/BeamDeploymentPlan.cs +7 -0
  463. package/Editor/BeamCli/Commands/BeamDeploymentRelease.cs +7 -0
  464. package/Editor/BeamCli/Commands/BeamFederationMethodEntry.cs +15 -0
  465. package/Editor/BeamCli/Commands/BeamFederationMethodEntry.cs.meta +11 -0
  466. package/Editor/BeamCli/Commands/BeamFederationMethodParam.cs +13 -0
  467. package/Editor/BeamCli/Commands/BeamFederationMethodParam.cs.meta +11 -0
  468. package/Editor/BeamCli/Commands/BeamFederationTypeEntry.cs +17 -0
  469. package/Editor/BeamCli/Commands/BeamFederationTypeEntry.cs.meta +11 -0
  470. package/Editor/BeamCli/Commands/BeamGameWithRealms.cs +14 -0
  471. package/Editor/BeamCli/Commands/BeamGameWithRealms.cs.meta +11 -0
  472. package/Editor/BeamCli/Commands/BeamGenerateSkillDocs.cs +57 -0
  473. package/Editor/BeamCli/Commands/BeamGenerateSkillDocs.cs.meta +11 -0
  474. package/Editor/BeamCli/Commands/BeamGenerateSkillDocsCommandResult.cs +12 -0
  475. package/Editor/BeamCli/Commands/BeamGenerateSkillDocsCommandResult.cs.meta +11 -0
  476. package/Editor/BeamCli/Commands/BeamGenerateTypeSchema.cs +64 -0
  477. package/Editor/BeamCli/Commands/BeamGenerateTypeSchema.cs.meta +11 -0
  478. package/Editor/BeamCli/Commands/BeamHostServiceDescriptor.cs +1 -0
  479. package/Editor/BeamCli/Commands/BeamInitGetRealms.cs +73 -0
  480. package/Editor/BeamCli/Commands/BeamInitGetRealms.cs.meta +11 -0
  481. package/Editor/BeamCli/Commands/BeamInitGetRealmsResult.cs +12 -0
  482. package/Editor/BeamCli/Commands/BeamInitGetRealmsResult.cs.meta +11 -0
  483. package/Editor/BeamCli/Commands/BeamInstallAISkillsCommandResult.cs +17 -0
  484. package/Editor/BeamCli/Commands/BeamInstallAISkillsCommandResult.cs.meta +11 -0
  485. package/Editor/BeamCli/Commands/BeamInstallAiSkill.cs +85 -0
  486. package/Editor/BeamCli/Commands/BeamInstallAiSkill.cs.meta +11 -0
  487. package/Editor/BeamCli/Commands/BeamListMountSitesCommandResults.cs +12 -0
  488. package/Editor/BeamCli/Commands/BeamListMountSitesCommandResults.cs.meta +11 -0
  489. package/Editor/BeamCli/Commands/BeamListReplacementTypeCommandOutput.cs +12 -0
  490. package/Editor/BeamCli/Commands/BeamListReplacementTypeCommandOutput.cs.meta +11 -0
  491. package/Editor/BeamCli/Commands/BeamMcpSetup.cs +58 -0
  492. package/Editor/BeamCli/Commands/BeamMcpSetup.cs.meta +11 -0
  493. package/Editor/BeamCli/Commands/BeamMcpSetupCommandResult.cs +12 -0
  494. package/Editor/BeamCli/Commands/BeamMcpSetupCommandResult.cs.meta +11 -0
  495. package/Editor/BeamCli/Commands/BeamMountSiteConfig.cs +14 -0
  496. package/Editor/BeamCli/Commands/BeamMountSiteConfig.cs.meta +11 -0
  497. package/Editor/BeamCli/Commands/BeamMountSiteSelector.cs +13 -0
  498. package/Editor/BeamCli/Commands/BeamMountSiteSelector.cs.meta +11 -0
  499. package/Editor/BeamCli/Commands/BeamPageExtensionOption.cs +13 -0
  500. package/Editor/BeamCli/Commands/BeamPageExtensionOption.cs.meta +11 -0
  501. package/Editor/BeamCli/Commands/BeamPortalExtensionAddMicroservice.cs +55 -0
  502. package/Editor/BeamCli/Commands/BeamPortalExtensionAddMicroservice.cs.meta +11 -0
  503. package/Editor/BeamCli/Commands/BeamPortalExtensionFileUploadInfo.cs +16 -0
  504. package/Editor/BeamCli/Commands/BeamPortalExtensionFileUploadInfo.cs.meta +11 -0
  505. package/Editor/BeamCli/Commands/BeamPortalExtensionListExtensionOptions.cs +51 -0
  506. package/Editor/BeamCli/Commands/BeamPortalExtensionListExtensionOptions.cs.meta +11 -0
  507. package/Editor/BeamCli/Commands/BeamPortalExtensionListMountSites.cs +51 -0
  508. package/Editor/BeamCli/Commands/BeamPortalExtensionListMountSites.cs.meta +11 -0
  509. package/Editor/BeamCli/Commands/BeamPortalExtensionOptionsResult.cs +13 -0
  510. package/Editor/BeamCli/Commands/BeamPortalExtensionOptionsResult.cs.meta +11 -0
  511. package/Editor/BeamCli/Commands/BeamPortalExtensionPlanFileReference.cs +14 -0
  512. package/Editor/BeamCli/Commands/BeamPortalExtensionPlanFileReference.cs.meta +11 -0
  513. package/Editor/BeamCli/Commands/BeamPortalExtensionPlanReference.cs +16 -0
  514. package/Editor/BeamCli/Commands/BeamPortalExtensionPlanReference.cs.meta +11 -0
  515. package/Editor/BeamCli/Commands/BeamPortalExtensionSetConfig.cs +63 -0
  516. package/Editor/BeamCli/Commands/BeamPortalExtensionSetConfig.cs.meta +11 -0
  517. package/Editor/BeamCli/Commands/BeamPortalExtensionUploadInfo.cs +15 -0
  518. package/Editor/BeamCli/Commands/BeamPortalExtensionUploadInfo.cs.meta +11 -0
  519. package/Editor/BeamCli/Commands/BeamProjectAddReplacementType.cs +81 -0
  520. package/Editor/BeamCli/Commands/BeamProjectAddReplacementType.cs.meta +11 -0
  521. package/Editor/BeamCli/Commands/BeamProjectBuild.cs +7 -0
  522. package/Editor/BeamCli/Commands/BeamProjectGenerateClientOapi.cs +14 -0
  523. package/Editor/BeamCli/Commands/BeamProjectListReplacementType.cs +58 -0
  524. package/Editor/BeamCli/Commands/BeamProjectListReplacementType.cs.meta +11 -0
  525. package/Editor/BeamCli/Commands/BeamProjectNewPortalExtension.cs +121 -0
  526. package/Editor/BeamCli/Commands/BeamProjectNewPortalExtension.cs.meta +11 -0
  527. package/Editor/BeamCli/Commands/BeamProjectRemoveReplacementType.cs +60 -0
  528. package/Editor/BeamCli/Commands/BeamProjectRemoveReplacementType.cs.meta +11 -0
  529. package/Editor/BeamCli/Commands/BeamRealmOption.cs +16 -0
  530. package/Editor/BeamCli/Commands/BeamRealmOption.cs.meta +11 -0
  531. package/Editor/BeamCli/Commands/BeamRemotePortalConfiguration.cs +12 -0
  532. package/Editor/BeamCli/Commands/BeamRemotePortalConfiguration.cs.meta +11 -0
  533. package/Editor/BeamCli/Commands/BeamReplacementTypeInfo.cs +15 -0
  534. package/Editor/BeamCli/Commands/BeamReplacementTypeInfo.cs.meta +11 -0
  535. package/Editor/BeamCli/Commands/BeamSetPortalExtensionConfigCommandResults.cs +11 -0
  536. package/Editor/BeamCli/Commands/BeamSetPortalExtensionConfigCommandResults.cs.meta +11 -0
  537. package/Editor/BeamCli/Commands/BeamUnrealTypeMappingEntry.cs +14 -0
  538. package/Editor/BeamCli/Commands/BeamUnrealTypeMappingEntry.cs.meta +11 -0
  539. package/Editor/BeamCli/Commands/BeamUtilityMemberEntry.cs +16 -0
  540. package/Editor/BeamCli/Commands/BeamUtilityMemberEntry.cs.meta +11 -0
  541. package/Editor/BeamCli/Commands/BeamUtilityMethodEntry.cs +16 -0
  542. package/Editor/BeamCli/Commands/BeamUtilityMethodEntry.cs.meta +11 -0
  543. package/Editor/BeamCli/Commands/BeamUtilityParam.cs +13 -0
  544. package/Editor/BeamCli/Commands/BeamUtilityParam.cs.meta +11 -0
  545. package/Editor/BeamCli/Commands/BeamUtilityTypeEntry.cs +19 -0
  546. package/Editor/BeamCli/Commands/BeamUtilityTypeEntry.cs.meta +11 -0
  547. package/Editor/BeamCli/UI/LogUtil/LogViewUtil.cs +2 -0
  548. package/Editor/ContentService/CliContentService.cs +125 -9
  549. package/Editor/LibraryService.cs +25 -2
  550. package/Editor/Modules/Content/DefaultAssets~/currency/icon.png +0 -0
  551. package/Editor/Modules/Content/UI/ContentObjectEditor.cs +3 -2
  552. package/Editor/Server/MicroserviceConfiguration.cs +3 -0
  553. package/Editor/Server/UI/PublishWindow/UsamPublishWindow.cs +5 -1
  554. package/Editor/Server/Usam/UsamService_GenerateClient.cs +6 -1
  555. package/Editor/UI/AccountWindow/AccountWindow_SignedIn.cs +1 -1
  556. package/Editor/UI/ContentWindow/ContentWindow.cs +8 -1
  557. package/Editor/UI/ContentWindow/ContentWindow_ContentActions.cs +50 -9
  558. package/Editor/UI/ContentWindow/ContentWindow_Header.cs +17 -6
  559. package/Editor/UI/ContentWindow/ContentWindow_ItemsPanel.cs +3 -0
  560. package/Editor/UI/LibraryWindow/BeamLibraryWindow.cs +2 -2
  561. package/Editor/UI/LibraryWindow/BeamLibraryWindow_Main.cs +0 -21
  562. package/Editor/UI/LibraryWindow/BeamLibraryWindow_Samples.cs +87 -38
  563. package/Editor/UI/McpMenuItems.cs +47 -0
  564. package/Editor/UI/McpMenuItems.cs.meta +11 -0
  565. package/Runtime/Beam.cs +2 -0
  566. package/Runtime/BeamContext.cs +9 -2
  567. package/Runtime/Core/Platform/SDK/Events/EventsService.cs +8 -2
  568. package/Runtime/Core/Platform/SDK/Inventory/InventoryService.cs +7 -3
  569. package/Runtime/Environment/Resources/env-default.json +3 -3
  570. package/Runtime/Environment/Resources/versions-default.json +1 -1
  571. package/Runtime/Modules/Console/BeamableAdminConsole.cs +725 -0
  572. package/Runtime/Modules/Console/BeamableAdminConsole.cs.meta +3 -0
  573. package/Runtime/Modules/Console/ConsoleConfiguration.cs +4 -3
  574. package/Runtime/Modules/Console/ConsoleFlow.cs +3 -0
  575. package/Runtime/Modules/Content/ContentConfiguration.cs +11 -1
  576. package/Runtime/Modules/Content/ContentParameterProvider.cs +2 -0
  577. package/Runtime/Modules/Content/ContentService.cs +13 -4
  578. package/Runtime/Server/MicroserviceClient.cs +5 -2
  579. package/Runtime/UI/Lightbeam/LightBeam.cs +18 -0
  580. package/Runtime/UI/Lightbeam/Sprites_v1/BeamLogo.PNG +0 -0
  581. package/Runtime/UI/Lightbeam/Sprites_v1/BeamLogo.PNG.meta +325 -0
  582. package/Runtime/UI/Lightbeam/Sprites_v1/Bg.png +0 -0
  583. package/Runtime/UI/Lightbeam/Sprites_v1/Bg.png.meta +143 -0
  584. package/Runtime/UI/Lightbeam/Sprites_v1/BtBase.png +0 -0
  585. package/Runtime/UI/Lightbeam/Sprites_v1/BtBase.png.meta +143 -0
  586. package/Runtime/UI/Lightbeam/Sprites_v1/IconInfo.png +0 -0
  587. package/Runtime/UI/Lightbeam/Sprites_v1/IconInfo.png.meta +143 -0
  588. package/Runtime/UI/Lightbeam/Sprites_v1/Icon_Link.png +0 -0
  589. package/Runtime/UI/Lightbeam/Sprites_v1/Icon_Link.png.meta +169 -0
  590. package/Runtime/UI/Lightbeam/Sprites_v1/UIBase.png +0 -0
  591. package/Runtime/UI/Lightbeam/Sprites_v1/UIBase.png.meta +143 -0
  592. package/Runtime/UI/Lightbeam/Sprites_v1/UIBaseWhite.png +0 -0
  593. package/Runtime/UI/Lightbeam/Sprites_v1/UIBaseWhite.png.meta +143 -0
  594. package/Runtime/UI/Lightbeam/Sprites_v1.meta +8 -0
  595. package/Samples~/LightBeamSamples/AccountManager/AccountExampleConfig.cs +1 -1
  596. package/Samples~/LightBeamSamples/AccountManager/AccountManager.cs +7 -2
  597. package/Samples~/LightBeamSamples/AccountManager/Prefabs/{AccountDetailsBehaviour → AccountDetailsPage}/AccountDetails.prefab +148 -214
  598. package/Samples~/LightBeamSamples/AccountManager/Prefabs/{AccountDetailsBehaviour/AccountDetailsBehaviour.cs → AccountDetailsPage/AccountDetailsPage.cs} +8 -2
  599. package/Samples~/LightBeamSamples/AccountManager/Prefabs/AccountDisplayBehaviour/AccountDisplay.prefab +551 -76
  600. package/Samples~/LightBeamSamples/AccountManager/Prefabs/AccountSwitchPage/AccountSwitchPage.prefab +324 -88
  601. package/Samples~/LightBeamSamples/AccountManager/Prefabs/HomePage/HomePage.cs +7 -2
  602. package/Samples~/LightBeamSamples/AccountManager/Prefabs/HomePage/HomePage.prefab +469 -280
  603. package/Samples~/LightBeamSamples/AccountManager/Prefabs/RecoverEmailPage/RecoverAccountPage.prefab +183 -110
  604. package/Samples~/LightBeamSamples/AccountManager/Prefabs/RegisterEmailPage/RegisterEmailPage.prefab +157 -84
  605. package/Samples~/LightBeamSamples/AccountManager/Sample_AccountManager.unity +1913 -24
  606. package/Samples~/LightBeamSamples/CloudSaving/CloudSavingManager.cs +4 -0
  607. package/Samples~/LightBeamSamples/CloudSaving/Prefabs/BytePage/BytePage.prefab +1699 -423
  608. package/Samples~/LightBeamSamples/CloudSaving/Prefabs/HomePage/HomePage.cs +4 -1
  609. package/Samples~/LightBeamSamples/CloudSaving/Prefabs/HomePage/HomePage.prefab +740 -342
  610. package/Samples~/LightBeamSamples/CloudSaving/Prefabs/JsonPage/JsonPage.prefab +3448 -1303
  611. package/Samples~/LightBeamSamples/CloudSaving/Prefabs/StringPage/StringPage.prefab +168 -184
  612. package/Samples~/LightBeamSamples/CloudSaving/Sample_CloudSaving.unity +1387 -30
  613. package/Samples~/LightBeamSamples/FriendsManager/FriendsManager.cs +4 -0
  614. package/Samples~/LightBeamSamples/FriendsManager/Prefabs/BlockedDisplay/BlockedDisplay.prefab +71 -29
  615. package/Samples~/LightBeamSamples/FriendsManager/Prefabs/FriendDisplay/FriendDisplay.prefab +84 -31
  616. package/Samples~/LightBeamSamples/FriendsManager/Prefabs/HomePage/HomePage.prefab +446 -182
  617. package/Samples~/LightBeamSamples/FriendsManager/Prefabs/PlayerFriendsDisplay/PlayerDisplay.prefab +349 -127
  618. package/Samples~/LightBeamSamples/FriendsManager/Prefabs/ReceivedInvitesDisplay/ReceivedInviteDisplay.prefab +89 -36
  619. package/Samples~/LightBeamSamples/FriendsManager/Prefabs/SelectorButton.prefab +16 -12
  620. package/Samples~/LightBeamSamples/FriendsManager/Prefabs/SentInvitesDisplay/SentInviteDisplay.prefab +81 -30
  621. package/Samples~/LightBeamSamples/FriendsManager/Sample_FriendsManager.unity +2113 -41
  622. package/Samples~/LightBeamSamples/Inventory/InventoryManager.cs +4 -0
  623. package/Samples~/LightBeamSamples/Inventory/Prefabs/CurrencyDisplay/CurrencyDisplay.prefab +180 -29
  624. package/Samples~/LightBeamSamples/Inventory/Prefabs/CurrencyDisplay/CurrencyDisplayBehaviour.cs +7 -2
  625. package/Samples~/LightBeamSamples/Inventory/Prefabs/CurrencyInfoPage/CurrencyInfoBehaviour.cs +7 -2
  626. package/Samples~/LightBeamSamples/Inventory/Prefabs/CurrencyInfoPage/CurrencyInfoDisplay.prefab +434 -97
  627. package/Samples~/LightBeamSamples/Inventory/Prefabs/HomePage/HomePage.prefab +1300 -279
  628. package/Samples~/LightBeamSamples/Inventory/Prefabs/ItemDisplay/ItemDisplay.prefab +182 -62
  629. package/Samples~/LightBeamSamples/Inventory/Prefabs/ItemDisplay/ItemDisplayBehaviour.cs +7 -2
  630. package/Samples~/LightBeamSamples/Inventory/Prefabs/ItemInfoPage/ItemInfoPage.cs +2 -2
  631. package/Samples~/LightBeamSamples/Inventory/Prefabs/ItemInfoPage/ItemInfoPage.prefab +240 -105
  632. package/Samples~/LightBeamSamples/Inventory/Prefabs/PropertyDisplay/PropertyDisplay.prefab +16 -13
  633. package/Samples~/LightBeamSamples/Inventory/Sample_InventoryManager.unity +1865 -41
  634. package/Samples~/LightBeamSamples/LobbyManager/LobbyManager.cs +4 -0
  635. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/CreateLobbyDisplay/CreateLobbyDisplay.prefab +261 -268
  636. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/FindLobbyDisplay/FindLobbyDisplay.prefab +44 -64
  637. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/HomePage/HomePage.prefab +2337 -185
  638. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/JoinLobbyDisplay/JoinLobbyDisplay.prefab +221 -233
  639. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/LobbyDetailsDisplay/LobbyDetailsDisplay.prefab +273 -440
  640. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/LobbyDisplay/LobbyDisplay.prefab +24 -47
  641. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/PlayerDisplay/PlayerIdDisplay.prefab +18 -14
  642. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/PlayerLobby/PlayerLobby.prefab +234 -238
  643. package/Samples~/LightBeamSamples/LobbyManager/Sample_LobbyManager.unity +1567 -41
  644. package/Samples~/LightBeamSamples/LootBox/Prefabs/LootBoxPage/LootBoxPage.prefab +19 -186
  645. package/Samples~/LightBeamSamples/LootBox/Sample_LootBox.unity +651 -49
  646. package/Samples~/LightBeamSamples/LootBox/Shared/LootboxConstants.cs +1 -1
  647. package/Samples~/LightBeamSamples/SceneLoader/Editor/LightBeamBuilds.cs +16 -6
  648. package/Tests/Runtime/Beamable/Environment/PackageVersionTests/ImplicitConversionTest.cs +2 -2
  649. package/Tests/Runtime/Beamable/Platform/Inventory/InventoryServiceTests/UpdateTests.cs +4 -2
  650. package/Tests/Runtime/Beamable/Player/Inventory/GetItemTests.cs +16 -9
  651. package/package.json +8 -15
  652. package/Common/Runtime/OpenApi/BeamAdmin.gs.cs +0 -77
  653. package/Common/Runtime/OpenApi/BeamServiceplan.gs.cs +0 -96
  654. package/Editor/ContentService/ContentUtils.cs +0 -79
  655. package/Editor/ContentService/ContentUtils.cs.meta +0 -11
  656. /package/Samples~/LightBeamSamples/AccountManager/Prefabs/{AccountDetailsBehaviour → AccountDetailsPage}/AccountDetails.prefab.meta +0 -0
  657. /package/Samples~/LightBeamSamples/AccountManager/Prefabs/{AccountDetailsBehaviour/AccountDetailsBehaviour.cs.meta → AccountDetailsPage/AccountDetailsPage.cs.meta} +0 -0
  658. /package/Samples~/LightBeamSamples/AccountManager/Prefabs/{AccountDetailsBehaviour.meta → AccountDetailsPage.meta} +0 -0
@@ -67,7 +67,7 @@ MonoBehaviour:
67
67
  m_OnCullStateChanged:
68
68
  m_PersistentCalls:
69
69
  m_Calls: []
70
- m_text: Any value...
70
+ m_text: Insert any value...
71
71
  m_isRightToLeft: 0
72
72
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
73
73
  m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
@@ -94,7 +94,7 @@ MonoBehaviour:
94
94
  m_faceColor:
95
95
  serializedVersion: 2
96
96
  rgba: 4294967295
97
- m_fontSize: 72
97
+ m_fontSize: 42.05
98
98
  m_fontSizeBase: 14
99
99
  m_fontWeight: 400
100
100
  m_enableAutoSizing: 1
@@ -167,7 +167,6 @@ GameObject:
167
167
  - component: {fileID: 635883761041762154}
168
168
  - component: {fileID: 635883761041762152}
169
169
  - component: {fileID: 5119391169685059033}
170
- - component: {fileID: 635883761041762153}
171
170
  m_Layer: 5
172
171
  m_Name: BytePage
173
172
  m_TagString: Untagged
@@ -195,6 +194,7 @@ RectTransform:
195
194
  - {fileID: 6276430876606665999}
196
195
  - {fileID: 3559295305712485210}
197
196
  - {fileID: 994857228803903461}
197
+ - {fileID: 9096530913924650392}
198
198
  m_Father: {fileID: 0}
199
199
  m_RootOrder: 0
200
200
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
@@ -225,43 +225,13 @@ MonoBehaviour:
225
225
  m_EditorClassIdentifier:
226
226
  ContentData: {fileID: 9176852533820849525}
227
227
  ByteDataText: {fileID: 1109067959422141171}
228
- BackButton: {fileID: 6773152224469355316}
229
- SaveButton: {fileID: 7097799627446739624}
230
- LoadButton: {fileID: 6938077742665649791}
231
- ForceUploadButton: {fileID: 6956599867106975422}
232
- ForceDownloadButton: {fileID: 695677660417774945}
228
+ BackButton: {fileID: 211655487163970825}
229
+ SaveButton: {fileID: 307926041847763810}
230
+ LoadButton: {fileID: 2391383823611323624}
231
+ ForceUploadButton: {fileID: 6267142538865123127}
232
+ ForceDownloadButton: {fileID: 82608442351841687}
233
233
  _serviceStatus: {fileID: 8362066903314118690}
234
234
  playerId: {fileID: 3740735114327516456}
235
- --- !u!114 &635883761041762153
236
- MonoBehaviour:
237
- m_ObjectHideFlags: 0
238
- m_CorrespondingSourceObject: {fileID: 0}
239
- m_PrefabInstance: {fileID: 0}
240
- m_PrefabAsset: {fileID: 0}
241
- m_GameObject: {fileID: 635883761041762155}
242
- m_Enabled: 1
243
- m_EditorHideFlags: 0
244
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
245
- m_Name:
246
- m_EditorClassIdentifier:
247
- m_Material: {fileID: 0}
248
- m_Color: {r: 0, g: 0, b: 0, a: 0.40392157}
249
- m_RaycastTarget: 1
250
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
251
- m_Maskable: 1
252
- m_OnCullStateChanged:
253
- m_PersistentCalls:
254
- m_Calls: []
255
- m_Sprite: {fileID: 0}
256
- m_Type: 0
257
- m_PreserveAspect: 0
258
- m_FillCenter: 1
259
- m_FillMethod: 4
260
- m_FillAmount: 1
261
- m_FillClockwise: 1
262
- m_FillOrigin: 0
263
- m_UseSpriteMesh: 0
264
- m_PixelsPerUnitMultiplier: 1
265
235
  --- !u!1 &832504833981489077
266
236
  GameObject:
267
237
  m_ObjectHideFlags: 0
@@ -372,7 +342,7 @@ MonoBehaviour:
372
342
  m_lineSpacingMax: 0
373
343
  m_paragraphSpacing: 0
374
344
  m_charWidthMaxAdj: 0
375
- m_enableWordWrapping: 1
345
+ m_enableWordWrapping: 0
376
346
  m_wordWrappingRatios: 0.4
377
347
  m_overflowMode: 0
378
348
  m_linkedTextComponent: {fileID: 0}
@@ -436,7 +406,7 @@ GameObject:
436
406
  m_Icon: {fileID: 0}
437
407
  m_NavMeshLayer: 0
438
408
  m_StaticEditorFlags: 0
439
- m_IsActive: 1
409
+ m_IsActive: 0
440
410
  --- !u!224 &6276430876606665999
441
411
  RectTransform:
442
412
  m_ObjectHideFlags: 0
@@ -540,6 +510,128 @@ MonoBehaviour:
540
510
  m_OnClick:
541
511
  m_PersistentCalls:
542
512
  m_Calls: []
513
+ --- !u!1 &1543057870619139637
514
+ GameObject:
515
+ m_ObjectHideFlags: 0
516
+ m_CorrespondingSourceObject: {fileID: 0}
517
+ m_PrefabInstance: {fileID: 0}
518
+ m_PrefabAsset: {fileID: 0}
519
+ serializedVersion: 6
520
+ m_Component:
521
+ - component: {fileID: 2794362969325788080}
522
+ - component: {fileID: 383893257776878603}
523
+ - component: {fileID: 6285365812833697131}
524
+ - component: {fileID: 6267142538865123127}
525
+ m_Layer: 5
526
+ m_Name: ForceUpload
527
+ m_TagString: Untagged
528
+ m_Icon: {fileID: 0}
529
+ m_NavMeshLayer: 0
530
+ m_StaticEditorFlags: 0
531
+ m_IsActive: 1
532
+ --- !u!224 &2794362969325788080
533
+ RectTransform:
534
+ m_ObjectHideFlags: 0
535
+ m_CorrespondingSourceObject: {fileID: 0}
536
+ m_PrefabInstance: {fileID: 0}
537
+ m_PrefabAsset: {fileID: 0}
538
+ m_GameObject: {fileID: 1543057870619139637}
539
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
540
+ m_LocalPosition: {x: 0, y: 0, z: 0}
541
+ m_LocalScale: {x: 1, y: 1, z: 1}
542
+ m_ConstrainProportionsScale: 0
543
+ m_Children:
544
+ - {fileID: 6224743891040318538}
545
+ m_Father: {fileID: 9096530913924650392}
546
+ m_RootOrder: 3
547
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
548
+ m_AnchorMin: {x: 0, y: 0}
549
+ m_AnchorMax: {x: 0, y: 0}
550
+ m_AnchoredPosition: {x: 0, y: 0}
551
+ m_SizeDelta: {x: 0, y: 60}
552
+ m_Pivot: {x: 0.5, y: 0}
553
+ --- !u!222 &383893257776878603
554
+ CanvasRenderer:
555
+ m_ObjectHideFlags: 0
556
+ m_CorrespondingSourceObject: {fileID: 0}
557
+ m_PrefabInstance: {fileID: 0}
558
+ m_PrefabAsset: {fileID: 0}
559
+ m_GameObject: {fileID: 1543057870619139637}
560
+ m_CullTransparentMesh: 1
561
+ --- !u!114 &6285365812833697131
562
+ MonoBehaviour:
563
+ m_ObjectHideFlags: 0
564
+ m_CorrespondingSourceObject: {fileID: 0}
565
+ m_PrefabInstance: {fileID: 0}
566
+ m_PrefabAsset: {fileID: 0}
567
+ m_GameObject: {fileID: 1543057870619139637}
568
+ m_Enabled: 1
569
+ m_EditorHideFlags: 0
570
+ m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
571
+ m_Name:
572
+ m_EditorClassIdentifier:
573
+ m_Material: {fileID: 0}
574
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
575
+ m_RaycastTarget: 1
576
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
577
+ m_Maskable: 1
578
+ m_OnCullStateChanged:
579
+ m_PersistentCalls:
580
+ m_Calls: []
581
+ m_Sprite: {fileID: 21300000, guid: 721c765a3d97c0b4f865bac8223d1404, type: 3}
582
+ m_Type: 1
583
+ m_PreserveAspect: 0
584
+ m_FillCenter: 1
585
+ m_FillMethod: 4
586
+ m_FillAmount: 1
587
+ m_FillClockwise: 1
588
+ m_FillOrigin: 0
589
+ m_UseSpriteMesh: 0
590
+ m_PixelsPerUnitMultiplier: 4
591
+ --- !u!114 &6267142538865123127
592
+ MonoBehaviour:
593
+ m_ObjectHideFlags: 0
594
+ m_CorrespondingSourceObject: {fileID: 0}
595
+ m_PrefabInstance: {fileID: 0}
596
+ m_PrefabAsset: {fileID: 0}
597
+ m_GameObject: {fileID: 1543057870619139637}
598
+ m_Enabled: 1
599
+ m_EditorHideFlags: 0
600
+ m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
601
+ m_Name:
602
+ m_EditorClassIdentifier:
603
+ m_Navigation:
604
+ m_Mode: 3
605
+ m_WrapAround: 0
606
+ m_SelectOnUp: {fileID: 0}
607
+ m_SelectOnDown: {fileID: 0}
608
+ m_SelectOnLeft: {fileID: 0}
609
+ m_SelectOnRight: {fileID: 0}
610
+ m_Transition: 1
611
+ m_Colors:
612
+ m_NormalColor: {r: 1, g: 0.9386792, b: 0.9386792, a: 1}
613
+ m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
614
+ m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
615
+ m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
616
+ m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
617
+ m_ColorMultiplier: 1
618
+ m_FadeDuration: 0.1
619
+ m_SpriteState:
620
+ m_HighlightedSprite: {fileID: 0}
621
+ m_PressedSprite: {fileID: 0}
622
+ m_SelectedSprite: {fileID: 0}
623
+ m_DisabledSprite: {fileID: 0}
624
+ m_AnimationTriggers:
625
+ m_NormalTrigger: Normal
626
+ m_HighlightedTrigger: Highlighted
627
+ m_PressedTrigger: Pressed
628
+ m_SelectedTrigger: Selected
629
+ m_DisabledTrigger: Disabled
630
+ m_Interactable: 1
631
+ m_TargetGraphic: {fileID: 6285365812833697131}
632
+ m_OnClick:
633
+ m_PersistentCalls:
634
+ m_Calls: []
543
635
  --- !u!1 &1650376995526691874
544
636
  GameObject:
545
637
  m_ObjectHideFlags: 0
@@ -639,7 +731,7 @@ MonoBehaviour:
639
731
  m_enableAutoSizing: 0
640
732
  m_fontSizeMin: 18
641
733
  m_fontSizeMax: 72
642
- m_fontStyle: 0
734
+ m_fontStyle: 1
643
735
  m_HorizontalAlignment: 2
644
736
  m_VerticalAlignment: 512
645
737
  m_textAlignment: 65535
@@ -649,7 +741,7 @@ MonoBehaviour:
649
741
  m_lineSpacingMax: 0
650
742
  m_paragraphSpacing: 0
651
743
  m_charWidthMaxAdj: 0
652
- m_enableWordWrapping: 1
744
+ m_enableWordWrapping: 0
653
745
  m_wordWrappingRatios: 0.4
654
746
  m_overflowMode: 0
655
747
  m_linkedTextComponent: {fileID: 0}
@@ -672,9 +764,86 @@ MonoBehaviour:
672
764
  m_margin: {x: 0, y: 0, z: 0, w: 0}
673
765
  m_isUsingLegacyAnimationComponent: 0
674
766
  m_isVolumetricText: 0
675
- m_hasFontAssetChanged: 0
767
+ m_hasFontAssetChanged: 1
676
768
  m_baseMaterial: {fileID: 0}
677
769
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
770
+ --- !u!1 &1654801420516171745
771
+ GameObject:
772
+ m_ObjectHideFlags: 0
773
+ m_CorrespondingSourceObject: {fileID: 0}
774
+ m_PrefabInstance: {fileID: 0}
775
+ m_PrefabAsset: {fileID: 0}
776
+ serializedVersion: 6
777
+ m_Component:
778
+ - component: {fileID: 9096530913924650392}
779
+ - component: {fileID: 1929737381752212418}
780
+ - component: {fileID: 4142978278481000489}
781
+ m_Layer: 5
782
+ m_Name: Buttons
783
+ m_TagString: Untagged
784
+ m_Icon: {fileID: 0}
785
+ m_NavMeshLayer: 0
786
+ m_StaticEditorFlags: 0
787
+ m_IsActive: 1
788
+ --- !u!224 &9096530913924650392
789
+ RectTransform:
790
+ m_ObjectHideFlags: 0
791
+ m_CorrespondingSourceObject: {fileID: 0}
792
+ m_PrefabInstance: {fileID: 0}
793
+ m_PrefabAsset: {fileID: 0}
794
+ m_GameObject: {fileID: 1654801420516171745}
795
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
796
+ m_LocalPosition: {x: 0, y: 0, z: 0}
797
+ m_LocalScale: {x: 1, y: 1, z: 1}
798
+ m_ConstrainProportionsScale: 0
799
+ m_Children:
800
+ - {fileID: 8034134120355693084}
801
+ - {fileID: 7689217072179168204}
802
+ - {fileID: 5762477268795349043}
803
+ - {fileID: 2794362969325788080}
804
+ - {fileID: 4650470152832129860}
805
+ m_Father: {fileID: 635883761041762154}
806
+ m_RootOrder: 8
807
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
808
+ m_AnchorMin: {x: 0, y: 1}
809
+ m_AnchorMax: {x: 1, y: 1}
810
+ m_AnchoredPosition: {x: 3.9598389, y: -889.28125}
811
+ m_SizeDelta: {x: -75.431885, y: 66.7226}
812
+ m_Pivot: {x: 0.5, y: 0.5}
813
+ --- !u!222 &1929737381752212418
814
+ CanvasRenderer:
815
+ m_ObjectHideFlags: 0
816
+ m_CorrespondingSourceObject: {fileID: 0}
817
+ m_PrefabInstance: {fileID: 0}
818
+ m_PrefabAsset: {fileID: 0}
819
+ m_GameObject: {fileID: 1654801420516171745}
820
+ m_CullTransparentMesh: 1
821
+ --- !u!114 &4142978278481000489
822
+ MonoBehaviour:
823
+ m_ObjectHideFlags: 0
824
+ m_CorrespondingSourceObject: {fileID: 0}
825
+ m_PrefabInstance: {fileID: 0}
826
+ m_PrefabAsset: {fileID: 0}
827
+ m_GameObject: {fileID: 1654801420516171745}
828
+ m_Enabled: 1
829
+ m_EditorHideFlags: 0
830
+ m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3}
831
+ m_Name:
832
+ m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.HorizontalLayoutGroup
833
+ m_Padding:
834
+ m_Left: 0
835
+ m_Right: 0
836
+ m_Top: 0
837
+ m_Bottom: 0
838
+ m_ChildAlignment: 4
839
+ m_Spacing: 20
840
+ m_ChildForceExpandWidth: 1
841
+ m_ChildForceExpandHeight: 1
842
+ m_ChildControlWidth: 1
843
+ m_ChildControlHeight: 0
844
+ m_ChildScaleWidth: 1
845
+ m_ChildScaleHeight: 0
846
+ m_ReverseArrangement: 0
678
847
  --- !u!1 &1663437049459370314
679
848
  GameObject:
680
849
  m_ObjectHideFlags: 0
@@ -711,8 +880,8 @@ RectTransform:
711
880
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
712
881
  m_AnchorMin: {x: 0, y: 0}
713
882
  m_AnchorMax: {x: 1, y: 1}
714
- m_AnchoredPosition: {x: 0, y: -0.5}
715
- m_SizeDelta: {x: -20, y: -13}
883
+ m_AnchoredPosition: {x: 10, y: -0.5}
884
+ m_SizeDelta: {x: -40, y: -13}
716
885
  m_Pivot: {x: 0.5, y: 0.5}
717
886
  --- !u!114 &1909952496083422222
718
887
  MonoBehaviour:
@@ -746,7 +915,7 @@ GameObject:
746
915
  m_Icon: {fileID: 0}
747
916
  m_NavMeshLayer: 0
748
917
  m_StaticEditorFlags: 0
749
- m_IsActive: 1
918
+ m_IsActive: 0
750
919
  --- !u!224 &8308873473696877731
751
920
  RectTransform:
752
921
  m_ObjectHideFlags: 0
@@ -850,7 +1019,7 @@ MonoBehaviour:
850
1019
  m_OnClick:
851
1020
  m_PersistentCalls:
852
1021
  m_Calls: []
853
- --- !u!1 &2232670514999090388
1022
+ --- !u!1 &2087820362497426499
854
1023
  GameObject:
855
1024
  m_ObjectHideFlags: 0
856
1025
  m_CorrespondingSourceObject: {fileID: 0}
@@ -858,54 +1027,56 @@ GameObject:
858
1027
  m_PrefabAsset: {fileID: 0}
859
1028
  serializedVersion: 6
860
1029
  m_Component:
861
- - component: {fileID: 2723462823076888619}
862
- - component: {fileID: 7974093900607175130}
863
- - component: {fileID: 1695526708497979405}
1030
+ - component: {fileID: 5762477268795349043}
1031
+ - component: {fileID: 6885372407492774039}
1032
+ - component: {fileID: 7089439829143747913}
1033
+ - component: {fileID: 2391383823611323624}
864
1034
  m_Layer: 5
865
- m_Name: Text (TMP)
1035
+ m_Name: Load Data
866
1036
  m_TagString: Untagged
867
1037
  m_Icon: {fileID: 0}
868
1038
  m_NavMeshLayer: 0
869
1039
  m_StaticEditorFlags: 0
870
1040
  m_IsActive: 1
871
- --- !u!224 &2723462823076888619
1041
+ --- !u!224 &5762477268795349043
872
1042
  RectTransform:
873
1043
  m_ObjectHideFlags: 0
874
1044
  m_CorrespondingSourceObject: {fileID: 0}
875
1045
  m_PrefabInstance: {fileID: 0}
876
1046
  m_PrefabAsset: {fileID: 0}
877
- m_GameObject: {fileID: 2232670514999090388}
878
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
1047
+ m_GameObject: {fileID: 2087820362497426499}
1048
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
879
1049
  m_LocalPosition: {x: 0, y: 0, z: 0}
880
1050
  m_LocalScale: {x: 1, y: 1, z: 1}
881
1051
  m_ConstrainProportionsScale: 0
882
- m_Children: []
883
- m_Father: {fileID: 3559295305712485210}
884
- m_RootOrder: 0
1052
+ m_Children:
1053
+ - {fileID: 1570787245697071192}
1054
+ m_Father: {fileID: 9096530913924650392}
1055
+ m_RootOrder: 2
885
1056
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
886
1057
  m_AnchorMin: {x: 0, y: 0}
887
- m_AnchorMax: {x: 1, y: 1}
1058
+ m_AnchorMax: {x: 0, y: 0}
888
1059
  m_AnchoredPosition: {x: 0, y: 0}
889
- m_SizeDelta: {x: 0, y: 0}
890
- m_Pivot: {x: 0.5, y: 0.5}
891
- --- !u!222 &7974093900607175130
1060
+ m_SizeDelta: {x: 0, y: 60}
1061
+ m_Pivot: {x: 0.5, y: 0}
1062
+ --- !u!222 &6885372407492774039
892
1063
  CanvasRenderer:
893
1064
  m_ObjectHideFlags: 0
894
1065
  m_CorrespondingSourceObject: {fileID: 0}
895
1066
  m_PrefabInstance: {fileID: 0}
896
1067
  m_PrefabAsset: {fileID: 0}
897
- m_GameObject: {fileID: 2232670514999090388}
1068
+ m_GameObject: {fileID: 2087820362497426499}
898
1069
  m_CullTransparentMesh: 1
899
- --- !u!114 &1695526708497979405
1070
+ --- !u!114 &7089439829143747913
900
1071
  MonoBehaviour:
901
1072
  m_ObjectHideFlags: 0
902
1073
  m_CorrespondingSourceObject: {fileID: 0}
903
1074
  m_PrefabInstance: {fileID: 0}
904
1075
  m_PrefabAsset: {fileID: 0}
905
- m_GameObject: {fileID: 2232670514999090388}
1076
+ m_GameObject: {fileID: 2087820362497426499}
906
1077
  m_Enabled: 1
907
1078
  m_EditorHideFlags: 0
908
- m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
1079
+ m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
909
1080
  m_Name:
910
1081
  m_EditorClassIdentifier:
911
1082
  m_Material: {fileID: 0}
@@ -916,50 +1087,897 @@ MonoBehaviour:
916
1087
  m_OnCullStateChanged:
917
1088
  m_PersistentCalls:
918
1089
  m_Calls: []
919
- m_text: Force Upload
920
- m_isRightToLeft: 0
921
- m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
922
- m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
923
- m_fontSharedMaterials: []
924
- m_fontMaterial: {fileID: 0}
925
- m_fontMaterials: []
926
- m_fontColor32:
927
- serializedVersion: 2
928
- rgba: 4294967295
929
- m_fontColor: {r: 1, g: 1, b: 1, a: 1}
930
- m_enableVertexGradient: 0
931
- m_colorMode: 3
932
- m_fontColorGradient:
933
- topLeft: {r: 1, g: 1, b: 1, a: 1}
934
- topRight: {r: 1, g: 1, b: 1, a: 1}
935
- bottomLeft: {r: 1, g: 1, b: 1, a: 1}
936
- bottomRight: {r: 1, g: 1, b: 1, a: 1}
937
- m_fontColorGradientPreset: {fileID: 0}
938
- m_spriteAsset: {fileID: 0}
939
- m_tintAllSprites: 0
940
- m_StyleSheet: {fileID: 0}
941
- m_TextStyleHashCode: -1183493901
942
- m_overrideHtmlColors: 0
943
- m_faceColor:
944
- serializedVersion: 2
945
- rgba: 4294967295
946
- m_fontSize: 30
947
- m_fontSizeBase: 30
948
- m_fontWeight: 400
949
- m_enableAutoSizing: 0
950
- m_fontSizeMin: 18
951
- m_fontSizeMax: 72
952
- m_fontStyle: 0
953
- m_HorizontalAlignment: 2
954
- m_VerticalAlignment: 512
955
- m_textAlignment: 65535
956
- m_characterSpacing: 0
957
- m_wordSpacing: 0
958
- m_lineSpacing: 0
959
- m_lineSpacingMax: 0
1090
+ m_Sprite: {fileID: 21300000, guid: 721c765a3d97c0b4f865bac8223d1404, type: 3}
1091
+ m_Type: 1
1092
+ m_PreserveAspect: 0
1093
+ m_FillCenter: 1
1094
+ m_FillMethod: 4
1095
+ m_FillAmount: 1
1096
+ m_FillClockwise: 1
1097
+ m_FillOrigin: 0
1098
+ m_UseSpriteMesh: 0
1099
+ m_PixelsPerUnitMultiplier: 4
1100
+ --- !u!114 &2391383823611323624
1101
+ MonoBehaviour:
1102
+ m_ObjectHideFlags: 0
1103
+ m_CorrespondingSourceObject: {fileID: 0}
1104
+ m_PrefabInstance: {fileID: 0}
1105
+ m_PrefabAsset: {fileID: 0}
1106
+ m_GameObject: {fileID: 2087820362497426499}
1107
+ m_Enabled: 1
1108
+ m_EditorHideFlags: 0
1109
+ m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
1110
+ m_Name:
1111
+ m_EditorClassIdentifier:
1112
+ m_Navigation:
1113
+ m_Mode: 3
1114
+ m_WrapAround: 0
1115
+ m_SelectOnUp: {fileID: 0}
1116
+ m_SelectOnDown: {fileID: 0}
1117
+ m_SelectOnLeft: {fileID: 0}
1118
+ m_SelectOnRight: {fileID: 0}
1119
+ m_Transition: 1
1120
+ m_Colors:
1121
+ m_NormalColor: {r: 1, g: 0.9386792, b: 0.9386792, a: 1}
1122
+ m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
1123
+ m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
1124
+ m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
1125
+ m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
1126
+ m_ColorMultiplier: 1
1127
+ m_FadeDuration: 0.1
1128
+ m_SpriteState:
1129
+ m_HighlightedSprite: {fileID: 0}
1130
+ m_PressedSprite: {fileID: 0}
1131
+ m_SelectedSprite: {fileID: 0}
1132
+ m_DisabledSprite: {fileID: 0}
1133
+ m_AnimationTriggers:
1134
+ m_NormalTrigger: Normal
1135
+ m_HighlightedTrigger: Highlighted
1136
+ m_PressedTrigger: Pressed
1137
+ m_SelectedTrigger: Selected
1138
+ m_DisabledTrigger: Disabled
1139
+ m_Interactable: 1
1140
+ m_TargetGraphic: {fileID: 7089439829143747913}
1141
+ m_OnClick:
1142
+ m_PersistentCalls:
1143
+ m_Calls: []
1144
+ --- !u!1 &2128226013766327840
1145
+ GameObject:
1146
+ m_ObjectHideFlags: 0
1147
+ m_CorrespondingSourceObject: {fileID: 0}
1148
+ m_PrefabInstance: {fileID: 0}
1149
+ m_PrefabAsset: {fileID: 0}
1150
+ serializedVersion: 6
1151
+ m_Component:
1152
+ - component: {fileID: 8034134120355693084}
1153
+ - component: {fileID: 3145039601701310224}
1154
+ - component: {fileID: 6900728687573634216}
1155
+ - component: {fileID: 211655487163970825}
1156
+ m_Layer: 5
1157
+ m_Name: BackButton
1158
+ m_TagString: Untagged
1159
+ m_Icon: {fileID: 0}
1160
+ m_NavMeshLayer: 0
1161
+ m_StaticEditorFlags: 0
1162
+ m_IsActive: 1
1163
+ --- !u!224 &8034134120355693084
1164
+ RectTransform:
1165
+ m_ObjectHideFlags: 0
1166
+ m_CorrespondingSourceObject: {fileID: 0}
1167
+ m_PrefabInstance: {fileID: 0}
1168
+ m_PrefabAsset: {fileID: 0}
1169
+ m_GameObject: {fileID: 2128226013766327840}
1170
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
1171
+ m_LocalPosition: {x: 0, y: 0, z: 0}
1172
+ m_LocalScale: {x: 1, y: 1, z: 1}
1173
+ m_ConstrainProportionsScale: 0
1174
+ m_Children:
1175
+ - {fileID: 2968585064174318513}
1176
+ m_Father: {fileID: 9096530913924650392}
1177
+ m_RootOrder: 0
1178
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1179
+ m_AnchorMin: {x: 0, y: 0}
1180
+ m_AnchorMax: {x: 0, y: 0}
1181
+ m_AnchoredPosition: {x: 0, y: 0}
1182
+ m_SizeDelta: {x: 0, y: 60}
1183
+ m_Pivot: {x: 0.5, y: 0}
1184
+ --- !u!222 &3145039601701310224
1185
+ CanvasRenderer:
1186
+ m_ObjectHideFlags: 0
1187
+ m_CorrespondingSourceObject: {fileID: 0}
1188
+ m_PrefabInstance: {fileID: 0}
1189
+ m_PrefabAsset: {fileID: 0}
1190
+ m_GameObject: {fileID: 2128226013766327840}
1191
+ m_CullTransparentMesh: 1
1192
+ --- !u!114 &6900728687573634216
1193
+ MonoBehaviour:
1194
+ m_ObjectHideFlags: 0
1195
+ m_CorrespondingSourceObject: {fileID: 0}
1196
+ m_PrefabInstance: {fileID: 0}
1197
+ m_PrefabAsset: {fileID: 0}
1198
+ m_GameObject: {fileID: 2128226013766327840}
1199
+ m_Enabled: 1
1200
+ m_EditorHideFlags: 0
1201
+ m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
1202
+ m_Name:
1203
+ m_EditorClassIdentifier:
1204
+ m_Material: {fileID: 0}
1205
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
1206
+ m_RaycastTarget: 1
1207
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
1208
+ m_Maskable: 1
1209
+ m_OnCullStateChanged:
1210
+ m_PersistentCalls:
1211
+ m_Calls: []
1212
+ m_Sprite: {fileID: 21300000, guid: 721c765a3d97c0b4f865bac8223d1404, type: 3}
1213
+ m_Type: 1
1214
+ m_PreserveAspect: 0
1215
+ m_FillCenter: 1
1216
+ m_FillMethod: 4
1217
+ m_FillAmount: 1
1218
+ m_FillClockwise: 1
1219
+ m_FillOrigin: 0
1220
+ m_UseSpriteMesh: 0
1221
+ m_PixelsPerUnitMultiplier: 4
1222
+ --- !u!114 &211655487163970825
1223
+ MonoBehaviour:
1224
+ m_ObjectHideFlags: 0
1225
+ m_CorrespondingSourceObject: {fileID: 0}
1226
+ m_PrefabInstance: {fileID: 0}
1227
+ m_PrefabAsset: {fileID: 0}
1228
+ m_GameObject: {fileID: 2128226013766327840}
1229
+ m_Enabled: 1
1230
+ m_EditorHideFlags: 0
1231
+ m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
1232
+ m_Name:
1233
+ m_EditorClassIdentifier:
1234
+ m_Navigation:
1235
+ m_Mode: 3
1236
+ m_WrapAround: 0
1237
+ m_SelectOnUp: {fileID: 0}
1238
+ m_SelectOnDown: {fileID: 0}
1239
+ m_SelectOnLeft: {fileID: 0}
1240
+ m_SelectOnRight: {fileID: 0}
1241
+ m_Transition: 1
1242
+ m_Colors:
1243
+ m_NormalColor: {r: 1, g: 0.9386792, b: 0.9386792, a: 1}
1244
+ m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
1245
+ m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
1246
+ m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
1247
+ m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
1248
+ m_ColorMultiplier: 1
1249
+ m_FadeDuration: 0.1
1250
+ m_SpriteState:
1251
+ m_HighlightedSprite: {fileID: 0}
1252
+ m_PressedSprite: {fileID: 0}
1253
+ m_SelectedSprite: {fileID: 0}
1254
+ m_DisabledSprite: {fileID: 0}
1255
+ m_AnimationTriggers:
1256
+ m_NormalTrigger: Normal
1257
+ m_HighlightedTrigger: Highlighted
1258
+ m_PressedTrigger: Pressed
1259
+ m_SelectedTrigger: Selected
1260
+ m_DisabledTrigger: Disabled
1261
+ m_Interactable: 1
1262
+ m_TargetGraphic: {fileID: 6900728687573634216}
1263
+ m_OnClick:
1264
+ m_PersistentCalls:
1265
+ m_Calls: []
1266
+ --- !u!1 &2232670514999090388
1267
+ GameObject:
1268
+ m_ObjectHideFlags: 0
1269
+ m_CorrespondingSourceObject: {fileID: 0}
1270
+ m_PrefabInstance: {fileID: 0}
1271
+ m_PrefabAsset: {fileID: 0}
1272
+ serializedVersion: 6
1273
+ m_Component:
1274
+ - component: {fileID: 2723462823076888619}
1275
+ - component: {fileID: 7974093900607175130}
1276
+ - component: {fileID: 1695526708497979405}
1277
+ m_Layer: 5
1278
+ m_Name: Text (TMP)
1279
+ m_TagString: Untagged
1280
+ m_Icon: {fileID: 0}
1281
+ m_NavMeshLayer: 0
1282
+ m_StaticEditorFlags: 0
1283
+ m_IsActive: 1
1284
+ --- !u!224 &2723462823076888619
1285
+ RectTransform:
1286
+ m_ObjectHideFlags: 0
1287
+ m_CorrespondingSourceObject: {fileID: 0}
1288
+ m_PrefabInstance: {fileID: 0}
1289
+ m_PrefabAsset: {fileID: 0}
1290
+ m_GameObject: {fileID: 2232670514999090388}
1291
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
1292
+ m_LocalPosition: {x: 0, y: 0, z: 0}
1293
+ m_LocalScale: {x: 1, y: 1, z: 1}
1294
+ m_ConstrainProportionsScale: 0
1295
+ m_Children: []
1296
+ m_Father: {fileID: 3559295305712485210}
1297
+ m_RootOrder: 0
1298
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1299
+ m_AnchorMin: {x: 0, y: 0}
1300
+ m_AnchorMax: {x: 1, y: 1}
1301
+ m_AnchoredPosition: {x: 0, y: 0}
1302
+ m_SizeDelta: {x: 0, y: 0}
1303
+ m_Pivot: {x: 0.5, y: 0.5}
1304
+ --- !u!222 &7974093900607175130
1305
+ CanvasRenderer:
1306
+ m_ObjectHideFlags: 0
1307
+ m_CorrespondingSourceObject: {fileID: 0}
1308
+ m_PrefabInstance: {fileID: 0}
1309
+ m_PrefabAsset: {fileID: 0}
1310
+ m_GameObject: {fileID: 2232670514999090388}
1311
+ m_CullTransparentMesh: 1
1312
+ --- !u!114 &1695526708497979405
1313
+ MonoBehaviour:
1314
+ m_ObjectHideFlags: 0
1315
+ m_CorrespondingSourceObject: {fileID: 0}
1316
+ m_PrefabInstance: {fileID: 0}
1317
+ m_PrefabAsset: {fileID: 0}
1318
+ m_GameObject: {fileID: 2232670514999090388}
1319
+ m_Enabled: 1
1320
+ m_EditorHideFlags: 0
1321
+ m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
1322
+ m_Name:
1323
+ m_EditorClassIdentifier:
1324
+ m_Material: {fileID: 0}
1325
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
1326
+ m_RaycastTarget: 1
1327
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
1328
+ m_Maskable: 1
1329
+ m_OnCullStateChanged:
1330
+ m_PersistentCalls:
1331
+ m_Calls: []
1332
+ m_text: Force Upload
1333
+ m_isRightToLeft: 0
1334
+ m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
1335
+ m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
1336
+ m_fontSharedMaterials: []
1337
+ m_fontMaterial: {fileID: 0}
1338
+ m_fontMaterials: []
1339
+ m_fontColor32:
1340
+ serializedVersion: 2
1341
+ rgba: 4294967295
1342
+ m_fontColor: {r: 1, g: 1, b: 1, a: 1}
1343
+ m_enableVertexGradient: 0
1344
+ m_colorMode: 3
1345
+ m_fontColorGradient:
1346
+ topLeft: {r: 1, g: 1, b: 1, a: 1}
1347
+ topRight: {r: 1, g: 1, b: 1, a: 1}
1348
+ bottomLeft: {r: 1, g: 1, b: 1, a: 1}
1349
+ bottomRight: {r: 1, g: 1, b: 1, a: 1}
1350
+ m_fontColorGradientPreset: {fileID: 0}
1351
+ m_spriteAsset: {fileID: 0}
1352
+ m_tintAllSprites: 0
1353
+ m_StyleSheet: {fileID: 0}
1354
+ m_TextStyleHashCode: -1183493901
1355
+ m_overrideHtmlColors: 0
1356
+ m_faceColor:
1357
+ serializedVersion: 2
1358
+ rgba: 4294967295
1359
+ m_fontSize: 30
1360
+ m_fontSizeBase: 30
1361
+ m_fontWeight: 400
1362
+ m_enableAutoSizing: 0
1363
+ m_fontSizeMin: 18
1364
+ m_fontSizeMax: 72
1365
+ m_fontStyle: 1
1366
+ m_HorizontalAlignment: 2
1367
+ m_VerticalAlignment: 512
1368
+ m_textAlignment: 65535
1369
+ m_characterSpacing: 0
1370
+ m_wordSpacing: 0
1371
+ m_lineSpacing: 0
1372
+ m_lineSpacingMax: 0
1373
+ m_paragraphSpacing: 0
1374
+ m_charWidthMaxAdj: 0
1375
+ m_enableWordWrapping: 0
1376
+ m_wordWrappingRatios: 0.4
1377
+ m_overflowMode: 0
1378
+ m_linkedTextComponent: {fileID: 0}
1379
+ parentLinkedComponent: {fileID: 0}
1380
+ m_enableKerning: 1
1381
+ m_enableExtraPadding: 0
1382
+ checkPaddingRequired: 0
1383
+ m_isRichText: 1
1384
+ m_parseCtrlCharacters: 1
1385
+ m_isOrthographic: 1
1386
+ m_isCullingEnabled: 0
1387
+ m_horizontalMapping: 0
1388
+ m_verticalMapping: 0
1389
+ m_uvLineOffset: 0
1390
+ m_geometrySortingOrder: 0
1391
+ m_IsTextObjectScaleStatic: 0
1392
+ m_VertexBufferAutoSizeReduction: 0
1393
+ m_useMaxVisibleDescender: 1
1394
+ m_pageToDisplay: 1
1395
+ m_margin: {x: 0, y: 0, z: 0, w: 0}
1396
+ m_isUsingLegacyAnimationComponent: 0
1397
+ m_isVolumetricText: 0
1398
+ m_hasFontAssetChanged: 1
1399
+ m_baseMaterial: {fileID: 0}
1400
+ m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
1401
+ --- !u!1 &2302477482956598070
1402
+ GameObject:
1403
+ m_ObjectHideFlags: 0
1404
+ m_CorrespondingSourceObject: {fileID: 0}
1405
+ m_PrefabInstance: {fileID: 0}
1406
+ m_PrefabAsset: {fileID: 0}
1407
+ serializedVersion: 6
1408
+ m_Component:
1409
+ - component: {fileID: 8252200912230221115}
1410
+ - component: {fileID: 5417878894058439021}
1411
+ - component: {fileID: 8899699311804440009}
1412
+ - component: {fileID: 6773152224469355316}
1413
+ m_Layer: 5
1414
+ m_Name: BackButton
1415
+ m_TagString: Untagged
1416
+ m_Icon: {fileID: 0}
1417
+ m_NavMeshLayer: 0
1418
+ m_StaticEditorFlags: 0
1419
+ m_IsActive: 0
1420
+ --- !u!224 &8252200912230221115
1421
+ RectTransform:
1422
+ m_ObjectHideFlags: 0
1423
+ m_CorrespondingSourceObject: {fileID: 0}
1424
+ m_PrefabInstance: {fileID: 0}
1425
+ m_PrefabAsset: {fileID: 0}
1426
+ m_GameObject: {fileID: 2302477482956598070}
1427
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
1428
+ m_LocalPosition: {x: 0, y: 0, z: 0}
1429
+ m_LocalScale: {x: 1, y: 1, z: 1}
1430
+ m_ConstrainProportionsScale: 0
1431
+ m_Children:
1432
+ - {fileID: 437497035507502049}
1433
+ m_Father: {fileID: 635883761041762154}
1434
+ m_RootOrder: 3
1435
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1436
+ m_AnchorMin: {x: 0, y: 0}
1437
+ m_AnchorMax: {x: 0, y: 0}
1438
+ m_AnchoredPosition: {x: 191.7826, y: 15}
1439
+ m_SizeDelta: {x: 250, y: 80}
1440
+ m_Pivot: {x: 0.5, y: 0}
1441
+ --- !u!222 &5417878894058439021
1442
+ CanvasRenderer:
1443
+ m_ObjectHideFlags: 0
1444
+ m_CorrespondingSourceObject: {fileID: 0}
1445
+ m_PrefabInstance: {fileID: 0}
1446
+ m_PrefabAsset: {fileID: 0}
1447
+ m_GameObject: {fileID: 2302477482956598070}
1448
+ m_CullTransparentMesh: 1
1449
+ --- !u!114 &8899699311804440009
1450
+ MonoBehaviour:
1451
+ m_ObjectHideFlags: 0
1452
+ m_CorrespondingSourceObject: {fileID: 0}
1453
+ m_PrefabInstance: {fileID: 0}
1454
+ m_PrefabAsset: {fileID: 0}
1455
+ m_GameObject: {fileID: 2302477482956598070}
1456
+ m_Enabled: 1
1457
+ m_EditorHideFlags: 0
1458
+ m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
1459
+ m_Name:
1460
+ m_EditorClassIdentifier:
1461
+ m_Material: {fileID: 0}
1462
+ m_Color: {r: 0.4433962, g: 0.4433962, b: 0.4433962, a: 0.4627451}
1463
+ m_RaycastTarget: 1
1464
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
1465
+ m_Maskable: 1
1466
+ m_OnCullStateChanged:
1467
+ m_PersistentCalls:
1468
+ m_Calls: []
1469
+ m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
1470
+ m_Type: 1
1471
+ m_PreserveAspect: 0
1472
+ m_FillCenter: 1
1473
+ m_FillMethod: 4
1474
+ m_FillAmount: 1
1475
+ m_FillClockwise: 1
1476
+ m_FillOrigin: 0
1477
+ m_UseSpriteMesh: 0
1478
+ m_PixelsPerUnitMultiplier: 1
1479
+ --- !u!114 &6773152224469355316
1480
+ MonoBehaviour:
1481
+ m_ObjectHideFlags: 0
1482
+ m_CorrespondingSourceObject: {fileID: 0}
1483
+ m_PrefabInstance: {fileID: 0}
1484
+ m_PrefabAsset: {fileID: 0}
1485
+ m_GameObject: {fileID: 2302477482956598070}
1486
+ m_Enabled: 1
1487
+ m_EditorHideFlags: 0
1488
+ m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
1489
+ m_Name:
1490
+ m_EditorClassIdentifier:
1491
+ m_Navigation:
1492
+ m_Mode: 3
1493
+ m_WrapAround: 0
1494
+ m_SelectOnUp: {fileID: 0}
1495
+ m_SelectOnDown: {fileID: 0}
1496
+ m_SelectOnLeft: {fileID: 0}
1497
+ m_SelectOnRight: {fileID: 0}
1498
+ m_Transition: 1
1499
+ m_Colors:
1500
+ m_NormalColor: {r: 1, g: 0.9386792, b: 0.9386792, a: 1}
1501
+ m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
1502
+ m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
1503
+ m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
1504
+ m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
1505
+ m_ColorMultiplier: 1
1506
+ m_FadeDuration: 0.1
1507
+ m_SpriteState:
1508
+ m_HighlightedSprite: {fileID: 0}
1509
+ m_PressedSprite: {fileID: 0}
1510
+ m_SelectedSprite: {fileID: 0}
1511
+ m_DisabledSprite: {fileID: 0}
1512
+ m_AnimationTriggers:
1513
+ m_NormalTrigger: Normal
1514
+ m_HighlightedTrigger: Highlighted
1515
+ m_PressedTrigger: Pressed
1516
+ m_SelectedTrigger: Selected
1517
+ m_DisabledTrigger: Disabled
1518
+ m_Interactable: 1
1519
+ m_TargetGraphic: {fileID: 8899699311804440009}
1520
+ m_OnClick:
1521
+ m_PersistentCalls:
1522
+ m_Calls: []
1523
+ --- !u!1 &2568065994868924265
1524
+ GameObject:
1525
+ m_ObjectHideFlags: 0
1526
+ m_CorrespondingSourceObject: {fileID: 0}
1527
+ m_PrefabInstance: {fileID: 0}
1528
+ m_PrefabAsset: {fileID: 0}
1529
+ serializedVersion: 6
1530
+ m_Component:
1531
+ - component: {fileID: 994857228803903461}
1532
+ - component: {fileID: 5969988494186635906}
1533
+ - component: {fileID: 5445626237985130374}
1534
+ - component: {fileID: 695677660417774945}
1535
+ m_Layer: 5
1536
+ m_Name: ForceDownload
1537
+ m_TagString: Untagged
1538
+ m_Icon: {fileID: 0}
1539
+ m_NavMeshLayer: 0
1540
+ m_StaticEditorFlags: 0
1541
+ m_IsActive: 0
1542
+ --- !u!224 &994857228803903461
1543
+ RectTransform:
1544
+ m_ObjectHideFlags: 0
1545
+ m_CorrespondingSourceObject: {fileID: 0}
1546
+ m_PrefabInstance: {fileID: 0}
1547
+ m_PrefabAsset: {fileID: 0}
1548
+ m_GameObject: {fileID: 2568065994868924265}
1549
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
1550
+ m_LocalPosition: {x: 0, y: 0, z: 0}
1551
+ m_LocalScale: {x: 1, y: 1, z: 1}
1552
+ m_ConstrainProportionsScale: 0
1553
+ m_Children:
1554
+ - {fileID: 4169713866041154988}
1555
+ m_Father: {fileID: 635883761041762154}
1556
+ m_RootOrder: 7
1557
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1558
+ m_AnchorMin: {x: 1, y: 0}
1559
+ m_AnchorMax: {x: 1, y: 0}
1560
+ m_AnchoredPosition: {x: -157, y: 15}
1561
+ m_SizeDelta: {x: 250, y: 80}
1562
+ m_Pivot: {x: 0.5, y: 0}
1563
+ --- !u!222 &5969988494186635906
1564
+ CanvasRenderer:
1565
+ m_ObjectHideFlags: 0
1566
+ m_CorrespondingSourceObject: {fileID: 0}
1567
+ m_PrefabInstance: {fileID: 0}
1568
+ m_PrefabAsset: {fileID: 0}
1569
+ m_GameObject: {fileID: 2568065994868924265}
1570
+ m_CullTransparentMesh: 1
1571
+ --- !u!114 &5445626237985130374
1572
+ MonoBehaviour:
1573
+ m_ObjectHideFlags: 0
1574
+ m_CorrespondingSourceObject: {fileID: 0}
1575
+ m_PrefabInstance: {fileID: 0}
1576
+ m_PrefabAsset: {fileID: 0}
1577
+ m_GameObject: {fileID: 2568065994868924265}
1578
+ m_Enabled: 1
1579
+ m_EditorHideFlags: 0
1580
+ m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
1581
+ m_Name:
1582
+ m_EditorClassIdentifier:
1583
+ m_Material: {fileID: 0}
1584
+ m_Color: {r: 0.4433962, g: 0.4433962, b: 0.4433962, a: 0.4627451}
1585
+ m_RaycastTarget: 1
1586
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
1587
+ m_Maskable: 1
1588
+ m_OnCullStateChanged:
1589
+ m_PersistentCalls:
1590
+ m_Calls: []
1591
+ m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
1592
+ m_Type: 1
1593
+ m_PreserveAspect: 0
1594
+ m_FillCenter: 1
1595
+ m_FillMethod: 4
1596
+ m_FillAmount: 1
1597
+ m_FillClockwise: 1
1598
+ m_FillOrigin: 0
1599
+ m_UseSpriteMesh: 0
1600
+ m_PixelsPerUnitMultiplier: 1
1601
+ --- !u!114 &695677660417774945
1602
+ MonoBehaviour:
1603
+ m_ObjectHideFlags: 0
1604
+ m_CorrespondingSourceObject: {fileID: 0}
1605
+ m_PrefabInstance: {fileID: 0}
1606
+ m_PrefabAsset: {fileID: 0}
1607
+ m_GameObject: {fileID: 2568065994868924265}
1608
+ m_Enabled: 1
1609
+ m_EditorHideFlags: 0
1610
+ m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
1611
+ m_Name:
1612
+ m_EditorClassIdentifier:
1613
+ m_Navigation:
1614
+ m_Mode: 3
1615
+ m_WrapAround: 0
1616
+ m_SelectOnUp: {fileID: 0}
1617
+ m_SelectOnDown: {fileID: 0}
1618
+ m_SelectOnLeft: {fileID: 0}
1619
+ m_SelectOnRight: {fileID: 0}
1620
+ m_Transition: 1
1621
+ m_Colors:
1622
+ m_NormalColor: {r: 1, g: 0.9386792, b: 0.9386792, a: 1}
1623
+ m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
1624
+ m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
1625
+ m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
1626
+ m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
1627
+ m_ColorMultiplier: 1
1628
+ m_FadeDuration: 0.1
1629
+ m_SpriteState:
1630
+ m_HighlightedSprite: {fileID: 0}
1631
+ m_PressedSprite: {fileID: 0}
1632
+ m_SelectedSprite: {fileID: 0}
1633
+ m_DisabledSprite: {fileID: 0}
1634
+ m_AnimationTriggers:
1635
+ m_NormalTrigger: Normal
1636
+ m_HighlightedTrigger: Highlighted
1637
+ m_PressedTrigger: Pressed
1638
+ m_SelectedTrigger: Selected
1639
+ m_DisabledTrigger: Disabled
1640
+ m_Interactable: 1
1641
+ m_TargetGraphic: {fileID: 5445626237985130374}
1642
+ m_OnClick:
1643
+ m_PersistentCalls:
1644
+ m_Calls: []
1645
+ --- !u!1 &2890587412512782736
1646
+ GameObject:
1647
+ m_ObjectHideFlags: 0
1648
+ m_CorrespondingSourceObject: {fileID: 0}
1649
+ m_PrefabInstance: {fileID: 0}
1650
+ m_PrefabAsset: {fileID: 0}
1651
+ serializedVersion: 6
1652
+ m_Component:
1653
+ - component: {fileID: 1570787245697071192}
1654
+ - component: {fileID: 3912943139162286317}
1655
+ - component: {fileID: 6762614592317505535}
1656
+ m_Layer: 5
1657
+ m_Name: Text (TMP)
1658
+ m_TagString: Untagged
1659
+ m_Icon: {fileID: 0}
1660
+ m_NavMeshLayer: 0
1661
+ m_StaticEditorFlags: 0
1662
+ m_IsActive: 1
1663
+ --- !u!224 &1570787245697071192
1664
+ RectTransform:
1665
+ m_ObjectHideFlags: 0
1666
+ m_CorrespondingSourceObject: {fileID: 0}
1667
+ m_PrefabInstance: {fileID: 0}
1668
+ m_PrefabAsset: {fileID: 0}
1669
+ m_GameObject: {fileID: 2890587412512782736}
1670
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
1671
+ m_LocalPosition: {x: 0, y: 0, z: 0}
1672
+ m_LocalScale: {x: 1, y: 1, z: 1}
1673
+ m_ConstrainProportionsScale: 0
1674
+ m_Children: []
1675
+ m_Father: {fileID: 5762477268795349043}
1676
+ m_RootOrder: 0
1677
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1678
+ m_AnchorMin: {x: 0, y: 0}
1679
+ m_AnchorMax: {x: 1, y: 1}
1680
+ m_AnchoredPosition: {x: 0, y: 0}
1681
+ m_SizeDelta: {x: 0, y: 0}
1682
+ m_Pivot: {x: 0.5, y: 0.5}
1683
+ --- !u!222 &3912943139162286317
1684
+ CanvasRenderer:
1685
+ m_ObjectHideFlags: 0
1686
+ m_CorrespondingSourceObject: {fileID: 0}
1687
+ m_PrefabInstance: {fileID: 0}
1688
+ m_PrefabAsset: {fileID: 0}
1689
+ m_GameObject: {fileID: 2890587412512782736}
1690
+ m_CullTransparentMesh: 1
1691
+ --- !u!114 &6762614592317505535
1692
+ MonoBehaviour:
1693
+ m_ObjectHideFlags: 0
1694
+ m_CorrespondingSourceObject: {fileID: 0}
1695
+ m_PrefabInstance: {fileID: 0}
1696
+ m_PrefabAsset: {fileID: 0}
1697
+ m_GameObject: {fileID: 2890587412512782736}
1698
+ m_Enabled: 1
1699
+ m_EditorHideFlags: 0
1700
+ m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
1701
+ m_Name:
1702
+ m_EditorClassIdentifier:
1703
+ m_Material: {fileID: 0}
1704
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
1705
+ m_RaycastTarget: 1
1706
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
1707
+ m_Maskable: 1
1708
+ m_OnCullStateChanged:
1709
+ m_PersistentCalls:
1710
+ m_Calls: []
1711
+ m_text: Load Data
1712
+ m_isRightToLeft: 0
1713
+ m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
1714
+ m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
1715
+ m_fontSharedMaterials: []
1716
+ m_fontMaterial: {fileID: 0}
1717
+ m_fontMaterials: []
1718
+ m_fontColor32:
1719
+ serializedVersion: 2
1720
+ rgba: 4294967295
1721
+ m_fontColor: {r: 1, g: 1, b: 1, a: 1}
1722
+ m_enableVertexGradient: 0
1723
+ m_colorMode: 3
1724
+ m_fontColorGradient:
1725
+ topLeft: {r: 1, g: 1, b: 1, a: 1}
1726
+ topRight: {r: 1, g: 1, b: 1, a: 1}
1727
+ bottomLeft: {r: 1, g: 1, b: 1, a: 1}
1728
+ bottomRight: {r: 1, g: 1, b: 1, a: 1}
1729
+ m_fontColorGradientPreset: {fileID: 0}
1730
+ m_spriteAsset: {fileID: 0}
1731
+ m_tintAllSprites: 0
1732
+ m_StyleSheet: {fileID: 0}
1733
+ m_TextStyleHashCode: -1183493901
1734
+ m_overrideHtmlColors: 0
1735
+ m_faceColor:
1736
+ serializedVersion: 2
1737
+ rgba: 4294967295
1738
+ m_fontSize: 30
1739
+ m_fontSizeBase: 30
1740
+ m_fontWeight: 400
1741
+ m_enableAutoSizing: 1
1742
+ m_fontSizeMin: 15
1743
+ m_fontSizeMax: 30
1744
+ m_fontStyle: 1
1745
+ m_HorizontalAlignment: 2
1746
+ m_VerticalAlignment: 512
1747
+ m_textAlignment: 65535
1748
+ m_characterSpacing: 0
1749
+ m_wordSpacing: 0
1750
+ m_lineSpacing: 0
1751
+ m_lineSpacingMax: 0
1752
+ m_paragraphSpacing: 0
1753
+ m_charWidthMaxAdj: 0
1754
+ m_enableWordWrapping: 0
1755
+ m_wordWrappingRatios: 0.4
1756
+ m_overflowMode: 0
1757
+ m_linkedTextComponent: {fileID: 0}
1758
+ parentLinkedComponent: {fileID: 0}
1759
+ m_enableKerning: 1
1760
+ m_enableExtraPadding: 0
1761
+ checkPaddingRequired: 0
1762
+ m_isRichText: 1
1763
+ m_parseCtrlCharacters: 1
1764
+ m_isOrthographic: 1
1765
+ m_isCullingEnabled: 0
1766
+ m_horizontalMapping: 0
1767
+ m_verticalMapping: 0
1768
+ m_uvLineOffset: 0
1769
+ m_geometrySortingOrder: 0
1770
+ m_IsTextObjectScaleStatic: 0
1771
+ m_VertexBufferAutoSizeReduction: 0
1772
+ m_useMaxVisibleDescender: 1
1773
+ m_pageToDisplay: 1
1774
+ m_margin: {x: 0, y: 0, z: 0, w: 0}
1775
+ m_isUsingLegacyAnimationComponent: 0
1776
+ m_isVolumetricText: 0
1777
+ m_hasFontAssetChanged: 0
1778
+ m_baseMaterial: {fileID: 0}
1779
+ m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
1780
+ --- !u!1 &3128642282169774276
1781
+ GameObject:
1782
+ m_ObjectHideFlags: 0
1783
+ m_CorrespondingSourceObject: {fileID: 0}
1784
+ m_PrefabInstance: {fileID: 0}
1785
+ m_PrefabAsset: {fileID: 0}
1786
+ serializedVersion: 6
1787
+ m_Component:
1788
+ - component: {fileID: 2212756985892097599}
1789
+ - component: {fileID: 3790195711619368364}
1790
+ - component: {fileID: 2927242616503450044}
1791
+ - component: {fileID: 8584921332949113434}
1792
+ m_Layer: 5
1793
+ m_Name: Viewport
1794
+ m_TagString: Untagged
1795
+ m_Icon: {fileID: 0}
1796
+ m_NavMeshLayer: 0
1797
+ m_StaticEditorFlags: 0
1798
+ m_IsActive: 1
1799
+ --- !u!224 &2212756985892097599
1800
+ RectTransform:
1801
+ m_ObjectHideFlags: 0
1802
+ m_CorrespondingSourceObject: {fileID: 0}
1803
+ m_PrefabInstance: {fileID: 0}
1804
+ m_PrefabAsset: {fileID: 0}
1805
+ m_GameObject: {fileID: 3128642282169774276}
1806
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
1807
+ m_LocalPosition: {x: 0, y: 0, z: 0}
1808
+ m_LocalScale: {x: 1, y: 1, z: 1}
1809
+ m_ConstrainProportionsScale: 0
1810
+ m_Children:
1811
+ - {fileID: 740282895170785350}
1812
+ m_Father: {fileID: 2083953588453046273}
1813
+ m_RootOrder: 0
1814
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1815
+ m_AnchorMin: {x: 0, y: 0}
1816
+ m_AnchorMax: {x: 0, y: 0}
1817
+ m_AnchoredPosition: {x: 0, y: 0}
1818
+ m_SizeDelta: {x: 0, y: 0}
1819
+ m_Pivot: {x: 0, y: 1}
1820
+ --- !u!222 &3790195711619368364
1821
+ CanvasRenderer:
1822
+ m_ObjectHideFlags: 0
1823
+ m_CorrespondingSourceObject: {fileID: 0}
1824
+ m_PrefabInstance: {fileID: 0}
1825
+ m_PrefabAsset: {fileID: 0}
1826
+ m_GameObject: {fileID: 3128642282169774276}
1827
+ m_CullTransparentMesh: 1
1828
+ --- !u!114 &2927242616503450044
1829
+ MonoBehaviour:
1830
+ m_ObjectHideFlags: 0
1831
+ m_CorrespondingSourceObject: {fileID: 0}
1832
+ m_PrefabInstance: {fileID: 0}
1833
+ m_PrefabAsset: {fileID: 0}
1834
+ m_GameObject: {fileID: 3128642282169774276}
1835
+ m_Enabled: 1
1836
+ m_EditorHideFlags: 0
1837
+ m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
1838
+ m_Name:
1839
+ m_EditorClassIdentifier:
1840
+ m_Material: {fileID: 0}
1841
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
1842
+ m_RaycastTarget: 1
1843
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
1844
+ m_Maskable: 1
1845
+ m_OnCullStateChanged:
1846
+ m_PersistentCalls:
1847
+ m_Calls: []
1848
+ m_Sprite: {fileID: 10917, guid: 0000000000000000f000000000000000, type: 0}
1849
+ m_Type: 1
1850
+ m_PreserveAspect: 0
1851
+ m_FillCenter: 1
1852
+ m_FillMethod: 4
1853
+ m_FillAmount: 1
1854
+ m_FillClockwise: 1
1855
+ m_FillOrigin: 0
1856
+ m_UseSpriteMesh: 0
1857
+ m_PixelsPerUnitMultiplier: 1
1858
+ --- !u!114 &8584921332949113434
1859
+ MonoBehaviour:
1860
+ m_ObjectHideFlags: 0
1861
+ m_CorrespondingSourceObject: {fileID: 0}
1862
+ m_PrefabInstance: {fileID: 0}
1863
+ m_PrefabAsset: {fileID: 0}
1864
+ m_GameObject: {fileID: 3128642282169774276}
1865
+ m_Enabled: 1
1866
+ m_EditorHideFlags: 0
1867
+ m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3}
1868
+ m_Name:
1869
+ m_EditorClassIdentifier:
1870
+ m_ShowMaskGraphic: 0
1871
+ --- !u!1 &3327799809294106815
1872
+ GameObject:
1873
+ m_ObjectHideFlags: 0
1874
+ m_CorrespondingSourceObject: {fileID: 0}
1875
+ m_PrefabInstance: {fileID: 0}
1876
+ m_PrefabAsset: {fileID: 0}
1877
+ serializedVersion: 6
1878
+ m_Component:
1879
+ - component: {fileID: 4169713866041154988}
1880
+ - component: {fileID: 1391709092010762662}
1881
+ - component: {fileID: 8976968071108108517}
1882
+ m_Layer: 5
1883
+ m_Name: Text (TMP)
1884
+ m_TagString: Untagged
1885
+ m_Icon: {fileID: 0}
1886
+ m_NavMeshLayer: 0
1887
+ m_StaticEditorFlags: 0
1888
+ m_IsActive: 1
1889
+ --- !u!224 &4169713866041154988
1890
+ RectTransform:
1891
+ m_ObjectHideFlags: 0
1892
+ m_CorrespondingSourceObject: {fileID: 0}
1893
+ m_PrefabInstance: {fileID: 0}
1894
+ m_PrefabAsset: {fileID: 0}
1895
+ m_GameObject: {fileID: 3327799809294106815}
1896
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
1897
+ m_LocalPosition: {x: 0, y: 0, z: 0}
1898
+ m_LocalScale: {x: 1, y: 1, z: 1}
1899
+ m_ConstrainProportionsScale: 0
1900
+ m_Children: []
1901
+ m_Father: {fileID: 994857228803903461}
1902
+ m_RootOrder: 0
1903
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1904
+ m_AnchorMin: {x: 0, y: 0}
1905
+ m_AnchorMax: {x: 1, y: 1}
1906
+ m_AnchoredPosition: {x: 0, y: 0}
1907
+ m_SizeDelta: {x: 0, y: 0}
1908
+ m_Pivot: {x: 0.5, y: 0.5}
1909
+ --- !u!222 &1391709092010762662
1910
+ CanvasRenderer:
1911
+ m_ObjectHideFlags: 0
1912
+ m_CorrespondingSourceObject: {fileID: 0}
1913
+ m_PrefabInstance: {fileID: 0}
1914
+ m_PrefabAsset: {fileID: 0}
1915
+ m_GameObject: {fileID: 3327799809294106815}
1916
+ m_CullTransparentMesh: 1
1917
+ --- !u!114 &8976968071108108517
1918
+ MonoBehaviour:
1919
+ m_ObjectHideFlags: 0
1920
+ m_CorrespondingSourceObject: {fileID: 0}
1921
+ m_PrefabInstance: {fileID: 0}
1922
+ m_PrefabAsset: {fileID: 0}
1923
+ m_GameObject: {fileID: 3327799809294106815}
1924
+ m_Enabled: 1
1925
+ m_EditorHideFlags: 0
1926
+ m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
1927
+ m_Name:
1928
+ m_EditorClassIdentifier:
1929
+ m_Material: {fileID: 0}
1930
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
1931
+ m_RaycastTarget: 1
1932
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
1933
+ m_Maskable: 1
1934
+ m_OnCullStateChanged:
1935
+ m_PersistentCalls:
1936
+ m_Calls: []
1937
+ m_text: Force Download
1938
+ m_isRightToLeft: 0
1939
+ m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
1940
+ m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
1941
+ m_fontSharedMaterials: []
1942
+ m_fontMaterial: {fileID: 0}
1943
+ m_fontMaterials: []
1944
+ m_fontColor32:
1945
+ serializedVersion: 2
1946
+ rgba: 4294967295
1947
+ m_fontColor: {r: 1, g: 1, b: 1, a: 1}
1948
+ m_enableVertexGradient: 0
1949
+ m_colorMode: 3
1950
+ m_fontColorGradient:
1951
+ topLeft: {r: 1, g: 1, b: 1, a: 1}
1952
+ topRight: {r: 1, g: 1, b: 1, a: 1}
1953
+ bottomLeft: {r: 1, g: 1, b: 1, a: 1}
1954
+ bottomRight: {r: 1, g: 1, b: 1, a: 1}
1955
+ m_fontColorGradientPreset: {fileID: 0}
1956
+ m_spriteAsset: {fileID: 0}
1957
+ m_tintAllSprites: 0
1958
+ m_StyleSheet: {fileID: 0}
1959
+ m_TextStyleHashCode: -1183493901
1960
+ m_overrideHtmlColors: 0
1961
+ m_faceColor:
1962
+ serializedVersion: 2
1963
+ rgba: 4294967295
1964
+ m_fontSize: 30
1965
+ m_fontSizeBase: 30
1966
+ m_fontWeight: 400
1967
+ m_enableAutoSizing: 0
1968
+ m_fontSizeMin: 18
1969
+ m_fontSizeMax: 72
1970
+ m_fontStyle: 1
1971
+ m_HorizontalAlignment: 2
1972
+ m_VerticalAlignment: 512
1973
+ m_textAlignment: 65535
1974
+ m_characterSpacing: 0
1975
+ m_wordSpacing: 0
1976
+ m_lineSpacing: 0
1977
+ m_lineSpacingMax: 0
960
1978
  m_paragraphSpacing: 0
961
1979
  m_charWidthMaxAdj: 0
962
- m_enableWordWrapping: 1
1980
+ m_enableWordWrapping: 0
963
1981
  m_wordWrappingRatios: 0.4
964
1982
  m_overflowMode: 0
965
1983
  m_linkedTextComponent: {fileID: 0}
@@ -982,10 +2000,10 @@ MonoBehaviour:
982
2000
  m_margin: {x: 0, y: 0, z: 0, w: 0}
983
2001
  m_isUsingLegacyAnimationComponent: 0
984
2002
  m_isVolumetricText: 0
985
- m_hasFontAssetChanged: 0
2003
+ m_hasFontAssetChanged: 1
986
2004
  m_baseMaterial: {fileID: 0}
987
2005
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
988
- --- !u!1 &2302477482956598070
2006
+ --- !u!1 &3498604625798708694
989
2007
  GameObject:
990
2008
  m_ObjectHideFlags: 0
991
2009
  m_CorrespondingSourceObject: {fileID: 0}
@@ -993,67 +2011,67 @@ GameObject:
993
2011
  m_PrefabAsset: {fileID: 0}
994
2012
  serializedVersion: 6
995
2013
  m_Component:
996
- - component: {fileID: 8252200912230221115}
997
- - component: {fileID: 5417878894058439021}
998
- - component: {fileID: 8899699311804440009}
999
- - component: {fileID: 6773152224469355316}
2014
+ - component: {fileID: 7689217072179168204}
2015
+ - component: {fileID: 4618552928162044723}
2016
+ - component: {fileID: 5022157327226501026}
2017
+ - component: {fileID: 307926041847763810}
1000
2018
  m_Layer: 5
1001
- m_Name: BackButton
2019
+ m_Name: SaveData
1002
2020
  m_TagString: Untagged
1003
2021
  m_Icon: {fileID: 0}
1004
2022
  m_NavMeshLayer: 0
1005
2023
  m_StaticEditorFlags: 0
1006
2024
  m_IsActive: 1
1007
- --- !u!224 &8252200912230221115
2025
+ --- !u!224 &7689217072179168204
1008
2026
  RectTransform:
1009
2027
  m_ObjectHideFlags: 0
1010
2028
  m_CorrespondingSourceObject: {fileID: 0}
1011
2029
  m_PrefabInstance: {fileID: 0}
1012
2030
  m_PrefabAsset: {fileID: 0}
1013
- m_GameObject: {fileID: 2302477482956598070}
1014
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
2031
+ m_GameObject: {fileID: 3498604625798708694}
2032
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
1015
2033
  m_LocalPosition: {x: 0, y: 0, z: 0}
1016
2034
  m_LocalScale: {x: 1, y: 1, z: 1}
1017
2035
  m_ConstrainProportionsScale: 0
1018
2036
  m_Children:
1019
- - {fileID: 437497035507502049}
1020
- m_Father: {fileID: 635883761041762154}
1021
- m_RootOrder: 3
2037
+ - {fileID: 5838201545926773406}
2038
+ m_Father: {fileID: 9096530913924650392}
2039
+ m_RootOrder: 1
1022
2040
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1023
2041
  m_AnchorMin: {x: 0, y: 0}
1024
2042
  m_AnchorMax: {x: 0, y: 0}
1025
- m_AnchoredPosition: {x: 191.7826, y: 15}
1026
- m_SizeDelta: {x: 250, y: 80}
2043
+ m_AnchoredPosition: {x: 0, y: 0}
2044
+ m_SizeDelta: {x: 0, y: 60}
1027
2045
  m_Pivot: {x: 0.5, y: 0}
1028
- --- !u!222 &5417878894058439021
2046
+ --- !u!222 &4618552928162044723
1029
2047
  CanvasRenderer:
1030
2048
  m_ObjectHideFlags: 0
1031
2049
  m_CorrespondingSourceObject: {fileID: 0}
1032
2050
  m_PrefabInstance: {fileID: 0}
1033
2051
  m_PrefabAsset: {fileID: 0}
1034
- m_GameObject: {fileID: 2302477482956598070}
2052
+ m_GameObject: {fileID: 3498604625798708694}
1035
2053
  m_CullTransparentMesh: 1
1036
- --- !u!114 &8899699311804440009
2054
+ --- !u!114 &5022157327226501026
1037
2055
  MonoBehaviour:
1038
2056
  m_ObjectHideFlags: 0
1039
2057
  m_CorrespondingSourceObject: {fileID: 0}
1040
2058
  m_PrefabInstance: {fileID: 0}
1041
2059
  m_PrefabAsset: {fileID: 0}
1042
- m_GameObject: {fileID: 2302477482956598070}
2060
+ m_GameObject: {fileID: 3498604625798708694}
1043
2061
  m_Enabled: 1
1044
2062
  m_EditorHideFlags: 0
1045
2063
  m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
1046
2064
  m_Name:
1047
2065
  m_EditorClassIdentifier:
1048
2066
  m_Material: {fileID: 0}
1049
- m_Color: {r: 0.4433962, g: 0.4433962, b: 0.4433962, a: 0.4627451}
2067
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
1050
2068
  m_RaycastTarget: 1
1051
2069
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
1052
2070
  m_Maskable: 1
1053
2071
  m_OnCullStateChanged:
1054
2072
  m_PersistentCalls:
1055
2073
  m_Calls: []
1056
- m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
2074
+ m_Sprite: {fileID: 21300000, guid: 721c765a3d97c0b4f865bac8223d1404, type: 3}
1057
2075
  m_Type: 1
1058
2076
  m_PreserveAspect: 0
1059
2077
  m_FillCenter: 1
@@ -1062,14 +2080,14 @@ MonoBehaviour:
1062
2080
  m_FillClockwise: 1
1063
2081
  m_FillOrigin: 0
1064
2082
  m_UseSpriteMesh: 0
1065
- m_PixelsPerUnitMultiplier: 1
1066
- --- !u!114 &6773152224469355316
2083
+ m_PixelsPerUnitMultiplier: 4
2084
+ --- !u!114 &307926041847763810
1067
2085
  MonoBehaviour:
1068
2086
  m_ObjectHideFlags: 0
1069
2087
  m_CorrespondingSourceObject: {fileID: 0}
1070
2088
  m_PrefabInstance: {fileID: 0}
1071
2089
  m_PrefabAsset: {fileID: 0}
1072
- m_GameObject: {fileID: 2302477482956598070}
2090
+ m_GameObject: {fileID: 3498604625798708694}
1073
2091
  m_Enabled: 1
1074
2092
  m_EditorHideFlags: 0
1075
2093
  m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
@@ -1103,11 +2121,11 @@ MonoBehaviour:
1103
2121
  m_SelectedTrigger: Selected
1104
2122
  m_DisabledTrigger: Disabled
1105
2123
  m_Interactable: 1
1106
- m_TargetGraphic: {fileID: 8899699311804440009}
2124
+ m_TargetGraphic: {fileID: 5022157327226501026}
1107
2125
  m_OnClick:
1108
2126
  m_PersistentCalls:
1109
2127
  m_Calls: []
1110
- --- !u!1 &2568065994868924265
2128
+ --- !u!1 &3529805476743472090
1111
2129
  GameObject:
1112
2130
  m_ObjectHideFlags: 0
1113
2131
  m_CorrespondingSourceObject: {fileID: 0}
@@ -1115,121 +2133,134 @@ GameObject:
1115
2133
  m_PrefabAsset: {fileID: 0}
1116
2134
  serializedVersion: 6
1117
2135
  m_Component:
1118
- - component: {fileID: 994857228803903461}
1119
- - component: {fileID: 5969988494186635906}
1120
- - component: {fileID: 5445626237985130374}
1121
- - component: {fileID: 695677660417774945}
2136
+ - component: {fileID: 4027130973822934141}
2137
+ - component: {fileID: 7279161296114643688}
2138
+ - component: {fileID: 8903624622943502288}
1122
2139
  m_Layer: 5
1123
- m_Name: ForceDownload
2140
+ m_Name: Text (TMP)
1124
2141
  m_TagString: Untagged
1125
2142
  m_Icon: {fileID: 0}
1126
2143
  m_NavMeshLayer: 0
1127
2144
  m_StaticEditorFlags: 0
1128
2145
  m_IsActive: 1
1129
- --- !u!224 &994857228803903461
2146
+ --- !u!224 &4027130973822934141
1130
2147
  RectTransform:
1131
2148
  m_ObjectHideFlags: 0
1132
2149
  m_CorrespondingSourceObject: {fileID: 0}
1133
2150
  m_PrefabInstance: {fileID: 0}
1134
2151
  m_PrefabAsset: {fileID: 0}
1135
- m_GameObject: {fileID: 2568065994868924265}
2152
+ m_GameObject: {fileID: 3529805476743472090}
1136
2153
  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
1137
2154
  m_LocalPosition: {x: 0, y: 0, z: 0}
1138
2155
  m_LocalScale: {x: 1, y: 1, z: 1}
1139
2156
  m_ConstrainProportionsScale: 0
1140
- m_Children:
1141
- - {fileID: 4169713866041154988}
1142
- m_Father: {fileID: 635883761041762154}
1143
- m_RootOrder: 7
2157
+ m_Children: []
2158
+ m_Father: {fileID: 6276430876606665999}
2159
+ m_RootOrder: 0
1144
2160
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1145
- m_AnchorMin: {x: 1, y: 0}
1146
- m_AnchorMax: {x: 1, y: 0}
1147
- m_AnchoredPosition: {x: -157, y: 15}
1148
- m_SizeDelta: {x: 250, y: 80}
1149
- m_Pivot: {x: 0.5, y: 0}
1150
- --- !u!222 &5969988494186635906
2161
+ m_AnchorMin: {x: 0, y: 0}
2162
+ m_AnchorMax: {x: 1, y: 1}
2163
+ m_AnchoredPosition: {x: 0, y: 0}
2164
+ m_SizeDelta: {x: 0, y: 0}
2165
+ m_Pivot: {x: 0.5, y: 0.5}
2166
+ --- !u!222 &7279161296114643688
1151
2167
  CanvasRenderer:
1152
2168
  m_ObjectHideFlags: 0
1153
2169
  m_CorrespondingSourceObject: {fileID: 0}
1154
2170
  m_PrefabInstance: {fileID: 0}
1155
2171
  m_PrefabAsset: {fileID: 0}
1156
- m_GameObject: {fileID: 2568065994868924265}
2172
+ m_GameObject: {fileID: 3529805476743472090}
1157
2173
  m_CullTransparentMesh: 1
1158
- --- !u!114 &5445626237985130374
2174
+ --- !u!114 &8903624622943502288
1159
2175
  MonoBehaviour:
1160
2176
  m_ObjectHideFlags: 0
1161
2177
  m_CorrespondingSourceObject: {fileID: 0}
1162
2178
  m_PrefabInstance: {fileID: 0}
1163
2179
  m_PrefabAsset: {fileID: 0}
1164
- m_GameObject: {fileID: 2568065994868924265}
2180
+ m_GameObject: {fileID: 3529805476743472090}
1165
2181
  m_Enabled: 1
1166
2182
  m_EditorHideFlags: 0
1167
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
2183
+ m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
1168
2184
  m_Name:
1169
2185
  m_EditorClassIdentifier:
1170
2186
  m_Material: {fileID: 0}
1171
- m_Color: {r: 0.4433962, g: 0.4433962, b: 0.4433962, a: 0.4627451}
2187
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
1172
2188
  m_RaycastTarget: 1
1173
2189
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
1174
2190
  m_Maskable: 1
1175
2191
  m_OnCullStateChanged:
1176
2192
  m_PersistentCalls:
1177
2193
  m_Calls: []
1178
- m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
1179
- m_Type: 1
1180
- m_PreserveAspect: 0
1181
- m_FillCenter: 1
1182
- m_FillMethod: 4
1183
- m_FillAmount: 1
1184
- m_FillClockwise: 1
1185
- m_FillOrigin: 0
1186
- m_UseSpriteMesh: 0
1187
- m_PixelsPerUnitMultiplier: 1
1188
- --- !u!114 &695677660417774945
1189
- MonoBehaviour:
1190
- m_ObjectHideFlags: 0
1191
- m_CorrespondingSourceObject: {fileID: 0}
1192
- m_PrefabInstance: {fileID: 0}
1193
- m_PrefabAsset: {fileID: 0}
1194
- m_GameObject: {fileID: 2568065994868924265}
1195
- m_Enabled: 1
1196
- m_EditorHideFlags: 0
1197
- m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
1198
- m_Name:
1199
- m_EditorClassIdentifier:
1200
- m_Navigation:
1201
- m_Mode: 3
1202
- m_WrapAround: 0
1203
- m_SelectOnUp: {fileID: 0}
1204
- m_SelectOnDown: {fileID: 0}
1205
- m_SelectOnLeft: {fileID: 0}
1206
- m_SelectOnRight: {fileID: 0}
1207
- m_Transition: 1
1208
- m_Colors:
1209
- m_NormalColor: {r: 1, g: 0.9386792, b: 0.9386792, a: 1}
1210
- m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
1211
- m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
1212
- m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
1213
- m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
1214
- m_ColorMultiplier: 1
1215
- m_FadeDuration: 0.1
1216
- m_SpriteState:
1217
- m_HighlightedSprite: {fileID: 0}
1218
- m_PressedSprite: {fileID: 0}
1219
- m_SelectedSprite: {fileID: 0}
1220
- m_DisabledSprite: {fileID: 0}
1221
- m_AnimationTriggers:
1222
- m_NormalTrigger: Normal
1223
- m_HighlightedTrigger: Highlighted
1224
- m_PressedTrigger: Pressed
1225
- m_SelectedTrigger: Selected
1226
- m_DisabledTrigger: Disabled
1227
- m_Interactable: 1
1228
- m_TargetGraphic: {fileID: 5445626237985130374}
1229
- m_OnClick:
1230
- m_PersistentCalls:
1231
- m_Calls: []
1232
- --- !u!1 &3128642282169774276
2194
+ m_text: Load Data
2195
+ m_isRightToLeft: 0
2196
+ m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
2197
+ m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
2198
+ m_fontSharedMaterials: []
2199
+ m_fontMaterial: {fileID: 0}
2200
+ m_fontMaterials: []
2201
+ m_fontColor32:
2202
+ serializedVersion: 2
2203
+ rgba: 4294967295
2204
+ m_fontColor: {r: 1, g: 1, b: 1, a: 1}
2205
+ m_enableVertexGradient: 0
2206
+ m_colorMode: 3
2207
+ m_fontColorGradient:
2208
+ topLeft: {r: 1, g: 1, b: 1, a: 1}
2209
+ topRight: {r: 1, g: 1, b: 1, a: 1}
2210
+ bottomLeft: {r: 1, g: 1, b: 1, a: 1}
2211
+ bottomRight: {r: 1, g: 1, b: 1, a: 1}
2212
+ m_fontColorGradientPreset: {fileID: 0}
2213
+ m_spriteAsset: {fileID: 0}
2214
+ m_tintAllSprites: 0
2215
+ m_StyleSheet: {fileID: 0}
2216
+ m_TextStyleHashCode: -1183493901
2217
+ m_overrideHtmlColors: 0
2218
+ m_faceColor:
2219
+ serializedVersion: 2
2220
+ rgba: 4294967295
2221
+ m_fontSize: 30
2222
+ m_fontSizeBase: 30
2223
+ m_fontWeight: 400
2224
+ m_enableAutoSizing: 0
2225
+ m_fontSizeMin: 18
2226
+ m_fontSizeMax: 72
2227
+ m_fontStyle: 1
2228
+ m_HorizontalAlignment: 2
2229
+ m_VerticalAlignment: 512
2230
+ m_textAlignment: 65535
2231
+ m_characterSpacing: 0
2232
+ m_wordSpacing: 0
2233
+ m_lineSpacing: 0
2234
+ m_lineSpacingMax: 0
2235
+ m_paragraphSpacing: 0
2236
+ m_charWidthMaxAdj: 0
2237
+ m_enableWordWrapping: 0
2238
+ m_wordWrappingRatios: 0.4
2239
+ m_overflowMode: 0
2240
+ m_linkedTextComponent: {fileID: 0}
2241
+ parentLinkedComponent: {fileID: 0}
2242
+ m_enableKerning: 1
2243
+ m_enableExtraPadding: 0
2244
+ checkPaddingRequired: 0
2245
+ m_isRichText: 1
2246
+ m_parseCtrlCharacters: 1
2247
+ m_isOrthographic: 1
2248
+ m_isCullingEnabled: 0
2249
+ m_horizontalMapping: 0
2250
+ m_verticalMapping: 0
2251
+ m_uvLineOffset: 0
2252
+ m_geometrySortingOrder: 0
2253
+ m_IsTextObjectScaleStatic: 0
2254
+ m_VertexBufferAutoSizeReduction: 0
2255
+ m_useMaxVisibleDescender: 1
2256
+ m_pageToDisplay: 1
2257
+ m_margin: {x: 0, y: 0, z: 0, w: 0}
2258
+ m_isUsingLegacyAnimationComponent: 0
2259
+ m_isVolumetricText: 0
2260
+ m_hasFontAssetChanged: 1
2261
+ m_baseMaterial: {fileID: 0}
2262
+ m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
2263
+ --- !u!1 &3608467292552977092
1233
2264
  GameObject:
1234
2265
  m_ObjectHideFlags: 0
1235
2266
  m_CorrespondingSourceObject: {fileID: 0}
@@ -1237,56 +2268,54 @@ GameObject:
1237
2268
  m_PrefabAsset: {fileID: 0}
1238
2269
  serializedVersion: 6
1239
2270
  m_Component:
1240
- - component: {fileID: 2212756985892097599}
1241
- - component: {fileID: 3790195711619368364}
1242
- - component: {fileID: 2927242616503450044}
1243
- - component: {fileID: 8584921332949113434}
2271
+ - component: {fileID: 2968585064174318513}
2272
+ - component: {fileID: 1716964295839802282}
2273
+ - component: {fileID: 2036619240829210666}
1244
2274
  m_Layer: 5
1245
- m_Name: Viewport
2275
+ m_Name: Text (TMP)
1246
2276
  m_TagString: Untagged
1247
2277
  m_Icon: {fileID: 0}
1248
2278
  m_NavMeshLayer: 0
1249
2279
  m_StaticEditorFlags: 0
1250
2280
  m_IsActive: 1
1251
- --- !u!224 &2212756985892097599
2281
+ --- !u!224 &2968585064174318513
1252
2282
  RectTransform:
1253
2283
  m_ObjectHideFlags: 0
1254
2284
  m_CorrespondingSourceObject: {fileID: 0}
1255
2285
  m_PrefabInstance: {fileID: 0}
1256
2286
  m_PrefabAsset: {fileID: 0}
1257
- m_GameObject: {fileID: 3128642282169774276}
1258
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
2287
+ m_GameObject: {fileID: 3608467292552977092}
2288
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
1259
2289
  m_LocalPosition: {x: 0, y: 0, z: 0}
1260
2290
  m_LocalScale: {x: 1, y: 1, z: 1}
1261
2291
  m_ConstrainProportionsScale: 0
1262
- m_Children:
1263
- - {fileID: 740282895170785350}
1264
- m_Father: {fileID: 2083953588453046273}
2292
+ m_Children: []
2293
+ m_Father: {fileID: 8034134120355693084}
1265
2294
  m_RootOrder: 0
1266
2295
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1267
2296
  m_AnchorMin: {x: 0, y: 0}
1268
- m_AnchorMax: {x: 0, y: 0}
2297
+ m_AnchorMax: {x: 1, y: 1}
1269
2298
  m_AnchoredPosition: {x: 0, y: 0}
1270
2299
  m_SizeDelta: {x: 0, y: 0}
1271
- m_Pivot: {x: 0, y: 1}
1272
- --- !u!222 &3790195711619368364
2300
+ m_Pivot: {x: 0.5, y: 0.5}
2301
+ --- !u!222 &1716964295839802282
1273
2302
  CanvasRenderer:
1274
2303
  m_ObjectHideFlags: 0
1275
2304
  m_CorrespondingSourceObject: {fileID: 0}
1276
2305
  m_PrefabInstance: {fileID: 0}
1277
2306
  m_PrefabAsset: {fileID: 0}
1278
- m_GameObject: {fileID: 3128642282169774276}
2307
+ m_GameObject: {fileID: 3608467292552977092}
1279
2308
  m_CullTransparentMesh: 1
1280
- --- !u!114 &2927242616503450044
2309
+ --- !u!114 &2036619240829210666
1281
2310
  MonoBehaviour:
1282
2311
  m_ObjectHideFlags: 0
1283
2312
  m_CorrespondingSourceObject: {fileID: 0}
1284
2313
  m_PrefabInstance: {fileID: 0}
1285
2314
  m_PrefabAsset: {fileID: 0}
1286
- m_GameObject: {fileID: 3128642282169774276}
2315
+ m_GameObject: {fileID: 3608467292552977092}
1287
2316
  m_Enabled: 1
1288
2317
  m_EditorHideFlags: 0
1289
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
2318
+ m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
1290
2319
  m_Name:
1291
2320
  m_EditorClassIdentifier:
1292
2321
  m_Material: {fileID: 0}
@@ -1297,30 +2326,76 @@ MonoBehaviour:
1297
2326
  m_OnCullStateChanged:
1298
2327
  m_PersistentCalls:
1299
2328
  m_Calls: []
1300
- m_Sprite: {fileID: 10917, guid: 0000000000000000f000000000000000, type: 0}
1301
- m_Type: 1
1302
- m_PreserveAspect: 0
1303
- m_FillCenter: 1
1304
- m_FillMethod: 4
1305
- m_FillAmount: 1
1306
- m_FillClockwise: 1
1307
- m_FillOrigin: 0
1308
- m_UseSpriteMesh: 0
1309
- m_PixelsPerUnitMultiplier: 1
1310
- --- !u!114 &8584921332949113434
1311
- MonoBehaviour:
1312
- m_ObjectHideFlags: 0
1313
- m_CorrespondingSourceObject: {fileID: 0}
1314
- m_PrefabInstance: {fileID: 0}
1315
- m_PrefabAsset: {fileID: 0}
1316
- m_GameObject: {fileID: 3128642282169774276}
1317
- m_Enabled: 1
1318
- m_EditorHideFlags: 0
1319
- m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3}
1320
- m_Name:
1321
- m_EditorClassIdentifier:
1322
- m_ShowMaskGraphic: 0
1323
- --- !u!1 &3327799809294106815
2329
+ m_text: Back
2330
+ m_isRightToLeft: 0
2331
+ m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
2332
+ m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
2333
+ m_fontSharedMaterials: []
2334
+ m_fontMaterial: {fileID: 0}
2335
+ m_fontMaterials: []
2336
+ m_fontColor32:
2337
+ serializedVersion: 2
2338
+ rgba: 4294967295
2339
+ m_fontColor: {r: 1, g: 1, b: 1, a: 1}
2340
+ m_enableVertexGradient: 0
2341
+ m_colorMode: 3
2342
+ m_fontColorGradient:
2343
+ topLeft: {r: 1, g: 1, b: 1, a: 1}
2344
+ topRight: {r: 1, g: 1, b: 1, a: 1}
2345
+ bottomLeft: {r: 1, g: 1, b: 1, a: 1}
2346
+ bottomRight: {r: 1, g: 1, b: 1, a: 1}
2347
+ m_fontColorGradientPreset: {fileID: 0}
2348
+ m_spriteAsset: {fileID: 0}
2349
+ m_tintAllSprites: 0
2350
+ m_StyleSheet: {fileID: 0}
2351
+ m_TextStyleHashCode: -1183493901
2352
+ m_overrideHtmlColors: 0
2353
+ m_faceColor:
2354
+ serializedVersion: 2
2355
+ rgba: 4294967295
2356
+ m_fontSize: 30
2357
+ m_fontSizeBase: 30
2358
+ m_fontWeight: 400
2359
+ m_enableAutoSizing: 1
2360
+ m_fontSizeMin: 15
2361
+ m_fontSizeMax: 30
2362
+ m_fontStyle: 1
2363
+ m_HorizontalAlignment: 2
2364
+ m_VerticalAlignment: 512
2365
+ m_textAlignment: 65535
2366
+ m_characterSpacing: 0
2367
+ m_wordSpacing: 0
2368
+ m_lineSpacing: 0
2369
+ m_lineSpacingMax: 0
2370
+ m_paragraphSpacing: 0
2371
+ m_charWidthMaxAdj: 0
2372
+ m_enableWordWrapping: 0
2373
+ m_wordWrappingRatios: 0.4
2374
+ m_overflowMode: 0
2375
+ m_linkedTextComponent: {fileID: 0}
2376
+ parentLinkedComponent: {fileID: 0}
2377
+ m_enableKerning: 1
2378
+ m_enableExtraPadding: 0
2379
+ checkPaddingRequired: 0
2380
+ m_isRichText: 1
2381
+ m_parseCtrlCharacters: 1
2382
+ m_isOrthographic: 1
2383
+ m_isCullingEnabled: 0
2384
+ m_horizontalMapping: 0
2385
+ m_verticalMapping: 0
2386
+ m_uvLineOffset: 0
2387
+ m_geometrySortingOrder: 0
2388
+ m_IsTextObjectScaleStatic: 0
2389
+ m_VertexBufferAutoSizeReduction: 0
2390
+ m_useMaxVisibleDescender: 1
2391
+ m_pageToDisplay: 1
2392
+ m_margin: {x: 0, y: 0, z: 0, w: 0}
2393
+ m_isUsingLegacyAnimationComponent: 0
2394
+ m_isVolumetricText: 0
2395
+ m_hasFontAssetChanged: 0
2396
+ m_baseMaterial: {fileID: 0}
2397
+ m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
2398
+ --- !u!1 &3936522982572202001
1324
2399
  GameObject:
1325
2400
  m_ObjectHideFlags: 0
1326
2401
  m_CorrespondingSourceObject: {fileID: 0}
@@ -1328,9 +2403,9 @@ GameObject:
1328
2403
  m_PrefabAsset: {fileID: 0}
1329
2404
  serializedVersion: 6
1330
2405
  m_Component:
1331
- - component: {fileID: 4169713866041154988}
1332
- - component: {fileID: 1391709092010762662}
1333
- - component: {fileID: 8976968071108108517}
2406
+ - component: {fileID: 6224743891040318538}
2407
+ - component: {fileID: 546829913755748891}
2408
+ - component: {fileID: 758195427329498183}
1334
2409
  m_Layer: 5
1335
2410
  m_Name: Text (TMP)
1336
2411
  m_TagString: Untagged
@@ -1338,19 +2413,19 @@ GameObject:
1338
2413
  m_NavMeshLayer: 0
1339
2414
  m_StaticEditorFlags: 0
1340
2415
  m_IsActive: 1
1341
- --- !u!224 &4169713866041154988
2416
+ --- !u!224 &6224743891040318538
1342
2417
  RectTransform:
1343
2418
  m_ObjectHideFlags: 0
1344
2419
  m_CorrespondingSourceObject: {fileID: 0}
1345
2420
  m_PrefabInstance: {fileID: 0}
1346
2421
  m_PrefabAsset: {fileID: 0}
1347
- m_GameObject: {fileID: 3327799809294106815}
2422
+ m_GameObject: {fileID: 3936522982572202001}
1348
2423
  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
1349
2424
  m_LocalPosition: {x: 0, y: 0, z: 0}
1350
2425
  m_LocalScale: {x: 1, y: 1, z: 1}
1351
2426
  m_ConstrainProportionsScale: 0
1352
2427
  m_Children: []
1353
- m_Father: {fileID: 994857228803903461}
2428
+ m_Father: {fileID: 2794362969325788080}
1354
2429
  m_RootOrder: 0
1355
2430
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1356
2431
  m_AnchorMin: {x: 0, y: 0}
@@ -1358,21 +2433,21 @@ RectTransform:
1358
2433
  m_AnchoredPosition: {x: 0, y: 0}
1359
2434
  m_SizeDelta: {x: 0, y: 0}
1360
2435
  m_Pivot: {x: 0.5, y: 0.5}
1361
- --- !u!222 &1391709092010762662
2436
+ --- !u!222 &546829913755748891
1362
2437
  CanvasRenderer:
1363
2438
  m_ObjectHideFlags: 0
1364
2439
  m_CorrespondingSourceObject: {fileID: 0}
1365
2440
  m_PrefabInstance: {fileID: 0}
1366
2441
  m_PrefabAsset: {fileID: 0}
1367
- m_GameObject: {fileID: 3327799809294106815}
2442
+ m_GameObject: {fileID: 3936522982572202001}
1368
2443
  m_CullTransparentMesh: 1
1369
- --- !u!114 &8976968071108108517
2444
+ --- !u!114 &758195427329498183
1370
2445
  MonoBehaviour:
1371
2446
  m_ObjectHideFlags: 0
1372
2447
  m_CorrespondingSourceObject: {fileID: 0}
1373
2448
  m_PrefabInstance: {fileID: 0}
1374
2449
  m_PrefabAsset: {fileID: 0}
1375
- m_GameObject: {fileID: 3327799809294106815}
2450
+ m_GameObject: {fileID: 3936522982572202001}
1376
2451
  m_Enabled: 1
1377
2452
  m_EditorHideFlags: 0
1378
2453
  m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
@@ -1386,7 +2461,7 @@ MonoBehaviour:
1386
2461
  m_OnCullStateChanged:
1387
2462
  m_PersistentCalls:
1388
2463
  m_Calls: []
1389
- m_text: Force Download
2464
+ m_text: Force Upload
1390
2465
  m_isRightToLeft: 0
1391
2466
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
1392
2467
  m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
@@ -1416,10 +2491,10 @@ MonoBehaviour:
1416
2491
  m_fontSize: 30
1417
2492
  m_fontSizeBase: 30
1418
2493
  m_fontWeight: 400
1419
- m_enableAutoSizing: 0
1420
- m_fontSizeMin: 18
1421
- m_fontSizeMax: 72
1422
- m_fontStyle: 0
2494
+ m_enableAutoSizing: 1
2495
+ m_fontSizeMin: 15
2496
+ m_fontSizeMax: 30
2497
+ m_fontStyle: 1
1423
2498
  m_HorizontalAlignment: 2
1424
2499
  m_VerticalAlignment: 512
1425
2500
  m_textAlignment: 65535
@@ -1429,7 +2504,7 @@ MonoBehaviour:
1429
2504
  m_lineSpacingMax: 0
1430
2505
  m_paragraphSpacing: 0
1431
2506
  m_charWidthMaxAdj: 0
1432
- m_enableWordWrapping: 1
2507
+ m_enableWordWrapping: 0
1433
2508
  m_wordWrappingRatios: 0.4
1434
2509
  m_overflowMode: 0
1435
2510
  m_linkedTextComponent: {fileID: 0}
@@ -1455,7 +2530,7 @@ MonoBehaviour:
1455
2530
  m_hasFontAssetChanged: 0
1456
2531
  m_baseMaterial: {fileID: 0}
1457
2532
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
1458
- --- !u!1 &3529805476743472090
2533
+ --- !u!1 &5377991374598140701
1459
2534
  GameObject:
1460
2535
  m_ObjectHideFlags: 0
1461
2536
  m_CorrespondingSourceObject: {fileID: 0}
@@ -1463,9 +2538,9 @@ GameObject:
1463
2538
  m_PrefabAsset: {fileID: 0}
1464
2539
  serializedVersion: 6
1465
2540
  m_Component:
1466
- - component: {fileID: 4027130973822934141}
1467
- - component: {fileID: 7279161296114643688}
1468
- - component: {fileID: 8903624622943502288}
2541
+ - component: {fileID: 8852238583104267794}
2542
+ - component: {fileID: 5557948921716399674}
2543
+ - component: {fileID: 7422808737405450428}
1469
2544
  m_Layer: 5
1470
2545
  m_Name: Text (TMP)
1471
2546
  m_TagString: Untagged
@@ -1473,19 +2548,19 @@ GameObject:
1473
2548
  m_NavMeshLayer: 0
1474
2549
  m_StaticEditorFlags: 0
1475
2550
  m_IsActive: 1
1476
- --- !u!224 &4027130973822934141
2551
+ --- !u!224 &8852238583104267794
1477
2552
  RectTransform:
1478
2553
  m_ObjectHideFlags: 0
1479
2554
  m_CorrespondingSourceObject: {fileID: 0}
1480
2555
  m_PrefabInstance: {fileID: 0}
1481
2556
  m_PrefabAsset: {fileID: 0}
1482
- m_GameObject: {fileID: 3529805476743472090}
2557
+ m_GameObject: {fileID: 5377991374598140701}
1483
2558
  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
1484
2559
  m_LocalPosition: {x: 0, y: 0, z: 0}
1485
2560
  m_LocalScale: {x: 1, y: 1, z: 1}
1486
2561
  m_ConstrainProportionsScale: 0
1487
2562
  m_Children: []
1488
- m_Father: {fileID: 6276430876606665999}
2563
+ m_Father: {fileID: 4650470152832129860}
1489
2564
  m_RootOrder: 0
1490
2565
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1491
2566
  m_AnchorMin: {x: 0, y: 0}
@@ -1493,21 +2568,21 @@ RectTransform:
1493
2568
  m_AnchoredPosition: {x: 0, y: 0}
1494
2569
  m_SizeDelta: {x: 0, y: 0}
1495
2570
  m_Pivot: {x: 0.5, y: 0.5}
1496
- --- !u!222 &7279161296114643688
2571
+ --- !u!222 &5557948921716399674
1497
2572
  CanvasRenderer:
1498
2573
  m_ObjectHideFlags: 0
1499
2574
  m_CorrespondingSourceObject: {fileID: 0}
1500
2575
  m_PrefabInstance: {fileID: 0}
1501
2576
  m_PrefabAsset: {fileID: 0}
1502
- m_GameObject: {fileID: 3529805476743472090}
2577
+ m_GameObject: {fileID: 5377991374598140701}
1503
2578
  m_CullTransparentMesh: 1
1504
- --- !u!114 &8903624622943502288
2579
+ --- !u!114 &7422808737405450428
1505
2580
  MonoBehaviour:
1506
2581
  m_ObjectHideFlags: 0
1507
2582
  m_CorrespondingSourceObject: {fileID: 0}
1508
2583
  m_PrefabInstance: {fileID: 0}
1509
2584
  m_PrefabAsset: {fileID: 0}
1510
- m_GameObject: {fileID: 3529805476743472090}
2585
+ m_GameObject: {fileID: 5377991374598140701}
1511
2586
  m_Enabled: 1
1512
2587
  m_EditorHideFlags: 0
1513
2588
  m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
@@ -1521,7 +2596,7 @@ MonoBehaviour:
1521
2596
  m_OnCullStateChanged:
1522
2597
  m_PersistentCalls:
1523
2598
  m_Calls: []
1524
- m_text: Load Data
2599
+ m_text: Force Download
1525
2600
  m_isRightToLeft: 0
1526
2601
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
1527
2602
  m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
@@ -1551,10 +2626,10 @@ MonoBehaviour:
1551
2626
  m_fontSize: 30
1552
2627
  m_fontSizeBase: 30
1553
2628
  m_fontWeight: 400
1554
- m_enableAutoSizing: 0
1555
- m_fontSizeMin: 18
1556
- m_fontSizeMax: 72
1557
- m_fontStyle: 0
2629
+ m_enableAutoSizing: 1
2630
+ m_fontSizeMin: 15
2631
+ m_fontSizeMax: 30
2632
+ m_fontStyle: 1
1558
2633
  m_HorizontalAlignment: 2
1559
2634
  m_VerticalAlignment: 512
1560
2635
  m_textAlignment: 65535
@@ -1564,7 +2639,7 @@ MonoBehaviour:
1564
2639
  m_lineSpacingMax: 0
1565
2640
  m_paragraphSpacing: 0
1566
2641
  m_charWidthMaxAdj: 0
1567
- m_enableWordWrapping: 1
2642
+ m_enableWordWrapping: 0
1568
2643
  m_wordWrappingRatios: 0.4
1569
2644
  m_overflowMode: 0
1570
2645
  m_linkedTextComponent: {fileID: 0}
@@ -1623,10 +2698,10 @@ RectTransform:
1623
2698
  m_Father: {fileID: 740282895170785350}
1624
2699
  m_RootOrder: 0
1625
2700
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1626
- m_AnchorMin: {x: 0, y: 0}
1627
- m_AnchorMax: {x: 0, y: 0}
1628
- m_AnchoredPosition: {x: 0, y: 0}
1629
- m_SizeDelta: {x: 0, y: 42.34}
2701
+ m_AnchorMin: {x: 0, y: 1}
2702
+ m_AnchorMax: {x: 1, y: 1}
2703
+ m_AnchoredPosition: {x: -0.023071289, y: -42}
2704
+ m_SizeDelta: {x: -0.046142578, y: 42.34}
1630
2705
  m_Pivot: {x: 0.5, y: 1}
1631
2706
  --- !u!222 &2811728700299346983
1632
2707
  CanvasRenderer:
@@ -1699,7 +2774,7 @@ MonoBehaviour:
1699
2774
  m_lineSpacingMax: 0
1700
2775
  m_paragraphSpacing: 0
1701
2776
  m_charWidthMaxAdj: 0
1702
- m_enableWordWrapping: 1
2777
+ m_enableWordWrapping: 0
1703
2778
  m_wordWrappingRatios: 0.4
1704
2779
  m_overflowMode: 0
1705
2780
  m_linkedTextComponent: {fileID: 0}
@@ -1800,8 +2875,8 @@ MonoBehaviour:
1800
2875
  m_fontMaterials: []
1801
2876
  m_fontColor32:
1802
2877
  serializedVersion: 2
1803
- rgba: 3539992575
1804
- m_fontColor: {r: 1, g: 1, b: 1, a: 0.8235294}
2878
+ rgba: 4294967295
2879
+ m_fontColor: {r: 1, g: 1, b: 1, a: 1}
1805
2880
  m_enableVertexGradient: 0
1806
2881
  m_colorMode: 3
1807
2882
  m_fontColorGradient:
@@ -1824,7 +2899,7 @@ MonoBehaviour:
1824
2899
  m_enableAutoSizing: 1
1825
2900
  m_fontSizeMin: 18
1826
2901
  m_fontSizeMax: 72
1827
- m_fontStyle: 0
2902
+ m_fontStyle: 1
1828
2903
  m_HorizontalAlignment: 1
1829
2904
  m_VerticalAlignment: 512
1830
2905
  m_textAlignment: 65535
@@ -1868,9 +2943,183 @@ GameObject:
1868
2943
  m_PrefabAsset: {fileID: 0}
1869
2944
  serializedVersion: 6
1870
2945
  m_Component:
1871
- - component: {fileID: 2534679962175836816}
1872
- - component: {fileID: 5359303509603622495}
1873
- - component: {fileID: 7631997218272844983}
2946
+ - component: {fileID: 2534679962175836816}
2947
+ - component: {fileID: 5359303509603622495}
2948
+ - component: {fileID: 7631997218272844983}
2949
+ m_Layer: 5
2950
+ m_Name: Text (TMP)
2951
+ m_TagString: Untagged
2952
+ m_Icon: {fileID: 0}
2953
+ m_NavMeshLayer: 0
2954
+ m_StaticEditorFlags: 0
2955
+ m_IsActive: 1
2956
+ --- !u!224 &2534679962175836816
2957
+ RectTransform:
2958
+ m_ObjectHideFlags: 0
2959
+ m_CorrespondingSourceObject: {fileID: 0}
2960
+ m_PrefabInstance: {fileID: 0}
2961
+ m_PrefabAsset: {fileID: 0}
2962
+ m_GameObject: {fileID: 5855495085895235529}
2963
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
2964
+ m_LocalPosition: {x: 0, y: 0, z: 0}
2965
+ m_LocalScale: {x: 1, y: 1, z: 1}
2966
+ m_ConstrainProportionsScale: 0
2967
+ m_Children: []
2968
+ m_Father: {fileID: 8308873473696877731}
2969
+ m_RootOrder: 0
2970
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
2971
+ m_AnchorMin: {x: 0, y: 0}
2972
+ m_AnchorMax: {x: 1, y: 1}
2973
+ m_AnchoredPosition: {x: 0, y: 0}
2974
+ m_SizeDelta: {x: 0, y: 0}
2975
+ m_Pivot: {x: 0.5, y: 0.5}
2976
+ --- !u!222 &5359303509603622495
2977
+ CanvasRenderer:
2978
+ m_ObjectHideFlags: 0
2979
+ m_CorrespondingSourceObject: {fileID: 0}
2980
+ m_PrefabInstance: {fileID: 0}
2981
+ m_PrefabAsset: {fileID: 0}
2982
+ m_GameObject: {fileID: 5855495085895235529}
2983
+ m_CullTransparentMesh: 1
2984
+ --- !u!114 &7631997218272844983
2985
+ MonoBehaviour:
2986
+ m_ObjectHideFlags: 0
2987
+ m_CorrespondingSourceObject: {fileID: 0}
2988
+ m_PrefabInstance: {fileID: 0}
2989
+ m_PrefabAsset: {fileID: 0}
2990
+ m_GameObject: {fileID: 5855495085895235529}
2991
+ m_Enabled: 1
2992
+ m_EditorHideFlags: 0
2993
+ m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
2994
+ m_Name:
2995
+ m_EditorClassIdentifier:
2996
+ m_Material: {fileID: 0}
2997
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
2998
+ m_RaycastTarget: 1
2999
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
3000
+ m_Maskable: 1
3001
+ m_OnCullStateChanged:
3002
+ m_PersistentCalls:
3003
+ m_Calls: []
3004
+ m_text: 'SaveData
3005
+
3006
+ '
3007
+ m_isRightToLeft: 0
3008
+ m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
3009
+ m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
3010
+ m_fontSharedMaterials: []
3011
+ m_fontMaterial: {fileID: 0}
3012
+ m_fontMaterials: []
3013
+ m_fontColor32:
3014
+ serializedVersion: 2
3015
+ rgba: 4294967295
3016
+ m_fontColor: {r: 1, g: 1, b: 1, a: 1}
3017
+ m_enableVertexGradient: 0
3018
+ m_colorMode: 3
3019
+ m_fontColorGradient:
3020
+ topLeft: {r: 1, g: 1, b: 1, a: 1}
3021
+ topRight: {r: 1, g: 1, b: 1, a: 1}
3022
+ bottomLeft: {r: 1, g: 1, b: 1, a: 1}
3023
+ bottomRight: {r: 1, g: 1, b: 1, a: 1}
3024
+ m_fontColorGradientPreset: {fileID: 0}
3025
+ m_spriteAsset: {fileID: 0}
3026
+ m_tintAllSprites: 0
3027
+ m_StyleSheet: {fileID: 0}
3028
+ m_TextStyleHashCode: -1183493901
3029
+ m_overrideHtmlColors: 0
3030
+ m_faceColor:
3031
+ serializedVersion: 2
3032
+ rgba: 4294967295
3033
+ m_fontSize: 30
3034
+ m_fontSizeBase: 30
3035
+ m_fontWeight: 400
3036
+ m_enableAutoSizing: 0
3037
+ m_fontSizeMin: 18
3038
+ m_fontSizeMax: 72
3039
+ m_fontStyle: 1
3040
+ m_HorizontalAlignment: 2
3041
+ m_VerticalAlignment: 512
3042
+ m_textAlignment: 65535
3043
+ m_characterSpacing: 0
3044
+ m_wordSpacing: 0
3045
+ m_lineSpacing: 0
3046
+ m_lineSpacingMax: 0
3047
+ m_paragraphSpacing: 0
3048
+ m_charWidthMaxAdj: 0
3049
+ m_enableWordWrapping: 0
3050
+ m_wordWrappingRatios: 0.4
3051
+ m_overflowMode: 0
3052
+ m_linkedTextComponent: {fileID: 0}
3053
+ parentLinkedComponent: {fileID: 0}
3054
+ m_enableKerning: 1
3055
+ m_enableExtraPadding: 0
3056
+ checkPaddingRequired: 0
3057
+ m_isRichText: 1
3058
+ m_parseCtrlCharacters: 1
3059
+ m_isOrthographic: 1
3060
+ m_isCullingEnabled: 0
3061
+ m_horizontalMapping: 0
3062
+ m_verticalMapping: 0
3063
+ m_uvLineOffset: 0
3064
+ m_geometrySortingOrder: 0
3065
+ m_IsTextObjectScaleStatic: 0
3066
+ m_VertexBufferAutoSizeReduction: 0
3067
+ m_useMaxVisibleDescender: 1
3068
+ m_pageToDisplay: 1
3069
+ m_margin: {x: 0, y: 0, z: 0, w: 0}
3070
+ m_isUsingLegacyAnimationComponent: 0
3071
+ m_isVolumetricText: 0
3072
+ m_hasFontAssetChanged: 1
3073
+ m_baseMaterial: {fileID: 0}
3074
+ m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
3075
+ --- !u!1 &5862915417361488668
3076
+ GameObject:
3077
+ m_ObjectHideFlags: 0
3078
+ m_CorrespondingSourceObject: {fileID: 0}
3079
+ m_PrefabInstance: {fileID: 0}
3080
+ m_PrefabAsset: {fileID: 0}
3081
+ serializedVersion: 6
3082
+ m_Component:
3083
+ - component: {fileID: 6855027372514387751}
3084
+ m_Layer: 5
3085
+ m_Name: Sliding Area
3086
+ m_TagString: Untagged
3087
+ m_Icon: {fileID: 0}
3088
+ m_NavMeshLayer: 0
3089
+ m_StaticEditorFlags: 0
3090
+ m_IsActive: 1
3091
+ --- !u!224 &6855027372514387751
3092
+ RectTransform:
3093
+ m_ObjectHideFlags: 0
3094
+ m_CorrespondingSourceObject: {fileID: 0}
3095
+ m_PrefabInstance: {fileID: 0}
3096
+ m_PrefabAsset: {fileID: 0}
3097
+ m_GameObject: {fileID: 5862915417361488668}
3098
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
3099
+ m_LocalPosition: {x: 0, y: 0, z: 0}
3100
+ m_LocalScale: {x: 1, y: 1, z: 1}
3101
+ m_ConstrainProportionsScale: 0
3102
+ m_Children:
3103
+ - {fileID: 4345597137962554531}
3104
+ m_Father: {fileID: 8291200861325182199}
3105
+ m_RootOrder: 0
3106
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
3107
+ m_AnchorMin: {x: 0, y: 0}
3108
+ m_AnchorMax: {x: 1, y: 1}
3109
+ m_AnchoredPosition: {x: -0.000061035156, y: 0}
3110
+ m_SizeDelta: {x: -20, y: -20}
3111
+ m_Pivot: {x: 0.5, y: 0.5}
3112
+ --- !u!1 &5963868877772545592
3113
+ GameObject:
3114
+ m_ObjectHideFlags: 0
3115
+ m_CorrespondingSourceObject: {fileID: 0}
3116
+ m_PrefabInstance: {fileID: 0}
3117
+ m_PrefabAsset: {fileID: 0}
3118
+ serializedVersion: 6
3119
+ m_Component:
3120
+ - component: {fileID: 5838201545926773406}
3121
+ - component: {fileID: 8452487371009230580}
3122
+ - component: {fileID: 7759181028161789720}
1874
3123
  m_Layer: 5
1875
3124
  m_Name: Text (TMP)
1876
3125
  m_TagString: Untagged
@@ -1878,19 +3127,19 @@ GameObject:
1878
3127
  m_NavMeshLayer: 0
1879
3128
  m_StaticEditorFlags: 0
1880
3129
  m_IsActive: 1
1881
- --- !u!224 &2534679962175836816
3130
+ --- !u!224 &5838201545926773406
1882
3131
  RectTransform:
1883
3132
  m_ObjectHideFlags: 0
1884
3133
  m_CorrespondingSourceObject: {fileID: 0}
1885
3134
  m_PrefabInstance: {fileID: 0}
1886
3135
  m_PrefabAsset: {fileID: 0}
1887
- m_GameObject: {fileID: 5855495085895235529}
3136
+ m_GameObject: {fileID: 5963868877772545592}
1888
3137
  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
1889
3138
  m_LocalPosition: {x: 0, y: 0, z: 0}
1890
3139
  m_LocalScale: {x: 1, y: 1, z: 1}
1891
3140
  m_ConstrainProportionsScale: 0
1892
3141
  m_Children: []
1893
- m_Father: {fileID: 8308873473696877731}
3142
+ m_Father: {fileID: 7689217072179168204}
1894
3143
  m_RootOrder: 0
1895
3144
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1896
3145
  m_AnchorMin: {x: 0, y: 0}
@@ -1898,21 +3147,21 @@ RectTransform:
1898
3147
  m_AnchoredPosition: {x: 0, y: 0}
1899
3148
  m_SizeDelta: {x: 0, y: 0}
1900
3149
  m_Pivot: {x: 0.5, y: 0.5}
1901
- --- !u!222 &5359303509603622495
3150
+ --- !u!222 &8452487371009230580
1902
3151
  CanvasRenderer:
1903
3152
  m_ObjectHideFlags: 0
1904
3153
  m_CorrespondingSourceObject: {fileID: 0}
1905
3154
  m_PrefabInstance: {fileID: 0}
1906
3155
  m_PrefabAsset: {fileID: 0}
1907
- m_GameObject: {fileID: 5855495085895235529}
3156
+ m_GameObject: {fileID: 5963868877772545592}
1908
3157
  m_CullTransparentMesh: 1
1909
- --- !u!114 &7631997218272844983
3158
+ --- !u!114 &7759181028161789720
1910
3159
  MonoBehaviour:
1911
3160
  m_ObjectHideFlags: 0
1912
3161
  m_CorrespondingSourceObject: {fileID: 0}
1913
3162
  m_PrefabInstance: {fileID: 0}
1914
3163
  m_PrefabAsset: {fileID: 0}
1915
- m_GameObject: {fileID: 5855495085895235529}
3164
+ m_GameObject: {fileID: 5963868877772545592}
1916
3165
  m_Enabled: 1
1917
3166
  m_EditorHideFlags: 0
1918
3167
  m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
@@ -1958,10 +3207,10 @@ MonoBehaviour:
1958
3207
  m_fontSize: 30
1959
3208
  m_fontSizeBase: 30
1960
3209
  m_fontWeight: 400
1961
- m_enableAutoSizing: 0
1962
- m_fontSizeMin: 18
1963
- m_fontSizeMax: 72
1964
- m_fontStyle: 0
3210
+ m_enableAutoSizing: 1
3211
+ m_fontSizeMin: 15
3212
+ m_fontSizeMax: 30
3213
+ m_fontStyle: 1
1965
3214
  m_HorizontalAlignment: 2
1966
3215
  m_VerticalAlignment: 512
1967
3216
  m_textAlignment: 65535
@@ -1971,7 +3220,7 @@ MonoBehaviour:
1971
3220
  m_lineSpacingMax: 0
1972
3221
  m_paragraphSpacing: 0
1973
3222
  m_charWidthMaxAdj: 0
1974
- m_enableWordWrapping: 1
3223
+ m_enableWordWrapping: 0
1975
3224
  m_wordWrappingRatios: 0.4
1976
3225
  m_overflowMode: 0
1977
3226
  m_linkedTextComponent: {fileID: 0}
@@ -1997,43 +3246,6 @@ MonoBehaviour:
1997
3246
  m_hasFontAssetChanged: 0
1998
3247
  m_baseMaterial: {fileID: 0}
1999
3248
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
2000
- --- !u!1 &5862915417361488668
2001
- GameObject:
2002
- m_ObjectHideFlags: 0
2003
- m_CorrespondingSourceObject: {fileID: 0}
2004
- m_PrefabInstance: {fileID: 0}
2005
- m_PrefabAsset: {fileID: 0}
2006
- serializedVersion: 6
2007
- m_Component:
2008
- - component: {fileID: 6855027372514387751}
2009
- m_Layer: 5
2010
- m_Name: Sliding Area
2011
- m_TagString: Untagged
2012
- m_Icon: {fileID: 0}
2013
- m_NavMeshLayer: 0
2014
- m_StaticEditorFlags: 0
2015
- m_IsActive: 1
2016
- --- !u!224 &6855027372514387751
2017
- RectTransform:
2018
- m_ObjectHideFlags: 0
2019
- m_CorrespondingSourceObject: {fileID: 0}
2020
- m_PrefabInstance: {fileID: 0}
2021
- m_PrefabAsset: {fileID: 0}
2022
- m_GameObject: {fileID: 5862915417361488668}
2023
- m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
2024
- m_LocalPosition: {x: 0, y: 0, z: 0}
2025
- m_LocalScale: {x: 1, y: 1, z: 1}
2026
- m_ConstrainProportionsScale: 0
2027
- m_Children:
2028
- - {fileID: 4345597137962554531}
2029
- m_Father: {fileID: 8291200861325182199}
2030
- m_RootOrder: 0
2031
- m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
2032
- m_AnchorMin: {x: 0, y: 0}
2033
- m_AnchorMax: {x: 1, y: 1}
2034
- m_AnchoredPosition: {x: -0.000061035156, y: 0}
2035
- m_SizeDelta: {x: -20, y: -20}
2036
- m_Pivot: {x: 0.5, y: 0.5}
2037
3249
  --- !u!1 &6034456257017378414
2038
3250
  GameObject:
2039
3251
  m_ObjectHideFlags: 0
@@ -2145,10 +3357,10 @@ RectTransform:
2145
3357
  m_Father: {fileID: 740282895170785350}
2146
3358
  m_RootOrder: 1
2147
3359
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
2148
- m_AnchorMin: {x: 0, y: 0}
2149
- m_AnchorMax: {x: 0, y: 0}
2150
- m_AnchoredPosition: {x: 0, y: 0}
2151
- m_SizeDelta: {x: 0, y: 100}
3360
+ m_AnchorMin: {x: 0, y: 1}
3361
+ m_AnchorMax: {x: 1, y: 1}
3362
+ m_AnchoredPosition: {x: -0.023071289, y: -95.2}
3363
+ m_SizeDelta: {x: -20, y: 60}
2152
3364
  m_Pivot: {x: 0.5, y: 1}
2153
3365
  --- !u!222 &7131207688679016195
2154
3366
  CanvasRenderer:
@@ -2171,14 +3383,14 @@ MonoBehaviour:
2171
3383
  m_Name:
2172
3384
  m_EditorClassIdentifier:
2173
3385
  m_Material: {fileID: 0}
2174
- m_Color: {r: 1, g: 1, b: 1, a: 0.105882354}
3386
+ m_Color: {r: 0, g: 0, b: 0, a: 0.16470589}
2175
3387
  m_RaycastTarget: 1
2176
3388
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
2177
3389
  m_Maskable: 1
2178
3390
  m_OnCullStateChanged:
2179
3391
  m_PersistentCalls:
2180
3392
  m_Calls: []
2181
- m_Sprite: {fileID: 10911, guid: 0000000000000000f000000000000000, type: 0}
3393
+ m_Sprite: {fileID: 21300000, guid: 1d3ab00915155d14e9fb642792d0e851, type: 3}
2182
3394
  m_Type: 1
2183
3395
  m_PreserveAspect: 0
2184
3396
  m_FillCenter: 1
@@ -2187,7 +3399,7 @@ MonoBehaviour:
2187
3399
  m_FillClockwise: 1
2188
3400
  m_FillOrigin: 0
2189
3401
  m_UseSpriteMesh: 0
2190
- m_PixelsPerUnitMultiplier: 1
3402
+ m_PixelsPerUnitMultiplier: 10
2191
3403
  --- !u!114 &9176852533820849525
2192
3404
  MonoBehaviour:
2193
3405
  m_ObjectHideFlags: 0
@@ -2396,7 +3608,7 @@ MonoBehaviour:
2396
3608
  m_lineSpacingMax: 0
2397
3609
  m_paragraphSpacing: 0
2398
3610
  m_charWidthMaxAdj: 0
2399
- m_enableWordWrapping: 1
3611
+ m_enableWordWrapping: 0
2400
3612
  m_wordWrappingRatios: 0.4
2401
3613
  m_overflowMode: 0
2402
3614
  m_linkedTextComponent: {fileID: 0}
@@ -2476,10 +3688,10 @@ RectTransform:
2476
3688
  m_Father: {fileID: 740282895170785350}
2477
3689
  m_RootOrder: 3
2478
3690
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
2479
- m_AnchorMin: {x: 0, y: 0}
2480
- m_AnchorMax: {x: 0, y: 0}
2481
- m_AnchoredPosition: {x: 0, y: 0}
2482
- m_SizeDelta: {x: 0, y: 100}
3691
+ m_AnchorMin: {x: 0, y: 1}
3692
+ m_AnchorMax: {x: 1, y: 1}
3693
+ m_AnchoredPosition: {x: 107.74005, y: -184.84}
3694
+ m_SizeDelta: {x: -235.53, y: 41.8363}
2483
3695
  m_Pivot: {x: 0.5, y: 1}
2484
3696
  --- !u!222 &4274385643905922292
2485
3697
  CanvasRenderer:
@@ -2552,7 +3764,7 @@ MonoBehaviour:
2552
3764
  m_lineSpacingMax: 0
2553
3765
  m_paragraphSpacing: 0
2554
3766
  m_charWidthMaxAdj: 0
2555
- m_enableWordWrapping: 1
3767
+ m_enableWordWrapping: 0
2556
3768
  m_wordWrappingRatios: 0.4
2557
3769
  m_overflowMode: 0
2558
3770
  m_linkedTextComponent: {fileID: 0}
@@ -2598,6 +3810,128 @@ MonoBehaviour:
2598
3810
  m_FlexibleWidth: 1
2599
3811
  m_FlexibleHeight: -1
2600
3812
  m_LayoutPriority: 1
3813
+ --- !u!1 &7980216760749919170
3814
+ GameObject:
3815
+ m_ObjectHideFlags: 0
3816
+ m_CorrespondingSourceObject: {fileID: 0}
3817
+ m_PrefabInstance: {fileID: 0}
3818
+ m_PrefabAsset: {fileID: 0}
3819
+ serializedVersion: 6
3820
+ m_Component:
3821
+ - component: {fileID: 4650470152832129860}
3822
+ - component: {fileID: 8057451384104458100}
3823
+ - component: {fileID: 8560841425747396045}
3824
+ - component: {fileID: 82608442351841687}
3825
+ m_Layer: 5
3826
+ m_Name: ForceDownload
3827
+ m_TagString: Untagged
3828
+ m_Icon: {fileID: 0}
3829
+ m_NavMeshLayer: 0
3830
+ m_StaticEditorFlags: 0
3831
+ m_IsActive: 1
3832
+ --- !u!224 &4650470152832129860
3833
+ RectTransform:
3834
+ m_ObjectHideFlags: 0
3835
+ m_CorrespondingSourceObject: {fileID: 0}
3836
+ m_PrefabInstance: {fileID: 0}
3837
+ m_PrefabAsset: {fileID: 0}
3838
+ m_GameObject: {fileID: 7980216760749919170}
3839
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
3840
+ m_LocalPosition: {x: 0, y: 0, z: 0}
3841
+ m_LocalScale: {x: 1, y: 1, z: 1}
3842
+ m_ConstrainProportionsScale: 0
3843
+ m_Children:
3844
+ - {fileID: 8852238583104267794}
3845
+ m_Father: {fileID: 9096530913924650392}
3846
+ m_RootOrder: 4
3847
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
3848
+ m_AnchorMin: {x: 0, y: 0}
3849
+ m_AnchorMax: {x: 0, y: 0}
3850
+ m_AnchoredPosition: {x: 0, y: 0}
3851
+ m_SizeDelta: {x: 0, y: 60}
3852
+ m_Pivot: {x: 0.5, y: 0}
3853
+ --- !u!222 &8057451384104458100
3854
+ CanvasRenderer:
3855
+ m_ObjectHideFlags: 0
3856
+ m_CorrespondingSourceObject: {fileID: 0}
3857
+ m_PrefabInstance: {fileID: 0}
3858
+ m_PrefabAsset: {fileID: 0}
3859
+ m_GameObject: {fileID: 7980216760749919170}
3860
+ m_CullTransparentMesh: 1
3861
+ --- !u!114 &8560841425747396045
3862
+ MonoBehaviour:
3863
+ m_ObjectHideFlags: 0
3864
+ m_CorrespondingSourceObject: {fileID: 0}
3865
+ m_PrefabInstance: {fileID: 0}
3866
+ m_PrefabAsset: {fileID: 0}
3867
+ m_GameObject: {fileID: 7980216760749919170}
3868
+ m_Enabled: 1
3869
+ m_EditorHideFlags: 0
3870
+ m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
3871
+ m_Name:
3872
+ m_EditorClassIdentifier:
3873
+ m_Material: {fileID: 0}
3874
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
3875
+ m_RaycastTarget: 1
3876
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
3877
+ m_Maskable: 1
3878
+ m_OnCullStateChanged:
3879
+ m_PersistentCalls:
3880
+ m_Calls: []
3881
+ m_Sprite: {fileID: 21300000, guid: 721c765a3d97c0b4f865bac8223d1404, type: 3}
3882
+ m_Type: 1
3883
+ m_PreserveAspect: 0
3884
+ m_FillCenter: 1
3885
+ m_FillMethod: 4
3886
+ m_FillAmount: 1
3887
+ m_FillClockwise: 1
3888
+ m_FillOrigin: 0
3889
+ m_UseSpriteMesh: 0
3890
+ m_PixelsPerUnitMultiplier: 4
3891
+ --- !u!114 &82608442351841687
3892
+ MonoBehaviour:
3893
+ m_ObjectHideFlags: 0
3894
+ m_CorrespondingSourceObject: {fileID: 0}
3895
+ m_PrefabInstance: {fileID: 0}
3896
+ m_PrefabAsset: {fileID: 0}
3897
+ m_GameObject: {fileID: 7980216760749919170}
3898
+ m_Enabled: 1
3899
+ m_EditorHideFlags: 0
3900
+ m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
3901
+ m_Name:
3902
+ m_EditorClassIdentifier:
3903
+ m_Navigation:
3904
+ m_Mode: 3
3905
+ m_WrapAround: 0
3906
+ m_SelectOnUp: {fileID: 0}
3907
+ m_SelectOnDown: {fileID: 0}
3908
+ m_SelectOnLeft: {fileID: 0}
3909
+ m_SelectOnRight: {fileID: 0}
3910
+ m_Transition: 1
3911
+ m_Colors:
3912
+ m_NormalColor: {r: 1, g: 0.9386792, b: 0.9386792, a: 1}
3913
+ m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
3914
+ m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
3915
+ m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
3916
+ m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
3917
+ m_ColorMultiplier: 1
3918
+ m_FadeDuration: 0.1
3919
+ m_SpriteState:
3920
+ m_HighlightedSprite: {fileID: 0}
3921
+ m_PressedSprite: {fileID: 0}
3922
+ m_SelectedSprite: {fileID: 0}
3923
+ m_DisabledSprite: {fileID: 0}
3924
+ m_AnimationTriggers:
3925
+ m_NormalTrigger: Normal
3926
+ m_HighlightedTrigger: Highlighted
3927
+ m_PressedTrigger: Pressed
3928
+ m_SelectedTrigger: Selected
3929
+ m_DisabledTrigger: Disabled
3930
+ m_Interactable: 1
3931
+ m_TargetGraphic: {fileID: 8560841425747396045}
3932
+ m_OnClick:
3933
+ m_PersistentCalls:
3934
+ m_Calls: []
2601
3935
  --- !u!1 &8155927549691240431
2602
3936
  GameObject:
2603
3937
  m_ObjectHideFlags: 0
@@ -2616,7 +3950,7 @@ GameObject:
2616
3950
  m_Icon: {fileID: 0}
2617
3951
  m_NavMeshLayer: 0
2618
3952
  m_StaticEditorFlags: 0
2619
- m_IsActive: 1
3953
+ m_IsActive: 0
2620
3954
  --- !u!224 &3559295305712485210
2621
3955
  RectTransform:
2622
3956
  m_ObjectHideFlags: 0
@@ -2730,7 +4064,6 @@ GameObject:
2730
4064
  m_Component:
2731
4065
  - component: {fileID: 2083953588453046273}
2732
4066
  - component: {fileID: 8786105658276098686}
2733
- - component: {fileID: 7041237943984097373}
2734
4067
  - component: {fileID: 1435396830581347982}
2735
4068
  m_Layer: 5
2736
4069
  m_Name: ContentScroll
@@ -2769,36 +4102,6 @@ CanvasRenderer:
2769
4102
  m_PrefabAsset: {fileID: 0}
2770
4103
  m_GameObject: {fileID: 8758107172650182238}
2771
4104
  m_CullTransparentMesh: 1
2772
- --- !u!114 &7041237943984097373
2773
- MonoBehaviour:
2774
- m_ObjectHideFlags: 0
2775
- m_CorrespondingSourceObject: {fileID: 0}
2776
- m_PrefabInstance: {fileID: 0}
2777
- m_PrefabAsset: {fileID: 0}
2778
- m_GameObject: {fileID: 8758107172650182238}
2779
- m_Enabled: 1
2780
- m_EditorHideFlags: 0
2781
- m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
2782
- m_Name:
2783
- m_EditorClassIdentifier:
2784
- m_Material: {fileID: 0}
2785
- m_Color: {r: 1, g: 1, b: 1, a: 0.07058824}
2786
- m_RaycastTarget: 1
2787
- m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
2788
- m_Maskable: 1
2789
- m_OnCullStateChanged:
2790
- m_PersistentCalls:
2791
- m_Calls: []
2792
- m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0}
2793
- m_Type: 1
2794
- m_PreserveAspect: 0
2795
- m_FillCenter: 1
2796
- m_FillMethod: 4
2797
- m_FillAmount: 1
2798
- m_FillClockwise: 1
2799
- m_FillOrigin: 0
2800
- m_UseSpriteMesh: 0
2801
- m_PixelsPerUnitMultiplier: 1
2802
4105
  --- !u!114 &1435396830581347982
2803
4106
  MonoBehaviour:
2804
4107
  m_ObjectHideFlags: 0
@@ -2989,10 +4292,10 @@ RectTransform:
2989
4292
  m_Father: {fileID: 740282895170785350}
2990
4293
  m_RootOrder: 2
2991
4294
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
2992
- m_AnchorMin: {x: 0, y: 0}
2993
- m_AnchorMax: {x: 0, y: 0}
2994
- m_AnchoredPosition: {x: 0, y: 0}
2995
- m_SizeDelta: {x: 0, y: 42.34}
4295
+ m_AnchorMin: {x: 0, y: 1}
4296
+ m_AnchorMax: {x: 1, y: 1}
4297
+ m_AnchoredPosition: {x: -698.74, y: -184.34001}
4298
+ m_SizeDelta: {x: -1417.4, y: 42.34}
2996
4299
  m_Pivot: {x: 0.5, y: 1}
2997
4300
  --- !u!222 &1255710329726184842
2998
4301
  CanvasRenderer:
@@ -3022,7 +4325,7 @@ MonoBehaviour:
3022
4325
  m_OnCullStateChanged:
3023
4326
  m_PersistentCalls:
3024
4327
  m_Calls: []
3025
- m_text: 'Value:'
4328
+ m_text: 'Byte Value:'
3026
4329
  m_isRightToLeft: 0
3027
4330
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
3028
4331
  m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
@@ -3065,7 +4368,7 @@ MonoBehaviour:
3065
4368
  m_lineSpacingMax: 0
3066
4369
  m_paragraphSpacing: 0
3067
4370
  m_charWidthMaxAdj: 0
3068
- m_enableWordWrapping: 1
4371
+ m_enableWordWrapping: 0
3069
4372
  m_wordWrappingRatios: 0.4
3070
4373
  m_overflowMode: 0
3071
4374
  m_linkedTextComponent: {fileID: 0}
@@ -3101,7 +4404,6 @@ GameObject:
3101
4404
  m_Component:
3102
4405
  - component: {fileID: 740282895170785350}
3103
4406
  - component: {fileID: 1564181549049823492}
3104
- - component: {fileID: 6817426965057174342}
3105
4407
  m_Layer: 5
3106
4408
  m_Name: Content
3107
4409
  m_TagString: Untagged
@@ -3147,29 +4449,3 @@ MonoBehaviour:
3147
4449
  m_EditorClassIdentifier:
3148
4450
  m_HorizontalFit: 0
3149
4451
  m_VerticalFit: 2
3150
- --- !u!114 &6817426965057174342
3151
- MonoBehaviour:
3152
- m_ObjectHideFlags: 0
3153
- m_CorrespondingSourceObject: {fileID: 0}
3154
- m_PrefabInstance: {fileID: 0}
3155
- m_PrefabAsset: {fileID: 0}
3156
- m_GameObject: {fileID: 9110212535179506464}
3157
- m_Enabled: 1
3158
- m_EditorHideFlags: 0
3159
- m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3}
3160
- m_Name:
3161
- m_EditorClassIdentifier:
3162
- m_Padding:
3163
- m_Left: 0
3164
- m_Right: 0
3165
- m_Top: 0
3166
- m_Bottom: 0
3167
- m_ChildAlignment: 0
3168
- m_Spacing: 0
3169
- m_ChildForceExpandWidth: 1
3170
- m_ChildForceExpandHeight: 0
3171
- m_ChildControlWidth: 1
3172
- m_ChildControlHeight: 0
3173
- m_ChildScaleWidth: 0
3174
- m_ChildScaleHeight: 0
3175
- m_ReverseArrangement: 0