com.beamable 5.0.1 → 5.1.0-PREVIEW.RC2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (665) hide show
  1. package/.attestation.p7m +0 -0
  2. package/CHANGELOG.md +24 -1
  3. package/Common/README.md +16 -3
  4. package/Common/Runtime/AgnosticAttribute.cs +2 -2
  5. package/Common/Runtime/Api/AliasHelper.cs +2 -2
  6. package/Common/Runtime/Api/Analytics/AnalyticsEventRequest.cs +2 -2
  7. package/Common/Runtime/Api/Analytics/AnalyticsService.cs +2 -2
  8. package/Common/Runtime/Api/Analytics/IBeamAnalyticsService.cs +2 -2
  9. package/Common/Runtime/Api/Analytics/Models/CoreEvent.cs +2 -2
  10. package/Common/Runtime/Api/Analytics/Models/IAnalyticsEvent.cs +2 -2
  11. package/Common/Runtime/Api/Analytics/Models/SampleCustomEvent.cs +2 -2
  12. package/Common/Runtime/Api/Announcements/AbsAnnouncementsApi.cs +2 -2
  13. package/Common/Runtime/Api/Announcements/IAnnouncementsApi.cs +2 -2
  14. package/Common/Runtime/Api/Auth/AuthApi.cs +2 -2
  15. package/Common/Runtime/Api/Auth/IAuthApi.cs +2 -2
  16. package/Common/Runtime/Api/Calendars/AbsCalendarApi.cs +2 -2
  17. package/Common/Runtime/Api/Calendars/ICalendarApi.cs +2 -2
  18. package/Common/Runtime/Api/Chat/ChatApi.cs +2 -2
  19. package/Common/Runtime/Api/Chat/IChatApi.cs +2 -2
  20. package/Common/Runtime/Api/CloudData/CloudDataApi.cs +2 -2
  21. package/Common/Runtime/Api/CloudData/ICloudDataApi.cs +2 -2
  22. package/Common/Runtime/Api/CometClientData.cs +2 -2
  23. package/Common/Runtime/Api/Commerce/ICommerceApi.cs +2 -2
  24. package/Common/Runtime/Api/Content/IContentApi.cs +2 -2
  25. package/Common/Runtime/Api/Events/AbsEventsApi.cs +23 -26
  26. package/Common/Runtime/Api/Events/IEventsApi.cs +2 -2
  27. package/Common/Runtime/Api/Groups/GroupsApi.cs +2 -2
  28. package/Common/Runtime/Api/Groups/IGroupsApi.cs +2 -2
  29. package/Common/Runtime/Api/IAccessToken.cs +2 -2
  30. package/Common/Runtime/Api/IBeamableFilesystemAccessor.cs +2 -2
  31. package/Common/Runtime/Api/IBeamableRequester.cs +2 -2
  32. package/Common/Runtime/Api/IConnectivityChecker.cs +2 -2
  33. package/Common/Runtime/Api/IHasBeamableRequester.cs +2 -2
  34. package/Common/Runtime/Api/IServiceRoutingStrategy.cs +2 -2
  35. package/Common/Runtime/Api/ISupportsGet.cs +2 -2
  36. package/Common/Runtime/Api/IUserContext.cs +2 -2
  37. package/Common/Runtime/Api/IUserDataCache.cs +2 -2
  38. package/Common/Runtime/Api/Inventory/IInventoryApi.cs +71 -4
  39. package/Common/Runtime/Api/Inventory/InventoryApi.cs +136 -37
  40. package/Common/Runtime/Api/Inventory/InventoryUpdateBuilder.cs +2 -2
  41. package/Common/Runtime/Api/Leaderboards/ILeaderboardApi.cs +2 -2
  42. package/Common/Runtime/Api/Leaderboards/LeaderboardApi.cs +2 -2
  43. package/Common/Runtime/Api/Lobbies/ILobbyApi.cs +2 -2
  44. package/Common/Runtime/Api/Lobbies/Lobby.cs +2 -2
  45. package/Common/Runtime/Api/Lobbies/LobbyNotification.cs +2 -2
  46. package/Common/Runtime/Api/Lobbies/LobbyPlayer.cs +2 -2
  47. package/Common/Runtime/Api/Lobbies/LobbyRestriction.cs +2 -2
  48. package/Common/Runtime/Api/Lobbies/LobbyService.cs +2 -2
  49. package/Common/Runtime/Api/Lobbies/LobbyUtils.cs +2 -2
  50. package/Common/Runtime/Api/Lobbies/NotInLobby.cs +2 -2
  51. package/Common/Runtime/Api/Lobbies/Requests/AddTagsRequest.cs +2 -2
  52. package/Common/Runtime/Api/Lobbies/Requests/CreateLobbyRequest.cs +2 -2
  53. package/Common/Runtime/Api/Lobbies/Requests/JoinByPasscodeRequest.cs +2 -2
  54. package/Common/Runtime/Api/Lobbies/Requests/JoinLobbyRequest.cs +2 -2
  55. package/Common/Runtime/Api/Lobbies/Requests/LobbyQueryRequest.cs +2 -2
  56. package/Common/Runtime/Api/Lobbies/Requests/LobbyQueryResponse.cs +2 -2
  57. package/Common/Runtime/Api/Lobbies/Requests/RemoveFromLobbyRequest.cs +2 -2
  58. package/Common/Runtime/Api/Lobbies/Requests/RemoveTagsRequest.cs +2 -2
  59. package/Common/Runtime/Api/Lobbies/Requests/UpdateLobbyRequest.cs +2 -2
  60. package/Common/Runtime/Api/Mail/AbsMailApi.cs +2 -2
  61. package/Common/Runtime/Api/Mail/IMailApi.cs +2 -2
  62. package/Common/Runtime/Api/Notifications/INotificationService.cs +2 -2
  63. package/Common/Runtime/Api/Notifications/PrimitiveStringPayload.cs +2 -2
  64. package/Common/Runtime/Api/Parties/IPartyApi.cs +2 -2
  65. package/Common/Runtime/Api/Parties/NotInParty.cs +2 -2
  66. package/Common/Runtime/Api/Parties/Party.cs +2 -2
  67. package/Common/Runtime/Api/Parties/PartyNotifications.cs +2 -2
  68. package/Common/Runtime/Api/Parties/PartyRestriction.cs +2 -2
  69. package/Common/Runtime/Api/Parties/PartyService.cs +2 -2
  70. package/Common/Runtime/Api/Parties/Requests/CreatePartyRequest.cs +2 -2
  71. package/Common/Runtime/Api/Parties/Requests/PartyQueryResponse.cs +2 -2
  72. package/Common/Runtime/Api/Parties/Requests/PlayerRequest.cs +2 -2
  73. package/Common/Runtime/Api/Parties/Requests/UpdatePartyRequest.cs +2 -2
  74. package/Common/Runtime/Api/Payments/IPaymentsApi.cs +2 -2
  75. package/Common/Runtime/Api/Payments/PaymentsApi.cs +2 -2
  76. package/Common/Runtime/Api/Presence/IPresenceApi.cs +2 -2
  77. package/Common/Runtime/Api/Presence/PresenceService.cs +2 -2
  78. package/Common/Runtime/Api/Push/IPushApi.cs +2 -2
  79. package/Common/Runtime/Api/QueryBuilder.cs +2 -2
  80. package/Common/Runtime/Api/Realms/IAliasService.cs +2 -2
  81. package/Common/Runtime/Api/Realms/IRealmApi.cs +2 -2
  82. package/Common/Runtime/Api/Realms/RealmService.cs +2 -2
  83. package/Common/Runtime/Api/SignedRequesterHelper.cs +2 -2
  84. package/Common/Runtime/Api/Social/ISocialApi.cs +2 -2
  85. package/Common/Runtime/Api/Social/SocialApi.cs +2 -2
  86. package/Common/Runtime/Api/Stats/AbsStatsApi.cs +2 -2
  87. package/Common/Runtime/Api/Stats/IStatsApi.cs +2 -2
  88. package/Common/Runtime/Api/Stats/StatsAccessType.cs +2 -2
  89. package/Common/Runtime/Api/Stats/StatsApiHelper.cs +2 -2
  90. package/Common/Runtime/Api/Stats/StatsDomainType.cs +2 -2
  91. package/Common/Runtime/Api/Tournaments/ITournamentApi.cs +2 -2
  92. package/Common/Runtime/Api/Tournaments/TournamentApi.cs +2 -2
  93. package/Common/Runtime/BeamCli/CliContractTypeAttribute.cs +2 -2
  94. package/Common/Runtime/BeamCli/CliOtelData.cs +2 -2
  95. package/Common/Runtime/BeamCli/Contracts/CliLogMessage.cs +2 -2
  96. package/Common/Runtime/BeamCli/Contracts/CollectorStatus.cs +2 -2
  97. package/Common/Runtime/BeamCli/Contracts/Constants.cs +2 -2
  98. package/Common/Runtime/BeamCli/Contracts/ContentService/AutoSnapshotActionType.cs +2 -2
  99. package/Common/Runtime/BeamCli/Contracts/ContentService/AutoSnapshotType.cs +2 -2
  100. package/Common/Runtime/BeamCli/Contracts/ContentService/ContentSnapshotType.cs +2 -2
  101. package/Common/Runtime/BeamCli/Contracts/ContentService/ContentStatus.cs +2 -2
  102. package/Common/Runtime/BeamCli/Contracts/ContentService/LocalContentManifest.cs +2 -2
  103. package/Common/Runtime/BeamCli/Contracts/ContentService/LocalContentManifestEntry.cs +2 -2
  104. package/Common/Runtime/BeamCli/Contracts/ContentService/ManifestAuthor.cs +2 -2
  105. package/Common/Runtime/BeamCli/Contracts/ContentService/ManifestProjectData.cs +2 -2
  106. package/Common/Runtime/BeamCli/Contracts/ContentService/TagStatus.cs +2 -2
  107. package/Common/Runtime/BeamCli/Contracts/EnvironmentVersionData.cs +2 -2
  108. package/Common/Runtime/BeamCli/Contracts/GenerateEnvOutput.cs +2 -2
  109. package/Common/Runtime/BeamCli/Contracts/ServiceInfo.cs +2 -2
  110. package/Common/Runtime/BeamCli/ErrorOutput.cs +2 -2
  111. package/Common/Runtime/BeamCli/IBeamCommand.cs +2 -2
  112. package/Common/Runtime/BeamCli/Reporting.cs +2 -2
  113. package/Common/Runtime/BeamCli/ServiceInfoHelper.cs +2 -2
  114. package/Common/Runtime/BeamGenerateSchemaAttribute.cs +2 -2
  115. package/Common/Runtime/BeamableColorUtil.cs +2 -2
  116. package/Common/Runtime/BeamableEnumExtensions.cs +2 -2
  117. package/Common/Runtime/BeamableTaskExtensions.cs +2 -2
  118. package/Common/Runtime/Collections/ConcurrentBag.cs +2 -2
  119. package/Common/Runtime/Collections/ConcurrentDictionary.cs +2 -2
  120. package/Common/Runtime/Constants/Constants.cs +3 -3
  121. package/Common/Runtime/Constants/Implementations/ArchiveConstants.cs +2 -2
  122. package/Common/Runtime/Constants/Implementations/ConfigConstants.cs +2 -2
  123. package/Common/Runtime/Constants/Implementations/ContentConstants.cs +2 -2
  124. package/Common/Runtime/Constants/Implementations/ContentManagerConstants.cs +2 -2
  125. package/Common/Runtime/Constants/Implementations/CronConstants.cs +2 -2
  126. package/Common/Runtime/Constants/Implementations/DockerConstants.cs +2 -2
  127. package/Common/Runtime/Constants/Implementations/EnvironmentConstants.cs +2 -2
  128. package/Common/Runtime/Constants/Implementations/LoginBaseConstants.cs +2 -2
  129. package/Common/Runtime/Constants/Implementations/MigrationConstants.cs +2 -2
  130. package/Common/Runtime/Constants/Implementations/NotificationConstants.cs +2 -2
  131. package/Common/Runtime/Constants/Implementations/OtelConstants.cs +32 -2
  132. package/Common/Runtime/Constants/Implementations/PortalExtensionConstants.cs +18 -0
  133. package/Common/Runtime/{OpenApi/BeamServiceplan.gs.cs.meta → Constants/Implementations/PortalExtensionConstants.cs.meta} +1 -1
  134. package/Common/Runtime/Constants/Implementations/RequesterConstants.cs +2 -2
  135. package/Common/Runtime/Constants/Implementations/SchedulesConstants.cs +2 -2
  136. package/Common/Runtime/Constants/Implementations/ServiceConstants.cs +9 -2
  137. package/Common/Runtime/Constants/Implementations/SpewConstants.cs +2 -2
  138. package/Common/Runtime/Constants/Implementations/TestingToolConstants.cs +2 -2
  139. package/Common/Runtime/Constants/Implementations/ToolbarConstants.cs +2 -2
  140. package/Common/Runtime/Constants/Implementations/ToolboxConstants.cs +2 -2
  141. package/Common/Runtime/Constants/Implementations/TooltipConstants.cs +2 -2
  142. package/Common/Runtime/Content/ClientContentSerializer.cs +13 -2
  143. package/Common/Runtime/Content/ClientManifest.cs +2 -2
  144. package/Common/Runtime/Content/ClientPermissions.cs +2 -2
  145. package/Common/Runtime/Content/ContentCorruptedException.cs +2 -2
  146. package/Common/Runtime/Content/ContentDataInfo.cs +2 -2
  147. package/Common/Runtime/Content/ContentDeserializationException.cs +2 -2
  148. package/Common/Runtime/Content/ContentFieldAttribute.cs +2 -2
  149. package/Common/Runtime/Content/ContentFilterType.cs +2 -2
  150. package/Common/Runtime/Content/ContentNotFoundException.cs +2 -2
  151. package/Common/Runtime/Content/ContentObject.cs +47 -8
  152. package/Common/Runtime/Content/ContentQuery.cs +2 -2
  153. package/Common/Runtime/Content/ContentQueryExtensions.cs +2 -2
  154. package/Common/Runtime/Content/ContentRef.cs +2 -2
  155. package/Common/Runtime/Content/ContentSerializer.cs +2 -2
  156. package/Common/Runtime/Content/ContentTypeAttribute.cs +2 -2
  157. package/Common/Runtime/Content/ContentTypeReflectionCache.cs +2 -2
  158. package/Common/Runtime/Content/ContentVisibility.cs +2 -2
  159. package/Common/Runtime/Content/Federation.cs +2 -2
  160. package/Common/Runtime/Content/IContentObject.cs +2 -2
  161. package/Common/Runtime/Content/IContentService.cs +2 -2
  162. package/Common/Runtime/Content/IIgnoreSerializationCallbacks.cs +2 -2
  163. package/Common/Runtime/Content/IgnoreContentFieldAttribute.cs +2 -2
  164. package/Common/Runtime/Content/Optionals.cs +2 -2
  165. package/Common/Runtime/Content/PropertyAttributes/FilePathSelectorAttribute.cs +2 -2
  166. package/Common/Runtime/Content/PropertyAttributes/HideUnlessServerPackageInstalled.cs +2 -2
  167. package/Common/Runtime/Content/PropertyAttributes/ReadonlyIfAttribute.cs +2 -2
  168. package/Common/Runtime/Content/PropertyAttributes/ShowOnlyAttribute.cs +2 -2
  169. package/Common/Runtime/Content/RenderAsRefAttribute.cs +2 -2
  170. package/Common/Runtime/Content/SerializableDictionary.cs +2 -2
  171. package/Common/Runtime/Content/Utility/DateUtility.cs +2 -2
  172. package/Common/Runtime/Content/Validation/AggregateContentValidationException.cs +2 -2
  173. package/Common/Runtime/Content/Validation/CannotBeBlank.cs +2 -2
  174. package/Common/Runtime/Content/Validation/CannotBeEmpty.cs +2 -2
  175. package/Common/Runtime/Content/Validation/ContentValidationException.cs +2 -2
  176. package/Common/Runtime/Content/Validation/FederationMustBeValid.cs +2 -2
  177. package/Common/Runtime/Content/Validation/MustBeComparatorString.cs +2 -2
  178. package/Common/Runtime/Content/Validation/MustBeCurrency.cs +2 -2
  179. package/Common/Runtime/Content/Validation/MustBeCurrencyOrItem.cs +2 -2
  180. package/Common/Runtime/Content/Validation/MustBeDateString.cs +2 -2
  181. package/Common/Runtime/Content/Validation/MustBeItem.cs +2 -2
  182. package/Common/Runtime/Content/Validation/MustBeLeaderboard.cs +2 -2
  183. package/Common/Runtime/Content/Validation/MustBeNonDefault.cs +2 -2
  184. package/Common/Runtime/Content/Validation/MustBeNonNegative.cs +2 -2
  185. package/Common/Runtime/Content/Validation/MustBeOneOf.cs +2 -2
  186. package/Common/Runtime/Content/Validation/MustBePositive.cs +2 -2
  187. package/Common/Runtime/Content/Validation/MustBeSlugString.cs +2 -2
  188. package/Common/Runtime/Content/Validation/MustBeTimeSpanDuration.cs +2 -2
  189. package/Common/Runtime/Content/Validation/MustBeValidCron.cs +2 -2
  190. package/Common/Runtime/Content/Validation/MustContain.cs +2 -2
  191. package/Common/Runtime/Content/Validation/MustReferenceContent.cs +2 -2
  192. package/Common/Runtime/Content/Validation/RouteParametersMustBeValid.cs +2 -2
  193. package/Common/Runtime/Content/Validation/ServiceRouteMustBeValid.cs +2 -2
  194. package/Common/Runtime/Content/Validation/TimeSpanDisplayAttribute.cs +2 -2
  195. package/Common/Runtime/Content/Validation/ValidationAttribute.cs +2 -2
  196. package/Common/Runtime/Content/Validation/ValidationContext.cs +2 -2
  197. package/Common/Runtime/CronExpression/CronLocale.cs +2 -2
  198. package/Common/Runtime/CronExpression/ErrorData.cs +2 -2
  199. package/Common/Runtime/CronExpression/ExpressionParser.cs +2 -2
  200. package/Common/Runtime/CronExpression/Options.cs +2 -2
  201. package/Common/Runtime/Debug.cs +2 -2
  202. package/Common/Runtime/DefaultQuery.cs +2 -2
  203. package/Common/Runtime/Dependencies/DependencyBuilder.cs +2 -2
  204. package/Common/Runtime/Dependencies/DependencyProvider.cs +12 -2
  205. package/Common/Runtime/Dependencies/Exceptions.cs +2 -2
  206. package/Common/Runtime/Dependencies/IDependencyList.cs +2 -2
  207. package/Common/Runtime/Dependencies/IDependencyNameProvider.cs +2 -2
  208. package/Common/Runtime/Dependencies/RegisterBeamableDependenciesAttribute.cs +2 -2
  209. package/Common/Runtime/Dependencies/ServiceStorage.cs +2 -2
  210. package/Common/Runtime/Dependencies/Utils.cs +2 -2
  211. package/Common/Runtime/DocUtils.cs +2 -2
  212. package/Common/Runtime/Environment/PackageVersion.cs +2 -2
  213. package/Common/Runtime/Federation/FederatedGameServer.cs +2 -2
  214. package/Common/Runtime/Federation/FederatedInventory.cs +2 -2
  215. package/Common/Runtime/Federation/FederatedLogin.cs +2 -2
  216. package/Common/Runtime/Federation/FederatedPlayerInit.cs +2 -2
  217. package/Common/Runtime/Federation/Federation.cs +2 -2
  218. package/Common/Runtime/IRuntimeConfigProvider.cs +2 -2
  219. package/Common/Runtime/ISearchableElement.cs +2 -2
  220. package/Common/Runtime/JsonSerializable/DeleteStream.cs +2 -2
  221. package/Common/Runtime/JsonSerializable/DiffStream.cs +2 -2
  222. package/Common/Runtime/JsonSerializable/JsonData.cs +2 -2
  223. package/Common/Runtime/JsonSerializable/JsonSaveStream.cs +2 -2
  224. package/Common/Runtime/JsonSerializable/JsonSerializable.cs +2 -2
  225. package/Common/Runtime/JsonSerializable/LoadStream.cs +2 -2
  226. package/Common/Runtime/JsonSerializable/MessagePackStream.cs +2 -2
  227. package/Common/Runtime/JsonSerializable/SaveStream.cs +2 -2
  228. package/Common/Runtime/JsonSerializable/TypeLookupFactory.cs +2 -2
  229. package/Common/Runtime/Modules/Announcements/AnnouncementApiContent.cs +2 -2
  230. package/Common/Runtime/Modules/Announcements/AnnouncementContent.cs +2 -2
  231. package/Common/Runtime/Modules/Announcements/AnnouncementRef.cs +2 -2
  232. package/Common/Runtime/Modules/Calendars/CalendarContent.cs +2 -2
  233. package/Common/Runtime/Modules/Calendars/CalendarRef.cs +2 -2
  234. package/Common/Runtime/Modules/Groups/GroupDonationContentRef.cs +2 -2
  235. package/Common/Runtime/Modules/Groups/GroupDonationsContent.cs +2 -2
  236. package/Common/Runtime/Modules/Inventory/CurrencyContent.cs +2 -2
  237. package/Common/Runtime/Modules/Inventory/CurrencyRef.cs +2 -2
  238. package/Common/Runtime/Modules/Inventory/ItemContent.cs +2 -2
  239. package/Common/Runtime/Modules/Inventory/ItemRef.cs +2 -2
  240. package/Common/Runtime/Modules/Inventory/VipContent.cs +2 -2
  241. package/Common/Runtime/Modules/Leaderboards/LeaderboardContent.cs +2 -2
  242. package/Common/Runtime/Modules/Leaderboards/LeaderboardRef.cs +2 -2
  243. package/Common/Runtime/Modules/SharedContent/ApiContent.cs +2 -2
  244. package/Common/Runtime/Modules/SharedContent/EmailContent.cs +2 -2
  245. package/Common/Runtime/Modules/SharedContent/EventContent.cs +2 -2
  246. package/Common/Runtime/Modules/SharedContent/PlayerReward.cs +2 -2
  247. package/Common/Runtime/Modules/SharedContent/ScheduleDefinition.cs +2 -2
  248. package/Common/Runtime/Modules/SharedContent/ScheduleExtensions.cs +2 -2
  249. package/Common/Runtime/Modules/SharedContent/SimGameType.cs +2 -2
  250. package/Common/Runtime/Modules/Shop/ListingContent.cs +2 -2
  251. package/Common/Runtime/Modules/Shop/ListingLink.cs +2 -2
  252. package/Common/Runtime/Modules/Shop/ListingRef.cs +2 -2
  253. package/Common/Runtime/Modules/Shop/SKUContent.cs +2 -2
  254. package/Common/Runtime/Modules/Shop/SKURef.cs +2 -2
  255. package/Common/Runtime/Modules/Shop/StoreContent.cs +2 -2
  256. package/Common/Runtime/Modules/Shop/StoreRef.cs +2 -2
  257. package/Common/Runtime/Modules/Steam/ISteamService.cs +2 -2
  258. package/Common/Runtime/Modules/Tournaments/TournamentColorConstants.cs +2 -2
  259. package/Common/Runtime/Modules/Tournaments/TournamentContent.cs +2 -2
  260. package/Common/Runtime/ObjectExtensions.cs +2 -2
  261. package/Common/Runtime/OpenApi/AccountsBasic.gs.cs +2 -2
  262. package/Common/Runtime/OpenApi/AccountsBasicCommon.gs.cs +2 -2
  263. package/Common/Runtime/OpenApi/AccountsObject.gs.cs +2 -2
  264. package/Common/Runtime/OpenApi/AnnouncementsBasic.gs.cs +2 -2
  265. package/Common/Runtime/OpenApi/AnnouncementsBasicCommon.gs.cs +2 -2
  266. package/Common/Runtime/OpenApi/AnnouncementsObject.gs.cs +2 -2
  267. package/Common/Runtime/OpenApi/AuthBasic.gs.cs +2 -2
  268. package/Common/Runtime/OpenApi/AuthBasicCommon.gs.cs +2 -2
  269. package/Common/Runtime/OpenApi/BeamAuth.gs.cs +2 -2
  270. package/Common/Runtime/OpenApi/BeamAuthCommon.gs.cs +2 -2
  271. package/Common/Runtime/OpenApi/BeamBeamo.gs.cs +136 -38
  272. package/Common/Runtime/OpenApi/BeamBeamoCommon.gs.cs +2 -2
  273. package/Common/Runtime/OpenApi/BeamBeamootel.gs.cs +32 -8
  274. package/Common/Runtime/OpenApi/BeamBeamootelCommon.gs.cs +2 -2
  275. package/Common/Runtime/OpenApi/BeamBilling.gs.cs +45 -0
  276. package/Common/Runtime/OpenApi/{BeamAdmin.gs.cs.meta → BeamBilling.gs.cs.meta} +1 -1
  277. package/Common/Runtime/OpenApi/BeamBillingCommon.gs.cs +45 -0
  278. package/Common/Runtime/OpenApi/{BeamServiceplanCommon.gs.cs.meta → BeamBillingCommon.gs.cs.meta} +1 -1
  279. package/Common/Runtime/OpenApi/BeamCustomer.gs.cs +198 -124
  280. package/Common/Runtime/OpenApi/BeamCustomerCommon.gs.cs +2 -2
  281. package/Common/Runtime/OpenApi/BeamLobby.gs.cs +4 -4
  282. package/Common/Runtime/OpenApi/BeamLobbyCommon.gs.cs +2 -2
  283. package/Common/Runtime/OpenApi/BeamMailbox.gs.cs +6 -2
  284. package/Common/Runtime/OpenApi/BeamMailboxCommon.gs.cs +2 -2
  285. package/Common/Runtime/OpenApi/BeamMatchmaking.gs.cs +4 -4
  286. package/Common/Runtime/OpenApi/BeamMatchmakingCommon.gs.cs +2 -2
  287. package/Common/Runtime/OpenApi/BeamParty.gs.cs +6 -6
  288. package/Common/Runtime/OpenApi/BeamPartyCommon.gs.cs +2 -2
  289. package/Common/Runtime/OpenApi/BeamPlayer.gs.cs +20 -8
  290. package/Common/Runtime/OpenApi/BeamPlayerCommon.gs.cs +2 -2
  291. package/Common/Runtime/OpenApi/BeamPlayerlobby.gs.cs +2 -2
  292. package/Common/Runtime/OpenApi/BeamPlayerlobbyCommon.gs.cs +2 -2
  293. package/Common/Runtime/OpenApi/BeamPlayerparty.gs.cs +2 -2
  294. package/Common/Runtime/OpenApi/BeamPlayerpartyCommon.gs.cs +2 -2
  295. package/Common/Runtime/OpenApi/BeamPlayersession.gs.cs +110 -0
  296. package/Common/Runtime/OpenApi/{BeamAdminCommon.gs.cs.meta → BeamPlayersession.gs.cs.meta} +1 -1
  297. package/Common/Runtime/OpenApi/BeamPlayersessionCommon.gs.cs +45 -0
  298. package/Common/Runtime/OpenApi/BeamPlayersessionCommon.gs.cs.meta +11 -0
  299. package/Common/Runtime/OpenApi/BeamPlayerstats.gs.cs +159 -0
  300. package/Common/Runtime/OpenApi/BeamPlayerstats.gs.cs.meta +11 -0
  301. package/Common/Runtime/OpenApi/{BeamServiceplanCommon.gs.cs → BeamPlayerstatsCommon.gs.cs} +6 -6
  302. package/Common/Runtime/OpenApi/BeamPlayerstatsCommon.gs.cs.meta +11 -0
  303. package/Common/Runtime/OpenApi/BeamPlayerticket.gs.cs +2 -2
  304. package/Common/Runtime/OpenApi/BeamPlayerticketCommon.gs.cs +2 -2
  305. package/Common/Runtime/OpenApi/BeamPresence.gs.cs +6 -2
  306. package/Common/Runtime/OpenApi/BeamPresenceCommon.gs.cs +2 -2
  307. package/Common/Runtime/OpenApi/BeamRealmsecrets.gs.cs +255 -0
  308. package/Common/Runtime/OpenApi/BeamRealmsecrets.gs.cs.meta +11 -0
  309. package/Common/Runtime/OpenApi/BeamRealmsecretsCommon.gs.cs +45 -0
  310. package/Common/Runtime/OpenApi/BeamRealmsecretsCommon.gs.cs.meta +11 -0
  311. package/Common/Runtime/OpenApi/BeamScheduler.gs.cs +90 -42
  312. package/Common/Runtime/OpenApi/BeamSchedulerCommon.gs.cs +2 -2
  313. package/Common/Runtime/OpenApi/BeamSession.gs.cs +114 -0
  314. package/Common/Runtime/OpenApi/BeamSession.gs.cs.meta +11 -0
  315. package/Common/Runtime/OpenApi/BeamSessionCommon.gs.cs +45 -0
  316. package/Common/Runtime/OpenApi/BeamSessionCommon.gs.cs.meta +11 -0
  317. package/Common/Runtime/OpenApi/BeamStats.gs.cs +308 -0
  318. package/Common/Runtime/OpenApi/BeamStats.gs.cs.meta +11 -0
  319. package/Common/Runtime/OpenApi/{BeamAdminCommon.gs.cs → BeamStatsCommon.gs.cs} +6 -6
  320. package/Common/Runtime/OpenApi/BeamStatsCommon.gs.cs.meta +11 -0
  321. package/Common/Runtime/OpenApi/BeamoBasic.gs.cs +2 -2
  322. package/Common/Runtime/OpenApi/BeamoBasicCommon.gs.cs +2 -2
  323. package/Common/Runtime/OpenApi/CalendarsObject.gs.cs +2 -2
  324. package/Common/Runtime/OpenApi/CalendarsObjectCommon.gs.cs +2 -2
  325. package/Common/Runtime/OpenApi/CloudsavingBasic.gs.cs +2 -2
  326. package/Common/Runtime/OpenApi/CloudsavingBasicCommon.gs.cs +2 -2
  327. package/Common/Runtime/OpenApi/CommerceBasic.gs.cs +2 -2
  328. package/Common/Runtime/OpenApi/CommerceBasicCommon.gs.cs +2 -2
  329. package/Common/Runtime/OpenApi/CommerceObject.gs.cs +2 -2
  330. package/Common/Runtime/OpenApi/ContentBasic.gs.cs +21 -2
  331. package/Common/Runtime/OpenApi/ContentBasicCommon.gs.cs +2 -2
  332. package/Common/Runtime/OpenApi/Event-playersObject.gs.cs +2 -2
  333. package/Common/Runtime/OpenApi/Event-playersObjectCommon.gs.cs +2 -2
  334. package/Common/Runtime/OpenApi/EventsBasic.gs.cs +2 -2
  335. package/Common/Runtime/OpenApi/EventsBasicCommon.gs.cs +2 -2
  336. package/Common/Runtime/OpenApi/EventsObject.gs.cs +2 -2
  337. package/Common/Runtime/OpenApi/Group-usersObject.gs.cs +2 -2
  338. package/Common/Runtime/OpenApi/Group-usersObjectCommon.gs.cs +2 -2
  339. package/Common/Runtime/OpenApi/GroupsObject.gs.cs +2 -2
  340. package/Common/Runtime/OpenApi/GroupsObjectCommon.gs.cs +2 -2
  341. package/Common/Runtime/OpenApi/InventoryBasic.gs.cs +2 -2
  342. package/Common/Runtime/OpenApi/InventoryBasicCommon.gs.cs +2 -2
  343. package/Common/Runtime/OpenApi/InventoryObject.gs.cs +2 -2
  344. package/Common/Runtime/OpenApi/LeaderboardsBasic.gs.cs +2 -2
  345. package/Common/Runtime/OpenApi/LeaderboardsBasicCommon.gs.cs +2 -2
  346. package/Common/Runtime/OpenApi/LeaderboardsObject.gs.cs +2 -2
  347. package/Common/Runtime/OpenApi/MailBasic.gs.cs +2 -2
  348. package/Common/Runtime/OpenApi/MailBasicCommon.gs.cs +2 -2
  349. package/Common/Runtime/OpenApi/MailObject.gs.cs +2 -2
  350. package/Common/Runtime/OpenApi/Models.gs.cs +1489 -410
  351. package/Common/Runtime/OpenApi/NotificationBasic.gs.cs +21 -2
  352. package/Common/Runtime/OpenApi/NotificationBasicCommon.gs.cs +2 -2
  353. package/Common/Runtime/OpenApi/PaymentsBasic.gs.cs +160 -2
  354. package/Common/Runtime/OpenApi/PaymentsBasicCommon.gs.cs +2 -2
  355. package/Common/Runtime/OpenApi/PaymentsObject.gs.cs +2 -2
  356. package/Common/Runtime/OpenApi/PushBasic.gs.cs +2 -2
  357. package/Common/Runtime/OpenApi/PushBasicCommon.gs.cs +2 -2
  358. package/Common/Runtime/OpenApi/RealmsBasic.gs.cs +12 -12
  359. package/Common/Runtime/OpenApi/RealmsBasicCommon.gs.cs +2 -2
  360. package/Common/Runtime/OpenApi/SessionBasic.gs.cs +16 -16
  361. package/Common/Runtime/OpenApi/SessionBasicCommon.gs.cs +2 -2
  362. package/Common/Runtime/OpenApi/SocialBasic.gs.cs +2 -2
  363. package/Common/Runtime/OpenApi/SocialBasicCommon.gs.cs +2 -2
  364. package/Common/Runtime/OpenApi/StatsBasic.gs.cs +9 -9
  365. package/Common/Runtime/OpenApi/StatsBasicCommon.gs.cs +2 -2
  366. package/Common/Runtime/OpenApi/StatsObject.gs.cs +2 -2
  367. package/Common/Runtime/OpenApi/TournamentsBasic.gs.cs +2 -2
  368. package/Common/Runtime/OpenApi/TournamentsBasicCommon.gs.cs +2 -2
  369. package/Common/Runtime/OpenApi/TournamentsObject.gs.cs +2 -2
  370. package/Common/Runtime/OpenApi/TrialsBasic.gs.cs +2 -2
  371. package/Common/Runtime/OpenApi/TrialsBasicCommon.gs.cs +2 -2
  372. package/Common/Runtime/OpenApiExtensions/BeamoExtensions.cs +2 -2
  373. package/Common/Runtime/OpenApiExtensions/LegacyConverterExtensions.cs +189 -2
  374. package/Common/Runtime/OpenApiSystem.cs +2 -2
  375. package/Common/Runtime/Player/Lazy.cs +2 -2
  376. package/Common/Runtime/Player/Observables.cs +2 -2
  377. package/Common/Runtime/Pooling/ClassPool.cs +2 -2
  378. package/Common/Runtime/Pooling/StringBuilderPool.cs +2 -2
  379. package/Common/Runtime/Promise.cs +66 -43
  380. package/Common/Runtime/ReflectionCache/BeamContextSystemAttribute.cs +2 -2
  381. package/Common/Runtime/ReflectionCache/INamingAttribute.cs +2 -2
  382. package/Common/Runtime/ReflectionCache/IReflectionAttribute.cs +2 -2
  383. package/Common/Runtime/ReflectionCache/PreserveAttribute.cs +2 -2
  384. package/Common/Runtime/ReflectionCache/ReflectionCache.cs +2 -2
  385. package/Common/Runtime/ReflectionCache/ReflectionCache_Attributes.cs +2 -2
  386. package/Common/Runtime/ReflectionCache/ReflectionCache_BaseTypes.cs +2 -2
  387. package/Common/Runtime/ReflectionCache/ReflectionCache_SignatureMatching.cs +2 -2
  388. package/Common/Runtime/Scheduler/BeamScheduler.cs +2 -2
  389. package/Common/Runtime/Scheduler/Cron.cs +2 -2
  390. package/Common/Runtime/Scheduler/CronValidation.cs +2 -2
  391. package/Common/Runtime/Semantics/BeamAccountId.cs +91 -0
  392. package/Common/Runtime/Semantics/BeamAccountId.cs.meta +11 -0
  393. package/Common/Runtime/Semantics/BeamCid.cs +89 -0
  394. package/Common/Runtime/Semantics/BeamCid.cs.meta +11 -0
  395. package/Common/Runtime/Semantics/BeamContentId.cs +55 -0
  396. package/Common/Runtime/Semantics/BeamContentId.cs.meta +11 -0
  397. package/Common/Runtime/Semantics/BeamContentManifestId.cs +49 -0
  398. package/Common/Runtime/Semantics/BeamContentManifestId.cs.meta +11 -0
  399. package/Common/Runtime/Semantics/BeamGamerTag.cs +90 -0
  400. package/Common/Runtime/Semantics/BeamGamerTag.cs.meta +11 -0
  401. package/Common/Runtime/Semantics/BeamPid.cs +49 -0
  402. package/Common/Runtime/Semantics/BeamPid.cs.meta +11 -0
  403. package/Common/Runtime/Semantics/BeamStats.cs +62 -0
  404. package/Common/Runtime/Semantics/BeamStats.cs.meta +11 -0
  405. package/Common/Runtime/Semantics/IBeamSemanticType.cs +16 -0
  406. package/Common/Runtime/Semantics/IBeamSemanticType.cs.meta +11 -0
  407. package/Common/Runtime/Semantics/ServiceName.cs +25 -4
  408. package/Common/Runtime/SmallerJSON/IRawJsonProvider.cs +2 -2
  409. package/Common/Runtime/SmallerJSON/SmallerJSON.ArrayDict.cs +2 -2
  410. package/Common/Runtime/SmallerJSON/SmallerJSON.FromString.cs +2 -2
  411. package/Common/Runtime/SmallerJSON/SmallerJSON.cs +226 -2
  412. package/Common/Runtime/Spew/Logger.cs +2 -2
  413. package/Common/Runtime/Spew/SpewLoggerAttribute.cs +2 -2
  414. package/Common/Runtime/Trie.cs +2 -2
  415. package/Common/Runtime/TypeExtensions.cs +2 -2
  416. package/Common/Runtime/Util/BeamAssemblyVersionUtil.cs +2 -2
  417. package/Common/Runtime/Util/BeamFileUtil.cs +2 -2
  418. package/Common/Runtime/Util/DocsPageHelper.cs +2 -2
  419. package/Common/Runtime/Util/NaturalStringComparer.cs +2 -2
  420. package/Editor/BeamCli/BeamCliUtil.cs +165 -18
  421. package/Editor/BeamCli/BeamCommand.cs +0 -6
  422. package/Editor/BeamCli/BeamWebCommand.cs +38 -8
  423. package/Editor/BeamCli/Commands/Beam.cs +7 -0
  424. package/Editor/BeamCli/Commands/BeamBeamableTypesSchema.cs +17 -0
  425. package/Editor/BeamCli/Commands/BeamBeamableTypesSchema.cs.meta +11 -0
  426. package/Editor/BeamCli/Commands/BeamComponentExtensionOption.cs +13 -0
  427. package/Editor/BeamCli/Commands/BeamComponentExtensionOption.cs.meta +11 -0
  428. package/Editor/BeamCli/Commands/BeamComponentSelectorOption.cs +13 -0
  429. package/Editor/BeamCli/Commands/BeamComponentSelectorOption.cs.meta +11 -0
  430. package/Editor/BeamCli/Commands/BeamContentFieldEntry.cs +14 -0
  431. package/Editor/BeamCli/Commands/BeamContentFieldEntry.cs.meta +11 -0
  432. package/Editor/BeamCli/Commands/BeamContentHistory.cs +97 -0
  433. package/Editor/BeamCli/Commands/BeamContentHistory.cs.meta +11 -0
  434. package/Editor/BeamCli/Commands/BeamContentHistoryChangelist.cs +11 -0
  435. package/Editor/BeamCli/Commands/BeamContentHistoryChangelist.cs.meta +11 -0
  436. package/Editor/BeamCli/Commands/BeamContentHistoryChangelistEntry.cs +23 -0
  437. package/Editor/BeamCli/Commands/BeamContentHistoryChangelistEntry.cs.meta +11 -0
  438. package/Editor/BeamCli/Commands/BeamContentHistoryChangelistPage.cs +12 -0
  439. package/Editor/BeamCli/Commands/BeamContentHistoryChangelistPage.cs.meta +11 -0
  440. package/Editor/BeamCli/Commands/BeamContentHistoryCommandEvent.cs +16 -0
  441. package/Editor/BeamCli/Commands/BeamContentHistoryCommandEvent.cs.meta +11 -0
  442. package/Editor/BeamCli/Commands/BeamContentHistoryEntriesPage.cs +15 -0
  443. package/Editor/BeamCli/Commands/BeamContentHistoryEntriesPage.cs.meta +11 -0
  444. package/Editor/BeamCli/Commands/BeamContentHistoryEntry.cs +16 -0
  445. package/Editor/BeamCli/Commands/BeamContentHistoryEntry.cs.meta +11 -0
  446. package/Editor/BeamCli/Commands/BeamContentHistoryRestoreCommandOutput.cs +12 -0
  447. package/Editor/BeamCli/Commands/BeamContentHistoryRestoreCommandOutput.cs.meta +11 -0
  448. package/Editor/BeamCli/Commands/BeamContentHistoryRestoreContent.cs +82 -0
  449. package/Editor/BeamCli/Commands/BeamContentHistoryRestoreContent.cs.meta +11 -0
  450. package/Editor/BeamCli/Commands/BeamContentHistorySyncChangelist.cs +71 -0
  451. package/Editor/BeamCli/Commands/BeamContentHistorySyncChangelist.cs.meta +11 -0
  452. package/Editor/BeamCli/Commands/BeamContentHistorySyncChangelistCommandOutput.cs +12 -0
  453. package/Editor/BeamCli/Commands/BeamContentHistorySyncChangelistCommandOutput.cs.meta +11 -0
  454. package/Editor/BeamCli/Commands/BeamContentHistorySyncContent.cs +82 -0
  455. package/Editor/BeamCli/Commands/BeamContentHistorySyncContent.cs.meta +11 -0
  456. package/Editor/BeamCli/Commands/BeamContentHistorySyncContentCommandOutput.cs +12 -0
  457. package/Editor/BeamCli/Commands/BeamContentHistorySyncContentCommandOutput.cs.meta +11 -0
  458. package/Editor/BeamCli/Commands/BeamContentSync.cs +7 -0
  459. package/Editor/BeamCli/Commands/BeamContentTypeEntry.cs +18 -0
  460. package/Editor/BeamCli/Commands/BeamContentTypeEntry.cs.meta +11 -0
  461. package/Editor/BeamCli/Commands/BeamDeployablePlan.cs +2 -0
  462. package/Editor/BeamCli/Commands/BeamDeploymentDiffSummary.cs +3 -0
  463. package/Editor/BeamCli/Commands/BeamDeploymentPlan.cs +7 -0
  464. package/Editor/BeamCli/Commands/BeamDeploymentRelease.cs +7 -0
  465. package/Editor/BeamCli/Commands/BeamFederationMethodEntry.cs +15 -0
  466. package/Editor/BeamCli/Commands/BeamFederationMethodEntry.cs.meta +11 -0
  467. package/Editor/BeamCli/Commands/BeamFederationMethodParam.cs +13 -0
  468. package/Editor/BeamCli/Commands/BeamFederationMethodParam.cs.meta +11 -0
  469. package/Editor/BeamCli/Commands/BeamFederationTypeEntry.cs +17 -0
  470. package/Editor/BeamCli/Commands/BeamFederationTypeEntry.cs.meta +11 -0
  471. package/Editor/BeamCli/Commands/BeamGameWithRealms.cs +14 -0
  472. package/Editor/BeamCli/Commands/BeamGameWithRealms.cs.meta +11 -0
  473. package/Editor/BeamCli/Commands/BeamGenerateSkillDocs.cs +57 -0
  474. package/Editor/BeamCli/Commands/BeamGenerateSkillDocs.cs.meta +11 -0
  475. package/Editor/BeamCli/Commands/BeamGenerateSkillDocsCommandResult.cs +12 -0
  476. package/Editor/BeamCli/Commands/BeamGenerateSkillDocsCommandResult.cs.meta +11 -0
  477. package/Editor/BeamCli/Commands/BeamGenerateTypeSchema.cs +64 -0
  478. package/Editor/BeamCli/Commands/BeamGenerateTypeSchema.cs.meta +11 -0
  479. package/Editor/BeamCli/Commands/BeamHostServiceDescriptor.cs +1 -0
  480. package/Editor/BeamCli/Commands/BeamInitGetRealms.cs +73 -0
  481. package/Editor/BeamCli/Commands/BeamInitGetRealms.cs.meta +11 -0
  482. package/Editor/BeamCli/Commands/BeamInitGetRealmsResult.cs +12 -0
  483. package/Editor/BeamCli/Commands/BeamInitGetRealmsResult.cs.meta +11 -0
  484. package/Editor/BeamCli/Commands/BeamInstallAISkillsCommandResult.cs +17 -0
  485. package/Editor/BeamCli/Commands/BeamInstallAISkillsCommandResult.cs.meta +11 -0
  486. package/Editor/BeamCli/Commands/BeamInstallAiSkill.cs +85 -0
  487. package/Editor/BeamCli/Commands/BeamInstallAiSkill.cs.meta +11 -0
  488. package/Editor/BeamCli/Commands/BeamListMountSitesCommandResults.cs +12 -0
  489. package/Editor/BeamCli/Commands/BeamListMountSitesCommandResults.cs.meta +11 -0
  490. package/Editor/BeamCli/Commands/BeamListReplacementTypeCommandOutput.cs +12 -0
  491. package/Editor/BeamCli/Commands/BeamListReplacementTypeCommandOutput.cs.meta +11 -0
  492. package/Editor/BeamCli/Commands/BeamMcpSetup.cs +58 -0
  493. package/Editor/BeamCli/Commands/BeamMcpSetup.cs.meta +11 -0
  494. package/Editor/BeamCli/Commands/BeamMcpSetupCommandResult.cs +12 -0
  495. package/Editor/BeamCli/Commands/BeamMcpSetupCommandResult.cs.meta +11 -0
  496. package/Editor/BeamCli/Commands/BeamMountSiteConfig.cs +14 -0
  497. package/Editor/BeamCli/Commands/BeamMountSiteConfig.cs.meta +11 -0
  498. package/Editor/BeamCli/Commands/BeamMountSiteSelector.cs +13 -0
  499. package/Editor/BeamCli/Commands/BeamMountSiteSelector.cs.meta +11 -0
  500. package/Editor/BeamCli/Commands/BeamPageExtensionOption.cs +13 -0
  501. package/Editor/BeamCli/Commands/BeamPageExtensionOption.cs.meta +11 -0
  502. package/Editor/BeamCli/Commands/BeamPortalExtensionAddMicroservice.cs +55 -0
  503. package/Editor/BeamCli/Commands/BeamPortalExtensionAddMicroservice.cs.meta +11 -0
  504. package/Editor/BeamCli/Commands/BeamPortalExtensionFileUploadInfo.cs +16 -0
  505. package/Editor/BeamCli/Commands/BeamPortalExtensionFileUploadInfo.cs.meta +11 -0
  506. package/Editor/BeamCli/Commands/BeamPortalExtensionListExtensionOptions.cs +51 -0
  507. package/Editor/BeamCli/Commands/BeamPortalExtensionListExtensionOptions.cs.meta +11 -0
  508. package/Editor/BeamCli/Commands/BeamPortalExtensionListMountSites.cs +51 -0
  509. package/Editor/BeamCli/Commands/BeamPortalExtensionListMountSites.cs.meta +11 -0
  510. package/Editor/BeamCli/Commands/BeamPortalExtensionOptionsResult.cs +13 -0
  511. package/Editor/BeamCli/Commands/BeamPortalExtensionOptionsResult.cs.meta +11 -0
  512. package/Editor/BeamCli/Commands/BeamPortalExtensionPlanFileReference.cs +14 -0
  513. package/Editor/BeamCli/Commands/BeamPortalExtensionPlanFileReference.cs.meta +11 -0
  514. package/Editor/BeamCli/Commands/BeamPortalExtensionPlanReference.cs +16 -0
  515. package/Editor/BeamCli/Commands/BeamPortalExtensionPlanReference.cs.meta +11 -0
  516. package/Editor/BeamCli/Commands/BeamPortalExtensionSetConfig.cs +63 -0
  517. package/Editor/BeamCli/Commands/BeamPortalExtensionSetConfig.cs.meta +11 -0
  518. package/Editor/BeamCli/Commands/BeamPortalExtensionUploadInfo.cs +15 -0
  519. package/Editor/BeamCli/Commands/BeamPortalExtensionUploadInfo.cs.meta +11 -0
  520. package/Editor/BeamCli/Commands/BeamProjectAddReplacementType.cs +81 -0
  521. package/Editor/BeamCli/Commands/BeamProjectAddReplacementType.cs.meta +11 -0
  522. package/Editor/BeamCli/Commands/BeamProjectBuild.cs +7 -0
  523. package/Editor/BeamCli/Commands/BeamProjectGenerateClientOapi.cs +14 -0
  524. package/Editor/BeamCli/Commands/BeamProjectListReplacementType.cs +58 -0
  525. package/Editor/BeamCli/Commands/BeamProjectListReplacementType.cs.meta +11 -0
  526. package/Editor/BeamCli/Commands/BeamProjectNewPortalExtension.cs +121 -0
  527. package/Editor/BeamCli/Commands/BeamProjectNewPortalExtension.cs.meta +11 -0
  528. package/Editor/BeamCli/Commands/BeamProjectRemoveReplacementType.cs +60 -0
  529. package/Editor/BeamCli/Commands/BeamProjectRemoveReplacementType.cs.meta +11 -0
  530. package/Editor/BeamCli/Commands/BeamRealmOption.cs +16 -0
  531. package/Editor/BeamCli/Commands/BeamRealmOption.cs.meta +11 -0
  532. package/Editor/BeamCli/Commands/BeamRemotePortalConfiguration.cs +12 -0
  533. package/Editor/BeamCli/Commands/BeamRemotePortalConfiguration.cs.meta +11 -0
  534. package/Editor/BeamCli/Commands/BeamRemotePortalExtensionDescriptor.cs +15 -0
  535. package/Editor/BeamCli/Commands/BeamRemotePortalExtensionDescriptor.cs.meta +11 -0
  536. package/Editor/BeamCli/Commands/BeamReplacementTypeInfo.cs +15 -0
  537. package/Editor/BeamCli/Commands/BeamReplacementTypeInfo.cs.meta +11 -0
  538. package/Editor/BeamCli/Commands/BeamServiceInstance.cs +1 -0
  539. package/Editor/BeamCli/Commands/BeamSetPortalExtensionConfigCommandResults.cs +11 -0
  540. package/Editor/BeamCli/Commands/BeamSetPortalExtensionConfigCommandResults.cs.meta +11 -0
  541. package/Editor/BeamCli/Commands/BeamUnrealTypeMappingEntry.cs +14 -0
  542. package/Editor/BeamCli/Commands/BeamUnrealTypeMappingEntry.cs.meta +11 -0
  543. package/Editor/BeamCli/Commands/BeamUtilityMemberEntry.cs +16 -0
  544. package/Editor/BeamCli/Commands/BeamUtilityMemberEntry.cs.meta +11 -0
  545. package/Editor/BeamCli/Commands/BeamUtilityMethodEntry.cs +16 -0
  546. package/Editor/BeamCli/Commands/BeamUtilityMethodEntry.cs.meta +11 -0
  547. package/Editor/BeamCli/Commands/BeamUtilityParam.cs +13 -0
  548. package/Editor/BeamCli/Commands/BeamUtilityParam.cs.meta +11 -0
  549. package/Editor/BeamCli/Commands/BeamUtilityTypeEntry.cs +19 -0
  550. package/Editor/BeamCli/Commands/BeamUtilityTypeEntry.cs.meta +11 -0
  551. package/Editor/BeamCli/UI/LogUtil/LogViewUtil.cs +2 -0
  552. package/Editor/Config/ConsoleConfiguration.asset +5 -1
  553. package/Editor/ContentService/CliContentService.cs +125 -9
  554. package/Editor/LibraryService.cs +25 -2
  555. package/Editor/Modules/Content/DefaultAssets~/currency/icon.png +0 -0
  556. package/Editor/Modules/Content/UI/ContentObjectEditor.cs +3 -2
  557. package/Editor/Server/MicroserviceConfiguration.cs +3 -0
  558. package/Editor/Server/UI/PublishWindow/UsamPublishWindow.cs +5 -1
  559. package/Editor/Server/Usam/UsamService_GenerateClient.cs +6 -1
  560. package/Editor/Toolbar/MenuItems/OpenToolboxWindowMenuItem.asset +1 -1
  561. package/Editor/UI/AccountWindow/AccountWindow_SignedIn.cs +1 -1
  562. package/Editor/UI/ContentWindow/ContentWindow.cs +8 -1
  563. package/Editor/UI/ContentWindow/ContentWindow_ContentActions.cs +50 -9
  564. package/Editor/UI/ContentWindow/ContentWindow_Header.cs +17 -6
  565. package/Editor/UI/ContentWindow/ContentWindow_ItemsPanel.cs +3 -0
  566. package/Editor/UI/LibraryWindow/BeamLibraryWindow.cs +2 -2
  567. package/Editor/UI/LibraryWindow/BeamLibraryWindow_Main.cs +0 -21
  568. package/Editor/UI/LibraryWindow/BeamLibraryWindow_Samples.cs +98 -38
  569. package/Editor/UI/McpMenuItems.cs +47 -0
  570. package/Editor/UI/McpMenuItems.cs.meta +11 -0
  571. package/Runtime/Beam.cs +2 -0
  572. package/Runtime/BeamContext.cs +9 -2
  573. package/Runtime/Core/Platform/SDK/Events/EventsService.cs +8 -2
  574. package/Runtime/Core/Platform/SDK/Inventory/InventoryService.cs +7 -3
  575. package/Runtime/Environment/Resources/env-default.json +3 -3
  576. package/Runtime/Environment/Resources/versions-default.json +1 -1
  577. package/Runtime/Modules/Console/BeamableAdminConsole.cs +696 -0
  578. package/Runtime/Modules/Console/BeamableAdminConsole.cs.meta +3 -0
  579. package/Runtime/Modules/Console/ConsoleConfiguration.cs +5 -3
  580. package/Runtime/Modules/Console/ConsoleFlow.cs +3 -0
  581. package/Runtime/Modules/Content/ContentConfiguration.cs +11 -1
  582. package/Runtime/Modules/Content/ContentParameterProvider.cs +2 -0
  583. package/Runtime/Modules/Content/ContentService.cs +13 -4
  584. package/Runtime/Server/MicroserviceClient.cs +5 -2
  585. package/Runtime/UI/Lightbeam/LightBeam.cs +18 -0
  586. package/Runtime/UI/Lightbeam/Sprites_v1/BeamLogo.PNG +0 -0
  587. package/Runtime/UI/Lightbeam/Sprites_v1/BeamLogo.PNG.meta +325 -0
  588. package/Runtime/UI/Lightbeam/Sprites_v1/Bg.png +0 -0
  589. package/Runtime/UI/Lightbeam/Sprites_v1/Bg.png.meta +143 -0
  590. package/Runtime/UI/Lightbeam/Sprites_v1/BtBase.png +0 -0
  591. package/Runtime/UI/Lightbeam/Sprites_v1/BtBase.png.meta +143 -0
  592. package/Runtime/UI/Lightbeam/Sprites_v1/IconInfo.png +0 -0
  593. package/Runtime/UI/Lightbeam/Sprites_v1/IconInfo.png.meta +143 -0
  594. package/Runtime/UI/Lightbeam/Sprites_v1/Icon_Link.png +0 -0
  595. package/Runtime/UI/Lightbeam/Sprites_v1/Icon_Link.png.meta +169 -0
  596. package/Runtime/UI/Lightbeam/Sprites_v1/UIBase.png +0 -0
  597. package/Runtime/UI/Lightbeam/Sprites_v1/UIBase.png.meta +143 -0
  598. package/Runtime/UI/Lightbeam/Sprites_v1/UIBaseWhite.png +0 -0
  599. package/Runtime/UI/Lightbeam/Sprites_v1/UIBaseWhite.png.meta +143 -0
  600. package/Runtime/UI/Lightbeam/Sprites_v1.meta +8 -0
  601. package/Runtime/Unity.Beamable.asmdef +2 -1
  602. package/Samples~/LightBeamSamples/AccountManager/AccountExampleConfig.cs +1 -1
  603. package/Samples~/LightBeamSamples/AccountManager/AccountManager.cs +7 -2
  604. package/Samples~/LightBeamSamples/AccountManager/Prefabs/{AccountDetailsBehaviour → AccountDetailsPage}/AccountDetails.prefab +148 -214
  605. package/Samples~/LightBeamSamples/AccountManager/Prefabs/{AccountDetailsBehaviour/AccountDetailsBehaviour.cs → AccountDetailsPage/AccountDetailsPage.cs} +8 -2
  606. package/Samples~/LightBeamSamples/AccountManager/Prefabs/AccountDisplayBehaviour/AccountDisplay.prefab +551 -76
  607. package/Samples~/LightBeamSamples/AccountManager/Prefabs/AccountSwitchPage/AccountSwitchPage.prefab +324 -88
  608. package/Samples~/LightBeamSamples/AccountManager/Prefabs/HomePage/HomePage.cs +7 -2
  609. package/Samples~/LightBeamSamples/AccountManager/Prefabs/HomePage/HomePage.prefab +469 -280
  610. package/Samples~/LightBeamSamples/AccountManager/Prefabs/RecoverEmailPage/RecoverAccountPage.prefab +183 -110
  611. package/Samples~/LightBeamSamples/AccountManager/Prefabs/RegisterEmailPage/RegisterEmailPage.prefab +157 -84
  612. package/Samples~/LightBeamSamples/AccountManager/Sample_AccountManager.unity +1913 -24
  613. package/Samples~/LightBeamSamples/CloudSaving/CloudSavingManager.cs +4 -0
  614. package/Samples~/LightBeamSamples/CloudSaving/Prefabs/BytePage/BytePage.prefab +1699 -423
  615. package/Samples~/LightBeamSamples/CloudSaving/Prefabs/HomePage/HomePage.cs +4 -1
  616. package/Samples~/LightBeamSamples/CloudSaving/Prefabs/HomePage/HomePage.prefab +740 -342
  617. package/Samples~/LightBeamSamples/CloudSaving/Prefabs/JsonPage/JsonPage.prefab +3448 -1303
  618. package/Samples~/LightBeamSamples/CloudSaving/Prefabs/StringPage/StringPage.prefab +168 -184
  619. package/Samples~/LightBeamSamples/CloudSaving/Sample_CloudSaving.unity +1387 -30
  620. package/Samples~/LightBeamSamples/FriendsManager/FriendsManager.cs +4 -0
  621. package/Samples~/LightBeamSamples/FriendsManager/Prefabs/BlockedDisplay/BlockedDisplay.prefab +71 -29
  622. package/Samples~/LightBeamSamples/FriendsManager/Prefabs/FriendDisplay/FriendDisplay.prefab +84 -31
  623. package/Samples~/LightBeamSamples/FriendsManager/Prefabs/HomePage/HomePage.prefab +446 -182
  624. package/Samples~/LightBeamSamples/FriendsManager/Prefabs/PlayerFriendsDisplay/PlayerDisplay.prefab +349 -127
  625. package/Samples~/LightBeamSamples/FriendsManager/Prefabs/ReceivedInvitesDisplay/ReceivedInviteDisplay.prefab +89 -36
  626. package/Samples~/LightBeamSamples/FriendsManager/Prefabs/SelectorButton.prefab +16 -12
  627. package/Samples~/LightBeamSamples/FriendsManager/Prefabs/SentInvitesDisplay/SentInviteDisplay.prefab +81 -30
  628. package/Samples~/LightBeamSamples/FriendsManager/Sample_FriendsManager.unity +2113 -41
  629. package/Samples~/LightBeamSamples/Inventory/InventoryManager.cs +4 -0
  630. package/Samples~/LightBeamSamples/Inventory/Prefabs/CurrencyDisplay/CurrencyDisplay.prefab +180 -29
  631. package/Samples~/LightBeamSamples/Inventory/Prefabs/CurrencyDisplay/CurrencyDisplayBehaviour.cs +7 -2
  632. package/Samples~/LightBeamSamples/Inventory/Prefabs/CurrencyInfoPage/CurrencyInfoBehaviour.cs +7 -2
  633. package/Samples~/LightBeamSamples/Inventory/Prefabs/CurrencyInfoPage/CurrencyInfoDisplay.prefab +434 -97
  634. package/Samples~/LightBeamSamples/Inventory/Prefabs/HomePage/HomePage.prefab +1300 -279
  635. package/Samples~/LightBeamSamples/Inventory/Prefabs/ItemDisplay/ItemDisplay.prefab +182 -62
  636. package/Samples~/LightBeamSamples/Inventory/Prefabs/ItemDisplay/ItemDisplayBehaviour.cs +7 -2
  637. package/Samples~/LightBeamSamples/Inventory/Prefabs/ItemInfoPage/ItemInfoPage.cs +2 -2
  638. package/Samples~/LightBeamSamples/Inventory/Prefabs/ItemInfoPage/ItemInfoPage.prefab +240 -105
  639. package/Samples~/LightBeamSamples/Inventory/Prefabs/PropertyDisplay/PropertyDisplay.prefab +16 -13
  640. package/Samples~/LightBeamSamples/Inventory/Sample_InventoryManager.unity +1865 -41
  641. package/Samples~/LightBeamSamples/LobbyManager/LobbyManager.cs +4 -0
  642. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/CreateLobbyDisplay/CreateLobbyDisplay.prefab +261 -268
  643. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/FindLobbyDisplay/FindLobbyDisplay.prefab +44 -64
  644. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/HomePage/HomePage.prefab +2337 -185
  645. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/JoinLobbyDisplay/JoinLobbyDisplay.prefab +221 -233
  646. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/LobbyDetailsDisplay/LobbyDetailsDisplay.prefab +273 -440
  647. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/LobbyDisplay/LobbyDisplay.prefab +24 -47
  648. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/PlayerDisplay/PlayerIdDisplay.prefab +18 -14
  649. package/Samples~/LightBeamSamples/LobbyManager/Prefabs/PlayerLobby/PlayerLobby.prefab +234 -238
  650. package/Samples~/LightBeamSamples/LobbyManager/Sample_LobbyManager.unity +1567 -41
  651. package/Samples~/LightBeamSamples/LootBox/Prefabs/LootBoxPage/LootBoxPage.prefab +19 -186
  652. package/Samples~/LightBeamSamples/LootBox/Sample_LootBox.unity +651 -49
  653. package/Samples~/LightBeamSamples/LootBox/Shared/LootboxConstants.cs +1 -1
  654. package/Samples~/LightBeamSamples/SceneLoader/Editor/LightBeamBuilds.cs +16 -6
  655. package/Tests/Runtime/Beamable/Environment/PackageVersionTests/ImplicitConversionTest.cs +2 -2
  656. package/Tests/Runtime/Beamable/Platform/Inventory/InventoryServiceTests/UpdateTests.cs +4 -2
  657. package/Tests/Runtime/Beamable/Player/Inventory/GetItemTests.cs +16 -9
  658. package/package.json +8 -15
  659. package/Common/Runtime/OpenApi/BeamAdmin.gs.cs +0 -77
  660. package/Common/Runtime/OpenApi/BeamServiceplan.gs.cs +0 -96
  661. package/Editor/ContentService/ContentUtils.cs +0 -79
  662. package/Editor/ContentService/ContentUtils.cs.meta +0 -11
  663. /package/Samples~/LightBeamSamples/AccountManager/Prefabs/{AccountDetailsBehaviour → AccountDetailsPage}/AccountDetails.prefab.meta +0 -0
  664. /package/Samples~/LightBeamSamples/AccountManager/Prefabs/{AccountDetailsBehaviour/AccountDetailsBehaviour.cs.meta → AccountDetailsPage/AccountDetailsPage.cs.meta} +0 -0
  665. /package/Samples~/LightBeamSamples/AccountManager/Prefabs/{AccountDetailsBehaviour.meta → AccountDetailsPage.meta} +0 -0
@@ -38,6 +38,7 @@ RenderSettings:
38
38
  m_ReflectionIntensity: 1
39
39
  m_CustomReflection: {fileID: 0}
40
40
  m_Sun: {fileID: 0}
41
+ m_IndirectSpecularColor: {r: 0, g: 0, b: 0, a: 1}
41
42
  m_UseRadianceAmbientProbe: 0
42
43
  --- !u!157 &3
43
44
  LightmapSettings:
@@ -190,6 +191,127 @@ Transform:
190
191
  m_Father: {fileID: 0}
191
192
  m_RootOrder: 1
192
193
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
194
+ --- !u!1 &204526165
195
+ GameObject:
196
+ m_ObjectHideFlags: 0
197
+ m_CorrespondingSourceObject: {fileID: 0}
198
+ m_PrefabInstance: {fileID: 0}
199
+ m_PrefabAsset: {fileID: 0}
200
+ serializedVersion: 6
201
+ m_Component:
202
+ - component: {fileID: 204526166}
203
+ - component: {fileID: 204526169}
204
+ - component: {fileID: 204526168}
205
+ - component: {fileID: 204526167}
206
+ m_Layer: 5
207
+ m_Name: ButtonInfo
208
+ m_TagString: Untagged
209
+ m_Icon: {fileID: 0}
210
+ m_NavMeshLayer: 0
211
+ m_StaticEditorFlags: 0
212
+ m_IsActive: 1
213
+ --- !u!224 &204526166
214
+ RectTransform:
215
+ m_ObjectHideFlags: 0
216
+ m_CorrespondingSourceObject: {fileID: 0}
217
+ m_PrefabInstance: {fileID: 0}
218
+ m_PrefabAsset: {fileID: 0}
219
+ m_GameObject: {fileID: 204526165}
220
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
221
+ m_LocalPosition: {x: 0, y: 0, z: 0}
222
+ m_LocalScale: {x: 1, y: 1, z: 1}
223
+ m_ConstrainProportionsScale: 0
224
+ m_Children: []
225
+ m_Father: {fileID: 1971354373}
226
+ m_RootOrder: 2
227
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
228
+ m_AnchorMin: {x: 1, y: 1}
229
+ m_AnchorMax: {x: 1, y: 1}
230
+ m_AnchoredPosition: {x: -47.9, y: -59.08}
231
+ m_SizeDelta: {x: 52.119, y: 51.6102}
232
+ m_Pivot: {x: 0.5, y: 0.5}
233
+ --- !u!114 &204526167
234
+ MonoBehaviour:
235
+ m_ObjectHideFlags: 0
236
+ m_CorrespondingSourceObject: {fileID: 0}
237
+ m_PrefabInstance: {fileID: 0}
238
+ m_PrefabAsset: {fileID: 0}
239
+ m_GameObject: {fileID: 204526165}
240
+ m_Enabled: 1
241
+ m_EditorHideFlags: 0
242
+ m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
243
+ m_Name:
244
+ m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Button
245
+ m_Navigation:
246
+ m_Mode: 3
247
+ m_WrapAround: 0
248
+ m_SelectOnUp: {fileID: 0}
249
+ m_SelectOnDown: {fileID: 0}
250
+ m_SelectOnLeft: {fileID: 0}
251
+ m_SelectOnRight: {fileID: 0}
252
+ m_Transition: 1
253
+ m_Colors:
254
+ m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
255
+ m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
256
+ m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
257
+ m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
258
+ m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
259
+ m_ColorMultiplier: 1
260
+ m_FadeDuration: 0.1
261
+ m_SpriteState:
262
+ m_HighlightedSprite: {fileID: 0}
263
+ m_PressedSprite: {fileID: 0}
264
+ m_SelectedSprite: {fileID: 0}
265
+ m_DisabledSprite: {fileID: 0}
266
+ m_AnimationTriggers:
267
+ m_NormalTrigger: Normal
268
+ m_HighlightedTrigger: Highlighted
269
+ m_PressedTrigger: Pressed
270
+ m_SelectedTrigger: Selected
271
+ m_DisabledTrigger: Disabled
272
+ m_Interactable: 1
273
+ m_TargetGraphic: {fileID: 204526168}
274
+ m_OnClick:
275
+ m_PersistentCalls:
276
+ m_Calls: []
277
+ --- !u!114 &204526168
278
+ MonoBehaviour:
279
+ m_ObjectHideFlags: 0
280
+ m_CorrespondingSourceObject: {fileID: 0}
281
+ m_PrefabInstance: {fileID: 0}
282
+ m_PrefabAsset: {fileID: 0}
283
+ m_GameObject: {fileID: 204526165}
284
+ m_Enabled: 1
285
+ m_EditorHideFlags: 0
286
+ m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
287
+ m_Name:
288
+ m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image
289
+ m_Material: {fileID: 0}
290
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
291
+ m_RaycastTarget: 1
292
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
293
+ m_Maskable: 1
294
+ m_OnCullStateChanged:
295
+ m_PersistentCalls:
296
+ m_Calls: []
297
+ m_Sprite: {fileID: 21300000, guid: be0e2f89747107f4db87e4b22aee2437, type: 3}
298
+ m_Type: 0
299
+ m_PreserveAspect: 1
300
+ m_FillCenter: 1
301
+ m_FillMethod: 4
302
+ m_FillAmount: 1
303
+ m_FillClockwise: 1
304
+ m_FillOrigin: 0
305
+ m_UseSpriteMesh: 0
306
+ m_PixelsPerUnitMultiplier: 1
307
+ --- !u!222 &204526169
308
+ CanvasRenderer:
309
+ m_ObjectHideFlags: 0
310
+ m_CorrespondingSourceObject: {fileID: 0}
311
+ m_PrefabInstance: {fileID: 0}
312
+ m_PrefabAsset: {fileID: 0}
313
+ m_GameObject: {fileID: 204526165}
314
+ m_CullTransparentMesh: 1
193
315
  --- !u!1 &215502354
194
316
  GameObject:
195
317
  m_ObjectHideFlags: 0
@@ -251,7 +373,8 @@ MonoBehaviour:
251
373
  m_text: Loading...
252
374
  m_isRightToLeft: 0
253
375
  m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
254
- m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
376
+ m_sharedMaterial: {fileID: -8116913167181615731, guid: e8dc0ebc54e472548a685f67d318d23f,
377
+ type: 2}
255
378
  m_fontSharedMaterials: []
256
379
  m_fontMaterial: {fileID: 0}
257
380
  m_fontMaterials: []
@@ -281,7 +404,7 @@ MonoBehaviour:
281
404
  m_enableAutoSizing: 0
282
405
  m_fontSizeMin: 18
283
406
  m_fontSizeMax: 72
284
- m_fontStyle: 0
407
+ m_fontStyle: 1
285
408
  m_HorizontalAlignment: 1
286
409
  m_VerticalAlignment: 256
287
410
  m_textAlignment: 65535
@@ -291,7 +414,7 @@ MonoBehaviour:
291
414
  m_lineSpacingMax: 0
292
415
  m_paragraphSpacing: 0
293
416
  m_charWidthMaxAdj: 0
294
- m_enableWordWrapping: 1
417
+ m_enableWordWrapping: 0
295
418
  m_wordWrappingRatios: 0.4
296
419
  m_overflowMode: 0
297
420
  m_linkedTextComponent: {fileID: 0}
@@ -314,7 +437,7 @@ MonoBehaviour:
314
437
  m_margin: {x: 0, y: 0, z: 0, w: 0}
315
438
  m_isUsingLegacyAnimationComponent: 0
316
439
  m_isVolumetricText: 0
317
- m_hasFontAssetChanged: 0
440
+ m_hasFontAssetChanged: 1
318
441
  m_baseMaterial: {fileID: 0}
319
442
  m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
320
443
  --- !u!222 &215502357
@@ -325,6 +448,12 @@ CanvasRenderer:
325
448
  m_PrefabAsset: {fileID: 0}
326
449
  m_GameObject: {fileID: 215502354}
327
450
  m_CullTransparentMesh: 1
451
+ --- !u!224 &268377873 stripped
452
+ RectTransform:
453
+ m_CorrespondingSourceObject: {fileID: 635883761041762154, guid: 0c09c3fa1d60efa458b3961522d46371,
454
+ type: 3}
455
+ m_PrefabInstance: {fileID: 6956350461133388510}
456
+ m_PrefabAsset: {fileID: 0}
328
457
  --- !u!1 &636506669
329
458
  GameObject:
330
459
  m_ObjectHideFlags: 0
@@ -438,7 +567,7 @@ RectTransform:
438
567
  m_LocalScale: {x: 1, y: 1, z: 1}
439
568
  m_ConstrainProportionsScale: 0
440
569
  m_Children:
441
- - {fileID: 1731574500}
570
+ - {fileID: 1971354373}
442
571
  - {fileID: 723391647}
443
572
  m_Father: {fileID: 1011099189}
444
573
  m_RootOrder: 0
@@ -462,6 +591,7 @@ MonoBehaviour:
462
591
  m_EditorClassIdentifier:
463
592
  root: {fileID: 1731574500}
464
593
  loadingBlocker: {fileID: 723391648}
594
+ InfoButton: {fileID: 204526167}
465
595
  config: {fileID: 11400000, guid: 11b2f232e97b7a74a809cb80c24aac3d, type: 2}
466
596
  --- !u!1 &723391646
467
597
  GameObject:
@@ -528,14 +658,14 @@ MonoBehaviour:
528
658
  m_Name:
529
659
  m_EditorClassIdentifier:
530
660
  m_Material: {fileID: 0}
531
- m_Color: {r: 0, g: 0, b: 0, a: 1}
661
+ m_Color: {r: 0.6981132, g: 0.6981132, b: 0.6981132, a: 1}
532
662
  m_RaycastTarget: 1
533
663
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
534
664
  m_Maskable: 1
535
665
  m_OnCullStateChanged:
536
666
  m_PersistentCalls:
537
667
  m_Calls: []
538
- m_Sprite: {fileID: 0}
668
+ m_Sprite: {fileID: 21300000, guid: e669acd2805965449b35eb0938af6d2e, type: 3}
539
669
  m_Type: 0
540
670
  m_PreserveAspect: 0
541
671
  m_FillCenter: 1
@@ -629,7 +759,6 @@ Canvas:
629
759
  m_OverrideSorting: 0
630
760
  m_OverridePixelPerfect: 0
631
761
  m_SortingBucketNormalizedSize: 0
632
- m_VertexColorAlwaysGammaSpace: 0
633
762
  m_AdditionalShaderChannelsFlag: 25
634
763
  m_SortingLayerID: 0
635
764
  m_SortingOrder: 0
@@ -655,7 +784,7 @@ RectTransform:
655
784
  m_AnchoredPosition: {x: 0, y: 0}
656
785
  m_SizeDelta: {x: 0, y: 0}
657
786
  m_Pivot: {x: 0, y: 0}
658
- --- !u!1 &1731574499
787
+ --- !u!1 &1174292097
659
788
  GameObject:
660
789
  m_ObjectHideFlags: 0
661
790
  m_CorrespondingSourceObject: {fileID: 0}
@@ -663,61 +792,59 @@ GameObject:
663
792
  m_PrefabAsset: {fileID: 0}
664
793
  serializedVersion: 6
665
794
  m_Component:
666
- - component: {fileID: 1731574500}
667
- - component: {fileID: 1731574502}
668
- - component: {fileID: 1731574501}
669
- - component: {fileID: 1731574503}
795
+ - component: {fileID: 1174292098}
796
+ - component: {fileID: 1174292100}
797
+ - component: {fileID: 1174292099}
670
798
  m_Layer: 5
671
- m_Name: Content
799
+ m_Name: Logo
672
800
  m_TagString: Untagged
673
801
  m_Icon: {fileID: 0}
674
802
  m_NavMeshLayer: 0
675
803
  m_StaticEditorFlags: 0
676
804
  m_IsActive: 1
677
- --- !u!224 &1731574500
805
+ --- !u!224 &1174292098
678
806
  RectTransform:
679
807
  m_ObjectHideFlags: 0
680
808
  m_CorrespondingSourceObject: {fileID: 0}
681
809
  m_PrefabInstance: {fileID: 0}
682
810
  m_PrefabAsset: {fileID: 0}
683
- m_GameObject: {fileID: 1731574499}
811
+ m_GameObject: {fileID: 1174292097}
684
812
  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
685
813
  m_LocalPosition: {x: 0, y: 0, z: 0}
686
814
  m_LocalScale: {x: 1, y: 1, z: 1}
687
815
  m_ConstrainProportionsScale: 0
688
- m_Children:
689
- - {fileID: 2052943416}
690
- m_Father: {fileID: 693354698}
691
- m_RootOrder: 0
816
+ m_Children: []
817
+ m_Father: {fileID: 1971354373}
818
+ m_RootOrder: 1
692
819
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
693
- m_AnchorMin: {x: 0, y: 0}
694
- m_AnchorMax: {x: 1, y: 1}
695
- m_AnchoredPosition: {x: 0, y: 0}
696
- m_SizeDelta: {x: 0, y: 0}
820
+ m_AnchorMin: {x: 0, y: 1}
821
+ m_AnchorMax: {x: 0, y: 1}
822
+ m_AnchoredPosition: {x: 193, y: -57}
823
+ m_SizeDelta: {x: 332.7265, y: 70.485}
697
824
  m_Pivot: {x: 0.5, y: 0.5}
698
- --- !u!114 &1731574501
825
+ --- !u!114 &1174292099
699
826
  MonoBehaviour:
700
827
  m_ObjectHideFlags: 0
701
828
  m_CorrespondingSourceObject: {fileID: 0}
702
829
  m_PrefabInstance: {fileID: 0}
703
830
  m_PrefabAsset: {fileID: 0}
704
- m_GameObject: {fileID: 1731574499}
831
+ m_GameObject: {fileID: 1174292097}
705
832
  m_Enabled: 1
706
833
  m_EditorHideFlags: 0
707
834
  m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
708
835
  m_Name:
709
- m_EditorClassIdentifier:
836
+ m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image
710
837
  m_Material: {fileID: 0}
711
- m_Color: {r: 0, g: 0, b: 0, a: 1}
838
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
712
839
  m_RaycastTarget: 1
713
840
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
714
841
  m_Maskable: 1
715
842
  m_OnCullStateChanged:
716
843
  m_PersistentCalls:
717
844
  m_Calls: []
718
- m_Sprite: {fileID: 0}
845
+ m_Sprite: {fileID: 21300000, guid: 722fe80901bc1ce44aa0e7bb97a3dcef, type: 3}
719
846
  m_Type: 0
720
- m_PreserveAspect: 0
847
+ m_PreserveAspect: 1
721
848
  m_FillCenter: 1
722
849
  m_FillMethod: 4
723
850
  m_FillAmount: 1
@@ -725,6 +852,198 @@ MonoBehaviour:
725
852
  m_FillOrigin: 0
726
853
  m_UseSpriteMesh: 0
727
854
  m_PixelsPerUnitMultiplier: 1
855
+ --- !u!222 &1174292100
856
+ CanvasRenderer:
857
+ m_ObjectHideFlags: 0
858
+ m_CorrespondingSourceObject: {fileID: 0}
859
+ m_PrefabInstance: {fileID: 0}
860
+ m_PrefabAsset: {fileID: 0}
861
+ m_GameObject: {fileID: 1174292097}
862
+ m_CullTransparentMesh: 1
863
+ --- !u!1 &1219674444
864
+ GameObject:
865
+ m_ObjectHideFlags: 0
866
+ m_CorrespondingSourceObject: {fileID: 0}
867
+ m_PrefabInstance: {fileID: 0}
868
+ m_PrefabAsset: {fileID: 0}
869
+ serializedVersion: 6
870
+ m_Component:
871
+ - component: {fileID: 1219674445}
872
+ - component: {fileID: 1219674447}
873
+ - component: {fileID: 1219674446}
874
+ m_Layer: 5
875
+ m_Name: SampleName
876
+ m_TagString: Untagged
877
+ m_Icon: {fileID: 0}
878
+ m_NavMeshLayer: 0
879
+ m_StaticEditorFlags: 0
880
+ m_IsActive: 1
881
+ --- !u!224 &1219674445
882
+ RectTransform:
883
+ m_ObjectHideFlags: 0
884
+ m_CorrespondingSourceObject: {fileID: 0}
885
+ m_PrefabInstance: {fileID: 0}
886
+ m_PrefabAsset: {fileID: 0}
887
+ m_GameObject: {fileID: 1219674444}
888
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
889
+ m_LocalPosition: {x: 0, y: 0, z: 0}
890
+ m_LocalScale: {x: 1, y: 1, z: 1}
891
+ m_ConstrainProportionsScale: 0
892
+ m_Children: []
893
+ m_Father: {fileID: 1971354373}
894
+ m_RootOrder: 3
895
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
896
+ m_AnchorMin: {x: 1, y: 1}
897
+ m_AnchorMax: {x: 1, y: 1}
898
+ m_AnchoredPosition: {x: -440.38342, y: -59.079987}
899
+ m_SizeDelta: {x: 702.2288, y: 74.6392}
900
+ m_Pivot: {x: 0.5, y: 0.5}
901
+ --- !u!114 &1219674446
902
+ MonoBehaviour:
903
+ m_ObjectHideFlags: 0
904
+ m_CorrespondingSourceObject: {fileID: 0}
905
+ m_PrefabInstance: {fileID: 0}
906
+ m_PrefabAsset: {fileID: 0}
907
+ m_GameObject: {fileID: 1219674444}
908
+ m_Enabled: 1
909
+ m_EditorHideFlags: 0
910
+ m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
911
+ m_Name:
912
+ m_EditorClassIdentifier: Unity.TextMeshPro::TMPro.TextMeshProUGUI
913
+ m_Material: {fileID: 0}
914
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
915
+ m_RaycastTarget: 1
916
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
917
+ m_Maskable: 1
918
+ m_OnCullStateChanged:
919
+ m_PersistentCalls:
920
+ m_Calls: []
921
+ m_text: CLOUD SAVE SAMPLE
922
+ m_isRightToLeft: 0
923
+ m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
924
+ m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
925
+ m_fontSharedMaterials: []
926
+ m_fontMaterial: {fileID: 0}
927
+ m_fontMaterials: []
928
+ m_fontColor32:
929
+ serializedVersion: 2
930
+ rgba: 4294967295
931
+ m_fontColor: {r: 1, g: 1, b: 1, a: 1}
932
+ m_enableVertexGradient: 0
933
+ m_colorMode: 3
934
+ m_fontColorGradient:
935
+ topLeft: {r: 1, g: 1, b: 1, a: 1}
936
+ topRight: {r: 1, g: 1, b: 1, a: 1}
937
+ bottomLeft: {r: 1, g: 1, b: 1, a: 1}
938
+ bottomRight: {r: 1, g: 1, b: 1, a: 1}
939
+ m_fontColorGradientPreset: {fileID: 0}
940
+ m_spriteAsset: {fileID: 0}
941
+ m_tintAllSprites: 0
942
+ m_StyleSheet: {fileID: 0}
943
+ m_TextStyleHashCode: -1183493901
944
+ m_overrideHtmlColors: 0
945
+ m_faceColor:
946
+ serializedVersion: 2
947
+ rgba: 4294967295
948
+ m_fontSize: 40
949
+ m_fontSizeBase: 40
950
+ m_fontWeight: 400
951
+ m_enableAutoSizing: 0
952
+ m_fontSizeMin: 18
953
+ m_fontSizeMax: 72
954
+ m_fontStyle: 1
955
+ m_HorizontalAlignment: 4
956
+ m_VerticalAlignment: 512
957
+ m_textAlignment: 65535
958
+ m_characterSpacing: 0
959
+ m_wordSpacing: 0
960
+ m_lineSpacing: 0
961
+ m_lineSpacingMax: 0
962
+ m_paragraphSpacing: 0
963
+ m_charWidthMaxAdj: 0
964
+ m_enableWordWrapping: 0
965
+ m_wordWrappingRatios: 0.4
966
+ m_overflowMode: 0
967
+ m_linkedTextComponent: {fileID: 0}
968
+ parentLinkedComponent: {fileID: 0}
969
+ m_enableKerning: 0
970
+ m_enableExtraPadding: 0
971
+ checkPaddingRequired: 0
972
+ m_isRichText: 1
973
+ m_parseCtrlCharacters: 1
974
+ m_isOrthographic: 1
975
+ m_isCullingEnabled: 0
976
+ m_horizontalMapping: 0
977
+ m_verticalMapping: 0
978
+ m_uvLineOffset: 0
979
+ m_geometrySortingOrder: 0
980
+ m_IsTextObjectScaleStatic: 0
981
+ m_VertexBufferAutoSizeReduction: 0
982
+ m_useMaxVisibleDescender: 1
983
+ m_pageToDisplay: 1
984
+ m_margin: {x: 0, y: 0, z: 0, w: 0}
985
+ m_isUsingLegacyAnimationComponent: 0
986
+ m_isVolumetricText: 0
987
+ m_hasFontAssetChanged: 0
988
+ m_baseMaterial: {fileID: 0}
989
+ m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
990
+ --- !u!222 &1219674447
991
+ CanvasRenderer:
992
+ m_ObjectHideFlags: 0
993
+ m_CorrespondingSourceObject: {fileID: 0}
994
+ m_PrefabInstance: {fileID: 0}
995
+ m_PrefabAsset: {fileID: 0}
996
+ m_GameObject: {fileID: 1219674444}
997
+ m_CullTransparentMesh: 1
998
+ --- !u!224 &1538157725 stripped
999
+ RectTransform:
1000
+ m_CorrespondingSourceObject: {fileID: 635883761041762154, guid: abd82458108b7534fb3f909cd4dc9f67,
1001
+ type: 3}
1002
+ m_PrefabInstance: {fileID: 5887600745167712734}
1003
+ m_PrefabAsset: {fileID: 0}
1004
+ --- !u!1 &1731574499
1005
+ GameObject:
1006
+ m_ObjectHideFlags: 0
1007
+ m_CorrespondingSourceObject: {fileID: 0}
1008
+ m_PrefabInstance: {fileID: 0}
1009
+ m_PrefabAsset: {fileID: 0}
1010
+ serializedVersion: 6
1011
+ m_Component:
1012
+ - component: {fileID: 1731574500}
1013
+ - component: {fileID: 1731574502}
1014
+ - component: {fileID: 1731574503}
1015
+ m_Layer: 5
1016
+ m_Name: Content
1017
+ m_TagString: Untagged
1018
+ m_Icon: {fileID: 0}
1019
+ m_NavMeshLayer: 0
1020
+ m_StaticEditorFlags: 0
1021
+ m_IsActive: 1
1022
+ --- !u!224 &1731574500
1023
+ RectTransform:
1024
+ m_ObjectHideFlags: 0
1025
+ m_CorrespondingSourceObject: {fileID: 0}
1026
+ m_PrefabInstance: {fileID: 0}
1027
+ m_PrefabAsset: {fileID: 0}
1028
+ m_GameObject: {fileID: 1731574499}
1029
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
1030
+ m_LocalPosition: {x: 0, y: 0, z: 0}
1031
+ m_LocalScale: {x: 1, y: 1, z: 1}
1032
+ m_ConstrainProportionsScale: 0
1033
+ m_Children:
1034
+ - {fileID: 2052943416}
1035
+ - {fileID: 1882337411}
1036
+ - {fileID: 3356701124556809455}
1037
+ - {fileID: 1538157725}
1038
+ - {fileID: 268377873}
1039
+ m_Father: {fileID: 1971354373}
1040
+ m_RootOrder: 0
1041
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1042
+ m_AnchorMin: {x: 0, y: 0}
1043
+ m_AnchorMax: {x: 1, y: 1}
1044
+ m_AnchoredPosition: {x: 0, y: -64.544754}
1045
+ m_SizeDelta: {x: 0, y: -129.0895}
1046
+ m_Pivot: {x: 0.5, y: 0.5}
728
1047
  --- !u!222 &1731574502
729
1048
  CanvasRenderer:
730
1049
  m_ObjectHideFlags: 0
@@ -755,6 +1074,216 @@ MonoBehaviour:
755
1074
  ForceDownloadButton: {fileID: 0}
756
1075
  _serviceStatus: {fileID: 0}
757
1076
  playerId: {fileID: 0}
1077
+ --- !u!1001 &1882337410
1078
+ PrefabInstance:
1079
+ m_ObjectHideFlags: 0
1080
+ serializedVersion: 2
1081
+ m_Modification:
1082
+ m_TransformParent: {fileID: 1731574500}
1083
+ m_Modifications:
1084
+ - target: {fileID: 635883761041762154, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1085
+ type: 3}
1086
+ propertyPath: m_Pivot.x
1087
+ value: 0.5
1088
+ objectReference: {fileID: 0}
1089
+ - target: {fileID: 635883761041762154, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1090
+ type: 3}
1091
+ propertyPath: m_Pivot.y
1092
+ value: 0.5
1093
+ objectReference: {fileID: 0}
1094
+ - target: {fileID: 635883761041762154, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1095
+ type: 3}
1096
+ propertyPath: m_RootOrder
1097
+ value: 1
1098
+ objectReference: {fileID: 0}
1099
+ - target: {fileID: 635883761041762154, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1100
+ type: 3}
1101
+ propertyPath: m_AnchorMax.x
1102
+ value: 1
1103
+ objectReference: {fileID: 0}
1104
+ - target: {fileID: 635883761041762154, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1105
+ type: 3}
1106
+ propertyPath: m_AnchorMax.y
1107
+ value: 1
1108
+ objectReference: {fileID: 0}
1109
+ - target: {fileID: 635883761041762154, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1110
+ type: 3}
1111
+ propertyPath: m_AnchorMin.x
1112
+ value: 0
1113
+ objectReference: {fileID: 0}
1114
+ - target: {fileID: 635883761041762154, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1115
+ type: 3}
1116
+ propertyPath: m_AnchorMin.y
1117
+ value: 0
1118
+ objectReference: {fileID: 0}
1119
+ - target: {fileID: 635883761041762154, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1120
+ type: 3}
1121
+ propertyPath: m_SizeDelta.x
1122
+ value: 0
1123
+ objectReference: {fileID: 0}
1124
+ - target: {fileID: 635883761041762154, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1125
+ type: 3}
1126
+ propertyPath: m_SizeDelta.y
1127
+ value: 0
1128
+ objectReference: {fileID: 0}
1129
+ - target: {fileID: 635883761041762154, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1130
+ type: 3}
1131
+ propertyPath: m_LocalPosition.x
1132
+ value: 0
1133
+ objectReference: {fileID: 0}
1134
+ - target: {fileID: 635883761041762154, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1135
+ type: 3}
1136
+ propertyPath: m_LocalPosition.y
1137
+ value: 0
1138
+ objectReference: {fileID: 0}
1139
+ - target: {fileID: 635883761041762154, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1140
+ type: 3}
1141
+ propertyPath: m_LocalPosition.z
1142
+ value: 0
1143
+ objectReference: {fileID: 0}
1144
+ - target: {fileID: 635883761041762154, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1145
+ type: 3}
1146
+ propertyPath: m_LocalRotation.w
1147
+ value: 1
1148
+ objectReference: {fileID: 0}
1149
+ - target: {fileID: 635883761041762154, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1150
+ type: 3}
1151
+ propertyPath: m_LocalRotation.x
1152
+ value: 0
1153
+ objectReference: {fileID: 0}
1154
+ - target: {fileID: 635883761041762154, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1155
+ type: 3}
1156
+ propertyPath: m_LocalRotation.y
1157
+ value: 0
1158
+ objectReference: {fileID: 0}
1159
+ - target: {fileID: 635883761041762154, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1160
+ type: 3}
1161
+ propertyPath: m_LocalRotation.z
1162
+ value: 0
1163
+ objectReference: {fileID: 0}
1164
+ - target: {fileID: 635883761041762154, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1165
+ type: 3}
1166
+ propertyPath: m_AnchoredPosition.x
1167
+ value: 0
1168
+ objectReference: {fileID: 0}
1169
+ - target: {fileID: 635883761041762154, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1170
+ type: 3}
1171
+ propertyPath: m_AnchoredPosition.y
1172
+ value: 0
1173
+ objectReference: {fileID: 0}
1174
+ - target: {fileID: 635883761041762154, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1175
+ type: 3}
1176
+ propertyPath: m_LocalEulerAnglesHint.x
1177
+ value: 0
1178
+ objectReference: {fileID: 0}
1179
+ - target: {fileID: 635883761041762154, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1180
+ type: 3}
1181
+ propertyPath: m_LocalEulerAnglesHint.y
1182
+ value: 0
1183
+ objectReference: {fileID: 0}
1184
+ - target: {fileID: 635883761041762154, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1185
+ type: 3}
1186
+ propertyPath: m_LocalEulerAnglesHint.z
1187
+ value: 0
1188
+ objectReference: {fileID: 0}
1189
+ - target: {fileID: 635883761041762155, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1190
+ type: 3}
1191
+ propertyPath: m_Name
1192
+ value: HomePage
1193
+ objectReference: {fileID: 0}
1194
+ - target: {fileID: 635883761041762155, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1195
+ type: 3}
1196
+ propertyPath: m_IsActive
1197
+ value: 0
1198
+ objectReference: {fileID: 0}
1199
+ m_RemovedComponents: []
1200
+ m_SourcePrefab: {fileID: 100100000, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92, type: 3}
1201
+ --- !u!224 &1882337411 stripped
1202
+ RectTransform:
1203
+ m_CorrespondingSourceObject: {fileID: 635883761041762154, guid: 36bd979e51a66b04d8ea0a3ef4e3fc92,
1204
+ type: 3}
1205
+ m_PrefabInstance: {fileID: 1882337410}
1206
+ m_PrefabAsset: {fileID: 0}
1207
+ --- !u!1 &1971354372
1208
+ GameObject:
1209
+ m_ObjectHideFlags: 0
1210
+ m_CorrespondingSourceObject: {fileID: 0}
1211
+ m_PrefabInstance: {fileID: 0}
1212
+ m_PrefabAsset: {fileID: 0}
1213
+ serializedVersion: 6
1214
+ m_Component:
1215
+ - component: {fileID: 1971354373}
1216
+ - component: {fileID: 1971354375}
1217
+ - component: {fileID: 1971354374}
1218
+ m_Layer: 5
1219
+ m_Name: Container
1220
+ m_TagString: Untagged
1221
+ m_Icon: {fileID: 0}
1222
+ m_NavMeshLayer: 0
1223
+ m_StaticEditorFlags: 0
1224
+ m_IsActive: 1
1225
+ --- !u!224 &1971354373
1226
+ RectTransform:
1227
+ m_ObjectHideFlags: 0
1228
+ m_CorrespondingSourceObject: {fileID: 0}
1229
+ m_PrefabInstance: {fileID: 0}
1230
+ m_PrefabAsset: {fileID: 0}
1231
+ m_GameObject: {fileID: 1971354372}
1232
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
1233
+ m_LocalPosition: {x: 0, y: 0, z: 0}
1234
+ m_LocalScale: {x: 1, y: 1, z: 1}
1235
+ m_ConstrainProportionsScale: 0
1236
+ m_Children:
1237
+ - {fileID: 1731574500}
1238
+ - {fileID: 1174292098}
1239
+ - {fileID: 204526166}
1240
+ - {fileID: 1219674445}
1241
+ m_Father: {fileID: 693354698}
1242
+ m_RootOrder: 0
1243
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1244
+ m_AnchorMin: {x: 0, y: 0}
1245
+ m_AnchorMax: {x: 1, y: 1}
1246
+ m_AnchoredPosition: {x: 0, y: 0}
1247
+ m_SizeDelta: {x: 0, y: 0}
1248
+ m_Pivot: {x: 0.5, y: 0.5}
1249
+ --- !u!114 &1971354374
1250
+ MonoBehaviour:
1251
+ m_ObjectHideFlags: 0
1252
+ m_CorrespondingSourceObject: {fileID: 0}
1253
+ m_PrefabInstance: {fileID: 0}
1254
+ m_PrefabAsset: {fileID: 0}
1255
+ m_GameObject: {fileID: 1971354372}
1256
+ m_Enabled: 1
1257
+ m_EditorHideFlags: 0
1258
+ m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
1259
+ m_Name:
1260
+ m_EditorClassIdentifier:
1261
+ m_Material: {fileID: 0}
1262
+ m_Color: {r: 0.6981132, g: 0.6981132, b: 0.6981132, a: 1}
1263
+ m_RaycastTarget: 1
1264
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
1265
+ m_Maskable: 1
1266
+ m_OnCullStateChanged:
1267
+ m_PersistentCalls:
1268
+ m_Calls: []
1269
+ m_Sprite: {fileID: 21300000, guid: e669acd2805965449b35eb0938af6d2e, type: 3}
1270
+ m_Type: 0
1271
+ m_PreserveAspect: 0
1272
+ m_FillCenter: 1
1273
+ m_FillMethod: 4
1274
+ m_FillAmount: 1
1275
+ m_FillClockwise: 1
1276
+ m_FillOrigin: 0
1277
+ m_UseSpriteMesh: 0
1278
+ m_PixelsPerUnitMultiplier: 1
1279
+ --- !u!222 &1971354375
1280
+ CanvasRenderer:
1281
+ m_ObjectHideFlags: 0
1282
+ m_CorrespondingSourceObject: {fileID: 0}
1283
+ m_PrefabInstance: {fileID: 0}
1284
+ m_PrefabAsset: {fileID: 0}
1285
+ m_GameObject: {fileID: 1971354372}
1286
+ m_CullTransparentMesh: 1
758
1287
  --- !u!1 &2052943415
759
1288
  GameObject:
760
1289
  m_ObjectHideFlags: 0
@@ -791,3 +1320,831 @@ RectTransform:
791
1320
  m_AnchoredPosition: {x: 0, y: 0}
792
1321
  m_SizeDelta: {x: 100, y: 100}
793
1322
  m_Pivot: {x: 0.5, y: 0.5}
1323
+ --- !u!1001 &3356701124556809454
1324
+ PrefabInstance:
1325
+ m_ObjectHideFlags: 0
1326
+ serializedVersion: 2
1327
+ m_Modification:
1328
+ m_TransformParent: {fileID: 1731574500}
1329
+ m_Modifications:
1330
+ - target: {fileID: 635883761041762154, guid: d094c9353e10615498bced73e6f358ee,
1331
+ type: 3}
1332
+ propertyPath: m_Pivot.x
1333
+ value: 0.5
1334
+ objectReference: {fileID: 0}
1335
+ - target: {fileID: 635883761041762154, guid: d094c9353e10615498bced73e6f358ee,
1336
+ type: 3}
1337
+ propertyPath: m_Pivot.y
1338
+ value: 0.5
1339
+ objectReference: {fileID: 0}
1340
+ - target: {fileID: 635883761041762154, guid: d094c9353e10615498bced73e6f358ee,
1341
+ type: 3}
1342
+ propertyPath: m_RootOrder
1343
+ value: 2
1344
+ objectReference: {fileID: 0}
1345
+ - target: {fileID: 635883761041762154, guid: d094c9353e10615498bced73e6f358ee,
1346
+ type: 3}
1347
+ propertyPath: m_AnchorMax.x
1348
+ value: 1
1349
+ objectReference: {fileID: 0}
1350
+ - target: {fileID: 635883761041762154, guid: d094c9353e10615498bced73e6f358ee,
1351
+ type: 3}
1352
+ propertyPath: m_AnchorMax.y
1353
+ value: 1
1354
+ objectReference: {fileID: 0}
1355
+ - target: {fileID: 635883761041762154, guid: d094c9353e10615498bced73e6f358ee,
1356
+ type: 3}
1357
+ propertyPath: m_AnchorMin.x
1358
+ value: 0
1359
+ objectReference: {fileID: 0}
1360
+ - target: {fileID: 635883761041762154, guid: d094c9353e10615498bced73e6f358ee,
1361
+ type: 3}
1362
+ propertyPath: m_AnchorMin.y
1363
+ value: 0
1364
+ objectReference: {fileID: 0}
1365
+ - target: {fileID: 635883761041762154, guid: d094c9353e10615498bced73e6f358ee,
1366
+ type: 3}
1367
+ propertyPath: m_SizeDelta.x
1368
+ value: -0.0000047683716
1369
+ objectReference: {fileID: 0}
1370
+ - target: {fileID: 635883761041762154, guid: d094c9353e10615498bced73e6f358ee,
1371
+ type: 3}
1372
+ propertyPath: m_SizeDelta.y
1373
+ value: 0
1374
+ objectReference: {fileID: 0}
1375
+ - target: {fileID: 635883761041762154, guid: d094c9353e10615498bced73e6f358ee,
1376
+ type: 3}
1377
+ propertyPath: m_LocalPosition.x
1378
+ value: 0
1379
+ objectReference: {fileID: 0}
1380
+ - target: {fileID: 635883761041762154, guid: d094c9353e10615498bced73e6f358ee,
1381
+ type: 3}
1382
+ propertyPath: m_LocalPosition.y
1383
+ value: 0
1384
+ objectReference: {fileID: 0}
1385
+ - target: {fileID: 635883761041762154, guid: d094c9353e10615498bced73e6f358ee,
1386
+ type: 3}
1387
+ propertyPath: m_LocalPosition.z
1388
+ value: 0
1389
+ objectReference: {fileID: 0}
1390
+ - target: {fileID: 635883761041762154, guid: d094c9353e10615498bced73e6f358ee,
1391
+ type: 3}
1392
+ propertyPath: m_LocalRotation.w
1393
+ value: 1
1394
+ objectReference: {fileID: 0}
1395
+ - target: {fileID: 635883761041762154, guid: d094c9353e10615498bced73e6f358ee,
1396
+ type: 3}
1397
+ propertyPath: m_LocalRotation.x
1398
+ value: 0
1399
+ objectReference: {fileID: 0}
1400
+ - target: {fileID: 635883761041762154, guid: d094c9353e10615498bced73e6f358ee,
1401
+ type: 3}
1402
+ propertyPath: m_LocalRotation.y
1403
+ value: 0
1404
+ objectReference: {fileID: 0}
1405
+ - target: {fileID: 635883761041762154, guid: d094c9353e10615498bced73e6f358ee,
1406
+ type: 3}
1407
+ propertyPath: m_LocalRotation.z
1408
+ value: 0
1409
+ objectReference: {fileID: 0}
1410
+ - target: {fileID: 635883761041762154, guid: d094c9353e10615498bced73e6f358ee,
1411
+ type: 3}
1412
+ propertyPath: m_AnchoredPosition.x
1413
+ value: 0
1414
+ objectReference: {fileID: 0}
1415
+ - target: {fileID: 635883761041762154, guid: d094c9353e10615498bced73e6f358ee,
1416
+ type: 3}
1417
+ propertyPath: m_AnchoredPosition.y
1418
+ value: 0
1419
+ objectReference: {fileID: 0}
1420
+ - target: {fileID: 635883761041762154, guid: d094c9353e10615498bced73e6f358ee,
1421
+ type: 3}
1422
+ propertyPath: m_LocalEulerAnglesHint.x
1423
+ value: 0
1424
+ objectReference: {fileID: 0}
1425
+ - target: {fileID: 635883761041762154, guid: d094c9353e10615498bced73e6f358ee,
1426
+ type: 3}
1427
+ propertyPath: m_LocalEulerAnglesHint.y
1428
+ value: 0
1429
+ objectReference: {fileID: 0}
1430
+ - target: {fileID: 635883761041762154, guid: d094c9353e10615498bced73e6f358ee,
1431
+ type: 3}
1432
+ propertyPath: m_LocalEulerAnglesHint.z
1433
+ value: 0
1434
+ objectReference: {fileID: 0}
1435
+ - target: {fileID: 635883761041762155, guid: d094c9353e10615498bced73e6f358ee,
1436
+ type: 3}
1437
+ propertyPath: m_Name
1438
+ value: BytePage
1439
+ objectReference: {fileID: 0}
1440
+ - target: {fileID: 635883761041762155, guid: d094c9353e10615498bced73e6f358ee,
1441
+ type: 3}
1442
+ propertyPath: m_IsActive
1443
+ value: 0
1444
+ objectReference: {fileID: 0}
1445
+ - target: {fileID: 2212756985892097599, guid: d094c9353e10615498bced73e6f358ee,
1446
+ type: 3}
1447
+ propertyPath: m_AnchorMax.x
1448
+ value: 1
1449
+ objectReference: {fileID: 0}
1450
+ - target: {fileID: 2212756985892097599, guid: d094c9353e10615498bced73e6f358ee,
1451
+ type: 3}
1452
+ propertyPath: m_AnchorMax.y
1453
+ value: 1
1454
+ objectReference: {fileID: 0}
1455
+ - target: {fileID: 2212756985892097599, guid: d094c9353e10615498bced73e6f358ee,
1456
+ type: 3}
1457
+ propertyPath: m_SizeDelta.x
1458
+ value: -17
1459
+ objectReference: {fileID: 0}
1460
+ - target: {fileID: 2794362969325788080, guid: d094c9353e10615498bced73e6f358ee,
1461
+ type: 3}
1462
+ propertyPath: m_AnchorMax.y
1463
+ value: 1
1464
+ objectReference: {fileID: 0}
1465
+ - target: {fileID: 2794362969325788080, guid: d094c9353e10615498bced73e6f358ee,
1466
+ type: 3}
1467
+ propertyPath: m_AnchorMin.y
1468
+ value: 1
1469
+ objectReference: {fileID: 0}
1470
+ - target: {fileID: 2794362969325788080, guid: d094c9353e10615498bced73e6f358ee,
1471
+ type: 3}
1472
+ propertyPath: m_SizeDelta.x
1473
+ value: 352.56708
1474
+ objectReference: {fileID: 0}
1475
+ - target: {fileID: 2794362969325788080, guid: d094c9353e10615498bced73e6f358ee,
1476
+ type: 3}
1477
+ propertyPath: m_AnchoredPosition.x
1478
+ value: 1293.9847
1479
+ objectReference: {fileID: 0}
1480
+ - target: {fileID: 2794362969325788080, guid: d094c9353e10615498bced73e6f358ee,
1481
+ type: 3}
1482
+ propertyPath: m_AnchoredPosition.y
1483
+ value: -63.3613
1484
+ objectReference: {fileID: 0}
1485
+ - target: {fileID: 4345597137962554531, guid: d094c9353e10615498bced73e6f358ee,
1486
+ type: 3}
1487
+ propertyPath: m_AnchorMax.x
1488
+ value: 1
1489
+ objectReference: {fileID: 0}
1490
+ - target: {fileID: 4345597137962554531, guid: d094c9353e10615498bced73e6f358ee,
1491
+ type: 3}
1492
+ propertyPath: m_AnchorMax.y
1493
+ value: 1
1494
+ objectReference: {fileID: 0}
1495
+ - target: {fileID: 4650470152832129860, guid: d094c9353e10615498bced73e6f358ee,
1496
+ type: 3}
1497
+ propertyPath: m_AnchorMax.y
1498
+ value: 1
1499
+ objectReference: {fileID: 0}
1500
+ - target: {fileID: 4650470152832129860, guid: d094c9353e10615498bced73e6f358ee,
1501
+ type: 3}
1502
+ propertyPath: m_AnchorMin.y
1503
+ value: 1
1504
+ objectReference: {fileID: 0}
1505
+ - target: {fileID: 4650470152832129860, guid: d094c9353e10615498bced73e6f358ee,
1506
+ type: 3}
1507
+ propertyPath: m_SizeDelta.x
1508
+ value: 352.56708
1509
+ objectReference: {fileID: 0}
1510
+ - target: {fileID: 4650470152832129860, guid: d094c9353e10615498bced73e6f358ee,
1511
+ type: 3}
1512
+ propertyPath: m_AnchoredPosition.x
1513
+ value: 1666.5519
1514
+ objectReference: {fileID: 0}
1515
+ - target: {fileID: 4650470152832129860, guid: d094c9353e10615498bced73e6f358ee,
1516
+ type: 3}
1517
+ propertyPath: m_AnchoredPosition.y
1518
+ value: -63.3613
1519
+ objectReference: {fileID: 0}
1520
+ - target: {fileID: 5762477268795349043, guid: d094c9353e10615498bced73e6f358ee,
1521
+ type: 3}
1522
+ propertyPath: m_AnchorMax.y
1523
+ value: 1
1524
+ objectReference: {fileID: 0}
1525
+ - target: {fileID: 5762477268795349043, guid: d094c9353e10615498bced73e6f358ee,
1526
+ type: 3}
1527
+ propertyPath: m_AnchorMin.y
1528
+ value: 1
1529
+ objectReference: {fileID: 0}
1530
+ - target: {fileID: 5762477268795349043, guid: d094c9353e10615498bced73e6f358ee,
1531
+ type: 3}
1532
+ propertyPath: m_SizeDelta.x
1533
+ value: 352.56708
1534
+ objectReference: {fileID: 0}
1535
+ - target: {fileID: 5762477268795349043, guid: d094c9353e10615498bced73e6f358ee,
1536
+ type: 3}
1537
+ propertyPath: m_AnchoredPosition.x
1538
+ value: 921.4177
1539
+ objectReference: {fileID: 0}
1540
+ - target: {fileID: 5762477268795349043, guid: d094c9353e10615498bced73e6f358ee,
1541
+ type: 3}
1542
+ propertyPath: m_AnchoredPosition.y
1543
+ value: -63.3613
1544
+ objectReference: {fileID: 0}
1545
+ - target: {fileID: 7689217072179168204, guid: d094c9353e10615498bced73e6f358ee,
1546
+ type: 3}
1547
+ propertyPath: m_AnchorMax.y
1548
+ value: 1
1549
+ objectReference: {fileID: 0}
1550
+ - target: {fileID: 7689217072179168204, guid: d094c9353e10615498bced73e6f358ee,
1551
+ type: 3}
1552
+ propertyPath: m_AnchorMin.y
1553
+ value: 1
1554
+ objectReference: {fileID: 0}
1555
+ - target: {fileID: 7689217072179168204, guid: d094c9353e10615498bced73e6f358ee,
1556
+ type: 3}
1557
+ propertyPath: m_SizeDelta.x
1558
+ value: 352.56708
1559
+ objectReference: {fileID: 0}
1560
+ - target: {fileID: 7689217072179168204, guid: d094c9353e10615498bced73e6f358ee,
1561
+ type: 3}
1562
+ propertyPath: m_AnchoredPosition.x
1563
+ value: 548.8506
1564
+ objectReference: {fileID: 0}
1565
+ - target: {fileID: 7689217072179168204, guid: d094c9353e10615498bced73e6f358ee,
1566
+ type: 3}
1567
+ propertyPath: m_AnchoredPosition.y
1568
+ value: -63.3613
1569
+ objectReference: {fileID: 0}
1570
+ - target: {fileID: 8034134120355693084, guid: d094c9353e10615498bced73e6f358ee,
1571
+ type: 3}
1572
+ propertyPath: m_AnchorMax.y
1573
+ value: 1
1574
+ objectReference: {fileID: 0}
1575
+ - target: {fileID: 8034134120355693084, guid: d094c9353e10615498bced73e6f358ee,
1576
+ type: 3}
1577
+ propertyPath: m_AnchorMin.y
1578
+ value: 1
1579
+ objectReference: {fileID: 0}
1580
+ - target: {fileID: 8034134120355693084, guid: d094c9353e10615498bced73e6f358ee,
1581
+ type: 3}
1582
+ propertyPath: m_SizeDelta.x
1583
+ value: 352.56708
1584
+ objectReference: {fileID: 0}
1585
+ - target: {fileID: 8034134120355693084, guid: d094c9353e10615498bced73e6f358ee,
1586
+ type: 3}
1587
+ propertyPath: m_AnchoredPosition.x
1588
+ value: 176.28354
1589
+ objectReference: {fileID: 0}
1590
+ - target: {fileID: 8034134120355693084, guid: d094c9353e10615498bced73e6f358ee,
1591
+ type: 3}
1592
+ propertyPath: m_AnchoredPosition.y
1593
+ value: -63.3613
1594
+ objectReference: {fileID: 0}
1595
+ m_RemovedComponents: []
1596
+ m_SourcePrefab: {fileID: 100100000, guid: d094c9353e10615498bced73e6f358ee, type: 3}
1597
+ --- !u!224 &3356701124556809455 stripped
1598
+ RectTransform:
1599
+ m_CorrespondingSourceObject: {fileID: 635883761041762154, guid: d094c9353e10615498bced73e6f358ee,
1600
+ type: 3}
1601
+ m_PrefabInstance: {fileID: 3356701124556809454}
1602
+ m_PrefabAsset: {fileID: 0}
1603
+ --- !u!1001 &5887600745167712734
1604
+ PrefabInstance:
1605
+ m_ObjectHideFlags: 0
1606
+ serializedVersion: 2
1607
+ m_Modification:
1608
+ m_TransformParent: {fileID: 1731574500}
1609
+ m_Modifications:
1610
+ - target: {fileID: 635883761041762154, guid: abd82458108b7534fb3f909cd4dc9f67,
1611
+ type: 3}
1612
+ propertyPath: m_Pivot.x
1613
+ value: 0.5
1614
+ objectReference: {fileID: 0}
1615
+ - target: {fileID: 635883761041762154, guid: abd82458108b7534fb3f909cd4dc9f67,
1616
+ type: 3}
1617
+ propertyPath: m_Pivot.y
1618
+ value: 0.5
1619
+ objectReference: {fileID: 0}
1620
+ - target: {fileID: 635883761041762154, guid: abd82458108b7534fb3f909cd4dc9f67,
1621
+ type: 3}
1622
+ propertyPath: m_RootOrder
1623
+ value: 3
1624
+ objectReference: {fileID: 0}
1625
+ - target: {fileID: 635883761041762154, guid: abd82458108b7534fb3f909cd4dc9f67,
1626
+ type: 3}
1627
+ propertyPath: m_AnchorMax.x
1628
+ value: 1
1629
+ objectReference: {fileID: 0}
1630
+ - target: {fileID: 635883761041762154, guid: abd82458108b7534fb3f909cd4dc9f67,
1631
+ type: 3}
1632
+ propertyPath: m_AnchorMax.y
1633
+ value: 1
1634
+ objectReference: {fileID: 0}
1635
+ - target: {fileID: 635883761041762154, guid: abd82458108b7534fb3f909cd4dc9f67,
1636
+ type: 3}
1637
+ propertyPath: m_AnchorMin.x
1638
+ value: 0
1639
+ objectReference: {fileID: 0}
1640
+ - target: {fileID: 635883761041762154, guid: abd82458108b7534fb3f909cd4dc9f67,
1641
+ type: 3}
1642
+ propertyPath: m_AnchorMin.y
1643
+ value: 0
1644
+ objectReference: {fileID: 0}
1645
+ - target: {fileID: 635883761041762154, guid: abd82458108b7534fb3f909cd4dc9f67,
1646
+ type: 3}
1647
+ propertyPath: m_SizeDelta.x
1648
+ value: 0
1649
+ objectReference: {fileID: 0}
1650
+ - target: {fileID: 635883761041762154, guid: abd82458108b7534fb3f909cd4dc9f67,
1651
+ type: 3}
1652
+ propertyPath: m_SizeDelta.y
1653
+ value: 0
1654
+ objectReference: {fileID: 0}
1655
+ - target: {fileID: 635883761041762154, guid: abd82458108b7534fb3f909cd4dc9f67,
1656
+ type: 3}
1657
+ propertyPath: m_LocalPosition.x
1658
+ value: 0
1659
+ objectReference: {fileID: 0}
1660
+ - target: {fileID: 635883761041762154, guid: abd82458108b7534fb3f909cd4dc9f67,
1661
+ type: 3}
1662
+ propertyPath: m_LocalPosition.y
1663
+ value: 0
1664
+ objectReference: {fileID: 0}
1665
+ - target: {fileID: 635883761041762154, guid: abd82458108b7534fb3f909cd4dc9f67,
1666
+ type: 3}
1667
+ propertyPath: m_LocalPosition.z
1668
+ value: 0
1669
+ objectReference: {fileID: 0}
1670
+ - target: {fileID: 635883761041762154, guid: abd82458108b7534fb3f909cd4dc9f67,
1671
+ type: 3}
1672
+ propertyPath: m_LocalRotation.w
1673
+ value: 1
1674
+ objectReference: {fileID: 0}
1675
+ - target: {fileID: 635883761041762154, guid: abd82458108b7534fb3f909cd4dc9f67,
1676
+ type: 3}
1677
+ propertyPath: m_LocalRotation.x
1678
+ value: 0
1679
+ objectReference: {fileID: 0}
1680
+ - target: {fileID: 635883761041762154, guid: abd82458108b7534fb3f909cd4dc9f67,
1681
+ type: 3}
1682
+ propertyPath: m_LocalRotation.y
1683
+ value: 0
1684
+ objectReference: {fileID: 0}
1685
+ - target: {fileID: 635883761041762154, guid: abd82458108b7534fb3f909cd4dc9f67,
1686
+ type: 3}
1687
+ propertyPath: m_LocalRotation.z
1688
+ value: 0
1689
+ objectReference: {fileID: 0}
1690
+ - target: {fileID: 635883761041762154, guid: abd82458108b7534fb3f909cd4dc9f67,
1691
+ type: 3}
1692
+ propertyPath: m_AnchoredPosition.x
1693
+ value: 0
1694
+ objectReference: {fileID: 0}
1695
+ - target: {fileID: 635883761041762154, guid: abd82458108b7534fb3f909cd4dc9f67,
1696
+ type: 3}
1697
+ propertyPath: m_AnchoredPosition.y
1698
+ value: 0
1699
+ objectReference: {fileID: 0}
1700
+ - target: {fileID: 635883761041762154, guid: abd82458108b7534fb3f909cd4dc9f67,
1701
+ type: 3}
1702
+ propertyPath: m_LocalEulerAnglesHint.x
1703
+ value: 0
1704
+ objectReference: {fileID: 0}
1705
+ - target: {fileID: 635883761041762154, guid: abd82458108b7534fb3f909cd4dc9f67,
1706
+ type: 3}
1707
+ propertyPath: m_LocalEulerAnglesHint.y
1708
+ value: 0
1709
+ objectReference: {fileID: 0}
1710
+ - target: {fileID: 635883761041762154, guid: abd82458108b7534fb3f909cd4dc9f67,
1711
+ type: 3}
1712
+ propertyPath: m_LocalEulerAnglesHint.z
1713
+ value: 0
1714
+ objectReference: {fileID: 0}
1715
+ - target: {fileID: 635883761041762155, guid: abd82458108b7534fb3f909cd4dc9f67,
1716
+ type: 3}
1717
+ propertyPath: m_Name
1718
+ value: JsonPage
1719
+ objectReference: {fileID: 0}
1720
+ - target: {fileID: 635883761041762155, guid: abd82458108b7534fb3f909cd4dc9f67,
1721
+ type: 3}
1722
+ propertyPath: m_IsActive
1723
+ value: 0
1724
+ objectReference: {fileID: 0}
1725
+ - target: {fileID: 2212756985892097599, guid: abd82458108b7534fb3f909cd4dc9f67,
1726
+ type: 3}
1727
+ propertyPath: m_AnchorMax.x
1728
+ value: 1
1729
+ objectReference: {fileID: 0}
1730
+ - target: {fileID: 2212756985892097599, guid: abd82458108b7534fb3f909cd4dc9f67,
1731
+ type: 3}
1732
+ propertyPath: m_AnchorMax.y
1733
+ value: 1
1734
+ objectReference: {fileID: 0}
1735
+ - target: {fileID: 2212756985892097599, guid: abd82458108b7534fb3f909cd4dc9f67,
1736
+ type: 3}
1737
+ propertyPath: m_SizeDelta.x
1738
+ value: -17
1739
+ objectReference: {fileID: 0}
1740
+ - target: {fileID: 4194576627092199603, guid: abd82458108b7534fb3f909cd4dc9f67,
1741
+ type: 3}
1742
+ propertyPath: m_AnchorMax.y
1743
+ value: 1
1744
+ objectReference: {fileID: 0}
1745
+ - target: {fileID: 4194576627092199603, guid: abd82458108b7534fb3f909cd4dc9f67,
1746
+ type: 3}
1747
+ propertyPath: m_AnchorMin.y
1748
+ value: 1
1749
+ objectReference: {fileID: 0}
1750
+ - target: {fileID: 4194576627092199603, guid: abd82458108b7534fb3f909cd4dc9f67,
1751
+ type: 3}
1752
+ propertyPath: m_SizeDelta.x
1753
+ value: 352.59625
1754
+ objectReference: {fileID: 0}
1755
+ - target: {fileID: 4194576627092199603, guid: abd82458108b7534fb3f909cd4dc9f67,
1756
+ type: 3}
1757
+ propertyPath: m_AnchoredPosition.x
1758
+ value: 548.8944
1759
+ objectReference: {fileID: 0}
1760
+ - target: {fileID: 4194576627092199603, guid: abd82458108b7534fb3f909cd4dc9f67,
1761
+ type: 3}
1762
+ propertyPath: m_AnchoredPosition.y
1763
+ value: -90.912994
1764
+ objectReference: {fileID: 0}
1765
+ - target: {fileID: 4345597137962554531, guid: abd82458108b7534fb3f909cd4dc9f67,
1766
+ type: 3}
1767
+ propertyPath: m_AnchorMax.x
1768
+ value: 1
1769
+ objectReference: {fileID: 0}
1770
+ - target: {fileID: 4345597137962554531, guid: abd82458108b7534fb3f909cd4dc9f67,
1771
+ type: 3}
1772
+ propertyPath: m_AnchorMax.y
1773
+ value: 1
1774
+ objectReference: {fileID: 0}
1775
+ - target: {fileID: 4647708353956536483, guid: abd82458108b7534fb3f909cd4dc9f67,
1776
+ type: 3}
1777
+ propertyPath: m_AnchorMax.y
1778
+ value: 1
1779
+ objectReference: {fileID: 0}
1780
+ - target: {fileID: 4647708353956536483, guid: abd82458108b7534fb3f909cd4dc9f67,
1781
+ type: 3}
1782
+ propertyPath: m_AnchorMin.y
1783
+ value: 1
1784
+ objectReference: {fileID: 0}
1785
+ - target: {fileID: 4647708353956536483, guid: abd82458108b7534fb3f909cd4dc9f67,
1786
+ type: 3}
1787
+ propertyPath: m_SizeDelta.x
1788
+ value: 352.59625
1789
+ objectReference: {fileID: 0}
1790
+ - target: {fileID: 4647708353956536483, guid: abd82458108b7534fb3f909cd4dc9f67,
1791
+ type: 3}
1792
+ propertyPath: m_AnchoredPosition.x
1793
+ value: 1294.0869
1794
+ objectReference: {fileID: 0}
1795
+ - target: {fileID: 4647708353956536483, guid: abd82458108b7534fb3f909cd4dc9f67,
1796
+ type: 3}
1797
+ propertyPath: m_AnchoredPosition.y
1798
+ value: -90.912994
1799
+ objectReference: {fileID: 0}
1800
+ - target: {fileID: 5262732157710295278, guid: abd82458108b7534fb3f909cd4dc9f67,
1801
+ type: 3}
1802
+ propertyPath: m_AnchorMax.y
1803
+ value: 1
1804
+ objectReference: {fileID: 0}
1805
+ - target: {fileID: 5262732157710295278, guid: abd82458108b7534fb3f909cd4dc9f67,
1806
+ type: 3}
1807
+ propertyPath: m_AnchorMin.y
1808
+ value: 1
1809
+ objectReference: {fileID: 0}
1810
+ - target: {fileID: 5262732157710295278, guid: abd82458108b7534fb3f909cd4dc9f67,
1811
+ type: 3}
1812
+ propertyPath: m_SizeDelta.x
1813
+ value: 352.59625
1814
+ objectReference: {fileID: 0}
1815
+ - target: {fileID: 5262732157710295278, guid: abd82458108b7534fb3f909cd4dc9f67,
1816
+ type: 3}
1817
+ propertyPath: m_AnchoredPosition.x
1818
+ value: 1666.6831
1819
+ objectReference: {fileID: 0}
1820
+ - target: {fileID: 5262732157710295278, guid: abd82458108b7534fb3f909cd4dc9f67,
1821
+ type: 3}
1822
+ propertyPath: m_AnchoredPosition.y
1823
+ value: -90.912994
1824
+ objectReference: {fileID: 0}
1825
+ - target: {fileID: 6025393752930569432, guid: abd82458108b7534fb3f909cd4dc9f67,
1826
+ type: 3}
1827
+ propertyPath: m_AnchorMax.y
1828
+ value: 1
1829
+ objectReference: {fileID: 0}
1830
+ - target: {fileID: 6025393752930569432, guid: abd82458108b7534fb3f909cd4dc9f67,
1831
+ type: 3}
1832
+ propertyPath: m_AnchorMin.y
1833
+ value: 1
1834
+ objectReference: {fileID: 0}
1835
+ - target: {fileID: 6025393752930569432, guid: abd82458108b7534fb3f909cd4dc9f67,
1836
+ type: 3}
1837
+ propertyPath: m_SizeDelta.x
1838
+ value: 352.59625
1839
+ objectReference: {fileID: 0}
1840
+ - target: {fileID: 6025393752930569432, guid: abd82458108b7534fb3f909cd4dc9f67,
1841
+ type: 3}
1842
+ propertyPath: m_AnchoredPosition.x
1843
+ value: 921.4906
1844
+ objectReference: {fileID: 0}
1845
+ - target: {fileID: 6025393752930569432, guid: abd82458108b7534fb3f909cd4dc9f67,
1846
+ type: 3}
1847
+ propertyPath: m_AnchoredPosition.y
1848
+ value: -90.912994
1849
+ objectReference: {fileID: 0}
1850
+ - target: {fileID: 7912195197605653447, guid: abd82458108b7534fb3f909cd4dc9f67,
1851
+ type: 3}
1852
+ propertyPath: m_AnchorMax.y
1853
+ value: 1
1854
+ objectReference: {fileID: 0}
1855
+ - target: {fileID: 7912195197605653447, guid: abd82458108b7534fb3f909cd4dc9f67,
1856
+ type: 3}
1857
+ propertyPath: m_AnchorMin.y
1858
+ value: 1
1859
+ objectReference: {fileID: 0}
1860
+ - target: {fileID: 7912195197605653447, guid: abd82458108b7534fb3f909cd4dc9f67,
1861
+ type: 3}
1862
+ propertyPath: m_SizeDelta.x
1863
+ value: 352.59625
1864
+ objectReference: {fileID: 0}
1865
+ - target: {fileID: 7912195197605653447, guid: abd82458108b7534fb3f909cd4dc9f67,
1866
+ type: 3}
1867
+ propertyPath: m_AnchoredPosition.x
1868
+ value: 176.29813
1869
+ objectReference: {fileID: 0}
1870
+ - target: {fileID: 7912195197605653447, guid: abd82458108b7534fb3f909cd4dc9f67,
1871
+ type: 3}
1872
+ propertyPath: m_AnchoredPosition.y
1873
+ value: -90.912994
1874
+ objectReference: {fileID: 0}
1875
+ m_RemovedComponents: []
1876
+ m_SourcePrefab: {fileID: 100100000, guid: abd82458108b7534fb3f909cd4dc9f67, type: 3}
1877
+ --- !u!1001 &6956350461133388510
1878
+ PrefabInstance:
1879
+ m_ObjectHideFlags: 0
1880
+ serializedVersion: 2
1881
+ m_Modification:
1882
+ m_TransformParent: {fileID: 1731574500}
1883
+ m_Modifications:
1884
+ - target: {fileID: 200544312952745098, guid: 0c09c3fa1d60efa458b3961522d46371,
1885
+ type: 3}
1886
+ propertyPath: m_AnchorMax.y
1887
+ value: 1
1888
+ objectReference: {fileID: 0}
1889
+ - target: {fileID: 200544312952745098, guid: 0c09c3fa1d60efa458b3961522d46371,
1890
+ type: 3}
1891
+ propertyPath: m_AnchorMin.y
1892
+ value: 1
1893
+ objectReference: {fileID: 0}
1894
+ - target: {fileID: 200544312952745098, guid: 0c09c3fa1d60efa458b3961522d46371,
1895
+ type: 3}
1896
+ propertyPath: m_SizeDelta.x
1897
+ value: 352.56705
1898
+ objectReference: {fileID: 0}
1899
+ - target: {fileID: 200544312952745098, guid: 0c09c3fa1d60efa458b3961522d46371,
1900
+ type: 3}
1901
+ propertyPath: m_AnchoredPosition.x
1902
+ value: 921.4176
1903
+ objectReference: {fileID: 0}
1904
+ - target: {fileID: 200544312952745098, guid: 0c09c3fa1d60efa458b3961522d46371,
1905
+ type: 3}
1906
+ propertyPath: m_AnchoredPosition.y
1907
+ value: -63.3613
1908
+ objectReference: {fileID: 0}
1909
+ - target: {fileID: 567861509102433744, guid: 0c09c3fa1d60efa458b3961522d46371,
1910
+ type: 3}
1911
+ propertyPath: m_AnchorMax.y
1912
+ value: 1
1913
+ objectReference: {fileID: 0}
1914
+ - target: {fileID: 567861509102433744, guid: 0c09c3fa1d60efa458b3961522d46371,
1915
+ type: 3}
1916
+ propertyPath: m_AnchorMin.y
1917
+ value: 1
1918
+ objectReference: {fileID: 0}
1919
+ - target: {fileID: 567861509102433744, guid: 0c09c3fa1d60efa458b3961522d46371,
1920
+ type: 3}
1921
+ propertyPath: m_SizeDelta.x
1922
+ value: 352.56705
1923
+ objectReference: {fileID: 0}
1924
+ - target: {fileID: 567861509102433744, guid: 0c09c3fa1d60efa458b3961522d46371,
1925
+ type: 3}
1926
+ propertyPath: m_AnchoredPosition.x
1927
+ value: 1293.9847
1928
+ objectReference: {fileID: 0}
1929
+ - target: {fileID: 567861509102433744, guid: 0c09c3fa1d60efa458b3961522d46371,
1930
+ type: 3}
1931
+ propertyPath: m_AnchoredPosition.y
1932
+ value: -63.3613
1933
+ objectReference: {fileID: 0}
1934
+ - target: {fileID: 635883761041762154, guid: 0c09c3fa1d60efa458b3961522d46371,
1935
+ type: 3}
1936
+ propertyPath: m_Pivot.x
1937
+ value: 0.5
1938
+ objectReference: {fileID: 0}
1939
+ - target: {fileID: 635883761041762154, guid: 0c09c3fa1d60efa458b3961522d46371,
1940
+ type: 3}
1941
+ propertyPath: m_Pivot.y
1942
+ value: 0.5
1943
+ objectReference: {fileID: 0}
1944
+ - target: {fileID: 635883761041762154, guid: 0c09c3fa1d60efa458b3961522d46371,
1945
+ type: 3}
1946
+ propertyPath: m_RootOrder
1947
+ value: 4
1948
+ objectReference: {fileID: 0}
1949
+ - target: {fileID: 635883761041762154, guid: 0c09c3fa1d60efa458b3961522d46371,
1950
+ type: 3}
1951
+ propertyPath: m_AnchorMax.x
1952
+ value: 1
1953
+ objectReference: {fileID: 0}
1954
+ - target: {fileID: 635883761041762154, guid: 0c09c3fa1d60efa458b3961522d46371,
1955
+ type: 3}
1956
+ propertyPath: m_AnchorMax.y
1957
+ value: 1
1958
+ objectReference: {fileID: 0}
1959
+ - target: {fileID: 635883761041762154, guid: 0c09c3fa1d60efa458b3961522d46371,
1960
+ type: 3}
1961
+ propertyPath: m_AnchorMin.x
1962
+ value: 0
1963
+ objectReference: {fileID: 0}
1964
+ - target: {fileID: 635883761041762154, guid: 0c09c3fa1d60efa458b3961522d46371,
1965
+ type: 3}
1966
+ propertyPath: m_AnchorMin.y
1967
+ value: 0
1968
+ objectReference: {fileID: 0}
1969
+ - target: {fileID: 635883761041762154, guid: 0c09c3fa1d60efa458b3961522d46371,
1970
+ type: 3}
1971
+ propertyPath: m_SizeDelta.x
1972
+ value: 0
1973
+ objectReference: {fileID: 0}
1974
+ - target: {fileID: 635883761041762154, guid: 0c09c3fa1d60efa458b3961522d46371,
1975
+ type: 3}
1976
+ propertyPath: m_SizeDelta.y
1977
+ value: 0
1978
+ objectReference: {fileID: 0}
1979
+ - target: {fileID: 635883761041762154, guid: 0c09c3fa1d60efa458b3961522d46371,
1980
+ type: 3}
1981
+ propertyPath: m_LocalPosition.x
1982
+ value: 0
1983
+ objectReference: {fileID: 0}
1984
+ - target: {fileID: 635883761041762154, guid: 0c09c3fa1d60efa458b3961522d46371,
1985
+ type: 3}
1986
+ propertyPath: m_LocalPosition.y
1987
+ value: 0
1988
+ objectReference: {fileID: 0}
1989
+ - target: {fileID: 635883761041762154, guid: 0c09c3fa1d60efa458b3961522d46371,
1990
+ type: 3}
1991
+ propertyPath: m_LocalPosition.z
1992
+ value: 0
1993
+ objectReference: {fileID: 0}
1994
+ - target: {fileID: 635883761041762154, guid: 0c09c3fa1d60efa458b3961522d46371,
1995
+ type: 3}
1996
+ propertyPath: m_LocalRotation.w
1997
+ value: 1
1998
+ objectReference: {fileID: 0}
1999
+ - target: {fileID: 635883761041762154, guid: 0c09c3fa1d60efa458b3961522d46371,
2000
+ type: 3}
2001
+ propertyPath: m_LocalRotation.x
2002
+ value: 0
2003
+ objectReference: {fileID: 0}
2004
+ - target: {fileID: 635883761041762154, guid: 0c09c3fa1d60efa458b3961522d46371,
2005
+ type: 3}
2006
+ propertyPath: m_LocalRotation.y
2007
+ value: 0
2008
+ objectReference: {fileID: 0}
2009
+ - target: {fileID: 635883761041762154, guid: 0c09c3fa1d60efa458b3961522d46371,
2010
+ type: 3}
2011
+ propertyPath: m_LocalRotation.z
2012
+ value: 0
2013
+ objectReference: {fileID: 0}
2014
+ - target: {fileID: 635883761041762154, guid: 0c09c3fa1d60efa458b3961522d46371,
2015
+ type: 3}
2016
+ propertyPath: m_AnchoredPosition.x
2017
+ value: 0
2018
+ objectReference: {fileID: 0}
2019
+ - target: {fileID: 635883761041762154, guid: 0c09c3fa1d60efa458b3961522d46371,
2020
+ type: 3}
2021
+ propertyPath: m_AnchoredPosition.y
2022
+ value: 0
2023
+ objectReference: {fileID: 0}
2024
+ - target: {fileID: 635883761041762154, guid: 0c09c3fa1d60efa458b3961522d46371,
2025
+ type: 3}
2026
+ propertyPath: m_LocalEulerAnglesHint.x
2027
+ value: 0
2028
+ objectReference: {fileID: 0}
2029
+ - target: {fileID: 635883761041762154, guid: 0c09c3fa1d60efa458b3961522d46371,
2030
+ type: 3}
2031
+ propertyPath: m_LocalEulerAnglesHint.y
2032
+ value: 0
2033
+ objectReference: {fileID: 0}
2034
+ - target: {fileID: 635883761041762154, guid: 0c09c3fa1d60efa458b3961522d46371,
2035
+ type: 3}
2036
+ propertyPath: m_LocalEulerAnglesHint.z
2037
+ value: 0
2038
+ objectReference: {fileID: 0}
2039
+ - target: {fileID: 635883761041762155, guid: 0c09c3fa1d60efa458b3961522d46371,
2040
+ type: 3}
2041
+ propertyPath: m_Name
2042
+ value: StringPage
2043
+ objectReference: {fileID: 0}
2044
+ - target: {fileID: 635883761041762155, guid: 0c09c3fa1d60efa458b3961522d46371,
2045
+ type: 3}
2046
+ propertyPath: m_IsActive
2047
+ value: 0
2048
+ objectReference: {fileID: 0}
2049
+ - target: {fileID: 2023586671570779930, guid: 0c09c3fa1d60efa458b3961522d46371,
2050
+ type: 3}
2051
+ propertyPath: m_AnchorMax.y
2052
+ value: 1
2053
+ objectReference: {fileID: 0}
2054
+ - target: {fileID: 2023586671570779930, guid: 0c09c3fa1d60efa458b3961522d46371,
2055
+ type: 3}
2056
+ propertyPath: m_AnchorMin.y
2057
+ value: 1
2058
+ objectReference: {fileID: 0}
2059
+ - target: {fileID: 2023586671570779930, guid: 0c09c3fa1d60efa458b3961522d46371,
2060
+ type: 3}
2061
+ propertyPath: m_SizeDelta.x
2062
+ value: 352.56705
2063
+ objectReference: {fileID: 0}
2064
+ - target: {fileID: 2023586671570779930, guid: 0c09c3fa1d60efa458b3961522d46371,
2065
+ type: 3}
2066
+ propertyPath: m_AnchoredPosition.x
2067
+ value: 548.8506
2068
+ objectReference: {fileID: 0}
2069
+ - target: {fileID: 2023586671570779930, guid: 0c09c3fa1d60efa458b3961522d46371,
2070
+ type: 3}
2071
+ propertyPath: m_AnchoredPosition.y
2072
+ value: -63.3613
2073
+ objectReference: {fileID: 0}
2074
+ - target: {fileID: 2212756985892097599, guid: 0c09c3fa1d60efa458b3961522d46371,
2075
+ type: 3}
2076
+ propertyPath: m_AnchorMax.x
2077
+ value: 1
2078
+ objectReference: {fileID: 0}
2079
+ - target: {fileID: 2212756985892097599, guid: 0c09c3fa1d60efa458b3961522d46371,
2080
+ type: 3}
2081
+ propertyPath: m_AnchorMax.y
2082
+ value: 1
2083
+ objectReference: {fileID: 0}
2084
+ - target: {fileID: 2212756985892097599, guid: 0c09c3fa1d60efa458b3961522d46371,
2085
+ type: 3}
2086
+ propertyPath: m_SizeDelta.x
2087
+ value: -17
2088
+ objectReference: {fileID: 0}
2089
+ - target: {fileID: 3521252057411752050, guid: 0c09c3fa1d60efa458b3961522d46371,
2090
+ type: 3}
2091
+ propertyPath: m_AnchorMax.y
2092
+ value: 1
2093
+ objectReference: {fileID: 0}
2094
+ - target: {fileID: 3521252057411752050, guid: 0c09c3fa1d60efa458b3961522d46371,
2095
+ type: 3}
2096
+ propertyPath: m_AnchorMin.y
2097
+ value: 1
2098
+ objectReference: {fileID: 0}
2099
+ - target: {fileID: 3521252057411752050, guid: 0c09c3fa1d60efa458b3961522d46371,
2100
+ type: 3}
2101
+ propertyPath: m_SizeDelta.x
2102
+ value: 352.56705
2103
+ objectReference: {fileID: 0}
2104
+ - target: {fileID: 3521252057411752050, guid: 0c09c3fa1d60efa458b3961522d46371,
2105
+ type: 3}
2106
+ propertyPath: m_AnchoredPosition.x
2107
+ value: 1666.5518
2108
+ objectReference: {fileID: 0}
2109
+ - target: {fileID: 3521252057411752050, guid: 0c09c3fa1d60efa458b3961522d46371,
2110
+ type: 3}
2111
+ propertyPath: m_AnchoredPosition.y
2112
+ value: -63.3613
2113
+ objectReference: {fileID: 0}
2114
+ - target: {fileID: 4345597137962554531, guid: 0c09c3fa1d60efa458b3961522d46371,
2115
+ type: 3}
2116
+ propertyPath: m_AnchorMax.x
2117
+ value: 1
2118
+ objectReference: {fileID: 0}
2119
+ - target: {fileID: 4345597137962554531, guid: 0c09c3fa1d60efa458b3961522d46371,
2120
+ type: 3}
2121
+ propertyPath: m_AnchorMax.y
2122
+ value: 1
2123
+ objectReference: {fileID: 0}
2124
+ - target: {fileID: 5148084730262644263, guid: 0c09c3fa1d60efa458b3961522d46371,
2125
+ type: 3}
2126
+ propertyPath: m_AnchorMax.y
2127
+ value: 1
2128
+ objectReference: {fileID: 0}
2129
+ - target: {fileID: 5148084730262644263, guid: 0c09c3fa1d60efa458b3961522d46371,
2130
+ type: 3}
2131
+ propertyPath: m_AnchorMin.y
2132
+ value: 1
2133
+ objectReference: {fileID: 0}
2134
+ - target: {fileID: 5148084730262644263, guid: 0c09c3fa1d60efa458b3961522d46371,
2135
+ type: 3}
2136
+ propertyPath: m_SizeDelta.x
2137
+ value: 352.56705
2138
+ objectReference: {fileID: 0}
2139
+ - target: {fileID: 5148084730262644263, guid: 0c09c3fa1d60efa458b3961522d46371,
2140
+ type: 3}
2141
+ propertyPath: m_AnchoredPosition.x
2142
+ value: 176.28352
2143
+ objectReference: {fileID: 0}
2144
+ - target: {fileID: 5148084730262644263, guid: 0c09c3fa1d60efa458b3961522d46371,
2145
+ type: 3}
2146
+ propertyPath: m_AnchoredPosition.y
2147
+ value: -63.3613
2148
+ objectReference: {fileID: 0}
2149
+ m_RemovedComponents: []
2150
+ m_SourcePrefab: {fileID: 100100000, guid: 0c09c3fa1d60efa458b3961522d46371, type: 3}