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
@@ -104,7 +104,7 @@ NavMeshSettings:
104
104
  serializedVersion: 2
105
105
  m_ObjectHideFlags: 0
106
106
  m_BuildSettings:
107
- serializedVersion: 3
107
+ serializedVersion: 2
108
108
  agentTypeID: 0
109
109
  agentRadius: 0.5
110
110
  agentHeight: 2
@@ -117,7 +117,7 @@ NavMeshSettings:
117
117
  cellSize: 0.16666667
118
118
  manualTileSize: 0
119
119
  tileSize: 256
120
- buildHeightMesh: 0
120
+ accuratePlacement: 0
121
121
  maxJobWorkers: 0
122
122
  preserveTilesOutsideBounds: 0
123
123
  debug:
@@ -152,9 +152,9 @@ RectTransform:
152
152
  m_LocalScale: {x: 1, y: 1, z: 1}
153
153
  m_ConstrainProportionsScale: 0
154
154
  m_Children:
155
- - {fileID: 1412789052}
156
- - {fileID: 4375801385269977617}
155
+ - {fileID: 1218969643}
157
156
  m_Father: {fileID: 1098410761}
157
+ m_RootOrder: 0
158
158
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
159
159
  m_AnchorMin: {x: 0, y: 0}
160
160
  m_AnchorMax: {x: 1, y: 1}
@@ -175,7 +175,135 @@ MonoBehaviour:
175
175
  m_EditorClassIdentifier:
176
176
  root: {fileID: 1412789052}
177
177
  loadingBlocker: {fileID: 2307906666623612511}
178
+ InfoButton: {fileID: 124659308}
178
179
  config: {fileID: 11400000, guid: 5012d8fe6164745b094c12210d354d07, type: 2}
180
+ --- !u!1 &124659306
181
+ GameObject:
182
+ m_ObjectHideFlags: 0
183
+ m_CorrespondingSourceObject: {fileID: 0}
184
+ m_PrefabInstance: {fileID: 0}
185
+ m_PrefabAsset: {fileID: 0}
186
+ serializedVersion: 6
187
+ m_Component:
188
+ - component: {fileID: 124659307}
189
+ - component: {fileID: 124659310}
190
+ - component: {fileID: 124659309}
191
+ - component: {fileID: 124659308}
192
+ m_Layer: 5
193
+ m_Name: ButtonInfo
194
+ m_TagString: Untagged
195
+ m_Icon: {fileID: 0}
196
+ m_NavMeshLayer: 0
197
+ m_StaticEditorFlags: 0
198
+ m_IsActive: 1
199
+ --- !u!224 &124659307
200
+ RectTransform:
201
+ m_ObjectHideFlags: 0
202
+ m_CorrespondingSourceObject: {fileID: 0}
203
+ m_PrefabInstance: {fileID: 0}
204
+ m_PrefabAsset: {fileID: 0}
205
+ m_GameObject: {fileID: 124659306}
206
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
207
+ m_LocalPosition: {x: 0, y: 0, z: 0}
208
+ m_LocalScale: {x: 1, y: 1, z: 1}
209
+ m_ConstrainProportionsScale: 0
210
+ m_Children: []
211
+ m_Father: {fileID: 1218969643}
212
+ m_RootOrder: 2
213
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
214
+ m_AnchorMin: {x: 1, y: 1}
215
+ m_AnchorMax: {x: 1, y: 1}
216
+ m_AnchoredPosition: {x: -47.9, y: -59.08}
217
+ m_SizeDelta: {x: 52.119, y: 51.6102}
218
+ m_Pivot: {x: 0.5, y: 0.5}
219
+ --- !u!114 &124659308
220
+ MonoBehaviour:
221
+ m_ObjectHideFlags: 0
222
+ m_CorrespondingSourceObject: {fileID: 0}
223
+ m_PrefabInstance: {fileID: 0}
224
+ m_PrefabAsset: {fileID: 0}
225
+ m_GameObject: {fileID: 124659306}
226
+ m_Enabled: 1
227
+ m_EditorHideFlags: 0
228
+ m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3}
229
+ m_Name:
230
+ m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Button
231
+ m_Navigation:
232
+ m_Mode: 3
233
+ m_WrapAround: 0
234
+ m_SelectOnUp: {fileID: 0}
235
+ m_SelectOnDown: {fileID: 0}
236
+ m_SelectOnLeft: {fileID: 0}
237
+ m_SelectOnRight: {fileID: 0}
238
+ m_Transition: 1
239
+ m_Colors:
240
+ m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
241
+ m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
242
+ m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
243
+ m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
244
+ m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
245
+ m_ColorMultiplier: 1
246
+ m_FadeDuration: 0.1
247
+ m_SpriteState:
248
+ m_HighlightedSprite: {fileID: 0}
249
+ m_PressedSprite: {fileID: 0}
250
+ m_SelectedSprite: {fileID: 0}
251
+ m_DisabledSprite: {fileID: 0}
252
+ m_AnimationTriggers:
253
+ m_NormalTrigger: Normal
254
+ m_HighlightedTrigger: Highlighted
255
+ m_PressedTrigger: Pressed
256
+ m_SelectedTrigger: Selected
257
+ m_DisabledTrigger: Disabled
258
+ m_Interactable: 1
259
+ m_TargetGraphic: {fileID: 124659309}
260
+ m_OnClick:
261
+ m_PersistentCalls:
262
+ m_Calls: []
263
+ --- !u!114 &124659309
264
+ MonoBehaviour:
265
+ m_ObjectHideFlags: 0
266
+ m_CorrespondingSourceObject: {fileID: 0}
267
+ m_PrefabInstance: {fileID: 0}
268
+ m_PrefabAsset: {fileID: 0}
269
+ m_GameObject: {fileID: 124659306}
270
+ m_Enabled: 1
271
+ m_EditorHideFlags: 0
272
+ m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
273
+ m_Name:
274
+ m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image
275
+ m_Material: {fileID: 0}
276
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
277
+ m_RaycastTarget: 1
278
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
279
+ m_Maskable: 1
280
+ m_OnCullStateChanged:
281
+ m_PersistentCalls:
282
+ m_Calls: []
283
+ m_Sprite: {fileID: 21300000, guid: be0e2f89747107f4db87e4b22aee2437, type: 3}
284
+ m_Type: 0
285
+ m_PreserveAspect: 1
286
+ m_FillCenter: 1
287
+ m_FillMethod: 4
288
+ m_FillAmount: 1
289
+ m_FillClockwise: 1
290
+ m_FillOrigin: 0
291
+ m_UseSpriteMesh: 0
292
+ m_PixelsPerUnitMultiplier: 1
293
+ --- !u!222 &124659310
294
+ CanvasRenderer:
295
+ m_ObjectHideFlags: 0
296
+ m_CorrespondingSourceObject: {fileID: 0}
297
+ m_PrefabInstance: {fileID: 0}
298
+ m_PrefabAsset: {fileID: 0}
299
+ m_GameObject: {fileID: 124659306}
300
+ m_CullTransparentMesh: 1
301
+ --- !u!224 &152312608 stripped
302
+ RectTransform:
303
+ m_CorrespondingSourceObject: {fileID: 635883761041762154, guid: aac8868a49a714b82adfb0db029c272b,
304
+ type: 3}
305
+ m_PrefabInstance: {fileID: 5206839577065518198}
306
+ m_PrefabAsset: {fileID: 0}
179
307
  --- !u!1 &458544362
180
308
  GameObject:
181
309
  m_ObjectHideFlags: 0
@@ -236,14 +364,20 @@ Transform:
236
364
  m_PrefabInstance: {fileID: 0}
237
365
  m_PrefabAsset: {fileID: 0}
238
366
  m_GameObject: {fileID: 458544362}
239
- serializedVersion: 2
240
367
  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
241
368
  m_LocalPosition: {x: 0, y: 0, z: 0}
242
369
  m_LocalScale: {x: 1, y: 1, z: 1}
243
370
  m_ConstrainProportionsScale: 0
244
371
  m_Children: []
245
372
  m_Father: {fileID: 0}
373
+ m_RootOrder: 1
246
374
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
375
+ --- !u!224 &605278364 stripped
376
+ RectTransform:
377
+ m_CorrespondingSourceObject: {fileID: 635883761041762154, guid: 039852a4ecf9041d4983d10672a54ee2,
378
+ type: 3}
379
+ m_PrefabInstance: {fileID: 8333652705231236576}
380
+ m_PrefabAsset: {fileID: 0}
247
381
  --- !u!1 &789323071
248
382
  GameObject:
249
383
  m_ObjectHideFlags: 0
@@ -273,6 +407,7 @@ RectTransform:
273
407
  m_ConstrainProportionsScale: 0
274
408
  m_Children: []
275
409
  m_Father: {fileID: 1412789052}
410
+ m_RootOrder: 0
276
411
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
277
412
  m_AnchorMin: {x: 0.5, y: 0.5}
278
413
  m_AnchorMax: {x: 0.5, y: 0.5}
@@ -355,9 +490,7 @@ Canvas:
355
490
  m_OverrideSorting: 0
356
491
  m_OverridePixelPerfect: 0
357
492
  m_SortingBucketNormalizedSize: 0
358
- m_VertexColorAlwaysGammaSpace: 0
359
493
  m_AdditionalShaderChannelsFlag: 25
360
- m_UpdateRectTransformForStandalone: 0
361
494
  m_SortingLayerID: 0
362
495
  m_SortingOrder: 0
363
496
  m_TargetDisplay: 0
@@ -375,13 +508,14 @@ RectTransform:
375
508
  m_Children:
376
509
  - {fileID: 32595363}
377
510
  m_Father: {fileID: 0}
511
+ m_RootOrder: 0
378
512
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
379
513
  m_AnchorMin: {x: 0, y: 0}
380
514
  m_AnchorMax: {x: 0, y: 0}
381
515
  m_AnchoredPosition: {x: 0, y: 0}
382
516
  m_SizeDelta: {x: 0, y: 0}
383
517
  m_Pivot: {x: 0, y: 0}
384
- --- !u!1 &1412789051
518
+ --- !u!1 &1197436610
385
519
  GameObject:
386
520
  m_ObjectHideFlags: 0
387
521
  m_CorrespondingSourceObject: {fileID: 0}
@@ -389,57 +523,138 @@ GameObject:
389
523
  m_PrefabAsset: {fileID: 0}
390
524
  serializedVersion: 6
391
525
  m_Component:
392
- - component: {fileID: 1412789052}
393
- - component: {fileID: 1412789054}
394
- - component: {fileID: 1412789053}
526
+ - component: {fileID: 1197436611}
527
+ - component: {fileID: 1197436613}
528
+ - component: {fileID: 1197436612}
395
529
  m_Layer: 5
396
- m_Name: Content
530
+ m_Name: Logo
397
531
  m_TagString: Untagged
398
532
  m_Icon: {fileID: 0}
399
533
  m_NavMeshLayer: 0
400
534
  m_StaticEditorFlags: 0
401
535
  m_IsActive: 1
402
- --- !u!224 &1412789052
536
+ --- !u!224 &1197436611
403
537
  RectTransform:
404
538
  m_ObjectHideFlags: 0
405
539
  m_CorrespondingSourceObject: {fileID: 0}
406
540
  m_PrefabInstance: {fileID: 0}
407
541
  m_PrefabAsset: {fileID: 0}
408
- m_GameObject: {fileID: 1412789051}
542
+ m_GameObject: {fileID: 1197436610}
409
543
  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
410
544
  m_LocalPosition: {x: 0, y: 0, z: 0}
411
545
  m_LocalScale: {x: 1, y: 1, z: 1}
412
546
  m_ConstrainProportionsScale: 0
547
+ m_Children: []
548
+ m_Father: {fileID: 1218969643}
549
+ m_RootOrder: 1
550
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
551
+ m_AnchorMin: {x: 0, y: 1}
552
+ m_AnchorMax: {x: 0, y: 1}
553
+ m_AnchoredPosition: {x: 193, y: -57}
554
+ m_SizeDelta: {x: 332.7265, y: 70.485}
555
+ m_Pivot: {x: 0.5, y: 0.5}
556
+ --- !u!114 &1197436612
557
+ MonoBehaviour:
558
+ m_ObjectHideFlags: 0
559
+ m_CorrespondingSourceObject: {fileID: 0}
560
+ m_PrefabInstance: {fileID: 0}
561
+ m_PrefabAsset: {fileID: 0}
562
+ m_GameObject: {fileID: 1197436610}
563
+ m_Enabled: 1
564
+ m_EditorHideFlags: 0
565
+ m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
566
+ m_Name:
567
+ m_EditorClassIdentifier: UnityEngine.UI::UnityEngine.UI.Image
568
+ m_Material: {fileID: 0}
569
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
570
+ m_RaycastTarget: 1
571
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
572
+ m_Maskable: 1
573
+ m_OnCullStateChanged:
574
+ m_PersistentCalls:
575
+ m_Calls: []
576
+ m_Sprite: {fileID: 21300000, guid: 722fe80901bc1ce44aa0e7bb97a3dcef, type: 3}
577
+ m_Type: 0
578
+ m_PreserveAspect: 1
579
+ m_FillCenter: 1
580
+ m_FillMethod: 4
581
+ m_FillAmount: 1
582
+ m_FillClockwise: 1
583
+ m_FillOrigin: 0
584
+ m_UseSpriteMesh: 0
585
+ m_PixelsPerUnitMultiplier: 1
586
+ --- !u!222 &1197436613
587
+ CanvasRenderer:
588
+ m_ObjectHideFlags: 0
589
+ m_CorrespondingSourceObject: {fileID: 0}
590
+ m_PrefabInstance: {fileID: 0}
591
+ m_PrefabAsset: {fileID: 0}
592
+ m_GameObject: {fileID: 1197436610}
593
+ m_CullTransparentMesh: 1
594
+ --- !u!1 &1218969642
595
+ GameObject:
596
+ m_ObjectHideFlags: 0
597
+ m_CorrespondingSourceObject: {fileID: 0}
598
+ m_PrefabInstance: {fileID: 0}
599
+ m_PrefabAsset: {fileID: 0}
600
+ serializedVersion: 6
601
+ m_Component:
602
+ - component: {fileID: 1218969643}
603
+ - component: {fileID: 1218969645}
604
+ - component: {fileID: 1218969644}
605
+ m_Layer: 5
606
+ m_Name: Container
607
+ m_TagString: Untagged
608
+ m_Icon: {fileID: 0}
609
+ m_NavMeshLayer: 0
610
+ m_StaticEditorFlags: 0
611
+ m_IsActive: 1
612
+ --- !u!224 &1218969643
613
+ RectTransform:
614
+ m_ObjectHideFlags: 0
615
+ m_CorrespondingSourceObject: {fileID: 0}
616
+ m_PrefabInstance: {fileID: 0}
617
+ m_PrefabAsset: {fileID: 0}
618
+ m_GameObject: {fileID: 1218969642}
619
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
620
+ m_LocalPosition: {x: 0, y: 0, z: 0}
621
+ m_LocalScale: {x: 1, y: 1, z: 1}
622
+ m_ConstrainProportionsScale: 0
413
623
  m_Children:
414
- - {fileID: 789323072}
624
+ - {fileID: 1412789052}
625
+ - {fileID: 1197436611}
626
+ - {fileID: 124659307}
627
+ - {fileID: 1566928329}
628
+ - {fileID: 4375801385269977617}
415
629
  m_Father: {fileID: 32595363}
630
+ m_RootOrder: 0
416
631
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
417
632
  m_AnchorMin: {x: 0, y: 0}
418
633
  m_AnchorMax: {x: 1, y: 1}
419
634
  m_AnchoredPosition: {x: 0, y: 0}
420
635
  m_SizeDelta: {x: 0, y: 0}
421
636
  m_Pivot: {x: 0.5, y: 0.5}
422
- --- !u!114 &1412789053
637
+ --- !u!114 &1218969644
423
638
  MonoBehaviour:
424
639
  m_ObjectHideFlags: 0
425
640
  m_CorrespondingSourceObject: {fileID: 0}
426
641
  m_PrefabInstance: {fileID: 0}
427
642
  m_PrefabAsset: {fileID: 0}
428
- m_GameObject: {fileID: 1412789051}
643
+ m_GameObject: {fileID: 1218969642}
429
644
  m_Enabled: 1
430
645
  m_EditorHideFlags: 0
431
646
  m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3}
432
647
  m_Name:
433
648
  m_EditorClassIdentifier:
434
649
  m_Material: {fileID: 0}
435
- m_Color: {r: 0, g: 0, b: 0, a: 1}
650
+ m_Color: {r: 0.6981132, g: 0.6981132, b: 0.6981132, a: 1}
436
651
  m_RaycastTarget: 1
437
652
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
438
653
  m_Maskable: 1
439
654
  m_OnCullStateChanged:
440
655
  m_PersistentCalls:
441
656
  m_Calls: []
442
- m_Sprite: {fileID: 0}
657
+ m_Sprite: {fileID: 21300000, guid: e669acd2805965449b35eb0938af6d2e, type: 3}
443
658
  m_Type: 0
444
659
  m_PreserveAspect: 0
445
660
  m_FillCenter: 1
@@ -449,6 +664,55 @@ MonoBehaviour:
449
664
  m_FillOrigin: 0
450
665
  m_UseSpriteMesh: 0
451
666
  m_PixelsPerUnitMultiplier: 1
667
+ --- !u!222 &1218969645
668
+ CanvasRenderer:
669
+ m_ObjectHideFlags: 0
670
+ m_CorrespondingSourceObject: {fileID: 0}
671
+ m_PrefabInstance: {fileID: 0}
672
+ m_PrefabAsset: {fileID: 0}
673
+ m_GameObject: {fileID: 1218969642}
674
+ m_CullTransparentMesh: 1
675
+ --- !u!1 &1412789051
676
+ GameObject:
677
+ m_ObjectHideFlags: 0
678
+ m_CorrespondingSourceObject: {fileID: 0}
679
+ m_PrefabInstance: {fileID: 0}
680
+ m_PrefabAsset: {fileID: 0}
681
+ serializedVersion: 6
682
+ m_Component:
683
+ - component: {fileID: 1412789052}
684
+ - component: {fileID: 1412789054}
685
+ m_Layer: 5
686
+ m_Name: Content
687
+ m_TagString: Untagged
688
+ m_Icon: {fileID: 0}
689
+ m_NavMeshLayer: 0
690
+ m_StaticEditorFlags: 0
691
+ m_IsActive: 1
692
+ --- !u!224 &1412789052
693
+ RectTransform:
694
+ m_ObjectHideFlags: 0
695
+ m_CorrespondingSourceObject: {fileID: 0}
696
+ m_PrefabInstance: {fileID: 0}
697
+ m_PrefabAsset: {fileID: 0}
698
+ m_GameObject: {fileID: 1412789051}
699
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
700
+ m_LocalPosition: {x: 0, y: 0, z: 0}
701
+ m_LocalScale: {x: 1, y: 1, z: 1}
702
+ m_ConstrainProportionsScale: 0
703
+ m_Children:
704
+ - {fileID: 789323072}
705
+ - {fileID: 1911847522}
706
+ - {fileID: 605278364}
707
+ - {fileID: 152312608}
708
+ m_Father: {fileID: 1218969643}
709
+ m_RootOrder: 0
710
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
711
+ m_AnchorMin: {x: 0, y: 0}
712
+ m_AnchorMax: {x: 1, y: 1}
713
+ m_AnchoredPosition: {x: 0, y: -65.668}
714
+ m_SizeDelta: {x: 0, y: -131.335}
715
+ m_Pivot: {x: 0.5, y: 0.5}
452
716
  --- !u!222 &1412789054
453
717
  CanvasRenderer:
454
718
  m_ObjectHideFlags: 0
@@ -457,6 +721,147 @@ CanvasRenderer:
457
721
  m_PrefabAsset: {fileID: 0}
458
722
  m_GameObject: {fileID: 1412789051}
459
723
  m_CullTransparentMesh: 1
724
+ --- !u!1 &1566928328
725
+ GameObject:
726
+ m_ObjectHideFlags: 0
727
+ m_CorrespondingSourceObject: {fileID: 0}
728
+ m_PrefabInstance: {fileID: 0}
729
+ m_PrefabAsset: {fileID: 0}
730
+ serializedVersion: 6
731
+ m_Component:
732
+ - component: {fileID: 1566928329}
733
+ - component: {fileID: 1566928331}
734
+ - component: {fileID: 1566928330}
735
+ m_Layer: 5
736
+ m_Name: SampleName
737
+ m_TagString: Untagged
738
+ m_Icon: {fileID: 0}
739
+ m_NavMeshLayer: 0
740
+ m_StaticEditorFlags: 0
741
+ m_IsActive: 1
742
+ --- !u!224 &1566928329
743
+ RectTransform:
744
+ m_ObjectHideFlags: 0
745
+ m_CorrespondingSourceObject: {fileID: 0}
746
+ m_PrefabInstance: {fileID: 0}
747
+ m_PrefabAsset: {fileID: 0}
748
+ m_GameObject: {fileID: 1566928328}
749
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
750
+ m_LocalPosition: {x: 0, y: 0, z: 0}
751
+ m_LocalScale: {x: 1, y: 1, z: 1}
752
+ m_ConstrainProportionsScale: 0
753
+ m_Children: []
754
+ m_Father: {fileID: 1218969643}
755
+ m_RootOrder: 3
756
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
757
+ m_AnchorMin: {x: 1, y: 1}
758
+ m_AnchorMax: {x: 1, y: 1}
759
+ m_AnchoredPosition: {x: -440.38342, y: -59.079987}
760
+ m_SizeDelta: {x: 702.2288, y: 74.6392}
761
+ m_Pivot: {x: 0.5, y: 0.5}
762
+ --- !u!114 &1566928330
763
+ MonoBehaviour:
764
+ m_ObjectHideFlags: 0
765
+ m_CorrespondingSourceObject: {fileID: 0}
766
+ m_PrefabInstance: {fileID: 0}
767
+ m_PrefabAsset: {fileID: 0}
768
+ m_GameObject: {fileID: 1566928328}
769
+ m_Enabled: 1
770
+ m_EditorHideFlags: 0
771
+ m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
772
+ m_Name:
773
+ m_EditorClassIdentifier: Unity.TextMeshPro::TMPro.TextMeshProUGUI
774
+ m_Material: {fileID: 0}
775
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
776
+ m_RaycastTarget: 1
777
+ m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
778
+ m_Maskable: 1
779
+ m_OnCullStateChanged:
780
+ m_PersistentCalls:
781
+ m_Calls: []
782
+ m_text: INVENTORY SAMPLE
783
+ m_isRightToLeft: 0
784
+ m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
785
+ m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2}
786
+ m_fontSharedMaterials: []
787
+ m_fontMaterial: {fileID: 0}
788
+ m_fontMaterials: []
789
+ m_fontColor32:
790
+ serializedVersion: 2
791
+ rgba: 4294967295
792
+ m_fontColor: {r: 1, g: 1, b: 1, a: 1}
793
+ m_enableVertexGradient: 0
794
+ m_colorMode: 3
795
+ m_fontColorGradient:
796
+ topLeft: {r: 1, g: 1, b: 1, a: 1}
797
+ topRight: {r: 1, g: 1, b: 1, a: 1}
798
+ bottomLeft: {r: 1, g: 1, b: 1, a: 1}
799
+ bottomRight: {r: 1, g: 1, b: 1, a: 1}
800
+ m_fontColorGradientPreset: {fileID: 0}
801
+ m_spriteAsset: {fileID: 0}
802
+ m_tintAllSprites: 0
803
+ m_StyleSheet: {fileID: 0}
804
+ m_TextStyleHashCode: -1183493901
805
+ m_overrideHtmlColors: 0
806
+ m_faceColor:
807
+ serializedVersion: 2
808
+ rgba: 4294967295
809
+ m_fontSize: 40
810
+ m_fontSizeBase: 40
811
+ m_fontWeight: 400
812
+ m_enableAutoSizing: 0
813
+ m_fontSizeMin: 18
814
+ m_fontSizeMax: 72
815
+ m_fontStyle: 1
816
+ m_HorizontalAlignment: 4
817
+ m_VerticalAlignment: 512
818
+ m_textAlignment: 65535
819
+ m_characterSpacing: 0
820
+ m_wordSpacing: 0
821
+ m_lineSpacing: 0
822
+ m_lineSpacingMax: 0
823
+ m_paragraphSpacing: 0
824
+ m_charWidthMaxAdj: 0
825
+ m_enableWordWrapping: 0
826
+ m_wordWrappingRatios: 0.4
827
+ m_overflowMode: 0
828
+ m_linkedTextComponent: {fileID: 0}
829
+ parentLinkedComponent: {fileID: 0}
830
+ m_enableKerning: 0
831
+ m_enableExtraPadding: 0
832
+ checkPaddingRequired: 0
833
+ m_isRichText: 1
834
+ m_parseCtrlCharacters: 1
835
+ m_isOrthographic: 1
836
+ m_isCullingEnabled: 0
837
+ m_horizontalMapping: 0
838
+ m_verticalMapping: 0
839
+ m_uvLineOffset: 0
840
+ m_geometrySortingOrder: 0
841
+ m_IsTextObjectScaleStatic: 0
842
+ m_VertexBufferAutoSizeReduction: 0
843
+ m_useMaxVisibleDescender: 1
844
+ m_pageToDisplay: 1
845
+ m_margin: {x: 0, y: 0, z: 0, w: 0}
846
+ m_isUsingLegacyAnimationComponent: 0
847
+ m_isVolumetricText: 0
848
+ m_hasFontAssetChanged: 0
849
+ m_baseMaterial: {fileID: 0}
850
+ m_maskOffset: {x: 0, y: 0, z: 0, w: 0}
851
+ --- !u!222 &1566928331
852
+ CanvasRenderer:
853
+ m_ObjectHideFlags: 0
854
+ m_CorrespondingSourceObject: {fileID: 0}
855
+ m_PrefabInstance: {fileID: 0}
856
+ m_PrefabAsset: {fileID: 0}
857
+ m_GameObject: {fileID: 1566928328}
858
+ m_CullTransparentMesh: 1
859
+ --- !u!224 &1911847522 stripped
860
+ RectTransform:
861
+ m_CorrespondingSourceObject: {fileID: 635883761041762154, guid: cf1640e74ac614d43b09983a6a0e3ee4,
862
+ type: 3}
863
+ m_PrefabInstance: {fileID: 5929087956229569702}
864
+ m_PrefabAsset: {fileID: 0}
460
865
  --- !u!1 &2021928063
461
866
  GameObject:
462
867
  m_ObjectHideFlags: 0
@@ -497,17 +902,9 @@ Camera:
497
902
  m_projectionMatrixMode: 1
498
903
  m_GateFitMode: 2
499
904
  m_FOVAxisMode: 0
500
- m_Iso: 200
501
- m_ShutterSpeed: 0.005
502
- m_Aperture: 16
503
- m_FocusDistance: 10
504
- m_FocalLength: 50
505
- m_BladeCount: 5
506
- m_Curvature: {x: 2, y: 11}
507
- m_BarrelClipping: 0.25
508
- m_Anamorphism: 0
509
905
  m_SensorSize: {x: 36, y: 24}
510
906
  m_LensShift: {x: 0, y: 0}
907
+ m_FocalLength: 50
511
908
  m_NormalizedViewPortRect:
512
909
  serializedVersion: 2
513
910
  x: 0
@@ -541,13 +938,13 @@ Transform:
541
938
  m_PrefabInstance: {fileID: 0}
542
939
  m_PrefabAsset: {fileID: 0}
543
940
  m_GameObject: {fileID: 2021928063}
544
- serializedVersion: 2
545
941
  m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
546
942
  m_LocalPosition: {x: 0, y: 0, z: -10}
547
943
  m_LocalScale: {x: 1, y: 1, z: 1}
548
944
  m_ConstrainProportionsScale: 0
549
945
  m_Children: []
550
946
  m_Father: {fileID: 0}
947
+ m_RootOrder: 2
551
948
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
552
949
  --- !u!222 &1200338147386144915
553
950
  CanvasRenderer:
@@ -640,7 +1037,7 @@ MonoBehaviour:
640
1037
  m_enableAutoSizing: 0
641
1038
  m_fontSizeMin: 18
642
1039
  m_fontSizeMax: 72
643
- m_fontStyle: 0
1040
+ m_fontStyle: 1
644
1041
  m_HorizontalAlignment: 1
645
1042
  m_VerticalAlignment: 256
646
1043
  m_textAlignment: 65535
@@ -683,13 +1080,14 @@ RectTransform:
683
1080
  m_PrefabInstance: {fileID: 0}
684
1081
  m_PrefabAsset: {fileID: 0}
685
1082
  m_GameObject: {fileID: 4727660212797090796}
686
- m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
1083
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
687
1084
  m_LocalPosition: {x: 0, y: 0, z: 0}
688
1085
  m_LocalScale: {x: 1, y: 1, z: 1}
689
1086
  m_ConstrainProportionsScale: 0
690
1087
  m_Children:
691
1088
  - {fileID: 5740556254506216597}
692
- m_Father: {fileID: 32595363}
1089
+ m_Father: {fileID: 1218969643}
1090
+ m_RootOrder: 4
693
1091
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
694
1092
  m_AnchorMin: {x: 0, y: 0}
695
1093
  m_AnchorMax: {x: 1, y: 1}
@@ -709,14 +1107,14 @@ MonoBehaviour:
709
1107
  m_Name:
710
1108
  m_EditorClassIdentifier:
711
1109
  m_Material: {fileID: 0}
712
- m_Color: {r: 0, g: 0, b: 0, a: 1}
1110
+ m_Color: {r: 0.6981132, g: 0.6981132, b: 0.6981132, a: 1}
713
1111
  m_RaycastTarget: 1
714
1112
  m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0}
715
1113
  m_Maskable: 1
716
1114
  m_OnCullStateChanged:
717
1115
  m_PersistentCalls:
718
1116
  m_Calls: []
719
- m_Sprite: {fileID: 0}
1117
+ m_Sprite: {fileID: 21300000, guid: e669acd2805965449b35eb0938af6d2e, type: 3}
720
1118
  m_Type: 0
721
1119
  m_PreserveAspect: 0
722
1120
  m_FillCenter: 1
@@ -744,7 +1142,961 @@ GameObject:
744
1142
  m_Icon: {fileID: 0}
745
1143
  m_NavMeshLayer: 0
746
1144
  m_StaticEditorFlags: 0
747
- m_IsActive: 1
1145
+ m_IsActive: 0
1146
+ --- !u!1001 &5206839577065518198
1147
+ PrefabInstance:
1148
+ m_ObjectHideFlags: 0
1149
+ serializedVersion: 2
1150
+ m_Modification:
1151
+ m_TransformParent: {fileID: 1412789052}
1152
+ m_Modifications:
1153
+ - target: {fileID: 166134060727977876, guid: aac8868a49a714b82adfb0db029c272b,
1154
+ type: 3}
1155
+ propertyPath: m_AnchorMax.y
1156
+ value: 1
1157
+ objectReference: {fileID: 0}
1158
+ - target: {fileID: 166134060727977876, guid: aac8868a49a714b82adfb0db029c272b,
1159
+ type: 3}
1160
+ propertyPath: m_AnchorMin.y
1161
+ value: 1
1162
+ objectReference: {fileID: 0}
1163
+ - target: {fileID: 166134060727977876, guid: aac8868a49a714b82adfb0db029c272b,
1164
+ type: 3}
1165
+ propertyPath: m_SizeDelta.x
1166
+ value: 1740.7527
1167
+ objectReference: {fileID: 0}
1168
+ - target: {fileID: 166134060727977876, guid: aac8868a49a714b82adfb0db029c272b,
1169
+ type: 3}
1170
+ propertyPath: m_SizeDelta.y
1171
+ value: 120
1172
+ objectReference: {fileID: 0}
1173
+ - target: {fileID: 166134060727977876, guid: aac8868a49a714b82adfb0db029c272b,
1174
+ type: 3}
1175
+ propertyPath: m_AnchoredPosition.x
1176
+ value: 894.37634
1177
+ objectReference: {fileID: 0}
1178
+ - target: {fileID: 166134060727977876, guid: aac8868a49a714b82adfb0db029c272b,
1179
+ type: 3}
1180
+ propertyPath: m_AnchoredPosition.y
1181
+ value: -324
1182
+ objectReference: {fileID: 0}
1183
+ - target: {fileID: 166134061419722831, guid: aac8868a49a714b82adfb0db029c272b,
1184
+ type: 3}
1185
+ propertyPath: m_AnchorMax.y
1186
+ value: 1
1187
+ objectReference: {fileID: 0}
1188
+ - target: {fileID: 166134061419722831, guid: aac8868a49a714b82adfb0db029c272b,
1189
+ type: 3}
1190
+ propertyPath: m_AnchorMin.y
1191
+ value: 1
1192
+ objectReference: {fileID: 0}
1193
+ - target: {fileID: 166134061419722831, guid: aac8868a49a714b82adfb0db029c272b,
1194
+ type: 3}
1195
+ propertyPath: m_SizeDelta.x
1196
+ value: 1000
1197
+ objectReference: {fileID: 0}
1198
+ - target: {fileID: 166134061419722831, guid: aac8868a49a714b82adfb0db029c272b,
1199
+ type: 3}
1200
+ propertyPath: m_AnchoredPosition.x
1201
+ value: 500
1202
+ objectReference: {fileID: 0}
1203
+ - target: {fileID: 309998421156550689, guid: aac8868a49a714b82adfb0db029c272b,
1204
+ type: 3}
1205
+ propertyPath: m_AnchorMax.y
1206
+ value: 1
1207
+ objectReference: {fileID: 0}
1208
+ - target: {fileID: 309998421156550689, guid: aac8868a49a714b82adfb0db029c272b,
1209
+ type: 3}
1210
+ propertyPath: m_AnchorMin.y
1211
+ value: 1
1212
+ objectReference: {fileID: 0}
1213
+ - target: {fileID: 309998421156550689, guid: aac8868a49a714b82adfb0db029c272b,
1214
+ type: 3}
1215
+ propertyPath: m_SizeDelta.x
1216
+ value: 1000
1217
+ objectReference: {fileID: 0}
1218
+ - target: {fileID: 309998421156550689, guid: aac8868a49a714b82adfb0db029c272b,
1219
+ type: 3}
1220
+ propertyPath: m_AnchoredPosition.x
1221
+ value: 500
1222
+ objectReference: {fileID: 0}
1223
+ - target: {fileID: 309998421156550689, guid: aac8868a49a714b82adfb0db029c272b,
1224
+ type: 3}
1225
+ propertyPath: m_AnchoredPosition.y
1226
+ value: -50
1227
+ objectReference: {fileID: 0}
1228
+ - target: {fileID: 464270301072575444, guid: aac8868a49a714b82adfb0db029c272b,
1229
+ type: 3}
1230
+ propertyPath: m_SizeDelta.y
1231
+ value: 516
1232
+ objectReference: {fileID: 0}
1233
+ - target: {fileID: 635883761041762154, guid: aac8868a49a714b82adfb0db029c272b,
1234
+ type: 3}
1235
+ propertyPath: m_Pivot.x
1236
+ value: 0.5
1237
+ objectReference: {fileID: 0}
1238
+ - target: {fileID: 635883761041762154, guid: aac8868a49a714b82adfb0db029c272b,
1239
+ type: 3}
1240
+ propertyPath: m_Pivot.y
1241
+ value: 0.5
1242
+ objectReference: {fileID: 0}
1243
+ - target: {fileID: 635883761041762154, guid: aac8868a49a714b82adfb0db029c272b,
1244
+ type: 3}
1245
+ propertyPath: m_RootOrder
1246
+ value: 3
1247
+ objectReference: {fileID: 0}
1248
+ - target: {fileID: 635883761041762154, guid: aac8868a49a714b82adfb0db029c272b,
1249
+ type: 3}
1250
+ propertyPath: m_AnchorMax.x
1251
+ value: 1
1252
+ objectReference: {fileID: 0}
1253
+ - target: {fileID: 635883761041762154, guid: aac8868a49a714b82adfb0db029c272b,
1254
+ type: 3}
1255
+ propertyPath: m_AnchorMax.y
1256
+ value: 1
1257
+ objectReference: {fileID: 0}
1258
+ - target: {fileID: 635883761041762154, guid: aac8868a49a714b82adfb0db029c272b,
1259
+ type: 3}
1260
+ propertyPath: m_AnchorMin.x
1261
+ value: 0
1262
+ objectReference: {fileID: 0}
1263
+ - target: {fileID: 635883761041762154, guid: aac8868a49a714b82adfb0db029c272b,
1264
+ type: 3}
1265
+ propertyPath: m_AnchorMin.y
1266
+ value: 0
1267
+ objectReference: {fileID: 0}
1268
+ - target: {fileID: 635883761041762154, guid: aac8868a49a714b82adfb0db029c272b,
1269
+ type: 3}
1270
+ propertyPath: m_SizeDelta.x
1271
+ value: 0
1272
+ objectReference: {fileID: 0}
1273
+ - target: {fileID: 635883761041762154, guid: aac8868a49a714b82adfb0db029c272b,
1274
+ type: 3}
1275
+ propertyPath: m_SizeDelta.y
1276
+ value: 0
1277
+ objectReference: {fileID: 0}
1278
+ - target: {fileID: 635883761041762154, guid: aac8868a49a714b82adfb0db029c272b,
1279
+ type: 3}
1280
+ propertyPath: m_LocalPosition.x
1281
+ value: 0
1282
+ objectReference: {fileID: 0}
1283
+ - target: {fileID: 635883761041762154, guid: aac8868a49a714b82adfb0db029c272b,
1284
+ type: 3}
1285
+ propertyPath: m_LocalPosition.y
1286
+ value: 0
1287
+ objectReference: {fileID: 0}
1288
+ - target: {fileID: 635883761041762154, guid: aac8868a49a714b82adfb0db029c272b,
1289
+ type: 3}
1290
+ propertyPath: m_LocalPosition.z
1291
+ value: 0
1292
+ objectReference: {fileID: 0}
1293
+ - target: {fileID: 635883761041762154, guid: aac8868a49a714b82adfb0db029c272b,
1294
+ type: 3}
1295
+ propertyPath: m_LocalRotation.w
1296
+ value: 1
1297
+ objectReference: {fileID: 0}
1298
+ - target: {fileID: 635883761041762154, guid: aac8868a49a714b82adfb0db029c272b,
1299
+ type: 3}
1300
+ propertyPath: m_LocalRotation.x
1301
+ value: 0
1302
+ objectReference: {fileID: 0}
1303
+ - target: {fileID: 635883761041762154, guid: aac8868a49a714b82adfb0db029c272b,
1304
+ type: 3}
1305
+ propertyPath: m_LocalRotation.y
1306
+ value: 0
1307
+ objectReference: {fileID: 0}
1308
+ - target: {fileID: 635883761041762154, guid: aac8868a49a714b82adfb0db029c272b,
1309
+ type: 3}
1310
+ propertyPath: m_LocalRotation.z
1311
+ value: 0
1312
+ objectReference: {fileID: 0}
1313
+ - target: {fileID: 635883761041762154, guid: aac8868a49a714b82adfb0db029c272b,
1314
+ type: 3}
1315
+ propertyPath: m_AnchoredPosition.x
1316
+ value: 0
1317
+ objectReference: {fileID: 0}
1318
+ - target: {fileID: 635883761041762154, guid: aac8868a49a714b82adfb0db029c272b,
1319
+ type: 3}
1320
+ propertyPath: m_AnchoredPosition.y
1321
+ value: 0
1322
+ objectReference: {fileID: 0}
1323
+ - target: {fileID: 635883761041762154, guid: aac8868a49a714b82adfb0db029c272b,
1324
+ type: 3}
1325
+ propertyPath: m_LocalEulerAnglesHint.x
1326
+ value: 0
1327
+ objectReference: {fileID: 0}
1328
+ - target: {fileID: 635883761041762154, guid: aac8868a49a714b82adfb0db029c272b,
1329
+ type: 3}
1330
+ propertyPath: m_LocalEulerAnglesHint.y
1331
+ value: 0
1332
+ objectReference: {fileID: 0}
1333
+ - target: {fileID: 635883761041762154, guid: aac8868a49a714b82adfb0db029c272b,
1334
+ type: 3}
1335
+ propertyPath: m_LocalEulerAnglesHint.z
1336
+ value: 0
1337
+ objectReference: {fileID: 0}
1338
+ - target: {fileID: 635883761041762155, guid: aac8868a49a714b82adfb0db029c272b,
1339
+ type: 3}
1340
+ propertyPath: m_Name
1341
+ value: HomePage
1342
+ objectReference: {fileID: 0}
1343
+ - target: {fileID: 635883761041762155, guid: aac8868a49a714b82adfb0db029c272b,
1344
+ type: 3}
1345
+ propertyPath: m_IsActive
1346
+ value: 0
1347
+ objectReference: {fileID: 0}
1348
+ - target: {fileID: 1086972918527735292, guid: aac8868a49a714b82adfb0db029c272b,
1349
+ type: 3}
1350
+ propertyPath: m_AnchorMax.y
1351
+ value: 1
1352
+ objectReference: {fileID: 0}
1353
+ - target: {fileID: 1086972918527735292, guid: aac8868a49a714b82adfb0db029c272b,
1354
+ type: 3}
1355
+ propertyPath: m_AnchorMin.y
1356
+ value: 1
1357
+ objectReference: {fileID: 0}
1358
+ - target: {fileID: 1086972918527735292, guid: aac8868a49a714b82adfb0db029c272b,
1359
+ type: 3}
1360
+ propertyPath: m_SizeDelta.x
1361
+ value: 1000
1362
+ objectReference: {fileID: 0}
1363
+ - target: {fileID: 1086972918527735292, guid: aac8868a49a714b82adfb0db029c272b,
1364
+ type: 3}
1365
+ propertyPath: m_AnchoredPosition.x
1366
+ value: 500
1367
+ objectReference: {fileID: 0}
1368
+ - target: {fileID: 1086972918527735292, guid: aac8868a49a714b82adfb0db029c272b,
1369
+ type: 3}
1370
+ propertyPath: m_AnchoredPosition.y
1371
+ value: -50
1372
+ objectReference: {fileID: 0}
1373
+ - target: {fileID: 1220103211916169604, guid: aac8868a49a714b82adfb0db029c272b,
1374
+ type: 3}
1375
+ propertyPath: m_AnchorMax.x
1376
+ value: 1
1377
+ objectReference: {fileID: 0}
1378
+ - target: {fileID: 1220103211916169604, guid: aac8868a49a714b82adfb0db029c272b,
1379
+ type: 3}
1380
+ propertyPath: m_AnchorMax.y
1381
+ value: 1
1382
+ objectReference: {fileID: 0}
1383
+ - target: {fileID: 1220103211916169604, guid: aac8868a49a714b82adfb0db029c272b,
1384
+ type: 3}
1385
+ propertyPath: m_SizeDelta.x
1386
+ value: -17
1387
+ objectReference: {fileID: 0}
1388
+ - target: {fileID: 1463883434366086712, guid: aac8868a49a714b82adfb0db029c272b,
1389
+ type: 3}
1390
+ propertyPath: m_AnchorMax.y
1391
+ value: 1
1392
+ objectReference: {fileID: 0}
1393
+ - target: {fileID: 1463883434366086712, guid: aac8868a49a714b82adfb0db029c272b,
1394
+ type: 3}
1395
+ propertyPath: m_AnchorMin.y
1396
+ value: 1
1397
+ objectReference: {fileID: 0}
1398
+ - target: {fileID: 1463883434366086712, guid: aac8868a49a714b82adfb0db029c272b,
1399
+ type: 3}
1400
+ propertyPath: m_SizeDelta.x
1401
+ value: 1000
1402
+ objectReference: {fileID: 0}
1403
+ - target: {fileID: 1463883434366086712, guid: aac8868a49a714b82adfb0db029c272b,
1404
+ type: 3}
1405
+ propertyPath: m_AnchoredPosition.x
1406
+ value: 500
1407
+ objectReference: {fileID: 0}
1408
+ - target: {fileID: 1463883435393356259, guid: aac8868a49a714b82adfb0db029c272b,
1409
+ type: 3}
1410
+ propertyPath: m_AnchorMax.y
1411
+ value: 1
1412
+ objectReference: {fileID: 0}
1413
+ - target: {fileID: 1463883435393356259, guid: aac8868a49a714b82adfb0db029c272b,
1414
+ type: 3}
1415
+ propertyPath: m_AnchorMin.y
1416
+ value: 1
1417
+ objectReference: {fileID: 0}
1418
+ - target: {fileID: 1463883435393356259, guid: aac8868a49a714b82adfb0db029c272b,
1419
+ type: 3}
1420
+ propertyPath: m_SizeDelta.x
1421
+ value: 1740.7527
1422
+ objectReference: {fileID: 0}
1423
+ - target: {fileID: 1463883435393356259, guid: aac8868a49a714b82adfb0db029c272b,
1424
+ type: 3}
1425
+ propertyPath: m_SizeDelta.y
1426
+ value: 120
1427
+ objectReference: {fileID: 0}
1428
+ - target: {fileID: 1463883435393356259, guid: aac8868a49a714b82adfb0db029c272b,
1429
+ type: 3}
1430
+ propertyPath: m_AnchoredPosition.x
1431
+ value: 894.37634
1432
+ objectReference: {fileID: 0}
1433
+ - target: {fileID: 1463883435393356259, guid: aac8868a49a714b82adfb0db029c272b,
1434
+ type: 3}
1435
+ propertyPath: m_AnchoredPosition.y
1436
+ value: -324
1437
+ objectReference: {fileID: 0}
1438
+ - target: {fileID: 1804619820921742219, guid: aac8868a49a714b82adfb0db029c272b,
1439
+ type: 3}
1440
+ propertyPath: m_AnchorMax.y
1441
+ value: 1
1442
+ objectReference: {fileID: 0}
1443
+ - target: {fileID: 1804619820921742219, guid: aac8868a49a714b82adfb0db029c272b,
1444
+ type: 3}
1445
+ propertyPath: m_AnchorMin.y
1446
+ value: 1
1447
+ objectReference: {fileID: 0}
1448
+ - target: {fileID: 1804619820921742219, guid: aac8868a49a714b82adfb0db029c272b,
1449
+ type: 3}
1450
+ propertyPath: m_SizeDelta.x
1451
+ value: 1000
1452
+ objectReference: {fileID: 0}
1453
+ - target: {fileID: 1804619820921742219, guid: aac8868a49a714b82adfb0db029c272b,
1454
+ type: 3}
1455
+ propertyPath: m_AnchoredPosition.x
1456
+ value: 500
1457
+ objectReference: {fileID: 0}
1458
+ - target: {fileID: 1804619820921742219, guid: aac8868a49a714b82adfb0db029c272b,
1459
+ type: 3}
1460
+ propertyPath: m_AnchoredPosition.y
1461
+ value: -50
1462
+ objectReference: {fileID: 0}
1463
+ - target: {fileID: 2016362598615932258, guid: aac8868a49a714b82adfb0db029c272b,
1464
+ type: 3}
1465
+ propertyPath: m_AnchorMax.x
1466
+ value: 1
1467
+ objectReference: {fileID: 0}
1468
+ - target: {fileID: 2016362598615932258, guid: aac8868a49a714b82adfb0db029c272b,
1469
+ type: 3}
1470
+ propertyPath: m_AnchorMax.y
1471
+ value: 1
1472
+ objectReference: {fileID: 0}
1473
+ - target: {fileID: 2236076581914442814, guid: aac8868a49a714b82adfb0db029c272b,
1474
+ type: 3}
1475
+ propertyPath: m_AnchorMax.y
1476
+ value: 1
1477
+ objectReference: {fileID: 0}
1478
+ - target: {fileID: 2236076581914442814, guid: aac8868a49a714b82adfb0db029c272b,
1479
+ type: 3}
1480
+ propertyPath: m_AnchorMin.y
1481
+ value: 1
1482
+ objectReference: {fileID: 0}
1483
+ - target: {fileID: 2236076581914442814, guid: aac8868a49a714b82adfb0db029c272b,
1484
+ type: 3}
1485
+ propertyPath: m_SizeDelta.x
1486
+ value: 1740.7527
1487
+ objectReference: {fileID: 0}
1488
+ - target: {fileID: 2236076581914442814, guid: aac8868a49a714b82adfb0db029c272b,
1489
+ type: 3}
1490
+ propertyPath: m_SizeDelta.y
1491
+ value: 120
1492
+ objectReference: {fileID: 0}
1493
+ - target: {fileID: 2236076581914442814, guid: aac8868a49a714b82adfb0db029c272b,
1494
+ type: 3}
1495
+ propertyPath: m_AnchoredPosition.x
1496
+ value: 894.37634
1497
+ objectReference: {fileID: 0}
1498
+ - target: {fileID: 2236076581914442814, guid: aac8868a49a714b82adfb0db029c272b,
1499
+ type: 3}
1500
+ propertyPath: m_AnchoredPosition.y
1501
+ value: -192
1502
+ objectReference: {fileID: 0}
1503
+ - target: {fileID: 2236076582347162597, guid: aac8868a49a714b82adfb0db029c272b,
1504
+ type: 3}
1505
+ propertyPath: m_AnchorMax.y
1506
+ value: 1
1507
+ objectReference: {fileID: 0}
1508
+ - target: {fileID: 2236076582347162597, guid: aac8868a49a714b82adfb0db029c272b,
1509
+ type: 3}
1510
+ propertyPath: m_AnchorMin.y
1511
+ value: 1
1512
+ objectReference: {fileID: 0}
1513
+ - target: {fileID: 2236076582347162597, guid: aac8868a49a714b82adfb0db029c272b,
1514
+ type: 3}
1515
+ propertyPath: m_SizeDelta.x
1516
+ value: 1000
1517
+ objectReference: {fileID: 0}
1518
+ - target: {fileID: 2236076582347162597, guid: aac8868a49a714b82adfb0db029c272b,
1519
+ type: 3}
1520
+ propertyPath: m_AnchoredPosition.x
1521
+ value: 500
1522
+ objectReference: {fileID: 0}
1523
+ - target: {fileID: 2409569624877683033, guid: aac8868a49a714b82adfb0db029c272b,
1524
+ type: 3}
1525
+ propertyPath: m_AnchorMax.y
1526
+ value: 1
1527
+ objectReference: {fileID: 0}
1528
+ - target: {fileID: 2409569624877683033, guid: aac8868a49a714b82adfb0db029c272b,
1529
+ type: 3}
1530
+ propertyPath: m_AnchorMin.y
1531
+ value: 1
1532
+ objectReference: {fileID: 0}
1533
+ - target: {fileID: 2409569624877683033, guid: aac8868a49a714b82adfb0db029c272b,
1534
+ type: 3}
1535
+ propertyPath: m_AnchoredPosition.x
1536
+ value: 630
1537
+ objectReference: {fileID: 0}
1538
+ - target: {fileID: 2409569624877683033, guid: aac8868a49a714b82adfb0db029c272b,
1539
+ type: 3}
1540
+ propertyPath: m_AnchoredPosition.y
1541
+ value: -60
1542
+ objectReference: {fileID: 0}
1543
+ - target: {fileID: 2448916993764973747, guid: aac8868a49a714b82adfb0db029c272b,
1544
+ type: 3}
1545
+ propertyPath: m_AnchorMax.y
1546
+ value: 1
1547
+ objectReference: {fileID: 0}
1548
+ - target: {fileID: 2448916993764973747, guid: aac8868a49a714b82adfb0db029c272b,
1549
+ type: 3}
1550
+ propertyPath: m_AnchorMin.y
1551
+ value: 1
1552
+ objectReference: {fileID: 0}
1553
+ - target: {fileID: 2448916993764973747, guid: aac8868a49a714b82adfb0db029c272b,
1554
+ type: 3}
1555
+ propertyPath: m_AnchoredPosition.y
1556
+ value: -60
1557
+ objectReference: {fileID: 0}
1558
+ - target: {fileID: 2642169414819530422, guid: aac8868a49a714b82adfb0db029c272b,
1559
+ type: 3}
1560
+ propertyPath: m_AnchorMax.y
1561
+ value: 1
1562
+ objectReference: {fileID: 0}
1563
+ - target: {fileID: 2642169414819530422, guid: aac8868a49a714b82adfb0db029c272b,
1564
+ type: 3}
1565
+ propertyPath: m_AnchorMin.y
1566
+ value: 1
1567
+ objectReference: {fileID: 0}
1568
+ - target: {fileID: 2642169414819530422, guid: aac8868a49a714b82adfb0db029c272b,
1569
+ type: 3}
1570
+ propertyPath: m_AnchoredPosition.x
1571
+ value: 630
1572
+ objectReference: {fileID: 0}
1573
+ - target: {fileID: 2642169414819530422, guid: aac8868a49a714b82adfb0db029c272b,
1574
+ type: 3}
1575
+ propertyPath: m_AnchoredPosition.y
1576
+ value: -60
1577
+ objectReference: {fileID: 0}
1578
+ - target: {fileID: 3103360762114047366, guid: aac8868a49a714b82adfb0db029c272b,
1579
+ type: 3}
1580
+ propertyPath: m_AnchorMax.y
1581
+ value: 1
1582
+ objectReference: {fileID: 0}
1583
+ - target: {fileID: 3103360762114047366, guid: aac8868a49a714b82adfb0db029c272b,
1584
+ type: 3}
1585
+ propertyPath: m_AnchorMin.y
1586
+ value: 1
1587
+ objectReference: {fileID: 0}
1588
+ - target: {fileID: 3103360762114047366, guid: aac8868a49a714b82adfb0db029c272b,
1589
+ type: 3}
1590
+ propertyPath: m_AnchoredPosition.y
1591
+ value: -60
1592
+ objectReference: {fileID: 0}
1593
+ - target: {fileID: 3337663821328294307, guid: aac8868a49a714b82adfb0db029c272b,
1594
+ type: 3}
1595
+ propertyPath: m_AnchorMax.y
1596
+ value: 1
1597
+ objectReference: {fileID: 0}
1598
+ - target: {fileID: 3337663821328294307, guid: aac8868a49a714b82adfb0db029c272b,
1599
+ type: 3}
1600
+ propertyPath: m_AnchorMin.y
1601
+ value: 1
1602
+ objectReference: {fileID: 0}
1603
+ - target: {fileID: 3337663821328294307, guid: aac8868a49a714b82adfb0db029c272b,
1604
+ type: 3}
1605
+ propertyPath: m_SizeDelta.x
1606
+ value: 1000
1607
+ objectReference: {fileID: 0}
1608
+ - target: {fileID: 3337663821328294307, guid: aac8868a49a714b82adfb0db029c272b,
1609
+ type: 3}
1610
+ propertyPath: m_AnchoredPosition.x
1611
+ value: 500
1612
+ objectReference: {fileID: 0}
1613
+ - target: {fileID: 3337663821819485816, guid: aac8868a49a714b82adfb0db029c272b,
1614
+ type: 3}
1615
+ propertyPath: m_AnchorMax.y
1616
+ value: 1
1617
+ objectReference: {fileID: 0}
1618
+ - target: {fileID: 3337663821819485816, guid: aac8868a49a714b82adfb0db029c272b,
1619
+ type: 3}
1620
+ propertyPath: m_AnchorMin.y
1621
+ value: 1
1622
+ objectReference: {fileID: 0}
1623
+ - target: {fileID: 3337663821819485816, guid: aac8868a49a714b82adfb0db029c272b,
1624
+ type: 3}
1625
+ propertyPath: m_SizeDelta.x
1626
+ value: 1740.7527
1627
+ objectReference: {fileID: 0}
1628
+ - target: {fileID: 3337663821819485816, guid: aac8868a49a714b82adfb0db029c272b,
1629
+ type: 3}
1630
+ propertyPath: m_SizeDelta.y
1631
+ value: 120
1632
+ objectReference: {fileID: 0}
1633
+ - target: {fileID: 3337663821819485816, guid: aac8868a49a714b82adfb0db029c272b,
1634
+ type: 3}
1635
+ propertyPath: m_AnchoredPosition.x
1636
+ value: 894.37634
1637
+ objectReference: {fileID: 0}
1638
+ - target: {fileID: 3337663821819485816, guid: aac8868a49a714b82adfb0db029c272b,
1639
+ type: 3}
1640
+ propertyPath: m_AnchoredPosition.y
1641
+ value: -456
1642
+ objectReference: {fileID: 0}
1643
+ - target: {fileID: 3824881724510878311, guid: aac8868a49a714b82adfb0db029c272b,
1644
+ type: 3}
1645
+ propertyPath: m_AnchorMax.y
1646
+ value: 1
1647
+ objectReference: {fileID: 0}
1648
+ - target: {fileID: 3824881724510878311, guid: aac8868a49a714b82adfb0db029c272b,
1649
+ type: 3}
1650
+ propertyPath: m_AnchorMin.y
1651
+ value: 1
1652
+ objectReference: {fileID: 0}
1653
+ - target: {fileID: 3824881724510878311, guid: aac8868a49a714b82adfb0db029c272b,
1654
+ type: 3}
1655
+ propertyPath: m_SizeDelta.x
1656
+ value: 1000
1657
+ objectReference: {fileID: 0}
1658
+ - target: {fileID: 3824881724510878311, guid: aac8868a49a714b82adfb0db029c272b,
1659
+ type: 3}
1660
+ propertyPath: m_AnchoredPosition.x
1661
+ value: 500
1662
+ objectReference: {fileID: 0}
1663
+ - target: {fileID: 3824881724510878311, guid: aac8868a49a714b82adfb0db029c272b,
1664
+ type: 3}
1665
+ propertyPath: m_AnchoredPosition.y
1666
+ value: -50
1667
+ objectReference: {fileID: 0}
1668
+ - target: {fileID: 4009723199652801580, guid: aac8868a49a714b82adfb0db029c272b,
1669
+ type: 3}
1670
+ propertyPath: m_AnchorMax.y
1671
+ value: 1
1672
+ objectReference: {fileID: 0}
1673
+ - target: {fileID: 4009723199652801580, guid: aac8868a49a714b82adfb0db029c272b,
1674
+ type: 3}
1675
+ propertyPath: m_AnchorMin.y
1676
+ value: 1
1677
+ objectReference: {fileID: 0}
1678
+ - target: {fileID: 4009723199652801580, guid: aac8868a49a714b82adfb0db029c272b,
1679
+ type: 3}
1680
+ propertyPath: m_AnchoredPosition.x
1681
+ value: 630
1682
+ objectReference: {fileID: 0}
1683
+ - target: {fileID: 4009723199652801580, guid: aac8868a49a714b82adfb0db029c272b,
1684
+ type: 3}
1685
+ propertyPath: m_AnchoredPosition.y
1686
+ value: -60
1687
+ objectReference: {fileID: 0}
1688
+ - target: {fileID: 4450892220243116275, guid: aac8868a49a714b82adfb0db029c272b,
1689
+ type: 3}
1690
+ propertyPath: m_AnchorMax.y
1691
+ value: 1
1692
+ objectReference: {fileID: 0}
1693
+ - target: {fileID: 4450892220243116275, guid: aac8868a49a714b82adfb0db029c272b,
1694
+ type: 3}
1695
+ propertyPath: m_AnchorMin.y
1696
+ value: 1
1697
+ objectReference: {fileID: 0}
1698
+ - target: {fileID: 4450892220243116275, guid: aac8868a49a714b82adfb0db029c272b,
1699
+ type: 3}
1700
+ propertyPath: m_AnchoredPosition.y
1701
+ value: -60
1702
+ objectReference: {fileID: 0}
1703
+ - target: {fileID: 4720268961624416475, guid: aac8868a49a714b82adfb0db029c272b,
1704
+ type: 3}
1705
+ propertyPath: m_AnchorMax.y
1706
+ value: 1
1707
+ objectReference: {fileID: 0}
1708
+ - target: {fileID: 4720268961624416475, guid: aac8868a49a714b82adfb0db029c272b,
1709
+ type: 3}
1710
+ propertyPath: m_AnchorMin.y
1711
+ value: 1
1712
+ objectReference: {fileID: 0}
1713
+ - target: {fileID: 4720268961624416475, guid: aac8868a49a714b82adfb0db029c272b,
1714
+ type: 3}
1715
+ propertyPath: m_SizeDelta.x
1716
+ value: 1000
1717
+ objectReference: {fileID: 0}
1718
+ - target: {fileID: 4720268961624416475, guid: aac8868a49a714b82adfb0db029c272b,
1719
+ type: 3}
1720
+ propertyPath: m_AnchoredPosition.x
1721
+ value: 500
1722
+ objectReference: {fileID: 0}
1723
+ - target: {fileID: 4720268962249039616, guid: aac8868a49a714b82adfb0db029c272b,
1724
+ type: 3}
1725
+ propertyPath: m_AnchorMax.y
1726
+ value: 1
1727
+ objectReference: {fileID: 0}
1728
+ - target: {fileID: 4720268962249039616, guid: aac8868a49a714b82adfb0db029c272b,
1729
+ type: 3}
1730
+ propertyPath: m_AnchorMin.y
1731
+ value: 1
1732
+ objectReference: {fileID: 0}
1733
+ - target: {fileID: 4720268962249039616, guid: aac8868a49a714b82adfb0db029c272b,
1734
+ type: 3}
1735
+ propertyPath: m_SizeDelta.x
1736
+ value: 1740.7527
1737
+ objectReference: {fileID: 0}
1738
+ - target: {fileID: 4720268962249039616, guid: aac8868a49a714b82adfb0db029c272b,
1739
+ type: 3}
1740
+ propertyPath: m_SizeDelta.y
1741
+ value: 120
1742
+ objectReference: {fileID: 0}
1743
+ - target: {fileID: 4720268962249039616, guid: aac8868a49a714b82adfb0db029c272b,
1744
+ type: 3}
1745
+ propertyPath: m_AnchoredPosition.x
1746
+ value: 894.37634
1747
+ objectReference: {fileID: 0}
1748
+ - target: {fileID: 4720268962249039616, guid: aac8868a49a714b82adfb0db029c272b,
1749
+ type: 3}
1750
+ propertyPath: m_AnchoredPosition.y
1751
+ value: -60
1752
+ objectReference: {fileID: 0}
1753
+ - target: {fileID: 4954340265535978750, guid: aac8868a49a714b82adfb0db029c272b,
1754
+ type: 3}
1755
+ propertyPath: m_AnchorMax.y
1756
+ value: 1
1757
+ objectReference: {fileID: 0}
1758
+ - target: {fileID: 4954340265535978750, guid: aac8868a49a714b82adfb0db029c272b,
1759
+ type: 3}
1760
+ propertyPath: m_AnchorMin.y
1761
+ value: 1
1762
+ objectReference: {fileID: 0}
1763
+ - target: {fileID: 4954340265535978750, guid: aac8868a49a714b82adfb0db029c272b,
1764
+ type: 3}
1765
+ propertyPath: m_AnchoredPosition.y
1766
+ value: -60
1767
+ objectReference: {fileID: 0}
1768
+ - target: {fileID: 5434952706460140014, guid: aac8868a49a714b82adfb0db029c272b,
1769
+ type: 3}
1770
+ propertyPath: m_AnchorMax.y
1771
+ value: 1
1772
+ objectReference: {fileID: 0}
1773
+ - target: {fileID: 5434952706460140014, guid: aac8868a49a714b82adfb0db029c272b,
1774
+ type: 3}
1775
+ propertyPath: m_AnchorMin.y
1776
+ value: 1
1777
+ objectReference: {fileID: 0}
1778
+ - target: {fileID: 5434952706460140014, guid: aac8868a49a714b82adfb0db029c272b,
1779
+ type: 3}
1780
+ propertyPath: m_SizeDelta.x
1781
+ value: 1000
1782
+ objectReference: {fileID: 0}
1783
+ - target: {fileID: 5434952706460140014, guid: aac8868a49a714b82adfb0db029c272b,
1784
+ type: 3}
1785
+ propertyPath: m_AnchoredPosition.x
1786
+ value: 500
1787
+ objectReference: {fileID: 0}
1788
+ - target: {fileID: 5434952706488925749, guid: aac8868a49a714b82adfb0db029c272b,
1789
+ type: 3}
1790
+ propertyPath: m_AnchorMax.y
1791
+ value: 1
1792
+ objectReference: {fileID: 0}
1793
+ - target: {fileID: 5434952706488925749, guid: aac8868a49a714b82adfb0db029c272b,
1794
+ type: 3}
1795
+ propertyPath: m_AnchorMin.y
1796
+ value: 1
1797
+ objectReference: {fileID: 0}
1798
+ - target: {fileID: 5434952706488925749, guid: aac8868a49a714b82adfb0db029c272b,
1799
+ type: 3}
1800
+ propertyPath: m_SizeDelta.x
1801
+ value: 1740.7527
1802
+ objectReference: {fileID: 0}
1803
+ - target: {fileID: 5434952706488925749, guid: aac8868a49a714b82adfb0db029c272b,
1804
+ type: 3}
1805
+ propertyPath: m_SizeDelta.y
1806
+ value: 120
1807
+ objectReference: {fileID: 0}
1808
+ - target: {fileID: 5434952706488925749, guid: aac8868a49a714b82adfb0db029c272b,
1809
+ type: 3}
1810
+ propertyPath: m_AnchoredPosition.x
1811
+ value: 894.37634
1812
+ objectReference: {fileID: 0}
1813
+ - target: {fileID: 5434952706488925749, guid: aac8868a49a714b82adfb0db029c272b,
1814
+ type: 3}
1815
+ propertyPath: m_AnchoredPosition.y
1816
+ value: -60
1817
+ objectReference: {fileID: 0}
1818
+ - target: {fileID: 5481251785778726506, guid: aac8868a49a714b82adfb0db029c272b,
1819
+ type: 3}
1820
+ propertyPath: m_AnchorMax.y
1821
+ value: 1
1822
+ objectReference: {fileID: 0}
1823
+ - target: {fileID: 5481251785778726506, guid: aac8868a49a714b82adfb0db029c272b,
1824
+ type: 3}
1825
+ propertyPath: m_AnchorMin.y
1826
+ value: 1
1827
+ objectReference: {fileID: 0}
1828
+ - target: {fileID: 5481251785778726506, guid: aac8868a49a714b82adfb0db029c272b,
1829
+ type: 3}
1830
+ propertyPath: m_SizeDelta.x
1831
+ value: 1000
1832
+ objectReference: {fileID: 0}
1833
+ - target: {fileID: 5481251785778726506, guid: aac8868a49a714b82adfb0db029c272b,
1834
+ type: 3}
1835
+ propertyPath: m_AnchoredPosition.x
1836
+ value: 500
1837
+ objectReference: {fileID: 0}
1838
+ - target: {fileID: 5481251785778726506, guid: aac8868a49a714b82adfb0db029c272b,
1839
+ type: 3}
1840
+ propertyPath: m_AnchoredPosition.y
1841
+ value: -50
1842
+ objectReference: {fileID: 0}
1843
+ - target: {fileID: 5665672220898824225, guid: aac8868a49a714b82adfb0db029c272b,
1844
+ type: 3}
1845
+ propertyPath: m_AnchorMax.y
1846
+ value: 1
1847
+ objectReference: {fileID: 0}
1848
+ - target: {fileID: 5665672220898824225, guid: aac8868a49a714b82adfb0db029c272b,
1849
+ type: 3}
1850
+ propertyPath: m_AnchorMin.y
1851
+ value: 1
1852
+ objectReference: {fileID: 0}
1853
+ - target: {fileID: 5665672220898824225, guid: aac8868a49a714b82adfb0db029c272b,
1854
+ type: 3}
1855
+ propertyPath: m_AnchoredPosition.x
1856
+ value: 630
1857
+ objectReference: {fileID: 0}
1858
+ - target: {fileID: 5665672220898824225, guid: aac8868a49a714b82adfb0db029c272b,
1859
+ type: 3}
1860
+ propertyPath: m_AnchoredPosition.y
1861
+ value: -60
1862
+ objectReference: {fileID: 0}
1863
+ - target: {fileID: 5739712124588241270, guid: aac8868a49a714b82adfb0db029c272b,
1864
+ type: 3}
1865
+ propertyPath: m_SizeDelta.y
1866
+ value: 384
1867
+ objectReference: {fileID: 0}
1868
+ - target: {fileID: 5776326765952784938, guid: aac8868a49a714b82adfb0db029c272b,
1869
+ type: 3}
1870
+ propertyPath: m_AnchorMax.y
1871
+ value: 1
1872
+ objectReference: {fileID: 0}
1873
+ - target: {fileID: 5776326765952784938, guid: aac8868a49a714b82adfb0db029c272b,
1874
+ type: 3}
1875
+ propertyPath: m_AnchorMin.y
1876
+ value: 1
1877
+ objectReference: {fileID: 0}
1878
+ - target: {fileID: 5776326765952784938, guid: aac8868a49a714b82adfb0db029c272b,
1879
+ type: 3}
1880
+ propertyPath: m_SizeDelta.x
1881
+ value: 1000
1882
+ objectReference: {fileID: 0}
1883
+ - target: {fileID: 5776326765952784938, guid: aac8868a49a714b82adfb0db029c272b,
1884
+ type: 3}
1885
+ propertyPath: m_AnchoredPosition.x
1886
+ value: 500
1887
+ objectReference: {fileID: 0}
1888
+ - target: {fileID: 5776326765952784938, guid: aac8868a49a714b82adfb0db029c272b,
1889
+ type: 3}
1890
+ propertyPath: m_AnchoredPosition.y
1891
+ value: -50
1892
+ objectReference: {fileID: 0}
1893
+ - target: {fileID: 6292697818112564654, guid: aac8868a49a714b82adfb0db029c272b,
1894
+ type: 3}
1895
+ propertyPath: m_AnchorMax.y
1896
+ value: 1
1897
+ objectReference: {fileID: 0}
1898
+ - target: {fileID: 6292697818112564654, guid: aac8868a49a714b82adfb0db029c272b,
1899
+ type: 3}
1900
+ propertyPath: m_AnchorMin.y
1901
+ value: 1
1902
+ objectReference: {fileID: 0}
1903
+ - target: {fileID: 6292697818112564654, guid: aac8868a49a714b82adfb0db029c272b,
1904
+ type: 3}
1905
+ propertyPath: m_SizeDelta.x
1906
+ value: 1000
1907
+ objectReference: {fileID: 0}
1908
+ - target: {fileID: 6292697818112564654, guid: aac8868a49a714b82adfb0db029c272b,
1909
+ type: 3}
1910
+ propertyPath: m_AnchoredPosition.x
1911
+ value: 500
1912
+ objectReference: {fileID: 0}
1913
+ - target: {fileID: 6292697818686726773, guid: aac8868a49a714b82adfb0db029c272b,
1914
+ type: 3}
1915
+ propertyPath: m_AnchorMax.y
1916
+ value: 1
1917
+ objectReference: {fileID: 0}
1918
+ - target: {fileID: 6292697818686726773, guid: aac8868a49a714b82adfb0db029c272b,
1919
+ type: 3}
1920
+ propertyPath: m_AnchorMin.y
1921
+ value: 1
1922
+ objectReference: {fileID: 0}
1923
+ - target: {fileID: 6292697818686726773, guid: aac8868a49a714b82adfb0db029c272b,
1924
+ type: 3}
1925
+ propertyPath: m_SizeDelta.x
1926
+ value: 1740.7527
1927
+ objectReference: {fileID: 0}
1928
+ - target: {fileID: 6292697818686726773, guid: aac8868a49a714b82adfb0db029c272b,
1929
+ type: 3}
1930
+ propertyPath: m_SizeDelta.y
1931
+ value: 120
1932
+ objectReference: {fileID: 0}
1933
+ - target: {fileID: 6292697818686726773, guid: aac8868a49a714b82adfb0db029c272b,
1934
+ type: 3}
1935
+ propertyPath: m_AnchoredPosition.x
1936
+ value: 894.37634
1937
+ objectReference: {fileID: 0}
1938
+ - target: {fileID: 6292697818686726773, guid: aac8868a49a714b82adfb0db029c272b,
1939
+ type: 3}
1940
+ propertyPath: m_AnchoredPosition.y
1941
+ value: -192
1942
+ objectReference: {fileID: 0}
1943
+ - target: {fileID: 6540552371687422751, guid: aac8868a49a714b82adfb0db029c272b,
1944
+ type: 3}
1945
+ propertyPath: m_AnchorMax.y
1946
+ value: 1
1947
+ objectReference: {fileID: 0}
1948
+ - target: {fileID: 6540552371687422751, guid: aac8868a49a714b82adfb0db029c272b,
1949
+ type: 3}
1950
+ propertyPath: m_AnchorMin.y
1951
+ value: 1
1952
+ objectReference: {fileID: 0}
1953
+ - target: {fileID: 6540552371687422751, guid: aac8868a49a714b82adfb0db029c272b,
1954
+ type: 3}
1955
+ propertyPath: m_SizeDelta.x
1956
+ value: 1000
1957
+ objectReference: {fileID: 0}
1958
+ - target: {fileID: 6540552371687422751, guid: aac8868a49a714b82adfb0db029c272b,
1959
+ type: 3}
1960
+ propertyPath: m_AnchoredPosition.x
1961
+ value: 500
1962
+ objectReference: {fileID: 0}
1963
+ - target: {fileID: 6540552371687422751, guid: aac8868a49a714b82adfb0db029c272b,
1964
+ type: 3}
1965
+ propertyPath: m_AnchoredPosition.y
1966
+ value: -50
1967
+ objectReference: {fileID: 0}
1968
+ - target: {fileID: 6584178527825851439, guid: aac8868a49a714b82adfb0db029c272b,
1969
+ type: 3}
1970
+ propertyPath: m_AnchorMax.x
1971
+ value: 1
1972
+ objectReference: {fileID: 0}
1973
+ - target: {fileID: 6584178527825851439, guid: aac8868a49a714b82adfb0db029c272b,
1974
+ type: 3}
1975
+ propertyPath: m_AnchorMax.y
1976
+ value: 1
1977
+ objectReference: {fileID: 0}
1978
+ - target: {fileID: 7115541581159516621, guid: aac8868a49a714b82adfb0db029c272b,
1979
+ type: 3}
1980
+ propertyPath: m_AnchorMax.y
1981
+ value: 1
1982
+ objectReference: {fileID: 0}
1983
+ - target: {fileID: 7115541581159516621, guid: aac8868a49a714b82adfb0db029c272b,
1984
+ type: 3}
1985
+ propertyPath: m_AnchorMin.y
1986
+ value: 1
1987
+ objectReference: {fileID: 0}
1988
+ - target: {fileID: 7115541581159516621, guid: aac8868a49a714b82adfb0db029c272b,
1989
+ type: 3}
1990
+ propertyPath: m_AnchoredPosition.x
1991
+ value: 630
1992
+ objectReference: {fileID: 0}
1993
+ - target: {fileID: 7115541581159516621, guid: aac8868a49a714b82adfb0db029c272b,
1994
+ type: 3}
1995
+ propertyPath: m_AnchoredPosition.y
1996
+ value: -60
1997
+ objectReference: {fileID: 0}
1998
+ - target: {fileID: 7556657249441965330, guid: aac8868a49a714b82adfb0db029c272b,
1999
+ type: 3}
2000
+ propertyPath: m_AnchorMax.y
2001
+ value: 1
2002
+ objectReference: {fileID: 0}
2003
+ - target: {fileID: 7556657249441965330, guid: aac8868a49a714b82adfb0db029c272b,
2004
+ type: 3}
2005
+ propertyPath: m_AnchorMin.y
2006
+ value: 1
2007
+ objectReference: {fileID: 0}
2008
+ - target: {fileID: 7556657249441965330, guid: aac8868a49a714b82adfb0db029c272b,
2009
+ type: 3}
2010
+ propertyPath: m_AnchoredPosition.y
2011
+ value: -60
2012
+ objectReference: {fileID: 0}
2013
+ - target: {fileID: 7959132808205707366, guid: aac8868a49a714b82adfb0db029c272b,
2014
+ type: 3}
2015
+ propertyPath: m_AnchorMax.x
2016
+ value: 1
2017
+ objectReference: {fileID: 0}
2018
+ - target: {fileID: 7959132808205707366, guid: aac8868a49a714b82adfb0db029c272b,
2019
+ type: 3}
2020
+ propertyPath: m_AnchorMax.y
2021
+ value: 1
2022
+ objectReference: {fileID: 0}
2023
+ - target: {fileID: 7959132808205707366, guid: aac8868a49a714b82adfb0db029c272b,
2024
+ type: 3}
2025
+ propertyPath: m_SizeDelta.x
2026
+ value: -17
2027
+ objectReference: {fileID: 0}
2028
+ - target: {fileID: 8128478805875344573, guid: aac8868a49a714b82adfb0db029c272b,
2029
+ type: 3}
2030
+ propertyPath: m_AnchorMax.y
2031
+ value: 1
2032
+ objectReference: {fileID: 0}
2033
+ - target: {fileID: 8128478805875344573, guid: aac8868a49a714b82adfb0db029c272b,
2034
+ type: 3}
2035
+ propertyPath: m_AnchorMin.y
2036
+ value: 1
2037
+ objectReference: {fileID: 0}
2038
+ - target: {fileID: 8128478805875344573, guid: aac8868a49a714b82adfb0db029c272b,
2039
+ type: 3}
2040
+ propertyPath: m_AnchoredPosition.x
2041
+ value: 630
2042
+ objectReference: {fileID: 0}
2043
+ - target: {fileID: 8128478805875344573, guid: aac8868a49a714b82adfb0db029c272b,
2044
+ type: 3}
2045
+ propertyPath: m_AnchoredPosition.y
2046
+ value: -60
2047
+ objectReference: {fileID: 0}
2048
+ - target: {fileID: 8473727735720763064, guid: aac8868a49a714b82adfb0db029c272b,
2049
+ type: 3}
2050
+ propertyPath: m_AnchorMax.y
2051
+ value: 1
2052
+ objectReference: {fileID: 0}
2053
+ - target: {fileID: 8473727735720763064, guid: aac8868a49a714b82adfb0db029c272b,
2054
+ type: 3}
2055
+ propertyPath: m_AnchorMin.y
2056
+ value: 1
2057
+ objectReference: {fileID: 0}
2058
+ - target: {fileID: 8473727735720763064, guid: aac8868a49a714b82adfb0db029c272b,
2059
+ type: 3}
2060
+ propertyPath: m_AnchoredPosition.y
2061
+ value: -60
2062
+ objectReference: {fileID: 0}
2063
+ - target: {fileID: 8905527001681144160, guid: aac8868a49a714b82adfb0db029c272b,
2064
+ type: 3}
2065
+ propertyPath: m_AnchorMax.y
2066
+ value: 1
2067
+ objectReference: {fileID: 0}
2068
+ - target: {fileID: 8905527001681144160, guid: aac8868a49a714b82adfb0db029c272b,
2069
+ type: 3}
2070
+ propertyPath: m_AnchorMin.y
2071
+ value: 1
2072
+ objectReference: {fileID: 0}
2073
+ - target: {fileID: 8905527001681144160, guid: aac8868a49a714b82adfb0db029c272b,
2074
+ type: 3}
2075
+ propertyPath: m_AnchoredPosition.x
2076
+ value: 630
2077
+ objectReference: {fileID: 0}
2078
+ - target: {fileID: 8905527001681144160, guid: aac8868a49a714b82adfb0db029c272b,
2079
+ type: 3}
2080
+ propertyPath: m_AnchoredPosition.y
2081
+ value: -60
2082
+ objectReference: {fileID: 0}
2083
+ - target: {fileID: 9133400707463230309, guid: aac8868a49a714b82adfb0db029c272b,
2084
+ type: 3}
2085
+ propertyPath: m_AnchorMax.y
2086
+ value: 1
2087
+ objectReference: {fileID: 0}
2088
+ - target: {fileID: 9133400707463230309, guid: aac8868a49a714b82adfb0db029c272b,
2089
+ type: 3}
2090
+ propertyPath: m_AnchorMin.y
2091
+ value: 1
2092
+ objectReference: {fileID: 0}
2093
+ - target: {fileID: 9133400707463230309, guid: aac8868a49a714b82adfb0db029c272b,
2094
+ type: 3}
2095
+ propertyPath: m_AnchoredPosition.y
2096
+ value: -60
2097
+ objectReference: {fileID: 0}
2098
+ m_RemovedComponents: []
2099
+ m_SourcePrefab: {fileID: 100100000, guid: aac8868a49a714b82adfb0db029c272b, type: 3}
748
2100
  --- !u!222 &5210553750647963825
749
2101
  CanvasRenderer:
750
2102
  m_ObjectHideFlags: 0
@@ -766,16 +2118,488 @@ RectTransform:
766
2118
  m_ConstrainProportionsScale: 0
767
2119
  m_Children: []
768
2120
  m_Father: {fileID: 4375801385269977617}
2121
+ m_RootOrder: 0
769
2122
  m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
770
2123
  m_AnchorMin: {x: 0.5, y: 0.5}
771
2124
  m_AnchorMax: {x: 0.5, y: 0.5}
772
2125
  m_AnchoredPosition: {x: 0, y: 0}
773
2126
  m_SizeDelta: {x: 200, y: 50}
774
2127
  m_Pivot: {x: 0.5, y: 0.5}
775
- --- !u!1660057539 &9223372036854775807
776
- SceneRoots:
2128
+ --- !u!1001 &5929087956229569702
2129
+ PrefabInstance:
2130
+ m_ObjectHideFlags: 0
2131
+ serializedVersion: 2
2132
+ m_Modification:
2133
+ m_TransformParent: {fileID: 1412789052}
2134
+ m_Modifications:
2135
+ - target: {fileID: 635883761041762154, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2136
+ type: 3}
2137
+ propertyPath: m_Pivot.x
2138
+ value: 0.5
2139
+ objectReference: {fileID: 0}
2140
+ - target: {fileID: 635883761041762154, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2141
+ type: 3}
2142
+ propertyPath: m_Pivot.y
2143
+ value: 0.5
2144
+ objectReference: {fileID: 0}
2145
+ - target: {fileID: 635883761041762154, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2146
+ type: 3}
2147
+ propertyPath: m_RootOrder
2148
+ value: 1
2149
+ objectReference: {fileID: 0}
2150
+ - target: {fileID: 635883761041762154, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2151
+ type: 3}
2152
+ propertyPath: m_AnchorMax.x
2153
+ value: 1
2154
+ objectReference: {fileID: 0}
2155
+ - target: {fileID: 635883761041762154, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2156
+ type: 3}
2157
+ propertyPath: m_AnchorMax.y
2158
+ value: 1
2159
+ objectReference: {fileID: 0}
2160
+ - target: {fileID: 635883761041762154, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2161
+ type: 3}
2162
+ propertyPath: m_AnchorMin.x
2163
+ value: 0
2164
+ objectReference: {fileID: 0}
2165
+ - target: {fileID: 635883761041762154, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2166
+ type: 3}
2167
+ propertyPath: m_AnchorMin.y
2168
+ value: 0
2169
+ objectReference: {fileID: 0}
2170
+ - target: {fileID: 635883761041762154, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2171
+ type: 3}
2172
+ propertyPath: m_SizeDelta.x
2173
+ value: 0
2174
+ objectReference: {fileID: 0}
2175
+ - target: {fileID: 635883761041762154, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2176
+ type: 3}
2177
+ propertyPath: m_SizeDelta.y
2178
+ value: 0
2179
+ objectReference: {fileID: 0}
2180
+ - target: {fileID: 635883761041762154, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2181
+ type: 3}
2182
+ propertyPath: m_LocalPosition.x
2183
+ value: 0
2184
+ objectReference: {fileID: 0}
2185
+ - target: {fileID: 635883761041762154, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2186
+ type: 3}
2187
+ propertyPath: m_LocalPosition.y
2188
+ value: 0
2189
+ objectReference: {fileID: 0}
2190
+ - target: {fileID: 635883761041762154, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2191
+ type: 3}
2192
+ propertyPath: m_LocalPosition.z
2193
+ value: 0
2194
+ objectReference: {fileID: 0}
2195
+ - target: {fileID: 635883761041762154, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2196
+ type: 3}
2197
+ propertyPath: m_LocalRotation.w
2198
+ value: 1
2199
+ objectReference: {fileID: 0}
2200
+ - target: {fileID: 635883761041762154, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2201
+ type: 3}
2202
+ propertyPath: m_LocalRotation.x
2203
+ value: 0
2204
+ objectReference: {fileID: 0}
2205
+ - target: {fileID: 635883761041762154, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2206
+ type: 3}
2207
+ propertyPath: m_LocalRotation.y
2208
+ value: 0
2209
+ objectReference: {fileID: 0}
2210
+ - target: {fileID: 635883761041762154, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2211
+ type: 3}
2212
+ propertyPath: m_LocalRotation.z
2213
+ value: 0
2214
+ objectReference: {fileID: 0}
2215
+ - target: {fileID: 635883761041762154, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2216
+ type: 3}
2217
+ propertyPath: m_AnchoredPosition.x
2218
+ value: 0
2219
+ objectReference: {fileID: 0}
2220
+ - target: {fileID: 635883761041762154, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2221
+ type: 3}
2222
+ propertyPath: m_AnchoredPosition.y
2223
+ value: 0
2224
+ objectReference: {fileID: 0}
2225
+ - target: {fileID: 635883761041762154, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2226
+ type: 3}
2227
+ propertyPath: m_LocalEulerAnglesHint.x
2228
+ value: 0
2229
+ objectReference: {fileID: 0}
2230
+ - target: {fileID: 635883761041762154, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2231
+ type: 3}
2232
+ propertyPath: m_LocalEulerAnglesHint.y
2233
+ value: 0
2234
+ objectReference: {fileID: 0}
2235
+ - target: {fileID: 635883761041762154, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2236
+ type: 3}
2237
+ propertyPath: m_LocalEulerAnglesHint.z
2238
+ value: 0
2239
+ objectReference: {fileID: 0}
2240
+ - target: {fileID: 635883761041762155, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2241
+ type: 3}
2242
+ propertyPath: m_Name
2243
+ value: CurrencyInfoDisplay
2244
+ objectReference: {fileID: 0}
2245
+ - target: {fileID: 635883761041762155, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2246
+ type: 3}
2247
+ propertyPath: m_IsActive
2248
+ value: 0
2249
+ objectReference: {fileID: 0}
2250
+ - target: {fileID: 1219669853104078099, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2251
+ type: 3}
2252
+ propertyPath: m_AnchorMax.x
2253
+ value: 1
2254
+ objectReference: {fileID: 0}
2255
+ - target: {fileID: 1219669853104078099, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2256
+ type: 3}
2257
+ propertyPath: m_AnchorMax.y
2258
+ value: 1
2259
+ objectReference: {fileID: 0}
2260
+ - target: {fileID: 1219669853104078099, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2261
+ type: 3}
2262
+ propertyPath: m_SizeDelta.x
2263
+ value: -20
2264
+ objectReference: {fileID: 0}
2265
+ - target: {fileID: 1476290187165730070, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2266
+ type: 3}
2267
+ propertyPath: m_AnchorMax.y
2268
+ value: 1
2269
+ objectReference: {fileID: 0}
2270
+ - target: {fileID: 1476290187165730070, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2271
+ type: 3}
2272
+ propertyPath: m_AnchorMin.y
2273
+ value: 1
2274
+ objectReference: {fileID: 0}
2275
+ - target: {fileID: 1476290187165730070, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2276
+ type: 3}
2277
+ propertyPath: m_SizeDelta.y
2278
+ value: 55.038
2279
+ objectReference: {fileID: 0}
2280
+ - target: {fileID: 1476290187165730070, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2281
+ type: 3}
2282
+ propertyPath: m_AnchoredPosition.x
2283
+ value: 348.157
2284
+ objectReference: {fileID: 0}
2285
+ - target: {fileID: 1935418499532225633, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2286
+ type: 3}
2287
+ propertyPath: m_AnchorMax.y
2288
+ value: 1
2289
+ objectReference: {fileID: 0}
2290
+ - target: {fileID: 1935418499532225633, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2291
+ type: 3}
2292
+ propertyPath: m_AnchorMin.y
2293
+ value: 1
2294
+ objectReference: {fileID: 0}
2295
+ - target: {fileID: 1935418499532225633, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2296
+ type: 3}
2297
+ propertyPath: m_AnchoredPosition.x
2298
+ value: 469.945
2299
+ objectReference: {fileID: 0}
2300
+ - target: {fileID: 1935418499532225633, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2301
+ type: 3}
2302
+ propertyPath: m_AnchoredPosition.y
2303
+ value: -55.038
2304
+ objectReference: {fileID: 0}
2305
+ - target: {fileID: 3953927089144450767, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2306
+ type: 3}
2307
+ propertyPath: m_AnchorMax.x
2308
+ value: 1
2309
+ objectReference: {fileID: 0}
2310
+ - target: {fileID: 3953927089144450767, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2311
+ type: 3}
2312
+ propertyPath: m_AnchorMax.y
2313
+ value: 1
2314
+ objectReference: {fileID: 0}
2315
+ - target: {fileID: 6021364939011389008, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2316
+ type: 3}
2317
+ propertyPath: m_AnchorMax.y
2318
+ value: 1
2319
+ objectReference: {fileID: 0}
2320
+ - target: {fileID: 6021364939011389008, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2321
+ type: 3}
2322
+ propertyPath: m_AnchorMin.y
2323
+ value: 1
2324
+ objectReference: {fileID: 0}
2325
+ - target: {fileID: 6021364939011389008, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2326
+ type: 3}
2327
+ propertyPath: m_AnchoredPosition.x
2328
+ value: 50
2329
+ objectReference: {fileID: 0}
2330
+ - target: {fileID: 6021364939011389008, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2331
+ type: 3}
2332
+ propertyPath: m_AnchoredPosition.y
2333
+ value: -5.037998
2334
+ objectReference: {fileID: 0}
2335
+ - target: {fileID: 7662562955429560822, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2336
+ type: 3}
2337
+ propertyPath: m_AnchorMax.y
2338
+ value: 1
2339
+ objectReference: {fileID: 0}
2340
+ - target: {fileID: 7662562955429560822, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2341
+ type: 3}
2342
+ propertyPath: m_AnchorMin.y
2343
+ value: 1
2344
+ objectReference: {fileID: 0}
2345
+ - target: {fileID: 7662562955429560822, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2346
+ type: 3}
2347
+ propertyPath: m_SizeDelta.y
2348
+ value: 55.038
2349
+ objectReference: {fileID: 0}
2350
+ - target: {fileID: 7662562955429560822, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2351
+ type: 3}
2352
+ propertyPath: m_AnchoredPosition.x
2353
+ value: 347.2255
2354
+ objectReference: {fileID: 0}
2355
+ - target: {fileID: 7662562955429560822, guid: cf1640e74ac614d43b09983a6a0e3ee4,
2356
+ type: 3}
2357
+ propertyPath: m_AnchoredPosition.y
2358
+ value: -55.038
2359
+ objectReference: {fileID: 0}
2360
+ m_RemovedComponents: []
2361
+ m_SourcePrefab: {fileID: 100100000, guid: cf1640e74ac614d43b09983a6a0e3ee4, type: 3}
2362
+ --- !u!1001 &8333652705231236576
2363
+ PrefabInstance:
777
2364
  m_ObjectHideFlags: 0
778
- m_Roots:
779
- - {fileID: 2021928066}
780
- - {fileID: 1098410761}
781
- - {fileID: 458544365}
2365
+ serializedVersion: 2
2366
+ m_Modification:
2367
+ m_TransformParent: {fileID: 1412789052}
2368
+ m_Modifications:
2369
+ - target: {fileID: 635883761041762154, guid: 039852a4ecf9041d4983d10672a54ee2,
2370
+ type: 3}
2371
+ propertyPath: m_Pivot.x
2372
+ value: 0.5
2373
+ objectReference: {fileID: 0}
2374
+ - target: {fileID: 635883761041762154, guid: 039852a4ecf9041d4983d10672a54ee2,
2375
+ type: 3}
2376
+ propertyPath: m_Pivot.y
2377
+ value: 0.5
2378
+ objectReference: {fileID: 0}
2379
+ - target: {fileID: 635883761041762154, guid: 039852a4ecf9041d4983d10672a54ee2,
2380
+ type: 3}
2381
+ propertyPath: m_RootOrder
2382
+ value: 2
2383
+ objectReference: {fileID: 0}
2384
+ - target: {fileID: 635883761041762154, guid: 039852a4ecf9041d4983d10672a54ee2,
2385
+ type: 3}
2386
+ propertyPath: m_AnchorMax.x
2387
+ value: 1
2388
+ objectReference: {fileID: 0}
2389
+ - target: {fileID: 635883761041762154, guid: 039852a4ecf9041d4983d10672a54ee2,
2390
+ type: 3}
2391
+ propertyPath: m_AnchorMax.y
2392
+ value: 1
2393
+ objectReference: {fileID: 0}
2394
+ - target: {fileID: 635883761041762154, guid: 039852a4ecf9041d4983d10672a54ee2,
2395
+ type: 3}
2396
+ propertyPath: m_AnchorMin.x
2397
+ value: 0
2398
+ objectReference: {fileID: 0}
2399
+ - target: {fileID: 635883761041762154, guid: 039852a4ecf9041d4983d10672a54ee2,
2400
+ type: 3}
2401
+ propertyPath: m_AnchorMin.y
2402
+ value: 0
2403
+ objectReference: {fileID: 0}
2404
+ - target: {fileID: 635883761041762154, guid: 039852a4ecf9041d4983d10672a54ee2,
2405
+ type: 3}
2406
+ propertyPath: m_SizeDelta.x
2407
+ value: 0
2408
+ objectReference: {fileID: 0}
2409
+ - target: {fileID: 635883761041762154, guid: 039852a4ecf9041d4983d10672a54ee2,
2410
+ type: 3}
2411
+ propertyPath: m_SizeDelta.y
2412
+ value: 0
2413
+ objectReference: {fileID: 0}
2414
+ - target: {fileID: 635883761041762154, guid: 039852a4ecf9041d4983d10672a54ee2,
2415
+ type: 3}
2416
+ propertyPath: m_LocalPosition.x
2417
+ value: 0
2418
+ objectReference: {fileID: 0}
2419
+ - target: {fileID: 635883761041762154, guid: 039852a4ecf9041d4983d10672a54ee2,
2420
+ type: 3}
2421
+ propertyPath: m_LocalPosition.y
2422
+ value: 0
2423
+ objectReference: {fileID: 0}
2424
+ - target: {fileID: 635883761041762154, guid: 039852a4ecf9041d4983d10672a54ee2,
2425
+ type: 3}
2426
+ propertyPath: m_LocalPosition.z
2427
+ value: 0
2428
+ objectReference: {fileID: 0}
2429
+ - target: {fileID: 635883761041762154, guid: 039852a4ecf9041d4983d10672a54ee2,
2430
+ type: 3}
2431
+ propertyPath: m_LocalRotation.w
2432
+ value: 1
2433
+ objectReference: {fileID: 0}
2434
+ - target: {fileID: 635883761041762154, guid: 039852a4ecf9041d4983d10672a54ee2,
2435
+ type: 3}
2436
+ propertyPath: m_LocalRotation.x
2437
+ value: 0
2438
+ objectReference: {fileID: 0}
2439
+ - target: {fileID: 635883761041762154, guid: 039852a4ecf9041d4983d10672a54ee2,
2440
+ type: 3}
2441
+ propertyPath: m_LocalRotation.y
2442
+ value: 0
2443
+ objectReference: {fileID: 0}
2444
+ - target: {fileID: 635883761041762154, guid: 039852a4ecf9041d4983d10672a54ee2,
2445
+ type: 3}
2446
+ propertyPath: m_LocalRotation.z
2447
+ value: 0
2448
+ objectReference: {fileID: 0}
2449
+ - target: {fileID: 635883761041762154, guid: 039852a4ecf9041d4983d10672a54ee2,
2450
+ type: 3}
2451
+ propertyPath: m_AnchoredPosition.x
2452
+ value: 0
2453
+ objectReference: {fileID: 0}
2454
+ - target: {fileID: 635883761041762154, guid: 039852a4ecf9041d4983d10672a54ee2,
2455
+ type: 3}
2456
+ propertyPath: m_AnchoredPosition.y
2457
+ value: 0
2458
+ objectReference: {fileID: 0}
2459
+ - target: {fileID: 635883761041762154, guid: 039852a4ecf9041d4983d10672a54ee2,
2460
+ type: 3}
2461
+ propertyPath: m_LocalEulerAnglesHint.x
2462
+ value: 0
2463
+ objectReference: {fileID: 0}
2464
+ - target: {fileID: 635883761041762154, guid: 039852a4ecf9041d4983d10672a54ee2,
2465
+ type: 3}
2466
+ propertyPath: m_LocalEulerAnglesHint.y
2467
+ value: 0
2468
+ objectReference: {fileID: 0}
2469
+ - target: {fileID: 635883761041762154, guid: 039852a4ecf9041d4983d10672a54ee2,
2470
+ type: 3}
2471
+ propertyPath: m_LocalEulerAnglesHint.z
2472
+ value: 0
2473
+ objectReference: {fileID: 0}
2474
+ - target: {fileID: 635883761041762155, guid: 039852a4ecf9041d4983d10672a54ee2,
2475
+ type: 3}
2476
+ propertyPath: m_Name
2477
+ value: ItemInfoPage
2478
+ objectReference: {fileID: 0}
2479
+ - target: {fileID: 635883761041762155, guid: 039852a4ecf9041d4983d10672a54ee2,
2480
+ type: 3}
2481
+ propertyPath: m_IsActive
2482
+ value: 0
2483
+ objectReference: {fileID: 0}
2484
+ - target: {fileID: 1219669853104078099, guid: 039852a4ecf9041d4983d10672a54ee2,
2485
+ type: 3}
2486
+ propertyPath: m_AnchorMax.x
2487
+ value: 1
2488
+ objectReference: {fileID: 0}
2489
+ - target: {fileID: 1219669853104078099, guid: 039852a4ecf9041d4983d10672a54ee2,
2490
+ type: 3}
2491
+ propertyPath: m_AnchorMax.y
2492
+ value: 1
2493
+ objectReference: {fileID: 0}
2494
+ - target: {fileID: 1219669853104078099, guid: 039852a4ecf9041d4983d10672a54ee2,
2495
+ type: 3}
2496
+ propertyPath: m_SizeDelta.x
2497
+ value: -20
2498
+ objectReference: {fileID: 0}
2499
+ - target: {fileID: 1476290187165730070, guid: 039852a4ecf9041d4983d10672a54ee2,
2500
+ type: 3}
2501
+ propertyPath: m_AnchorMax.y
2502
+ value: 1
2503
+ objectReference: {fileID: 0}
2504
+ - target: {fileID: 1476290187165730070, guid: 039852a4ecf9041d4983d10672a54ee2,
2505
+ type: 3}
2506
+ propertyPath: m_AnchorMin.y
2507
+ value: 1
2508
+ objectReference: {fileID: 0}
2509
+ - target: {fileID: 1476290187165730070, guid: 039852a4ecf9041d4983d10672a54ee2,
2510
+ type: 3}
2511
+ propertyPath: m_SizeDelta.y
2512
+ value: 50
2513
+ objectReference: {fileID: 0}
2514
+ - target: {fileID: 1476290187165730070, guid: 039852a4ecf9041d4983d10672a54ee2,
2515
+ type: 3}
2516
+ propertyPath: m_AnchoredPosition.x
2517
+ value: 222.579
2518
+ objectReference: {fileID: 0}
2519
+ - target: {fileID: 3953927089144450767, guid: 039852a4ecf9041d4983d10672a54ee2,
2520
+ type: 3}
2521
+ propertyPath: m_AnchorMax.x
2522
+ value: 1
2523
+ objectReference: {fileID: 0}
2524
+ - target: {fileID: 3953927089144450767, guid: 039852a4ecf9041d4983d10672a54ee2,
2525
+ type: 3}
2526
+ propertyPath: m_AnchorMax.y
2527
+ value: 1
2528
+ objectReference: {fileID: 0}
2529
+ - target: {fileID: 7449860504453984039, guid: 039852a4ecf9041d4983d10672a54ee2,
2530
+ type: 3}
2531
+ propertyPath: m_AnchorMax.y
2532
+ value: 1
2533
+ objectReference: {fileID: 0}
2534
+ - target: {fileID: 7449860504453984039, guid: 039852a4ecf9041d4983d10672a54ee2,
2535
+ type: 3}
2536
+ propertyPath: m_AnchorMin.y
2537
+ value: 1
2538
+ objectReference: {fileID: 0}
2539
+ - target: {fileID: 7449860504453984039, guid: 039852a4ecf9041d4983d10672a54ee2,
2540
+ type: 3}
2541
+ propertyPath: m_SizeDelta.y
2542
+ value: 50
2543
+ objectReference: {fileID: 0}
2544
+ - target: {fileID: 7449860504453984039, guid: 039852a4ecf9041d4983d10672a54ee2,
2545
+ type: 3}
2546
+ propertyPath: m_AnchoredPosition.x
2547
+ value: 279.106
2548
+ objectReference: {fileID: 0}
2549
+ - target: {fileID: 7449860504453984039, guid: 039852a4ecf9041d4983d10672a54ee2,
2550
+ type: 3}
2551
+ propertyPath: m_AnchoredPosition.y
2552
+ value: -100
2553
+ objectReference: {fileID: 0}
2554
+ - target: {fileID: 7662562955429560822, guid: 039852a4ecf9041d4983d10672a54ee2,
2555
+ type: 3}
2556
+ propertyPath: m_AnchorMax.y
2557
+ value: 1
2558
+ objectReference: {fileID: 0}
2559
+ - target: {fileID: 7662562955429560822, guid: 039852a4ecf9041d4983d10672a54ee2,
2560
+ type: 3}
2561
+ propertyPath: m_AnchorMin.y
2562
+ value: 1
2563
+ objectReference: {fileID: 0}
2564
+ - target: {fileID: 7662562955429560822, guid: 039852a4ecf9041d4983d10672a54ee2,
2565
+ type: 3}
2566
+ propertyPath: m_SizeDelta.y
2567
+ value: 50
2568
+ objectReference: {fileID: 0}
2569
+ - target: {fileID: 7662562955429560822, guid: 039852a4ecf9041d4983d10672a54ee2,
2570
+ type: 3}
2571
+ propertyPath: m_AnchoredPosition.x
2572
+ value: 279.106
2573
+ objectReference: {fileID: 0}
2574
+ - target: {fileID: 7662562955429560822, guid: 039852a4ecf9041d4983d10672a54ee2,
2575
+ type: 3}
2576
+ propertyPath: m_AnchoredPosition.y
2577
+ value: -150
2578
+ objectReference: {fileID: 0}
2579
+ - target: {fileID: 7980856527081403918, guid: 039852a4ecf9041d4983d10672a54ee2,
2580
+ type: 3}
2581
+ propertyPath: m_AnchorMax.y
2582
+ value: 1
2583
+ objectReference: {fileID: 0}
2584
+ - target: {fileID: 7980856527081403918, guid: 039852a4ecf9041d4983d10672a54ee2,
2585
+ type: 3}
2586
+ propertyPath: m_AnchorMin.y
2587
+ value: 1
2588
+ objectReference: {fileID: 0}
2589
+ - target: {fileID: 7980856527081403918, guid: 039852a4ecf9041d4983d10672a54ee2,
2590
+ type: 3}
2591
+ propertyPath: m_SizeDelta.y
2592
+ value: 50
2593
+ objectReference: {fileID: 0}
2594
+ - target: {fileID: 7980856527081403918, guid: 039852a4ecf9041d4983d10672a54ee2,
2595
+ type: 3}
2596
+ propertyPath: m_AnchoredPosition.x
2597
+ value: 222.579
2598
+ objectReference: {fileID: 0}
2599
+ - target: {fileID: 7980856527081403918, guid: 039852a4ecf9041d4983d10672a54ee2,
2600
+ type: 3}
2601
+ propertyPath: m_AnchoredPosition.y
2602
+ value: -50
2603
+ objectReference: {fileID: 0}
2604
+ m_RemovedComponents: []
2605
+ m_SourcePrefab: {fileID: 100100000, guid: 039852a4ecf9041d4983d10672a54ee2, type: 3}