com.beamable 0.0.0-PREVIEW.NIGHTLY-202512090001

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 (4871) hide show
  1. package/CHANGELOG.md +1521 -0
  2. package/CHANGELOG.md.meta +7 -0
  3. package/Common/.idea/.idea.Common.dir/.idea/encodings.xml +4 -0
  4. package/Common/.idea/.idea.Common.dir/.idea/indexLayout.xml +8 -0
  5. package/Common/.idea/.idea.Common.dir/.idea/vcs.xml +6 -0
  6. package/Common/README.md +13 -0
  7. package/Common/README.md.meta +7 -0
  8. package/Common/Runtime/AgnosticAttribute.cs +53 -0
  9. package/Common/Runtime/AgnosticAttribute.cs.meta +11 -0
  10. package/Common/Runtime/Api/AliasHelper.cs +56 -0
  11. package/Common/Runtime/Api/AliasHelper.cs.meta +11 -0
  12. package/Common/Runtime/Api/Analytics/AnalyticsEventRequest.cs +51 -0
  13. package/Common/Runtime/Api/Analytics/AnalyticsEventRequest.cs.meta +11 -0
  14. package/Common/Runtime/Api/Analytics/AnalyticsService.cs +99 -0
  15. package/Common/Runtime/Api/Analytics/AnalyticsService.cs.meta +11 -0
  16. package/Common/Runtime/Api/Analytics/IBeamAnalyticsService.cs +34 -0
  17. package/Common/Runtime/Api/Analytics/IBeamAnalyticsService.cs.meta +11 -0
  18. package/Common/Runtime/Api/Analytics/Models/CoreEvent.cs +47 -0
  19. package/Common/Runtime/Api/Analytics/Models/CoreEvent.cs.meta +11 -0
  20. package/Common/Runtime/Api/Analytics/Models/IAnalyticsEvent.cs +23 -0
  21. package/Common/Runtime/Api/Analytics/Models/IAnalyticsEvent.cs.meta +11 -0
  22. package/Common/Runtime/Api/Analytics/Models/SampleCustomEvent.cs +31 -0
  23. package/Common/Runtime/Api/Analytics/Models/SampleCustomEvent.cs.meta +11 -0
  24. package/Common/Runtime/Api/Analytics/Models.meta +11 -0
  25. package/Common/Runtime/Api/Analytics.meta +11 -0
  26. package/Common/Runtime/Api/Announcements/AbsAnnouncementsApi.cs +69 -0
  27. package/Common/Runtime/Api/Announcements/AbsAnnouncementsApi.cs.meta +11 -0
  28. package/Common/Runtime/Api/Announcements/IAnnouncementsApi.cs +388 -0
  29. package/Common/Runtime/Api/Announcements/IAnnouncementsApi.cs.meta +11 -0
  30. package/Common/Runtime/Api/Announcements.meta +11 -0
  31. package/Common/Runtime/Api/Auth/AuthApi.cs +981 -0
  32. package/Common/Runtime/Api/Auth/AuthApi.cs.meta +11 -0
  33. package/Common/Runtime/Api/Auth/IAuthApi.cs +344 -0
  34. package/Common/Runtime/Api/Auth/IAuthApi.cs.meta +11 -0
  35. package/Common/Runtime/Api/Auth.meta +11 -0
  36. package/Common/Runtime/Api/Calendars/AbsCalendarApi.cs +42 -0
  37. package/Common/Runtime/Api/Calendars/AbsCalendarApi.cs.meta +11 -0
  38. package/Common/Runtime/Api/Calendars/ICalendarApi.cs +121 -0
  39. package/Common/Runtime/Api/Calendars/ICalendarApi.cs.meta +11 -0
  40. package/Common/Runtime/Api/Calendars.meta +11 -0
  41. package/Common/Runtime/Api/Chat/ChatApi.cs +71 -0
  42. package/Common/Runtime/Api/Chat/ChatApi.cs.meta +11 -0
  43. package/Common/Runtime/Api/Chat/IChatApi.cs +184 -0
  44. package/Common/Runtime/Api/Chat/IChatApi.cs.meta +11 -0
  45. package/Common/Runtime/Api/Chat.meta +11 -0
  46. package/Common/Runtime/Api/CloudData/CloudDataApi.cs +127 -0
  47. package/Common/Runtime/Api/CloudData/CloudDataApi.cs.meta +11 -0
  48. package/Common/Runtime/Api/CloudData/ICloudDataApi.cs +43 -0
  49. package/Common/Runtime/Api/CloudData/ICloudDataApi.cs.meta +11 -0
  50. package/Common/Runtime/Api/CloudData.meta +11 -0
  51. package/Common/Runtime/Api/CometClientData.cs +70 -0
  52. package/Common/Runtime/Api/CometClientData.cs.meta +11 -0
  53. package/Common/Runtime/Api/Commerce/ICommerceApi.cs +11 -0
  54. package/Common/Runtime/Api/Commerce/ICommerceApi.cs.meta +11 -0
  55. package/Common/Runtime/Api/Commerce.meta +11 -0
  56. package/Common/Runtime/Api/Content/IContentApi.cs +168 -0
  57. package/Common/Runtime/Api/Content/IContentApi.cs.meta +11 -0
  58. package/Common/Runtime/Api/Content.meta +11 -0
  59. package/Common/Runtime/Api/Events/AbsEventsApi.cs +50 -0
  60. package/Common/Runtime/Api/Events/AbsEventsApi.cs.meta +11 -0
  61. package/Common/Runtime/Api/Events/IEventsApi.cs +166 -0
  62. package/Common/Runtime/Api/Events/IEventsApi.cs.meta +11 -0
  63. package/Common/Runtime/Api/Events.meta +11 -0
  64. package/Common/Runtime/Api/Groups/GroupsApi.cs +762 -0
  65. package/Common/Runtime/Api/Groups/GroupsApi.cs.meta +11 -0
  66. package/Common/Runtime/Api/Groups/IGroupsApi.cs +211 -0
  67. package/Common/Runtime/Api/Groups/IGroupsApi.cs.meta +11 -0
  68. package/Common/Runtime/Api/Groups.meta +11 -0
  69. package/Common/Runtime/Api/IAccessToken.cs +49 -0
  70. package/Common/Runtime/Api/IAccessToken.cs.meta +11 -0
  71. package/Common/Runtime/Api/IBeamableFilesystemAccessor.cs +14 -0
  72. package/Common/Runtime/Api/IBeamableFilesystemAccessor.cs.meta +11 -0
  73. package/Common/Runtime/Api/IBeamableRequester.cs +770 -0
  74. package/Common/Runtime/Api/IBeamableRequester.cs.meta +11 -0
  75. package/Common/Runtime/Api/IConnectivityChecker.cs +50 -0
  76. package/Common/Runtime/Api/IConnectivityChecker.cs.meta +11 -0
  77. package/Common/Runtime/Api/IHasBeamableRequester.cs +13 -0
  78. package/Common/Runtime/Api/IHasBeamableRequester.cs.meta +11 -0
  79. package/Common/Runtime/Api/IServiceRoutingStrategy.cs +124 -0
  80. package/Common/Runtime/Api/IServiceRoutingStrategy.cs.meta +11 -0
  81. package/Common/Runtime/Api/ISupportsGet.cs +160 -0
  82. package/Common/Runtime/Api/ISupportsGet.cs.meta +11 -0
  83. package/Common/Runtime/Api/IUserContext.cs +23 -0
  84. package/Common/Runtime/Api/IUserContext.cs.meta +11 -0
  85. package/Common/Runtime/Api/IUserDataCache.cs +89 -0
  86. package/Common/Runtime/Api/IUserDataCache.cs.meta +11 -0
  87. package/Common/Runtime/Api/Inventory/IInventoryApi.cs +796 -0
  88. package/Common/Runtime/Api/Inventory/IInventoryApi.cs.meta +11 -0
  89. package/Common/Runtime/Api/Inventory/InventoryApi.cs +308 -0
  90. package/Common/Runtime/Api/Inventory/InventoryApi.cs.meta +11 -0
  91. package/Common/Runtime/Api/Inventory/InventoryUpdateBuilder.cs +712 -0
  92. package/Common/Runtime/Api/Inventory/InventoryUpdateBuilder.cs.meta +11 -0
  93. package/Common/Runtime/Api/Inventory.meta +11 -0
  94. package/Common/Runtime/Api/Leaderboards/ILeaderboardApi.cs +509 -0
  95. package/Common/Runtime/Api/Leaderboards/ILeaderboardApi.cs.meta +11 -0
  96. package/Common/Runtime/Api/Leaderboards/LeaderboardApi.cs +237 -0
  97. package/Common/Runtime/Api/Leaderboards/LeaderboardApi.cs.meta +11 -0
  98. package/Common/Runtime/Api/Leaderboards.meta +11 -0
  99. package/Common/Runtime/Api/Lobbies/ILobbyApi.cs +154 -0
  100. package/Common/Runtime/Api/Lobbies/ILobbyApi.cs.meta +11 -0
  101. package/Common/Runtime/Api/Lobbies/Lobby.cs +93 -0
  102. package/Common/Runtime/Api/Lobbies/Lobby.cs.meta +11 -0
  103. package/Common/Runtime/Api/Lobbies/LobbyNotification.cs +16 -0
  104. package/Common/Runtime/Api/Lobbies/LobbyNotification.cs.meta +11 -0
  105. package/Common/Runtime/Api/Lobbies/LobbyPlayer.cs +59 -0
  106. package/Common/Runtime/Api/Lobbies/LobbyPlayer.cs.meta +11 -0
  107. package/Common/Runtime/Api/Lobbies/LobbyRestriction.cs +20 -0
  108. package/Common/Runtime/Api/Lobbies/LobbyRestriction.cs.meta +11 -0
  109. package/Common/Runtime/Api/Lobbies/LobbyService.cs +191 -0
  110. package/Common/Runtime/Api/Lobbies/LobbyService.cs.meta +11 -0
  111. package/Common/Runtime/Api/Lobbies/LobbyUtils.cs +157 -0
  112. package/Common/Runtime/Api/Lobbies/LobbyUtils.cs.meta +11 -0
  113. package/Common/Runtime/Api/Lobbies/NotInLobby.cs +13 -0
  114. package/Common/Runtime/Api/Lobbies/NotInLobby.cs.meta +11 -0
  115. package/Common/Runtime/Api/Lobbies/Requests/AddTagsRequest.cs +37 -0
  116. package/Common/Runtime/Api/Lobbies/Requests/AddTagsRequest.cs.meta +11 -0
  117. package/Common/Runtime/Api/Lobbies/Requests/CreateLobbyRequest.cs +71 -0
  118. package/Common/Runtime/Api/Lobbies/Requests/CreateLobbyRequest.cs.meta +11 -0
  119. package/Common/Runtime/Api/Lobbies/Requests/JoinByPasscodeRequest.cs +31 -0
  120. package/Common/Runtime/Api/Lobbies/Requests/JoinByPasscodeRequest.cs.meta +11 -0
  121. package/Common/Runtime/Api/Lobbies/Requests/JoinLobbyRequest.cs +25 -0
  122. package/Common/Runtime/Api/Lobbies/Requests/JoinLobbyRequest.cs.meta +11 -0
  123. package/Common/Runtime/Api/Lobbies/Requests/LobbyQueryRequest.cs +36 -0
  124. package/Common/Runtime/Api/Lobbies/Requests/LobbyQueryRequest.cs.meta +11 -0
  125. package/Common/Runtime/Api/Lobbies/Requests/LobbyQueryResponse.cs +20 -0
  126. package/Common/Runtime/Api/Lobbies/Requests/LobbyQueryResponse.cs.meta +11 -0
  127. package/Common/Runtime/Api/Lobbies/Requests/RemoveFromLobbyRequest.cs +25 -0
  128. package/Common/Runtime/Api/Lobbies/Requests/RemoveFromLobbyRequest.cs.meta +11 -0
  129. package/Common/Runtime/Api/Lobbies/Requests/RemoveTagsRequest.cs +31 -0
  130. package/Common/Runtime/Api/Lobbies/Requests/RemoveTagsRequest.cs.meta +11 -0
  131. package/Common/Runtime/Api/Lobbies/Requests/UpdateLobbyRequest.cs +62 -0
  132. package/Common/Runtime/Api/Lobbies/Requests/UpdateLobbyRequest.cs.meta +11 -0
  133. package/Common/Runtime/Api/Lobbies/Requests.meta +11 -0
  134. package/Common/Runtime/Api/Lobbies.meta +11 -0
  135. package/Common/Runtime/Api/Mail/AbsMailApi.cs +704 -0
  136. package/Common/Runtime/Api/Mail/AbsMailApi.cs.meta +11 -0
  137. package/Common/Runtime/Api/Mail/IMailApi.cs +49 -0
  138. package/Common/Runtime/Api/Mail/IMailApi.cs.meta +11 -0
  139. package/Common/Runtime/Api/Mail.meta +11 -0
  140. package/Common/Runtime/Api/Notifications/INotificationService.cs +114 -0
  141. package/Common/Runtime/Api/Notifications/INotificationService.cs.meta +11 -0
  142. package/Common/Runtime/Api/Notifications/PrimitiveStringPayload.cs +14 -0
  143. package/Common/Runtime/Api/Notifications/PrimitiveStringPayload.cs.meta +11 -0
  144. package/Common/Runtime/Api/Notifications.meta +11 -0
  145. package/Common/Runtime/Api/Parties/IPartyApi.cs +97 -0
  146. package/Common/Runtime/Api/Parties/IPartyApi.cs.meta +11 -0
  147. package/Common/Runtime/Api/Parties/NotInParty.cs +12 -0
  148. package/Common/Runtime/Api/Parties/NotInParty.cs.meta +11 -0
  149. package/Common/Runtime/Api/Parties/Party.cs +59 -0
  150. package/Common/Runtime/Api/Parties/Party.cs.meta +11 -0
  151. package/Common/Runtime/Api/Parties/PartyNotifications.cs +55 -0
  152. package/Common/Runtime/Api/Parties/PartyNotifications.cs.meta +11 -0
  153. package/Common/Runtime/Api/Parties/PartyRestriction.cs +14 -0
  154. package/Common/Runtime/Api/Parties/PartyRestriction.cs.meta +11 -0
  155. package/Common/Runtime/Api/Parties/PartyService.cs +124 -0
  156. package/Common/Runtime/Api/Parties/PartyService.cs.meta +11 -0
  157. package/Common/Runtime/Api/Parties/Requests/CreatePartyRequest.cs +44 -0
  158. package/Common/Runtime/Api/Parties/Requests/CreatePartyRequest.cs.meta +11 -0
  159. package/Common/Runtime/Api/Parties/Requests/PartyQueryResponse.cs +20 -0
  160. package/Common/Runtime/Api/Parties/Requests/PartyQueryResponse.cs.meta +11 -0
  161. package/Common/Runtime/Api/Parties/Requests/PlayerRequest.cs +25 -0
  162. package/Common/Runtime/Api/Parties/Requests/PlayerRequest.cs.meta +11 -0
  163. package/Common/Runtime/Api/Parties/Requests/UpdatePartyRequest.cs +38 -0
  164. package/Common/Runtime/Api/Parties/Requests/UpdatePartyRequest.cs.meta +11 -0
  165. package/Common/Runtime/Api/Parties/Requests.meta +11 -0
  166. package/Common/Runtime/Api/Parties.meta +11 -0
  167. package/Common/Runtime/Api/Payments/IPaymentsApi.cs +15 -0
  168. package/Common/Runtime/Api/Payments/IPaymentsApi.cs.meta +11 -0
  169. package/Common/Runtime/Api/Payments/PaymentsApi.cs +34 -0
  170. package/Common/Runtime/Api/Payments/PaymentsApi.cs.meta +11 -0
  171. package/Common/Runtime/Api/Payments.meta +11 -0
  172. package/Common/Runtime/Api/Presence/IPresenceApi.cs +32 -0
  173. package/Common/Runtime/Api/Presence/IPresenceApi.cs.meta +11 -0
  174. package/Common/Runtime/Api/Presence/PresenceService.cs +165 -0
  175. package/Common/Runtime/Api/Presence/PresenceService.cs.meta +11 -0
  176. package/Common/Runtime/Api/Presence.meta +11 -0
  177. package/Common/Runtime/Api/Push/IPushApi.cs +10 -0
  178. package/Common/Runtime/Api/Push/IPushApi.cs.meta +11 -0
  179. package/Common/Runtime/Api/Push.meta +11 -0
  180. package/Common/Runtime/Api/QueryBuilder.cs +86 -0
  181. package/Common/Runtime/Api/QueryBuilder.cs.meta +11 -0
  182. package/Common/Runtime/Api/Realms/IAliasService.cs +98 -0
  183. package/Common/Runtime/Api/Realms/IAliasService.cs.meta +11 -0
  184. package/Common/Runtime/Api/Realms/IRealmApi.cs +18 -0
  185. package/Common/Runtime/Api/Realms/IRealmApi.cs.meta +11 -0
  186. package/Common/Runtime/Api/Realms/RealmService.cs +378 -0
  187. package/Common/Runtime/Api/Realms/RealmService.cs.meta +11 -0
  188. package/Common/Runtime/Api/Realms.meta +11 -0
  189. package/Common/Runtime/Api/SignedRequesterHelper.cs +102 -0
  190. package/Common/Runtime/Api/SignedRequesterHelper.cs.meta +11 -0
  191. package/Common/Runtime/Api/Social/ISocialApi.cs +77 -0
  192. package/Common/Runtime/Api/Social/ISocialApi.cs.meta +11 -0
  193. package/Common/Runtime/Api/Social/SocialApi.cs +329 -0
  194. package/Common/Runtime/Api/Social/SocialApi.cs.meta +11 -0
  195. package/Common/Runtime/Api/Social.meta +11 -0
  196. package/Common/Runtime/Api/Stats/AbsStatsApi.cs +345 -0
  197. package/Common/Runtime/Api/Stats/AbsStatsApi.cs.meta +11 -0
  198. package/Common/Runtime/Api/Stats/IStatsApi.cs +200 -0
  199. package/Common/Runtime/Api/Stats/IStatsApi.cs.meta +11 -0
  200. package/Common/Runtime/Api/Stats/StatsAccessType.cs +11 -0
  201. package/Common/Runtime/Api/Stats/StatsAccessType.cs.meta +11 -0
  202. package/Common/Runtime/Api/Stats/StatsApiHelper.cs +41 -0
  203. package/Common/Runtime/Api/Stats/StatsApiHelper.cs.meta +11 -0
  204. package/Common/Runtime/Api/Stats/StatsDomainType.cs +11 -0
  205. package/Common/Runtime/Api/Stats/StatsDomainType.cs.meta +11 -0
  206. package/Common/Runtime/Api/Stats.meta +11 -0
  207. package/Common/Runtime/Api/Tournaments/ITournamentApi.cs +626 -0
  208. package/Common/Runtime/Api/Tournaments/ITournamentApi.cs.meta +11 -0
  209. package/Common/Runtime/Api/Tournaments/TournamentApi.cs +284 -0
  210. package/Common/Runtime/Api/Tournaments/TournamentApi.cs.meta +11 -0
  211. package/Common/Runtime/Api/Tournaments.meta +11 -0
  212. package/Common/Runtime/Api.meta +11 -0
  213. package/Common/Runtime/BeamCli/CliContractTypeAttribute.cs +13 -0
  214. package/Common/Runtime/BeamCli/CliContractTypeAttribute.cs.meta +11 -0
  215. package/Common/Runtime/BeamCli/CliOtelData.cs +26 -0
  216. package/Common/Runtime/BeamCli/CliOtelData.cs.meta +11 -0
  217. package/Common/Runtime/BeamCli/Contracts/CliLogMessage.cs +33 -0
  218. package/Common/Runtime/BeamCli/Contracts/CliLogMessage.cs.meta +11 -0
  219. package/Common/Runtime/BeamCli/Contracts/CollectorStatus.cs +49 -0
  220. package/Common/Runtime/BeamCli/Contracts/CollectorStatus.cs.meta +11 -0
  221. package/Common/Runtime/BeamCli/Contracts/Constants.cs +34 -0
  222. package/Common/Runtime/BeamCli/Contracts/Constants.cs.meta +11 -0
  223. package/Common/Runtime/BeamCli/Contracts/ContentService/AutoSnapshotActionType.cs +15 -0
  224. package/Common/Runtime/BeamCli/Contracts/ContentService/AutoSnapshotActionType.cs.meta +11 -0
  225. package/Common/Runtime/BeamCli/Contracts/ContentService/AutoSnapshotType.cs +16 -0
  226. package/Common/Runtime/BeamCli/Contracts/ContentService/AutoSnapshotType.cs.meta +11 -0
  227. package/Common/Runtime/BeamCli/Contracts/ContentService/ContentSnapshotType.cs +14 -0
  228. package/Common/Runtime/BeamCli/Contracts/ContentService/ContentSnapshotType.cs.meta +11 -0
  229. package/Common/Runtime/BeamCli/Contracts/ContentService/ContentStatus.cs +18 -0
  230. package/Common/Runtime/BeamCli/Contracts/ContentService/ContentStatus.cs.meta +11 -0
  231. package/Common/Runtime/BeamCli/Contracts/ContentService/LocalContentManifest.cs +17 -0
  232. package/Common/Runtime/BeamCli/Contracts/ContentService/LocalContentManifest.cs.meta +11 -0
  233. package/Common/Runtime/BeamCli/Contracts/ContentService/LocalContentManifestEntry.cs +76 -0
  234. package/Common/Runtime/BeamCli/Contracts/ContentService/LocalContentManifestEntry.cs.meta +11 -0
  235. package/Common/Runtime/BeamCli/Contracts/ContentService/ManifestAuthor.cs +14 -0
  236. package/Common/Runtime/BeamCli/Contracts/ContentService/ManifestAuthor.cs.meta +11 -0
  237. package/Common/Runtime/BeamCli/Contracts/ContentService/ManifestProjectData.cs +14 -0
  238. package/Common/Runtime/BeamCli/Contracts/ContentService/ManifestProjectData.cs.meta +11 -0
  239. package/Common/Runtime/BeamCli/Contracts/ContentService/TagStatus.cs +13 -0
  240. package/Common/Runtime/BeamCli/Contracts/ContentService/TagStatus.cs.meta +11 -0
  241. package/Common/Runtime/BeamCli/Contracts/ContentService.meta +11 -0
  242. package/Common/Runtime/BeamCli/Contracts/EnvironmentVersionData.cs +15 -0
  243. package/Common/Runtime/BeamCli/Contracts/EnvironmentVersionData.cs.meta +11 -0
  244. package/Common/Runtime/BeamCli/Contracts/GenerateEnvOutput.cs +24 -0
  245. package/Common/Runtime/BeamCli/Contracts/GenerateEnvOutput.cs.meta +11 -0
  246. package/Common/Runtime/BeamCli/Contracts/ServiceInfo.cs +16 -0
  247. package/Common/Runtime/BeamCli/Contracts/ServiceInfo.cs.meta +11 -0
  248. package/Common/Runtime/BeamCli/Contracts.meta +11 -0
  249. package/Common/Runtime/BeamCli/ErrorOutput.cs +39 -0
  250. package/Common/Runtime/BeamCli/ErrorOutput.cs.meta +11 -0
  251. package/Common/Runtime/BeamCli/IBeamCommand.cs +51 -0
  252. package/Common/Runtime/BeamCli/IBeamCommand.cs.meta +11 -0
  253. package/Common/Runtime/BeamCli/Reporting.cs +51 -0
  254. package/Common/Runtime/BeamCli/Reporting.cs.meta +11 -0
  255. package/Common/Runtime/BeamCli/ServiceInfoHelper.cs +32 -0
  256. package/Common/Runtime/BeamCli/ServiceInfoHelper.cs.meta +11 -0
  257. package/Common/Runtime/BeamCli.meta +11 -0
  258. package/Common/Runtime/BeamGenerateSchemaAttribute.cs +19 -0
  259. package/Common/Runtime/BeamGenerateSchemaAttribute.cs.meta +11 -0
  260. package/Common/Runtime/BeamableColorUtil.cs +26 -0
  261. package/Common/Runtime/BeamableColorUtil.cs.meta +11 -0
  262. package/Common/Runtime/BeamableEnumExtensions.cs +36 -0
  263. package/Common/Runtime/BeamableEnumExtensions.cs.meta +11 -0
  264. package/Common/Runtime/BeamableTaskExtensions.cs +28 -0
  265. package/Common/Runtime/BeamableTaskExtensions.cs.meta +11 -0
  266. package/Common/Runtime/Collections/ConcurrentBag.cs +49 -0
  267. package/Common/Runtime/Collections/ConcurrentBag.cs.meta +11 -0
  268. package/Common/Runtime/Collections/ConcurrentDictionary.cs +109 -0
  269. package/Common/Runtime/Collections/ConcurrentDictionary.cs.meta +11 -0
  270. package/Common/Runtime/Collections.meta +11 -0
  271. package/Common/Runtime/Constants/Constants.cs +184 -0
  272. package/Common/Runtime/Constants/Constants.cs.meta +11 -0
  273. package/Common/Runtime/Constants/Implementations/ArchiveConstants.cs +25 -0
  274. package/Common/Runtime/Constants/Implementations/ArchiveConstants.cs.meta +11 -0
  275. package/Common/Runtime/Constants/Implementations/ConfigConstants.cs +26 -0
  276. package/Common/Runtime/Constants/Implementations/ConfigConstants.cs.meta +11 -0
  277. package/Common/Runtime/Constants/Implementations/ContentConstants.cs +29 -0
  278. package/Common/Runtime/Constants/Implementations/ContentConstants.cs.meta +11 -0
  279. package/Common/Runtime/Constants/Implementations/ContentManagerConstants.cs +113 -0
  280. package/Common/Runtime/Constants/Implementations/ContentManagerConstants.cs.meta +11 -0
  281. package/Common/Runtime/Constants/Implementations/CronConstants.cs +20 -0
  282. package/Common/Runtime/Constants/Implementations/CronConstants.cs.meta +11 -0
  283. package/Common/Runtime/Constants/Implementations/DockerConstants.cs +22 -0
  284. package/Common/Runtime/Constants/Implementations/DockerConstants.cs.meta +11 -0
  285. package/Common/Runtime/Constants/Implementations/EnvironmentConstants.cs +24 -0
  286. package/Common/Runtime/Constants/Implementations/EnvironmentConstants.cs.meta +11 -0
  287. package/Common/Runtime/Constants/Implementations/LoginBaseConstants.cs +46 -0
  288. package/Common/Runtime/Constants/Implementations/LoginBaseConstants.cs.meta +11 -0
  289. package/Common/Runtime/Constants/Implementations/MigrationConstants.cs +15 -0
  290. package/Common/Runtime/Constants/Implementations/MigrationConstants.cs.meta +11 -0
  291. package/Common/Runtime/Constants/Implementations/NotificationConstants.cs +19 -0
  292. package/Common/Runtime/Constants/Implementations/NotificationConstants.cs.meta +11 -0
  293. package/Common/Runtime/Constants/Implementations/OtelConstants.cs +177 -0
  294. package/Common/Runtime/Constants/Implementations/OtelConstants.cs.meta +11 -0
  295. package/Common/Runtime/Constants/Implementations/RequesterConstants.cs +91 -0
  296. package/Common/Runtime/Constants/Implementations/RequesterConstants.cs.meta +11 -0
  297. package/Common/Runtime/Constants/Implementations/SchedulesConstants.cs +21 -0
  298. package/Common/Runtime/Constants/Implementations/SchedulesConstants.cs.meta +11 -0
  299. package/Common/Runtime/Constants/Implementations/ServiceConstants.cs +161 -0
  300. package/Common/Runtime/Constants/Implementations/ServiceConstants.cs.meta +11 -0
  301. package/Common/Runtime/Constants/Implementations/SpewConstants.cs +39 -0
  302. package/Common/Runtime/Constants/Implementations/SpewConstants.cs.meta +11 -0
  303. package/Common/Runtime/Constants/Implementations/TestingToolConstants.cs +41 -0
  304. package/Common/Runtime/Constants/Implementations/TestingToolConstants.cs.meta +11 -0
  305. package/Common/Runtime/Constants/Implementations/ToolbarConstants.cs +17 -0
  306. package/Common/Runtime/Constants/Implementations/ToolbarConstants.cs.meta +11 -0
  307. package/Common/Runtime/Constants/Implementations/ToolboxConstants.cs +26 -0
  308. package/Common/Runtime/Constants/Implementations/ToolboxConstants.cs.meta +11 -0
  309. package/Common/Runtime/Constants/Implementations/TooltipConstants.cs +83 -0
  310. package/Common/Runtime/Constants/Implementations/TooltipConstants.cs.meta +11 -0
  311. package/Common/Runtime/Constants/Implementations.meta +11 -0
  312. package/Common/Runtime/Constants.meta +11 -0
  313. package/Common/Runtime/Content/ClientContentSerializer.cs +45 -0
  314. package/Common/Runtime/Content/ClientContentSerializer.cs.meta +11 -0
  315. package/Common/Runtime/Content/ClientManifest.cs +303 -0
  316. package/Common/Runtime/Content/ClientManifest.cs.meta +11 -0
  317. package/Common/Runtime/Content/ClientPermissions.cs +31 -0
  318. package/Common/Runtime/Content/ClientPermissions.cs.meta +11 -0
  319. package/Common/Runtime/Content/ContentCorruptedException.cs +16 -0
  320. package/Common/Runtime/Content/ContentCorruptedException.cs.meta +11 -0
  321. package/Common/Runtime/Content/ContentDataInfo.cs +148 -0
  322. package/Common/Runtime/Content/ContentDataInfo.cs.meta +11 -0
  323. package/Common/Runtime/Content/ContentDeserializationException.cs +15 -0
  324. package/Common/Runtime/Content/ContentDeserializationException.cs.meta +11 -0
  325. package/Common/Runtime/Content/ContentFieldAttribute.cs +31 -0
  326. package/Common/Runtime/Content/ContentFieldAttribute.cs.meta +11 -0
  327. package/Common/Runtime/Content/ContentFilterType.cs +42 -0
  328. package/Common/Runtime/Content/ContentFilterType.cs.meta +11 -0
  329. package/Common/Runtime/Content/ContentNotFoundException.cs +20 -0
  330. package/Common/Runtime/Content/ContentNotFoundException.cs.meta +11 -0
  331. package/Common/Runtime/Content/ContentObject.cs +644 -0
  332. package/Common/Runtime/Content/ContentObject.cs.meta +11 -0
  333. package/Common/Runtime/Content/ContentQuery.cs +333 -0
  334. package/Common/Runtime/Content/ContentQuery.cs.meta +11 -0
  335. package/Common/Runtime/Content/ContentQueryExtensions.cs +43 -0
  336. package/Common/Runtime/Content/ContentQueryExtensions.cs.meta +11 -0
  337. package/Common/Runtime/Content/ContentRef.cs +291 -0
  338. package/Common/Runtime/Content/ContentRef.cs.meta +11 -0
  339. package/Common/Runtime/Content/ContentSerializer.cs +770 -0
  340. package/Common/Runtime/Content/ContentSerializer.cs.meta +11 -0
  341. package/Common/Runtime/Content/ContentTypeAttribute.cs +137 -0
  342. package/Common/Runtime/Content/ContentTypeAttribute.cs.meta +11 -0
  343. package/Common/Runtime/Content/ContentTypeReflectionCache.cs +601 -0
  344. package/Common/Runtime/Content/ContentTypeReflectionCache.cs.meta +11 -0
  345. package/Common/Runtime/Content/ContentVisibility.cs +25 -0
  346. package/Common/Runtime/Content/ContentVisibility.cs.meta +11 -0
  347. package/Common/Runtime/Content/Federation.cs +33 -0
  348. package/Common/Runtime/Content/Federation.cs.meta +11 -0
  349. package/Common/Runtime/Content/IContentObject.cs +52 -0
  350. package/Common/Runtime/Content/IContentObject.cs.meta +11 -0
  351. package/Common/Runtime/Content/IContentService.cs +21 -0
  352. package/Common/Runtime/Content/IContentService.cs.meta +11 -0
  353. package/Common/Runtime/Content/IIgnoreSerializationCallbacks.cs +11 -0
  354. package/Common/Runtime/Content/IIgnoreSerializationCallbacks.cs.meta +11 -0
  355. package/Common/Runtime/Content/IgnoreContentFieldAttribute.cs +25 -0
  356. package/Common/Runtime/Content/IgnoreContentFieldAttribute.cs.meta +11 -0
  357. package/Common/Runtime/Content/Optionals.cs +582 -0
  358. package/Common/Runtime/Content/Optionals.cs.meta +11 -0
  359. package/Common/Runtime/Content/PropertyAttributes/FilePathSelectorAttribute.cs +23 -0
  360. package/Common/Runtime/Content/PropertyAttributes/FilePathSelectorAttribute.cs.meta +11 -0
  361. package/Common/Runtime/Content/PropertyAttributes/HideUnlessServerPackageInstalled.cs +15 -0
  362. package/Common/Runtime/Content/PropertyAttributes/HideUnlessServerPackageInstalled.cs.meta +11 -0
  363. package/Common/Runtime/Content/PropertyAttributes/ReadonlyIfAttribute.cs +25 -0
  364. package/Common/Runtime/Content/PropertyAttributes/ReadonlyIfAttribute.cs.meta +11 -0
  365. package/Common/Runtime/Content/PropertyAttributes/ShowOnlyAttribute.cs +11 -0
  366. package/Common/Runtime/Content/PropertyAttributes/ShowOnlyAttribute.cs.meta +11 -0
  367. package/Common/Runtime/Content/PropertyAttributes.meta +11 -0
  368. package/Common/Runtime/Content/RenderAsRefAttribute.cs +34 -0
  369. package/Common/Runtime/Content/RenderAsRefAttribute.cs.meta +11 -0
  370. package/Common/Runtime/Content/SerializableDictionary.cs +183 -0
  371. package/Common/Runtime/Content/SerializableDictionary.cs.meta +11 -0
  372. package/Common/Runtime/Content/Utility/DateUtility.cs +121 -0
  373. package/Common/Runtime/Content/Utility/DateUtility.cs.meta +11 -0
  374. package/Common/Runtime/Content/Utility.meta +11 -0
  375. package/Common/Runtime/Content/Validation/AggregateContentValidationException.cs +13 -0
  376. package/Common/Runtime/Content/Validation/AggregateContentValidationException.cs.meta +11 -0
  377. package/Common/Runtime/Content/Validation/CannotBeBlank.cs +116 -0
  378. package/Common/Runtime/Content/Validation/CannotBeBlank.cs.meta +11 -0
  379. package/Common/Runtime/Content/Validation/CannotBeEmpty.cs +44 -0
  380. package/Common/Runtime/Content/Validation/CannotBeEmpty.cs.meta +11 -0
  381. package/Common/Runtime/Content/Validation/ContentValidationException.cs +122 -0
  382. package/Common/Runtime/Content/Validation/ContentValidationException.cs.meta +11 -0
  383. package/Common/Runtime/Content/Validation/FederationMustBeValid.cs +58 -0
  384. package/Common/Runtime/Content/Validation/FederationMustBeValid.cs.meta +11 -0
  385. package/Common/Runtime/Content/Validation/MustBeComparatorString.cs +30 -0
  386. package/Common/Runtime/Content/Validation/MustBeComparatorString.cs.meta +11 -0
  387. package/Common/Runtime/Content/Validation/MustBeCurrency.cs +26 -0
  388. package/Common/Runtime/Content/Validation/MustBeCurrency.cs.meta +11 -0
  389. package/Common/Runtime/Content/Validation/MustBeCurrencyOrItem.cs +26 -0
  390. package/Common/Runtime/Content/Validation/MustBeCurrencyOrItem.cs.meta +11 -0
  391. package/Common/Runtime/Content/Validation/MustBeDateString.cs +86 -0
  392. package/Common/Runtime/Content/Validation/MustBeDateString.cs.meta +11 -0
  393. package/Common/Runtime/Content/Validation/MustBeItem.cs +26 -0
  394. package/Common/Runtime/Content/Validation/MustBeItem.cs.meta +11 -0
  395. package/Common/Runtime/Content/Validation/MustBeLeaderboard.cs +27 -0
  396. package/Common/Runtime/Content/Validation/MustBeLeaderboard.cs.meta +11 -0
  397. package/Common/Runtime/Content/Validation/MustBeNonDefault.cs +31 -0
  398. package/Common/Runtime/Content/Validation/MustBeNonDefault.cs.meta +11 -0
  399. package/Common/Runtime/Content/Validation/MustBeNonNegative.cs +21 -0
  400. package/Common/Runtime/Content/Validation/MustBeNonNegative.cs.meta +11 -0
  401. package/Common/Runtime/Content/Validation/MustBeOneOf.cs +65 -0
  402. package/Common/Runtime/Content/Validation/MustBeOneOf.cs.meta +11 -0
  403. package/Common/Runtime/Content/Validation/MustBePositive.cs +107 -0
  404. package/Common/Runtime/Content/Validation/MustBePositive.cs.meta +11 -0
  405. package/Common/Runtime/Content/Validation/MustBeSlugString.cs +87 -0
  406. package/Common/Runtime/Content/Validation/MustBeSlugString.cs.meta +11 -0
  407. package/Common/Runtime/Content/Validation/MustBeTimeSpanDuration.cs +107 -0
  408. package/Common/Runtime/Content/Validation/MustBeTimeSpanDuration.cs.meta +11 -0
  409. package/Common/Runtime/Content/Validation/MustBeValidCron.cs +136 -0
  410. package/Common/Runtime/Content/Validation/MustBeValidCron.cs.meta +11 -0
  411. package/Common/Runtime/Content/Validation/MustContain.cs +53 -0
  412. package/Common/Runtime/Content/Validation/MustContain.cs.meta +11 -0
  413. package/Common/Runtime/Content/Validation/MustReferenceContent.cs +237 -0
  414. package/Common/Runtime/Content/Validation/MustReferenceContent.cs.meta +11 -0
  415. package/Common/Runtime/Content/Validation/RouteParametersMustBeValid.cs +51 -0
  416. package/Common/Runtime/Content/Validation/RouteParametersMustBeValid.cs.meta +11 -0
  417. package/Common/Runtime/Content/Validation/ServiceRouteMustBeValid.cs +43 -0
  418. package/Common/Runtime/Content/Validation/ServiceRouteMustBeValid.cs.meta +11 -0
  419. package/Common/Runtime/Content/Validation/TimeSpanDisplayAttribute.cs +19 -0
  420. package/Common/Runtime/Content/Validation/TimeSpanDisplayAttribute.cs.meta +11 -0
  421. package/Common/Runtime/Content/Validation/ValidationAttribute.cs +111 -0
  422. package/Common/Runtime/Content/Validation/ValidationAttribute.cs.meta +11 -0
  423. package/Common/Runtime/Content/Validation/ValidationContext.cs +104 -0
  424. package/Common/Runtime/Content/Validation/ValidationContext.cs.meta +11 -0
  425. package/Common/Runtime/Content/Validation.meta +11 -0
  426. package/Common/Runtime/Content.meta +11 -0
  427. package/Common/Runtime/CronExpression/CronLocale.cs +11 -0
  428. package/Common/Runtime/CronExpression/CronLocale.cs.meta +11 -0
  429. package/Common/Runtime/CronExpression/ErrorData.cs +25 -0
  430. package/Common/Runtime/CronExpression/ErrorData.cs.meta +11 -0
  431. package/Common/Runtime/CronExpression/ExpressionParser.cs +382 -0
  432. package/Common/Runtime/CronExpression/ExpressionParser.cs.meta +11 -0
  433. package/Common/Runtime/CronExpression/Options.cs +24 -0
  434. package/Common/Runtime/CronExpression/Options.cs.meta +11 -0
  435. package/Common/Runtime/CronExpression.meta +11 -0
  436. package/Common/Runtime/Debug.cs +177 -0
  437. package/Common/Runtime/Debug.cs.meta +11 -0
  438. package/Common/Runtime/DefaultQuery.cs +248 -0
  439. package/Common/Runtime/DefaultQuery.cs.meta +11 -0
  440. package/Common/Runtime/Dependencies/DependencyBuilder.cs +776 -0
  441. package/Common/Runtime/Dependencies/DependencyBuilder.cs.meta +11 -0
  442. package/Common/Runtime/Dependencies/DependencyProvider.cs +560 -0
  443. package/Common/Runtime/Dependencies/DependencyProvider.cs.meta +11 -0
  444. package/Common/Runtime/Dependencies/Exceptions.cs +22 -0
  445. package/Common/Runtime/Dependencies/Exceptions.cs.meta +11 -0
  446. package/Common/Runtime/Dependencies/IDependencyList.cs +24 -0
  447. package/Common/Runtime/Dependencies/IDependencyList.cs.meta +11 -0
  448. package/Common/Runtime/Dependencies/IDependencyNameProvider.cs +15 -0
  449. package/Common/Runtime/Dependencies/IDependencyNameProvider.cs.meta +11 -0
  450. package/Common/Runtime/Dependencies/RegisterBeamableDependenciesAttribute.cs +75 -0
  451. package/Common/Runtime/Dependencies/RegisterBeamableDependenciesAttribute.cs.meta +11 -0
  452. package/Common/Runtime/Dependencies/ServiceStorage.cs +258 -0
  453. package/Common/Runtime/Dependencies/ServiceStorage.cs.meta +11 -0
  454. package/Common/Runtime/Dependencies/Utils.cs +50 -0
  455. package/Common/Runtime/Dependencies/Utils.cs.meta +11 -0
  456. package/Common/Runtime/Dependencies.meta +11 -0
  457. package/Common/Runtime/DocUtils.cs +25 -0
  458. package/Common/Runtime/DocUtils.cs.meta +11 -0
  459. package/Common/Runtime/Environment/PackageVersion.cs +361 -0
  460. package/Common/Runtime/Environment/PackageVersion.cs.meta +11 -0
  461. package/Common/Runtime/Environment.meta +11 -0
  462. package/Common/Runtime/Federation/FederatedGameServer.cs +43 -0
  463. package/Common/Runtime/Federation/FederatedGameServer.cs.meta +11 -0
  464. package/Common/Runtime/Federation/FederatedInventory.cs +43 -0
  465. package/Common/Runtime/Federation/FederatedInventory.cs.meta +11 -0
  466. package/Common/Runtime/Federation/FederatedLogin.cs +107 -0
  467. package/Common/Runtime/Federation/FederatedLogin.cs.meta +11 -0
  468. package/Common/Runtime/Federation/FederatedPlayerInit.cs +37 -0
  469. package/Common/Runtime/Federation/FederatedPlayerInit.cs.meta +11 -0
  470. package/Common/Runtime/Federation/Federation.cs +189 -0
  471. package/Common/Runtime/Federation/Federation.cs.meta +11 -0
  472. package/Common/Runtime/Federation.meta +11 -0
  473. package/Common/Runtime/IRuntimeConfigProvider.cs +75 -0
  474. package/Common/Runtime/IRuntimeConfigProvider.cs.meta +11 -0
  475. package/Common/Runtime/ISearchableElement.cs +15 -0
  476. package/Common/Runtime/ISearchableElement.cs.meta +11 -0
  477. package/Common/Runtime/JsonSerializable/DeleteStream.cs +438 -0
  478. package/Common/Runtime/JsonSerializable/DeleteStream.cs.meta +11 -0
  479. package/Common/Runtime/JsonSerializable/DiffStream.cs +367 -0
  480. package/Common/Runtime/JsonSerializable/DiffStream.cs.meta +11 -0
  481. package/Common/Runtime/JsonSerializable/JsonData.cs +103 -0
  482. package/Common/Runtime/JsonSerializable/JsonData.cs.meta +11 -0
  483. package/Common/Runtime/JsonSerializable/JsonSaveStream.cs +765 -0
  484. package/Common/Runtime/JsonSerializable/JsonSaveStream.cs.meta +11 -0
  485. package/Common/Runtime/JsonSerializable/JsonSerializable.cs +386 -0
  486. package/Common/Runtime/JsonSerializable/JsonSerializable.cs.meta +11 -0
  487. package/Common/Runtime/JsonSerializable/LoadStream.cs +1103 -0
  488. package/Common/Runtime/JsonSerializable/LoadStream.cs.meta +11 -0
  489. package/Common/Runtime/JsonSerializable/SaveStream.cs +419 -0
  490. package/Common/Runtime/JsonSerializable/SaveStream.cs.meta +11 -0
  491. package/Common/Runtime/JsonSerializable/TypeLookupFactory.cs +58 -0
  492. package/Common/Runtime/JsonSerializable/TypeLookupFactory.cs.meta +11 -0
  493. package/Common/Runtime/JsonSerializable.meta +11 -0
  494. package/Common/Runtime/Modules/Announcements/AnnouncementApiContent.cs +42 -0
  495. package/Common/Runtime/Modules/Announcements/AnnouncementApiContent.cs.meta +11 -0
  496. package/Common/Runtime/Modules/Announcements/AnnouncementContent.cs +121 -0
  497. package/Common/Runtime/Modules/Announcements/AnnouncementContent.cs.meta +11 -0
  498. package/Common/Runtime/Modules/Announcements/AnnouncementRef.cs +97 -0
  499. package/Common/Runtime/Modules/Announcements/AnnouncementRef.cs.meta +11 -0
  500. package/Common/Runtime/Modules/Announcements.meta +11 -0
  501. package/Common/Runtime/Modules/Calendars/CalendarContent.cs +42 -0
  502. package/Common/Runtime/Modules/Calendars/CalendarContent.cs.meta +11 -0
  503. package/Common/Runtime/Modules/Calendars/CalendarRef.cs +68 -0
  504. package/Common/Runtime/Modules/Calendars/CalendarRef.cs.meta +11 -0
  505. package/Common/Runtime/Modules/Calendars.meta +11 -0
  506. package/Common/Runtime/Modules/Groups/GroupDonationContentRef.cs +77 -0
  507. package/Common/Runtime/Modules/Groups/GroupDonationContentRef.cs.meta +11 -0
  508. package/Common/Runtime/Modules/Groups/GroupDonationsContent.cs +40 -0
  509. package/Common/Runtime/Modules/Groups/GroupDonationsContent.cs.meta +11 -0
  510. package/Common/Runtime/Modules/Groups.meta +11 -0
  511. package/Common/Runtime/Modules/Inventory/CurrencyContent.cs +80 -0
  512. package/Common/Runtime/Modules/Inventory/CurrencyContent.cs.meta +11 -0
  513. package/Common/Runtime/Modules/Inventory/CurrencyRef.cs +83 -0
  514. package/Common/Runtime/Modules/Inventory/CurrencyRef.cs.meta +11 -0
  515. package/Common/Runtime/Modules/Inventory/ItemContent.cs +67 -0
  516. package/Common/Runtime/Modules/Inventory/ItemContent.cs.meta +11 -0
  517. package/Common/Runtime/Modules/Inventory/ItemRef.cs +80 -0
  518. package/Common/Runtime/Modules/Inventory/ItemRef.cs.meta +11 -0
  519. package/Common/Runtime/Modules/Inventory/VipContent.cs +104 -0
  520. package/Common/Runtime/Modules/Inventory/VipContent.cs.meta +11 -0
  521. package/Common/Runtime/Modules/Inventory.meta +11 -0
  522. package/Common/Runtime/Modules/Leaderboards/LeaderboardContent.cs +68 -0
  523. package/Common/Runtime/Modules/Leaderboards/LeaderboardContent.cs.meta +11 -0
  524. package/Common/Runtime/Modules/Leaderboards/LeaderboardRef.cs +78 -0
  525. package/Common/Runtime/Modules/Leaderboards/LeaderboardRef.cs.meta +11 -0
  526. package/Common/Runtime/Modules/Leaderboards.meta +11 -0
  527. package/Common/Runtime/Modules/SharedContent/ApiContent.cs +282 -0
  528. package/Common/Runtime/Modules/SharedContent/ApiContent.cs.meta +11 -0
  529. package/Common/Runtime/Modules/SharedContent/EmailContent.cs +105 -0
  530. package/Common/Runtime/Modules/SharedContent/EmailContent.cs.meta +11 -0
  531. package/Common/Runtime/Modules/SharedContent/EventContent.cs +273 -0
  532. package/Common/Runtime/Modules/SharedContent/EventContent.cs.meta +11 -0
  533. package/Common/Runtime/Modules/SharedContent/PlayerReward.cs +64 -0
  534. package/Common/Runtime/Modules/SharedContent/PlayerReward.cs.meta +11 -0
  535. package/Common/Runtime/Modules/SharedContent/ScheduleDefinition.cs +129 -0
  536. package/Common/Runtime/Modules/SharedContent/ScheduleDefinition.cs.meta +11 -0
  537. package/Common/Runtime/Modules/SharedContent/ScheduleExtensions.cs +36 -0
  538. package/Common/Runtime/Modules/SharedContent/ScheduleExtensions.cs.meta +11 -0
  539. package/Common/Runtime/Modules/SharedContent/SimGameType.cs +300 -0
  540. package/Common/Runtime/Modules/SharedContent/SimGameType.cs.meta +11 -0
  541. package/Common/Runtime/Modules/SharedContent.meta +11 -0
  542. package/Common/Runtime/Modules/Shop/ListingContent.cs +329 -0
  543. package/Common/Runtime/Modules/Shop/ListingContent.cs.meta +11 -0
  544. package/Common/Runtime/Modules/Shop/ListingLink.cs +24 -0
  545. package/Common/Runtime/Modules/Shop/ListingLink.cs.meta +11 -0
  546. package/Common/Runtime/Modules/Shop/ListingRef.cs +34 -0
  547. package/Common/Runtime/Modules/Shop/ListingRef.cs.meta +11 -0
  548. package/Common/Runtime/Modules/Shop/SKUContent.cs +106 -0
  549. package/Common/Runtime/Modules/Shop/SKUContent.cs.meta +11 -0
  550. package/Common/Runtime/Modules/Shop/SKURef.cs +50 -0
  551. package/Common/Runtime/Modules/Shop/SKURef.cs.meta +11 -0
  552. package/Common/Runtime/Modules/Shop/StoreContent.cs +48 -0
  553. package/Common/Runtime/Modules/Shop/StoreContent.cs.meta +11 -0
  554. package/Common/Runtime/Modules/Shop/StoreRef.cs +51 -0
  555. package/Common/Runtime/Modules/Shop/StoreRef.cs.meta +11 -0
  556. package/Common/Runtime/Modules/Shop.meta +11 -0
  557. package/Common/Runtime/Modules/Steam/ISteamService.cs +69 -0
  558. package/Common/Runtime/Modules/Steam/ISteamService.cs.meta +11 -0
  559. package/Common/Runtime/Modules/Steam.meta +11 -0
  560. package/Common/Runtime/Modules/Tournaments/TournamentColorConstants.cs +21 -0
  561. package/Common/Runtime/Modules/Tournaments/TournamentColorConstants.cs.meta +11 -0
  562. package/Common/Runtime/Modules/Tournaments/TournamentContent.cs +317 -0
  563. package/Common/Runtime/Modules/Tournaments/TournamentContent.cs.meta +11 -0
  564. package/Common/Runtime/Modules/Tournaments.meta +11 -0
  565. package/Common/Runtime/Modules.meta +8 -0
  566. package/Common/Runtime/ObjectExtensions.cs +51 -0
  567. package/Common/Runtime/ObjectExtensions.cs.meta +11 -0
  568. package/Common/Runtime/OpenApi/AccountsBasic.gs.cs +507 -0
  569. package/Common/Runtime/OpenApi/AccountsBasic.gs.cs.meta +11 -0
  570. package/Common/Runtime/OpenApi/AccountsBasicCommon.gs.cs +45 -0
  571. package/Common/Runtime/OpenApi/AccountsBasicCommon.gs.cs.meta +11 -0
  572. package/Common/Runtime/OpenApi/AccountsObject.gs.cs +256 -0
  573. package/Common/Runtime/OpenApi/AccountsObject.gs.cs.meta +11 -0
  574. package/Common/Runtime/OpenApi/AnnouncementsBasic.gs.cs +171 -0
  575. package/Common/Runtime/OpenApi/AnnouncementsBasic.gs.cs.meta +11 -0
  576. package/Common/Runtime/OpenApi/AnnouncementsBasicCommon.gs.cs +45 -0
  577. package/Common/Runtime/OpenApi/AnnouncementsBasicCommon.gs.cs.meta +11 -0
  578. package/Common/Runtime/OpenApi/AnnouncementsObject.gs.cs +140 -0
  579. package/Common/Runtime/OpenApi/AnnouncementsObject.gs.cs.meta +11 -0
  580. package/Common/Runtime/OpenApi/AuthBasic.gs.cs +132 -0
  581. package/Common/Runtime/OpenApi/AuthBasic.gs.cs.meta +11 -0
  582. package/Common/Runtime/OpenApi/AuthBasicCommon.gs.cs +45 -0
  583. package/Common/Runtime/OpenApi/AuthBasicCommon.gs.cs.meta +11 -0
  584. package/Common/Runtime/OpenApi/BeamAdmin.gs.cs +77 -0
  585. package/Common/Runtime/OpenApi/BeamAdmin.gs.cs.meta +11 -0
  586. package/Common/Runtime/OpenApi/BeamAdminCommon.gs.cs +45 -0
  587. package/Common/Runtime/OpenApi/BeamAdminCommon.gs.cs.meta +11 -0
  588. package/Common/Runtime/OpenApi/BeamAuth.gs.cs +135 -0
  589. package/Common/Runtime/OpenApi/BeamAuth.gs.cs.meta +11 -0
  590. package/Common/Runtime/OpenApi/BeamAuthCommon.gs.cs +45 -0
  591. package/Common/Runtime/OpenApi/BeamAuthCommon.gs.cs.meta +11 -0
  592. package/Common/Runtime/OpenApi/BeamBeamo.gs.cs +598 -0
  593. package/Common/Runtime/OpenApi/BeamBeamo.gs.cs.meta +11 -0
  594. package/Common/Runtime/OpenApi/BeamBeamoCommon.gs.cs +45 -0
  595. package/Common/Runtime/OpenApi/BeamBeamoCommon.gs.cs.meta +11 -0
  596. package/Common/Runtime/OpenApi/BeamBeamootel.gs.cs +146 -0
  597. package/Common/Runtime/OpenApi/BeamBeamootel.gs.cs.meta +11 -0
  598. package/Common/Runtime/OpenApi/BeamBeamootelCommon.gs.cs +45 -0
  599. package/Common/Runtime/OpenApi/BeamBeamootelCommon.gs.cs.meta +11 -0
  600. package/Common/Runtime/OpenApi/BeamCustomer.gs.cs +594 -0
  601. package/Common/Runtime/OpenApi/BeamCustomer.gs.cs.meta +11 -0
  602. package/Common/Runtime/OpenApi/BeamCustomerCommon.gs.cs +45 -0
  603. package/Common/Runtime/OpenApi/BeamCustomerCommon.gs.cs.meta +11 -0
  604. package/Common/Runtime/OpenApi/BeamLobby.gs.cs +320 -0
  605. package/Common/Runtime/OpenApi/BeamLobby.gs.cs.meta +11 -0
  606. package/Common/Runtime/OpenApi/BeamLobbyCommon.gs.cs +45 -0
  607. package/Common/Runtime/OpenApi/BeamLobbyCommon.gs.cs.meta +11 -0
  608. package/Common/Runtime/OpenApi/BeamMailbox.gs.cs +39 -0
  609. package/Common/Runtime/OpenApi/BeamMailbox.gs.cs.meta +11 -0
  610. package/Common/Runtime/OpenApi/BeamMailboxCommon.gs.cs +45 -0
  611. package/Common/Runtime/OpenApi/BeamMailboxCommon.gs.cs.meta +11 -0
  612. package/Common/Runtime/OpenApi/BeamMatchmaking.gs.cs +175 -0
  613. package/Common/Runtime/OpenApi/BeamMatchmaking.gs.cs.meta +11 -0
  614. package/Common/Runtime/OpenApi/BeamMatchmakingCommon.gs.cs +45 -0
  615. package/Common/Runtime/OpenApi/BeamMatchmakingCommon.gs.cs.meta +11 -0
  616. package/Common/Runtime/OpenApi/BeamParty.gs.cs +223 -0
  617. package/Common/Runtime/OpenApi/BeamParty.gs.cs.meta +11 -0
  618. package/Common/Runtime/OpenApi/BeamPartyCommon.gs.cs +45 -0
  619. package/Common/Runtime/OpenApi/BeamPartyCommon.gs.cs.meta +11 -0
  620. package/Common/Runtime/OpenApi/BeamPlayer.gs.cs +82 -0
  621. package/Common/Runtime/OpenApi/BeamPlayer.gs.cs.meta +11 -0
  622. package/Common/Runtime/OpenApi/BeamPlayerCommon.gs.cs +45 -0
  623. package/Common/Runtime/OpenApi/BeamPlayerCommon.gs.cs.meta +11 -0
  624. package/Common/Runtime/OpenApi/BeamPlayerlobby.gs.cs +68 -0
  625. package/Common/Runtime/OpenApi/BeamPlayerlobby.gs.cs.meta +11 -0
  626. package/Common/Runtime/OpenApi/BeamPlayerlobbyCommon.gs.cs +45 -0
  627. package/Common/Runtime/OpenApi/BeamPlayerlobbyCommon.gs.cs.meta +11 -0
  628. package/Common/Runtime/OpenApi/BeamPlayerparty.gs.cs +116 -0
  629. package/Common/Runtime/OpenApi/BeamPlayerparty.gs.cs.meta +11 -0
  630. package/Common/Runtime/OpenApi/BeamPlayerpartyCommon.gs.cs +45 -0
  631. package/Common/Runtime/OpenApi/BeamPlayerpartyCommon.gs.cs.meta +11 -0
  632. package/Common/Runtime/OpenApi/BeamPlayerticket.gs.cs +44 -0
  633. package/Common/Runtime/OpenApi/BeamPlayerticket.gs.cs.meta +11 -0
  634. package/Common/Runtime/OpenApi/BeamPlayerticketCommon.gs.cs +45 -0
  635. package/Common/Runtime/OpenApi/BeamPlayerticketCommon.gs.cs.meta +11 -0
  636. package/Common/Runtime/OpenApi/BeamPresence.gs.cs +39 -0
  637. package/Common/Runtime/OpenApi/BeamPresence.gs.cs.meta +11 -0
  638. package/Common/Runtime/OpenApi/BeamPresenceCommon.gs.cs +45 -0
  639. package/Common/Runtime/OpenApi/BeamPresenceCommon.gs.cs.meta +11 -0
  640. package/Common/Runtime/OpenApi/BeamScheduler.gs.cs +416 -0
  641. package/Common/Runtime/OpenApi/BeamScheduler.gs.cs.meta +11 -0
  642. package/Common/Runtime/OpenApi/BeamSchedulerCommon.gs.cs +45 -0
  643. package/Common/Runtime/OpenApi/BeamSchedulerCommon.gs.cs.meta +11 -0
  644. package/Common/Runtime/OpenApi/BeamServiceplan.gs.cs +96 -0
  645. package/Common/Runtime/OpenApi/BeamServiceplan.gs.cs.meta +11 -0
  646. package/Common/Runtime/OpenApi/BeamServiceplanCommon.gs.cs +45 -0
  647. package/Common/Runtime/OpenApi/BeamServiceplanCommon.gs.cs.meta +11 -0
  648. package/Common/Runtime/OpenApi/BeamoBasic.gs.cs +547 -0
  649. package/Common/Runtime/OpenApi/BeamoBasic.gs.cs.meta +11 -0
  650. package/Common/Runtime/OpenApi/BeamoBasicCommon.gs.cs +45 -0
  651. package/Common/Runtime/OpenApi/BeamoBasicCommon.gs.cs.meta +11 -0
  652. package/Common/Runtime/OpenApi/CalendarsObject.gs.cs +62 -0
  653. package/Common/Runtime/OpenApi/CalendarsObject.gs.cs.meta +11 -0
  654. package/Common/Runtime/OpenApi/CalendarsObjectCommon.gs.cs +45 -0
  655. package/Common/Runtime/OpenApi/CalendarsObjectCommon.gs.cs.meta +11 -0
  656. package/Common/Runtime/OpenApi/CloudsavingBasic.gs.cs +222 -0
  657. package/Common/Runtime/OpenApi/CloudsavingBasic.gs.cs.meta +11 -0
  658. package/Common/Runtime/OpenApi/CloudsavingBasicCommon.gs.cs +45 -0
  659. package/Common/Runtime/OpenApi/CloudsavingBasicCommon.gs.cs.meta +11 -0
  660. package/Common/Runtime/OpenApi/CommerceBasic.gs.cs +120 -0
  661. package/Common/Runtime/OpenApi/CommerceBasic.gs.cs.meta +11 -0
  662. package/Common/Runtime/OpenApi/CommerceBasicCommon.gs.cs +45 -0
  663. package/Common/Runtime/OpenApi/CommerceBasicCommon.gs.cs.meta +11 -0
  664. package/Common/Runtime/OpenApi/CommerceObject.gs.cs +346 -0
  665. package/Common/Runtime/OpenApi/CommerceObject.gs.cs.meta +11 -0
  666. package/Common/Runtime/OpenApi/ContentBasic.gs.cs +672 -0
  667. package/Common/Runtime/OpenApi/ContentBasic.gs.cs.meta +11 -0
  668. package/Common/Runtime/OpenApi/ContentBasicCommon.gs.cs +45 -0
  669. package/Common/Runtime/OpenApi/ContentBasicCommon.gs.cs.meta +11 -0
  670. package/Common/Runtime/OpenApi/Event-playersObject.gs.cs +84 -0
  671. package/Common/Runtime/OpenApi/Event-playersObject.gs.cs.meta +11 -0
  672. package/Common/Runtime/OpenApi/Event-playersObjectCommon.gs.cs +45 -0
  673. package/Common/Runtime/OpenApi/Event-playersObjectCommon.gs.cs.meta +11 -0
  674. package/Common/Runtime/OpenApi/EventsBasic.gs.cs +125 -0
  675. package/Common/Runtime/OpenApi/EventsBasic.gs.cs.meta +11 -0
  676. package/Common/Runtime/OpenApi/EventsBasicCommon.gs.cs +45 -0
  677. package/Common/Runtime/OpenApi/EventsBasicCommon.gs.cs.meta +11 -0
  678. package/Common/Runtime/OpenApi/EventsObject.gs.cs +144 -0
  679. package/Common/Runtime/OpenApi/EventsObject.gs.cs.meta +11 -0
  680. package/Common/Runtime/OpenApi/Group-usersObject.gs.cs +284 -0
  681. package/Common/Runtime/OpenApi/Group-usersObject.gs.cs.meta +11 -0
  682. package/Common/Runtime/OpenApi/Group-usersObjectCommon.gs.cs +45 -0
  683. package/Common/Runtime/OpenApi/Group-usersObjectCommon.gs.cs.meta +11 -0
  684. package/Common/Runtime/OpenApi/GroupsObject.gs.cs +280 -0
  685. package/Common/Runtime/OpenApi/GroupsObject.gs.cs.meta +11 -0
  686. package/Common/Runtime/OpenApi/GroupsObjectCommon.gs.cs +45 -0
  687. package/Common/Runtime/OpenApi/GroupsObjectCommon.gs.cs.meta +11 -0
  688. package/Common/Runtime/OpenApi/InventoryBasic.gs.cs +54 -0
  689. package/Common/Runtime/OpenApi/InventoryBasic.gs.cs.meta +11 -0
  690. package/Common/Runtime/OpenApi/InventoryBasicCommon.gs.cs +45 -0
  691. package/Common/Runtime/OpenApi/InventoryBasicCommon.gs.cs.meta +11 -0
  692. package/Common/Runtime/OpenApi/InventoryObject.gs.cs +204 -0
  693. package/Common/Runtime/OpenApi/InventoryObject.gs.cs.meta +11 -0
  694. package/Common/Runtime/OpenApi/LeaderboardsBasic.gs.cs +150 -0
  695. package/Common/Runtime/OpenApi/LeaderboardsBasic.gs.cs.meta +11 -0
  696. package/Common/Runtime/OpenApi/LeaderboardsBasicCommon.gs.cs +45 -0
  697. package/Common/Runtime/OpenApi/LeaderboardsBasicCommon.gs.cs.meta +11 -0
  698. package/Common/Runtime/OpenApi/LeaderboardsObject.gs.cs +466 -0
  699. package/Common/Runtime/OpenApi/LeaderboardsObject.gs.cs.meta +11 -0
  700. package/Common/Runtime/OpenApi/MailBasic.gs.cs +134 -0
  701. package/Common/Runtime/OpenApi/MailBasic.gs.cs.meta +11 -0
  702. package/Common/Runtime/OpenApi/MailBasicCommon.gs.cs +45 -0
  703. package/Common/Runtime/OpenApi/MailBasicCommon.gs.cs.meta +11 -0
  704. package/Common/Runtime/OpenApi/MailObject.gs.cs +222 -0
  705. package/Common/Runtime/OpenApi/MailObject.gs.cs.meta +11 -0
  706. package/Common/Runtime/OpenApi/Models.gs.cs +20468 -0
  707. package/Common/Runtime/OpenApi/Models.gs.cs.meta +11 -0
  708. package/Common/Runtime/OpenApi/NotificationBasic.gs.cs +151 -0
  709. package/Common/Runtime/OpenApi/NotificationBasic.gs.cs.meta +11 -0
  710. package/Common/Runtime/OpenApi/NotificationBasicCommon.gs.cs +45 -0
  711. package/Common/Runtime/OpenApi/NotificationBasicCommon.gs.cs.meta +11 -0
  712. package/Common/Runtime/OpenApi/PaymentsBasic.gs.cs +1180 -0
  713. package/Common/Runtime/OpenApi/PaymentsBasic.gs.cs.meta +11 -0
  714. package/Common/Runtime/OpenApi/PaymentsBasicCommon.gs.cs +45 -0
  715. package/Common/Runtime/OpenApi/PaymentsBasicCommon.gs.cs.meta +11 -0
  716. package/Common/Runtime/OpenApi/PaymentsObject.gs.cs +40 -0
  717. package/Common/Runtime/OpenApi/PaymentsObject.gs.cs.meta +11 -0
  718. package/Common/Runtime/OpenApi/PushBasic.gs.cs +58 -0
  719. package/Common/Runtime/OpenApi/PushBasic.gs.cs.meta +11 -0
  720. package/Common/Runtime/OpenApi/PushBasicCommon.gs.cs +45 -0
  721. package/Common/Runtime/OpenApi/PushBasicCommon.gs.cs.meta +11 -0
  722. package/Common/Runtime/OpenApi/RealmsBasic.gs.cs +683 -0
  723. package/Common/Runtime/OpenApi/RealmsBasic.gs.cs.meta +11 -0
  724. package/Common/Runtime/OpenApi/RealmsBasicCommon.gs.cs +45 -0
  725. package/Common/Runtime/OpenApi/RealmsBasicCommon.gs.cs.meta +11 -0
  726. package/Common/Runtime/OpenApi/SessionBasic.gs.cs +165 -0
  727. package/Common/Runtime/OpenApi/SessionBasic.gs.cs.meta +11 -0
  728. package/Common/Runtime/OpenApi/SessionBasicCommon.gs.cs +45 -0
  729. package/Common/Runtime/OpenApi/SessionBasicCommon.gs.cs.meta +11 -0
  730. package/Common/Runtime/OpenApi/SocialBasic.gs.cs +197 -0
  731. package/Common/Runtime/OpenApi/SocialBasic.gs.cs.meta +11 -0
  732. package/Common/Runtime/OpenApi/SocialBasicCommon.gs.cs +45 -0
  733. package/Common/Runtime/OpenApi/SocialBasicCommon.gs.cs.meta +11 -0
  734. package/Common/Runtime/OpenApi/StatsBasic.gs.cs +156 -0
  735. package/Common/Runtime/OpenApi/StatsBasic.gs.cs.meta +11 -0
  736. package/Common/Runtime/OpenApi/StatsBasicCommon.gs.cs +45 -0
  737. package/Common/Runtime/OpenApi/StatsBasicCommon.gs.cs.meta +11 -0
  738. package/Common/Runtime/OpenApi/StatsObject.gs.cs +176 -0
  739. package/Common/Runtime/OpenApi/StatsObject.gs.cs.meta +11 -0
  740. package/Common/Runtime/OpenApi/TournamentsBasic.gs.cs +607 -0
  741. package/Common/Runtime/OpenApi/TournamentsBasic.gs.cs.meta +11 -0
  742. package/Common/Runtime/OpenApi/TournamentsBasicCommon.gs.cs +45 -0
  743. package/Common/Runtime/OpenApi/TournamentsBasicCommon.gs.cs.meta +11 -0
  744. package/Common/Runtime/OpenApi/TournamentsObject.gs.cs +40 -0
  745. package/Common/Runtime/OpenApi/TournamentsObject.gs.cs.meta +11 -0
  746. package/Common/Runtime/OpenApi/TrialsBasic.gs.cs +224 -0
  747. package/Common/Runtime/OpenApi/TrialsBasic.gs.cs.meta +11 -0
  748. package/Common/Runtime/OpenApi/TrialsBasicCommon.gs.cs +45 -0
  749. package/Common/Runtime/OpenApi/TrialsBasicCommon.gs.cs.meta +11 -0
  750. package/Common/Runtime/OpenApi.meta +11 -0
  751. package/Common/Runtime/OpenApiExtensions/BeamoExtensions.cs +49 -0
  752. package/Common/Runtime/OpenApiExtensions/BeamoExtensions.cs.meta +11 -0
  753. package/Common/Runtime/OpenApiExtensions/LegacyConverterExtensions.cs +302 -0
  754. package/Common/Runtime/OpenApiExtensions/LegacyConverterExtensions.cs.meta +11 -0
  755. package/Common/Runtime/OpenApiExtensions.meta +11 -0
  756. package/Common/Runtime/OpenApiSystem.cs +236 -0
  757. package/Common/Runtime/OpenApiSystem.cs.meta +11 -0
  758. package/Common/Runtime/Player/Lazy.cs +27 -0
  759. package/Common/Runtime/Player/Lazy.cs.meta +11 -0
  760. package/Common/Runtime/Player/Observables.cs +449 -0
  761. package/Common/Runtime/Player/Observables.cs.meta +11 -0
  762. package/Common/Runtime/Player.meta +11 -0
  763. package/Common/Runtime/Pooling/ClassPool.cs +142 -0
  764. package/Common/Runtime/Pooling/ClassPool.cs.meta +11 -0
  765. package/Common/Runtime/Pooling/StringBuilderPool.cs +171 -0
  766. package/Common/Runtime/Pooling/StringBuilderPool.cs.meta +11 -0
  767. package/Common/Runtime/Pooling.meta +11 -0
  768. package/Common/Runtime/Promise.cs +1329 -0
  769. package/Common/Runtime/Promise.cs.meta +11 -0
  770. package/Common/Runtime/ReflectionCache/BeamContextSystemAttribute.cs +11 -0
  771. package/Common/Runtime/ReflectionCache/BeamContextSystemAttribute.cs.meta +11 -0
  772. package/Common/Runtime/ReflectionCache/INamingAttribute.cs +143 -0
  773. package/Common/Runtime/ReflectionCache/INamingAttribute.cs.meta +11 -0
  774. package/Common/Runtime/ReflectionCache/IReflectionAttribute.cs +154 -0
  775. package/Common/Runtime/ReflectionCache/IReflectionAttribute.cs.meta +11 -0
  776. package/Common/Runtime/ReflectionCache/PreserveAttribute.cs +23 -0
  777. package/Common/Runtime/ReflectionCache/PreserveAttribute.cs.meta +11 -0
  778. package/Common/Runtime/ReflectionCache/ReflectionCache.cs +457 -0
  779. package/Common/Runtime/ReflectionCache/ReflectionCache.cs.meta +11 -0
  780. package/Common/Runtime/ReflectionCache/ReflectionCache_Attributes.cs +289 -0
  781. package/Common/Runtime/ReflectionCache/ReflectionCache_Attributes.cs.meta +11 -0
  782. package/Common/Runtime/ReflectionCache/ReflectionCache_BaseTypes.cs +112 -0
  783. package/Common/Runtime/ReflectionCache/ReflectionCache_BaseTypes.cs.meta +11 -0
  784. package/Common/Runtime/ReflectionCache/ReflectionCache_SignatureMatching.cs +247 -0
  785. package/Common/Runtime/ReflectionCache/ReflectionCache_SignatureMatching.cs.meta +11 -0
  786. package/Common/Runtime/ReflectionCache.meta +11 -0
  787. package/Common/Runtime/Scheduler/BeamScheduler.cs +962 -0
  788. package/Common/Runtime/Scheduler/BeamScheduler.cs.meta +11 -0
  789. package/Common/Runtime/Scheduler/Cron.cs +557 -0
  790. package/Common/Runtime/Scheduler/Cron.cs.meta +11 -0
  791. package/Common/Runtime/Scheduler/CronValidation.cs +63 -0
  792. package/Common/Runtime/Scheduler/CronValidation.cs.meta +11 -0
  793. package/Common/Runtime/Scheduler.meta +11 -0
  794. package/Common/Runtime/Semantics/ServiceName.cs +39 -0
  795. package/Common/Runtime/Semantics/ServiceName.cs.meta +11 -0
  796. package/Common/Runtime/Semantics.meta +11 -0
  797. package/Common/Runtime/SmallerJSON/IRawJsonProvider.cs +42 -0
  798. package/Common/Runtime/SmallerJSON/IRawJsonProvider.cs.meta +11 -0
  799. package/Common/Runtime/SmallerJSON/SmallerJSON.ArrayDict.cs +479 -0
  800. package/Common/Runtime/SmallerJSON/SmallerJSON.ArrayDict.cs.meta +11 -0
  801. package/Common/Runtime/SmallerJSON/SmallerJSON.FromString.cs +627 -0
  802. package/Common/Runtime/SmallerJSON/SmallerJSON.FromString.cs.meta +11 -0
  803. package/Common/Runtime/SmallerJSON/SmallerJSON.asmdef +12 -0
  804. package/Common/Runtime/SmallerJSON/SmallerJSON.asmdef.meta +7 -0
  805. package/Common/Runtime/SmallerJSON/SmallerJSON.cs +1056 -0
  806. package/Common/Runtime/SmallerJSON/SmallerJSON.cs.meta +11 -0
  807. package/Common/Runtime/SmallerJSON.meta +11 -0
  808. package/Common/Runtime/Spew/Logger.cs +418 -0
  809. package/Common/Runtime/Spew/Logger.cs.meta +11 -0
  810. package/Common/Runtime/Spew/SpewLoggerAttribute.cs +15 -0
  811. package/Common/Runtime/Spew/SpewLoggerAttribute.cs.meta +11 -0
  812. package/Common/Runtime/Spew.meta +11 -0
  813. package/Common/Runtime/Trie.cs +463 -0
  814. package/Common/Runtime/Trie.cs.meta +11 -0
  815. package/Common/Runtime/TypeExtensions.cs +67 -0
  816. package/Common/Runtime/TypeExtensions.cs.meta +11 -0
  817. package/Common/Runtime/Unity.Beamable.Runtime.Common.asmdef +18 -0
  818. package/Common/Runtime/Unity.Beamable.Runtime.Common.asmdef.meta +7 -0
  819. package/Common/Runtime/Util/BeamAssemblyVersionUtil.cs +53 -0
  820. package/Common/Runtime/Util/BeamAssemblyVersionUtil.cs.meta +11 -0
  821. package/Common/Runtime/Util/BeamFileUtil.cs +28 -0
  822. package/Common/Runtime/Util/BeamFileUtil.cs.meta +11 -0
  823. package/Common/Runtime/Util/DocsPageHelper.cs +28 -0
  824. package/Common/Runtime/Util/DocsPageHelper.cs.meta +11 -0
  825. package/Common/Runtime/Util/NaturalStringComparer.cs +53 -0
  826. package/Common/Runtime/Util/NaturalStringComparer.cs.meta +11 -0
  827. package/Common/Runtime/Util.meta +11 -0
  828. package/Common/Runtime.meta +11 -0
  829. package/Common.meta +8 -0
  830. package/Editor/3rdParty/Splitter/SplitterGUILayout2.cs +194 -0
  831. package/Editor/3rdParty/Splitter/SplitterGUILayout2.cs.meta +3 -0
  832. package/Editor/3rdParty/Splitter.meta +3 -0
  833. package/Editor/3rdParty.meta +8 -0
  834. package/Editor/BeamCli/BeamCli.cs +417 -0
  835. package/Editor/BeamCli/BeamCli.cs.meta +11 -0
  836. package/Editor/BeamCli/BeamCliUtil.cs +254 -0
  837. package/Editor/BeamCli/BeamCliUtil.cs.meta +3 -0
  838. package/Editor/BeamCli/BeamCommand.cs +552 -0
  839. package/Editor/BeamCli/BeamCommand.cs.meta +11 -0
  840. package/Editor/BeamCli/BeamWebCommand.cs +534 -0
  841. package/Editor/BeamCli/BeamWebCommand.cs.meta +3 -0
  842. package/Editor/BeamCli/BeamWebHistory.cs +267 -0
  843. package/Editor/BeamCli/BeamWebHistory.cs.meta +3 -0
  844. package/Editor/BeamCli/CliSpewLogger.cs +17 -0
  845. package/Editor/BeamCli/CliSpewLogger.cs.meta +3 -0
  846. package/Editor/BeamCli/Commands/Beam.cs +241 -0
  847. package/Editor/BeamCli/Commands/Beam.cs.meta +11 -0
  848. package/Editor/BeamCli/Commands/BeamAccountMeCommandOutput.cs +27 -0
  849. package/Editor/BeamCli/Commands/BeamAccountMeCommandOutput.cs.meta +11 -0
  850. package/Editor/BeamCli/Commands/BeamAccountMeExternalIdentity.cs +14 -0
  851. package/Editor/BeamCli/Commands/BeamAccountMeExternalIdentity.cs.meta +11 -0
  852. package/Editor/BeamCli/Commands/BeamAddFederationCommandOutput.cs +11 -0
  853. package/Editor/BeamCli/Commands/BeamAddFederationCommandOutput.cs.meta +11 -0
  854. package/Editor/BeamCli/Commands/BeamBuildProjectCommandOutput.cs +13 -0
  855. package/Editor/BeamCli/Commands/BeamBuildProjectCommandOutput.cs.meta +11 -0
  856. package/Editor/BeamCli/Commands/BeamBuildSolutionCommandResults.cs +11 -0
  857. package/Editor/BeamCli/Commands/BeamBuildSolutionCommandResults.cs.meta +11 -0
  858. package/Editor/BeamCli/Commands/BeamCheckFixedResult.cs +13 -0
  859. package/Editor/BeamCli/Commands/BeamCheckFixedResult.cs.meta +11 -0
  860. package/Editor/BeamCli/Commands/BeamCheckGrafanaCommandResults.cs +14 -0
  861. package/Editor/BeamCli/Commands/BeamCheckGrafanaCommandResults.cs.meta +11 -0
  862. package/Editor/BeamCli/Commands/BeamCheckPerfCommandOutput.cs +12 -0
  863. package/Editor/BeamCli/Commands/BeamCheckPerfCommandOutput.cs.meta +11 -0
  864. package/Editor/BeamCli/Commands/BeamCheckRegistryCommandResults.cs +13 -0
  865. package/Editor/BeamCli/Commands/BeamCheckRegistryCommandResults.cs.meta +11 -0
  866. package/Editor/BeamCli/Commands/BeamCheckResultsForBeamoId.cs +13 -0
  867. package/Editor/BeamCli/Commands/BeamCheckResultsForBeamoId.cs.meta +11 -0
  868. package/Editor/BeamCli/Commands/BeamCheckStatusServiceResult.cs +14 -0
  869. package/Editor/BeamCli/Commands/BeamCheckStatusServiceResult.cs.meta +11 -0
  870. package/Editor/BeamCli/Commands/BeamChecksScan.cs +67 -0
  871. package/Editor/BeamCli/Commands/BeamChecksScan.cs.meta +11 -0
  872. package/Editor/BeamCli/Commands/BeamClearTempLogFilesCommandOutput.cs +13 -0
  873. package/Editor/BeamCli/Commands/BeamClearTempLogFilesCommandOutput.cs.meta +11 -0
  874. package/Editor/BeamCli/Commands/BeamCliServiceComponent.cs +12 -0
  875. package/Editor/BeamCli/Commands/BeamCliServiceComponent.cs.meta +11 -0
  876. package/Editor/BeamCli/Commands/BeamCliServiceDependency.cs +13 -0
  877. package/Editor/BeamCli/Commands/BeamCliServiceDependency.cs.meta +11 -0
  878. package/Editor/BeamCli/Commands/BeamCliServiceManifest.cs +17 -0
  879. package/Editor/BeamCli/Commands/BeamCliServiceManifest.cs.meta +11 -0
  880. package/Editor/BeamCli/Commands/BeamCliServiceReference.cs +20 -0
  881. package/Editor/BeamCli/Commands/BeamCliServiceReference.cs.meta +11 -0
  882. package/Editor/BeamCli/Commands/BeamCliServiceStorageReference.cs +16 -0
  883. package/Editor/BeamCli/Commands/BeamCliServiceStorageReference.cs.meta +11 -0
  884. package/Editor/BeamCli/Commands/BeamCollectorGet.cs +65 -0
  885. package/Editor/BeamCli/Commands/BeamCollectorGet.cs.meta +11 -0
  886. package/Editor/BeamCli/Commands/BeamCollectorStatus.cs +58 -0
  887. package/Editor/BeamCli/Commands/BeamCollectorStatus.cs.meta +11 -0
  888. package/Editor/BeamCli/Commands/BeamCollectorStatusResult.cs +12 -0
  889. package/Editor/BeamCli/Commands/BeamCollectorStatusResult.cs.meta +11 -0
  890. package/Editor/BeamCli/Commands/BeamConfig.cs +64 -0
  891. package/Editor/BeamCli/Commands/BeamConfig.cs.meta +11 -0
  892. package/Editor/BeamCli/Commands/BeamConfigCommandResult.cs +15 -0
  893. package/Editor/BeamCli/Commands/BeamConfigCommandResult.cs.meta +11 -0
  894. package/Editor/BeamCli/Commands/BeamConfigRealm.cs +63 -0
  895. package/Editor/BeamCli/Commands/BeamConfigRealm.cs.meta +11 -0
  896. package/Editor/BeamCli/Commands/BeamConfigRealmRemove.cs +65 -0
  897. package/Editor/BeamCli/Commands/BeamConfigRealmRemove.cs.meta +11 -0
  898. package/Editor/BeamCli/Commands/BeamConfigRealmSet.cs +65 -0
  899. package/Editor/BeamCli/Commands/BeamConfigRealmSet.cs.meta +11 -0
  900. package/Editor/BeamCli/Commands/BeamConfigRoutes.cs +51 -0
  901. package/Editor/BeamCli/Commands/BeamConfigRoutes.cs.meta +11 -0
  902. package/Editor/BeamCli/Commands/BeamConfigRoutesCommandResults.cs +18 -0
  903. package/Editor/BeamCli/Commands/BeamConfigRoutesCommandResults.cs.meta +11 -0
  904. package/Editor/BeamCli/Commands/BeamConfigRoutesCommandWebsocketResult.cs +13 -0
  905. package/Editor/BeamCli/Commands/BeamConfigRoutesCommandWebsocketResult.cs.meta +11 -0
  906. package/Editor/BeamCli/Commands/BeamConstructVersionOutput.cs +15 -0
  907. package/Editor/BeamCli/Commands/BeamConstructVersionOutput.cs.meta +11 -0
  908. package/Editor/BeamCli/Commands/BeamContentArchiveManifest.cs +62 -0
  909. package/Editor/BeamCli/Commands/BeamContentArchiveManifest.cs.meta +11 -0
  910. package/Editor/BeamCli/Commands/BeamContentArchiveManifestCommandResult.cs +11 -0
  911. package/Editor/BeamCli/Commands/BeamContentArchiveManifestCommandResult.cs.meta +11 -0
  912. package/Editor/BeamCli/Commands/BeamContentCreateLocalManifestCommandResult.cs +11 -0
  913. package/Editor/BeamCli/Commands/BeamContentCreateLocalManifestCommandResult.cs.meta +11 -0
  914. package/Editor/BeamCli/Commands/BeamContentListManifests.cs +58 -0
  915. package/Editor/BeamCli/Commands/BeamContentListManifests.cs.meta +11 -0
  916. package/Editor/BeamCli/Commands/BeamContentListManifestsCommandResults.cs +14 -0
  917. package/Editor/BeamCli/Commands/BeamContentListManifestsCommandResults.cs.meta +11 -0
  918. package/Editor/BeamCli/Commands/BeamContentNewManifest.cs +55 -0
  919. package/Editor/BeamCli/Commands/BeamContentNewManifest.cs.meta +11 -0
  920. package/Editor/BeamCli/Commands/BeamContentProgressUpdateData.cs +16 -0
  921. package/Editor/BeamCli/Commands/BeamContentProgressUpdateData.cs.meta +11 -0
  922. package/Editor/BeamCli/Commands/BeamContentPs.cs +81 -0
  923. package/Editor/BeamCli/Commands/BeamContentPs.cs.meta +11 -0
  924. package/Editor/BeamCli/Commands/BeamContentPsCommandEvent.cs +17 -0
  925. package/Editor/BeamCli/Commands/BeamContentPsCommandEvent.cs.meta +11 -0
  926. package/Editor/BeamCli/Commands/BeamContentPsProgressMessage.cs +14 -0
  927. package/Editor/BeamCli/Commands/BeamContentPsProgressMessage.cs.meta +11 -0
  928. package/Editor/BeamCli/Commands/BeamContentPublish.cs +85 -0
  929. package/Editor/BeamCli/Commands/BeamContentPublish.cs.meta +11 -0
  930. package/Editor/BeamCli/Commands/BeamContentPublishResult.cs +11 -0
  931. package/Editor/BeamCli/Commands/BeamContentPublishResult.cs.meta +11 -0
  932. package/Editor/BeamCli/Commands/BeamContentResolve.cs +89 -0
  933. package/Editor/BeamCli/Commands/BeamContentResolve.cs.meta +11 -0
  934. package/Editor/BeamCli/Commands/BeamContentResolveConflictResult.cs +12 -0
  935. package/Editor/BeamCli/Commands/BeamContentResolveConflictResult.cs.meta +11 -0
  936. package/Editor/BeamCli/Commands/BeamContentRestore.cs +91 -0
  937. package/Editor/BeamCli/Commands/BeamContentRestore.cs.meta +11 -0
  938. package/Editor/BeamCli/Commands/BeamContentRestoreErrorReport.cs +18 -0
  939. package/Editor/BeamCli/Commands/BeamContentRestoreErrorReport.cs.meta +11 -0
  940. package/Editor/BeamCli/Commands/BeamContentRestoreResult.cs +12 -0
  941. package/Editor/BeamCli/Commands/BeamContentRestoreResult.cs.meta +11 -0
  942. package/Editor/BeamCli/Commands/BeamContentSave.cs +86 -0
  943. package/Editor/BeamCli/Commands/BeamContentSave.cs.meta +11 -0
  944. package/Editor/BeamCli/Commands/BeamContentSnapshot.cs +74 -0
  945. package/Editor/BeamCli/Commands/BeamContentSnapshot.cs.meta +11 -0
  946. package/Editor/BeamCli/Commands/BeamContentSnapshotList.cs +65 -0
  947. package/Editor/BeamCli/Commands/BeamContentSnapshotList.cs.meta +11 -0
  948. package/Editor/BeamCli/Commands/BeamContentSnapshotListItem.cs +13 -0
  949. package/Editor/BeamCli/Commands/BeamContentSnapshotListItem.cs.meta +11 -0
  950. package/Editor/BeamCli/Commands/BeamContentSnapshotListResult.cs +13 -0
  951. package/Editor/BeamCli/Commands/BeamContentSnapshotListResult.cs.meta +11 -0
  952. package/Editor/BeamCli/Commands/BeamContentSnapshotResult.cs +12 -0
  953. package/Editor/BeamCli/Commands/BeamContentSnapshotResult.cs.meta +11 -0
  954. package/Editor/BeamCli/Commands/BeamContentSnapshotType.cs +12 -0
  955. package/Editor/BeamCli/Commands/BeamContentSnapshotType.cs.meta +11 -0
  956. package/Editor/BeamCli/Commands/BeamContentSync.cs +120 -0
  957. package/Editor/BeamCli/Commands/BeamContentSync.cs.meta +11 -0
  958. package/Editor/BeamCli/Commands/BeamContentSyncReport.cs +11 -0
  959. package/Editor/BeamCli/Commands/BeamContentSyncReport.cs.meta +11 -0
  960. package/Editor/BeamCli/Commands/BeamContentSyncResult.cs +12 -0
  961. package/Editor/BeamCli/Commands/BeamContentSyncResult.cs.meta +11 -0
  962. package/Editor/BeamCli/Commands/BeamContentTagAdd.cs +80 -0
  963. package/Editor/BeamCli/Commands/BeamContentTagAdd.cs.meta +11 -0
  964. package/Editor/BeamCli/Commands/BeamContentTagRm.cs +80 -0
  965. package/Editor/BeamCli/Commands/BeamContentTagRm.cs.meta +11 -0
  966. package/Editor/BeamCli/Commands/BeamContentTagSet.cs +87 -0
  967. package/Editor/BeamCli/Commands/BeamContentTagSet.cs.meta +11 -0
  968. package/Editor/BeamCli/Commands/BeamCopyProjectSrcToUnityCommandOutput.cs +12 -0
  969. package/Editor/BeamCli/Commands/BeamCopyProjectSrcToUnityCommandOutput.cs.meta +11 -0
  970. package/Editor/BeamCli/Commands/BeamDeleteProjectCommandOutput.cs +11 -0
  971. package/Editor/BeamCli/Commands/BeamDeleteProjectCommandOutput.cs.meta +11 -0
  972. package/Editor/BeamCli/Commands/BeamDependencyData.cs +15 -0
  973. package/Editor/BeamCli/Commands/BeamDependencyData.cs.meta +11 -0
  974. package/Editor/BeamCli/Commands/BeamDeployMode.cs +12 -0
  975. package/Editor/BeamCli/Commands/BeamDeployMode.cs.meta +11 -0
  976. package/Editor/BeamCli/Commands/BeamDeployablePlan.cs +19 -0
  977. package/Editor/BeamCli/Commands/BeamDeployablePlan.cs.meta +11 -0
  978. package/Editor/BeamCli/Commands/BeamDeploymentDiffSummary.cs +24 -0
  979. package/Editor/BeamCli/Commands/BeamDeploymentDiffSummary.cs.meta +11 -0
  980. package/Editor/BeamCli/Commands/BeamDeploymentGet.cs +72 -0
  981. package/Editor/BeamCli/Commands/BeamDeploymentGet.cs.meta +11 -0
  982. package/Editor/BeamCli/Commands/BeamDeploymentList.cs +65 -0
  983. package/Editor/BeamCli/Commands/BeamDeploymentList.cs.meta +11 -0
  984. package/Editor/BeamCli/Commands/BeamDeploymentManifestJsonDiff.cs +15 -0
  985. package/Editor/BeamCli/Commands/BeamDeploymentManifestJsonDiff.cs.meta +11 -0
  986. package/Editor/BeamCli/Commands/BeamDeploymentPlan.cs +150 -0
  987. package/Editor/BeamCli/Commands/BeamDeploymentPlan.cs.meta +11 -0
  988. package/Editor/BeamCli/Commands/BeamDeploymentPlanMetadata.cs +14 -0
  989. package/Editor/BeamCli/Commands/BeamDeploymentPlanMetadata.cs.meta +11 -0
  990. package/Editor/BeamCli/Commands/BeamDeploymentRegistry.cs +55 -0
  991. package/Editor/BeamCli/Commands/BeamDeploymentRegistry.cs.meta +11 -0
  992. package/Editor/BeamCli/Commands/BeamDeploymentRelease.cs +150 -0
  993. package/Editor/BeamCli/Commands/BeamDeploymentRelease.cs.meta +11 -0
  994. package/Editor/BeamCli/Commands/BeamDeploymentStatus.cs +58 -0
  995. package/Editor/BeamCli/Commands/BeamDeploymentStatus.cs.meta +11 -0
  996. package/Editor/BeamCli/Commands/BeamDeveloperUserData.cs +25 -0
  997. package/Editor/BeamCli/Commands/BeamDeveloperUserData.cs.meta +11 -0
  998. package/Editor/BeamCli/Commands/BeamDeveloperUserManagerCleanCapturedUserBuffer.cs +58 -0
  999. package/Editor/BeamCli/Commands/BeamDeveloperUserManagerCleanCapturedUserBuffer.cs.meta +11 -0
  1000. package/Editor/BeamCli/Commands/BeamDeveloperUserManagerCreateUser.cs +97 -0
  1001. package/Editor/BeamCli/Commands/BeamDeveloperUserManagerCreateUser.cs.meta +11 -0
  1002. package/Editor/BeamCli/Commands/BeamDeveloperUserManagerCreateUserBatch.cs +80 -0
  1003. package/Editor/BeamCli/Commands/BeamDeveloperUserManagerCreateUserBatch.cs.meta +11 -0
  1004. package/Editor/BeamCli/Commands/BeamDeveloperUserManagerPs.cs +65 -0
  1005. package/Editor/BeamCli/Commands/BeamDeveloperUserManagerPs.cs.meta +11 -0
  1006. package/Editor/BeamCli/Commands/BeamDeveloperUserManagerRemoveUser.cs +62 -0
  1007. package/Editor/BeamCli/Commands/BeamDeveloperUserManagerRemoveUser.cs.meta +11 -0
  1008. package/Editor/BeamCli/Commands/BeamDeveloperUserManagerSaveUser.cs +157 -0
  1009. package/Editor/BeamCli/Commands/BeamDeveloperUserManagerSaveUser.cs.meta +11 -0
  1010. package/Editor/BeamCli/Commands/BeamDeveloperUserManagerUpdateInfo.cs +83 -0
  1011. package/Editor/BeamCli/Commands/BeamDeveloperUserManagerUpdateInfo.cs.meta +11 -0
  1012. package/Editor/BeamCli/Commands/BeamDeveloperUserPsCommandEvent.cs +13 -0
  1013. package/Editor/BeamCli/Commands/BeamDeveloperUserPsCommandEvent.cs.meta +11 -0
  1014. package/Editor/BeamCli/Commands/BeamDeveloperUserResult.cs +15 -0
  1015. package/Editor/BeamCli/Commands/BeamDeveloperUserResult.cs.meta +11 -0
  1016. package/Editor/BeamCli/Commands/BeamDisableFederationCommandOutput.cs +11 -0
  1017. package/Editor/BeamCli/Commands/BeamDisableFederationCommandOutput.cs.meta +11 -0
  1018. package/Editor/BeamCli/Commands/BeamDockerServiceDescriptor.cs +20 -0
  1019. package/Editor/BeamCli/Commands/BeamDockerServiceDescriptor.cs.meta +11 -0
  1020. package/Editor/BeamCli/Commands/BeamDockerStatusCommandOutput.cs +14 -0
  1021. package/Editor/BeamCli/Commands/BeamDockerStatusCommandOutput.cs.meta +11 -0
  1022. package/Editor/BeamCli/Commands/BeamDownloadAllNugetDepsToUnityCommandOutput.cs +11 -0
  1023. package/Editor/BeamCli/Commands/BeamDownloadAllNugetDepsToUnityCommandOutput.cs.meta +11 -0
  1024. package/Editor/BeamCli/Commands/BeamDownloadCollectorCommandResults.cs +13 -0
  1025. package/Editor/BeamCli/Commands/BeamDownloadCollectorCommandResults.cs.meta +11 -0
  1026. package/Editor/BeamCli/Commands/BeamDownloadNugetDepToUnityCommandOutput.cs +11 -0
  1027. package/Editor/BeamCli/Commands/BeamDownloadNugetDepToUnityCommandOutput.cs.meta +11 -0
  1028. package/Editor/BeamCli/Commands/BeamEraseStorageObjectCommandOutput.cs +11 -0
  1029. package/Editor/BeamCli/Commands/BeamEraseStorageObjectCommandOutput.cs.meta +11 -0
  1030. package/Editor/BeamCli/Commands/BeamFederationDisable.cs +55 -0
  1031. package/Editor/BeamCli/Commands/BeamFederationDisable.cs.meta +11 -0
  1032. package/Editor/BeamCli/Commands/BeamFederationEnable.cs +55 -0
  1033. package/Editor/BeamCli/Commands/BeamFederationEnable.cs.meta +11 -0
  1034. package/Editor/BeamCli/Commands/BeamFederationEntry.cs +14 -0
  1035. package/Editor/BeamCli/Commands/BeamFederationEntry.cs.meta +11 -0
  1036. package/Editor/BeamCli/Commands/BeamFederationList.cs +72 -0
  1037. package/Editor/BeamCli/Commands/BeamFederationList.cs.meta +11 -0
  1038. package/Editor/BeamCli/Commands/BeamFederationLocalKey.cs +50 -0
  1039. package/Editor/BeamCli/Commands/BeamFederationLocalKey.cs.meta +11 -0
  1040. package/Editor/BeamCli/Commands/BeamFederationLocalSettingsGetIFederatedGameServer.cs +67 -0
  1041. package/Editor/BeamCli/Commands/BeamFederationLocalSettingsGetIFederatedGameServer.cs.meta +11 -0
  1042. package/Editor/BeamCli/Commands/BeamFederationLocalSettingsSetIFederatedGameServer.cs +78 -0
  1043. package/Editor/BeamCli/Commands/BeamFederationLocalSettingsSetIFederatedGameServer.cs.meta +11 -0
  1044. package/Editor/BeamCli/Commands/BeamFetchCommandLogRecord.cs +15 -0
  1045. package/Editor/BeamCli/Commands/BeamFetchCommandLogRecord.cs.meta +11 -0
  1046. package/Editor/BeamCli/Commands/BeamFetchTelemetryLogsResult.cs +12 -0
  1047. package/Editor/BeamCli/Commands/BeamFetchTelemetryLogsResult.cs.meta +11 -0
  1048. package/Editor/BeamCli/Commands/BeamGameListCommandResults.cs +12 -0
  1049. package/Editor/BeamCli/Commands/BeamGameListCommandResults.cs.meta +11 -0
  1050. package/Editor/BeamCli/Commands/BeamGenerateClientFileEvent.cs +13 -0
  1051. package/Editor/BeamCli/Commands/BeamGenerateClientFileEvent.cs.meta +11 -0
  1052. package/Editor/BeamCli/Commands/BeamGenerateClientOapiCommandArgsResult.cs +12 -0
  1053. package/Editor/BeamCli/Commands/BeamGenerateClientOapiCommandArgsResult.cs.meta +11 -0
  1054. package/Editor/BeamCli/Commands/BeamGenerateMkDocsCommandResult.cs +11 -0
  1055. package/Editor/BeamCli/Commands/BeamGenerateMkDocsCommandResult.cs.meta +11 -0
  1056. package/Editor/BeamCli/Commands/BeamGenerateOApiCommandOutput.cs +14 -0
  1057. package/Editor/BeamCli/Commands/BeamGenerateOApiCommandOutput.cs.meta +11 -0
  1058. package/Editor/BeamCli/Commands/BeamGenerateWebClientCommandArgsResult.cs +13 -0
  1059. package/Editor/BeamCli/Commands/BeamGenerateWebClientCommandArgsResult.cs.meta +11 -0
  1060. package/Editor/BeamCli/Commands/BeamGetBeamOtelConfigCommandResult.cs +14 -0
  1061. package/Editor/BeamCli/Commands/BeamGetBeamOtelConfigCommandResult.cs.meta +11 -0
  1062. package/Editor/BeamCli/Commands/BeamGetClickhouseCredentialsResult.cs +15 -0
  1063. package/Editor/BeamCli/Commands/BeamGetClickhouseCredentialsResult.cs.meta +11 -0
  1064. package/Editor/BeamCli/Commands/BeamGetDeploymentCommandOutput.cs +12 -0
  1065. package/Editor/BeamCli/Commands/BeamGetDeploymentCommandOutput.cs.meta +11 -0
  1066. package/Editor/BeamCli/Commands/BeamGetLocalRoutingKeyCommandOutput.cs +12 -0
  1067. package/Editor/BeamCli/Commands/BeamGetLocalRoutingKeyCommandOutput.cs.meta +11 -0
  1068. package/Editor/BeamCli/Commands/BeamGetLogsUrlHeader.cs +13 -0
  1069. package/Editor/BeamCli/Commands/BeamGetLogsUrlHeader.cs.meta +11 -0
  1070. package/Editor/BeamCli/Commands/BeamGetSignedUrlResponse.cs +15 -0
  1071. package/Editor/BeamCli/Commands/BeamGetSignedUrlResponse.cs.meta +11 -0
  1072. package/Editor/BeamCli/Commands/BeamGetTokenDetailsCommandOutput.cs +24 -0
  1073. package/Editor/BeamCli/Commands/BeamGetTokenDetailsCommandOutput.cs.meta +11 -0
  1074. package/Editor/BeamCli/Commands/BeamGetTokenForGuestCommandOutput.cs +17 -0
  1075. package/Editor/BeamCli/Commands/BeamGetTokenForGuestCommandOutput.cs.meta +11 -0
  1076. package/Editor/BeamCli/Commands/BeamGetTokenListCommandOutput.cs +13 -0
  1077. package/Editor/BeamCli/Commands/BeamGetTokenListCommandOutput.cs.meta +11 -0
  1078. package/Editor/BeamCli/Commands/BeamGetTokenListElement.cs +15 -0
  1079. package/Editor/BeamCli/Commands/BeamGetTokenListElement.cs.meta +11 -0
  1080. package/Editor/BeamCli/Commands/BeamGetTokenViaRefreshCommandOutput.cs +17 -0
  1081. package/Editor/BeamCli/Commands/BeamGetTokenViaRefreshCommandOutput.cs.meta +11 -0
  1082. package/Editor/BeamCli/Commands/BeamGetUnityVersionInfoCommandOutput.cs +14 -0
  1083. package/Editor/BeamCli/Commands/BeamGetUnityVersionInfoCommandOutput.cs.meta +11 -0
  1084. package/Editor/BeamCli/Commands/BeamGrafanaOpen.cs +50 -0
  1085. package/Editor/BeamCli/Commands/BeamGrafanaOpen.cs.meta +11 -0
  1086. package/Editor/BeamCli/Commands/BeamGrafanaPs.cs +50 -0
  1087. package/Editor/BeamCli/Commands/BeamGrafanaPs.cs.meta +11 -0
  1088. package/Editor/BeamCli/Commands/BeamGrafanaStop.cs +50 -0
  1089. package/Editor/BeamCli/Commands/BeamGrafanaStop.cs.meta +11 -0
  1090. package/Editor/BeamCli/Commands/BeamHostServiceDescriptor.cs +18 -0
  1091. package/Editor/BeamCli/Commands/BeamHostServiceDescriptor.cs.meta +11 -0
  1092. package/Editor/BeamCli/Commands/BeamInit.cs +159 -0
  1093. package/Editor/BeamCli/Commands/BeamInit.cs.meta +11 -0
  1094. package/Editor/BeamCli/Commands/BeamInitCommandResult.cs +14 -0
  1095. package/Editor/BeamCli/Commands/BeamInitCommandResult.cs.meta +11 -0
  1096. package/Editor/BeamCli/Commands/BeamInvalidCidError.cs +17 -0
  1097. package/Editor/BeamCli/Commands/BeamInvalidCidError.cs.meta +11 -0
  1098. package/Editor/BeamCli/Commands/BeamInvalidTokenError.cs +18 -0
  1099. package/Editor/BeamCli/Commands/BeamInvalidTokenError.cs.meta +11 -0
  1100. package/Editor/BeamCli/Commands/BeamInvalidTokenErrorOutput.cs +18 -0
  1101. package/Editor/BeamCli/Commands/BeamInvalidTokenErrorOutput.cs.meta +11 -0
  1102. package/Editor/BeamCli/Commands/BeamListCommandResult.cs +13 -0
  1103. package/Editor/BeamCli/Commands/BeamListCommandResult.cs.meta +11 -0
  1104. package/Editor/BeamCli/Commands/BeamListDeploymentsCommandOutput.cs +12 -0
  1105. package/Editor/BeamCli/Commands/BeamListDeploymentsCommandOutput.cs.meta +11 -0
  1106. package/Editor/BeamCli/Commands/BeamListDepsCommandResults.cs +12 -0
  1107. package/Editor/BeamCli/Commands/BeamListDepsCommandResults.cs.meta +11 -0
  1108. package/Editor/BeamCli/Commands/BeamListServicesCommandOutput.cs +14 -0
  1109. package/Editor/BeamCli/Commands/BeamListServicesCommandOutput.cs.meta +11 -0
  1110. package/Editor/BeamCli/Commands/BeamListenPlayer.cs +58 -0
  1111. package/Editor/BeamCli/Commands/BeamListenPlayer.cs.meta +11 -0
  1112. package/Editor/BeamCli/Commands/BeamListenServer.cs +58 -0
  1113. package/Editor/BeamCli/Commands/BeamListenServer.cs.meta +11 -0
  1114. package/Editor/BeamCli/Commands/BeamLogin.cs +111 -0
  1115. package/Editor/BeamCli/Commands/BeamLogin.cs.meta +11 -0
  1116. package/Editor/BeamCli/Commands/BeamLoginFailedError.cs +17 -0
  1117. package/Editor/BeamCli/Commands/BeamLoginFailedError.cs.meta +11 -0
  1118. package/Editor/BeamCli/Commands/BeamLoginResults.cs +11 -0
  1119. package/Editor/BeamCli/Commands/BeamLoginResults.cs.meta +11 -0
  1120. package/Editor/BeamCli/Commands/BeamLogout.cs +49 -0
  1121. package/Editor/BeamCli/Commands/BeamLogout.cs.meta +11 -0
  1122. package/Editor/BeamCli/Commands/BeamLogoutCommandResult.cs +11 -0
  1123. package/Editor/BeamCli/Commands/BeamLogoutCommandResult.cs.meta +11 -0
  1124. package/Editor/BeamCli/Commands/BeamManifestAuthor.cs +13 -0
  1125. package/Editor/BeamCli/Commands/BeamManifestAuthor.cs.meta +11 -0
  1126. package/Editor/BeamCli/Commands/BeamManifestChecksum.cs +14 -0
  1127. package/Editor/BeamCli/Commands/BeamManifestChecksum.cs.meta +11 -0
  1128. package/Editor/BeamCli/Commands/BeamManifestChecksums.cs +12 -0
  1129. package/Editor/BeamCli/Commands/BeamManifestChecksums.cs.meta +11 -0
  1130. package/Editor/BeamCli/Commands/BeamManifestProjectData.cs +13 -0
  1131. package/Editor/BeamCli/Commands/BeamManifestProjectData.cs.meta +11 -0
  1132. package/Editor/BeamCli/Commands/BeamManifestServiceEntry.cs +18 -0
  1133. package/Editor/BeamCli/Commands/BeamManifestServiceEntry.cs.meta +11 -0
  1134. package/Editor/BeamCli/Commands/BeamManifestSnapshotItem.cs +19 -0
  1135. package/Editor/BeamCli/Commands/BeamManifestSnapshotItem.cs.meta +11 -0
  1136. package/Editor/BeamCli/Commands/BeamManifestStorageEntry.cs +15 -0
  1137. package/Editor/BeamCli/Commands/BeamManifestStorageEntry.cs.meta +11 -0
  1138. package/Editor/BeamCli/Commands/BeamMe.cs +59 -0
  1139. package/Editor/BeamCli/Commands/BeamMe.cs.meta +11 -0
  1140. package/Editor/BeamCli/Commands/BeamMkdocs.cs +57 -0
  1141. package/Editor/BeamCli/Commands/BeamMkdocs.cs.meta +11 -0
  1142. package/Editor/BeamCli/Commands/BeamNoTokenError.cs +17 -0
  1143. package/Editor/BeamCli/Commands/BeamNoTokenError.cs.meta +11 -0
  1144. package/Editor/BeamCli/Commands/BeamNotificationPlayerOutput.cs +13 -0
  1145. package/Editor/BeamCli/Commands/BeamNotificationPlayerOutput.cs.meta +11 -0
  1146. package/Editor/BeamCli/Commands/BeamNotificationServerOutput.cs +13 -0
  1147. package/Editor/BeamCli/Commands/BeamNotificationServerOutput.cs.meta +11 -0
  1148. package/Editor/BeamCli/Commands/BeamOapiDownload.cs +67 -0
  1149. package/Editor/BeamCli/Commands/BeamOapiDownload.cs.meta +11 -0
  1150. package/Editor/BeamCli/Commands/BeamOrgGames.cs +58 -0
  1151. package/Editor/BeamCli/Commands/BeamOrgGames.cs.meta +11 -0
  1152. package/Editor/BeamCli/Commands/BeamOrgRealmData.cs +20 -0
  1153. package/Editor/BeamCli/Commands/BeamOrgRealmData.cs.meta +11 -0
  1154. package/Editor/BeamCli/Commands/BeamOrgRealms.cs +58 -0
  1155. package/Editor/BeamCli/Commands/BeamOrgRealms.cs.meta +11 -0
  1156. package/Editor/BeamCli/Commands/BeamOtelStatusResult.cs +14 -0
  1157. package/Editor/BeamCli/Commands/BeamOtelStatusResult.cs.meta +11 -0
  1158. package/Editor/BeamCli/Commands/BeamPlanReleaseProgress.cs +15 -0
  1159. package/Editor/BeamCli/Commands/BeamPlanReleaseProgress.cs.meta +11 -0
  1160. package/Editor/BeamCli/Commands/BeamProfileCheckCounters.cs +69 -0
  1161. package/Editor/BeamCli/Commands/BeamProfileCheckCounters.cs.meta +11 -0
  1162. package/Editor/BeamCli/Commands/BeamProfileCheckNbomber.cs +69 -0
  1163. package/Editor/BeamCli/Commands/BeamProfileCheckNbomber.cs.meta +11 -0
  1164. package/Editor/BeamCli/Commands/BeamProjectAddPaths.cs +73 -0
  1165. package/Editor/BeamCli/Commands/BeamProjectAddPaths.cs.meta +11 -0
  1166. package/Editor/BeamCli/Commands/BeamProjectAddUnityProject.cs +50 -0
  1167. package/Editor/BeamCli/Commands/BeamProjectAddUnityProject.cs.meta +11 -0
  1168. package/Editor/BeamCli/Commands/BeamProjectBuild.cs +76 -0
  1169. package/Editor/BeamCli/Commands/BeamProjectBuild.cs.meta +11 -0
  1170. package/Editor/BeamCli/Commands/BeamProjectBuildSln.cs +58 -0
  1171. package/Editor/BeamCli/Commands/BeamProjectBuildSln.cs.meta +11 -0
  1172. package/Editor/BeamCli/Commands/BeamProjectDeps.cs +45 -0
  1173. package/Editor/BeamCli/Commands/BeamProjectDeps.cs.meta +11 -0
  1174. package/Editor/BeamCli/Commands/BeamProjectDepsAdd.cs +55 -0
  1175. package/Editor/BeamCli/Commands/BeamProjectDepsAdd.cs.meta +11 -0
  1176. package/Editor/BeamCli/Commands/BeamProjectDepsList.cs +73 -0
  1177. package/Editor/BeamCli/Commands/BeamProjectDepsList.cs.meta +11 -0
  1178. package/Editor/BeamCli/Commands/BeamProjectDepsRemove.cs +55 -0
  1179. package/Editor/BeamCli/Commands/BeamProjectDepsRemove.cs.meta +11 -0
  1180. package/Editor/BeamCli/Commands/BeamProjectDisable.cs +91 -0
  1181. package/Editor/BeamCli/Commands/BeamProjectDisable.cs.meta +11 -0
  1182. package/Editor/BeamCli/Commands/BeamProjectEnable.cs +91 -0
  1183. package/Editor/BeamCli/Commands/BeamProjectEnable.cs.meta +11 -0
  1184. package/Editor/BeamCli/Commands/BeamProjectErrorReport.cs +13 -0
  1185. package/Editor/BeamCli/Commands/BeamProjectErrorReport.cs.meta +11 -0
  1186. package/Editor/BeamCli/Commands/BeamProjectErrorResult.cs +16 -0
  1187. package/Editor/BeamCli/Commands/BeamProjectErrorResult.cs.meta +11 -0
  1188. package/Editor/BeamCli/Commands/BeamProjectGenerateClient.cs +153 -0
  1189. package/Editor/BeamCli/Commands/BeamProjectGenerateClient.cs.meta +11 -0
  1190. package/Editor/BeamCli/Commands/BeamProjectGenerateClientOapi.cs +76 -0
  1191. package/Editor/BeamCli/Commands/BeamProjectGenerateClientOapi.cs.meta +11 -0
  1192. package/Editor/BeamCli/Commands/BeamProjectGenerateEnv.cs +101 -0
  1193. package/Editor/BeamCli/Commands/BeamProjectGenerateEnv.cs.meta +11 -0
  1194. package/Editor/BeamCli/Commands/BeamProjectGenerateProperties.cs +67 -0
  1195. package/Editor/BeamCli/Commands/BeamProjectGenerateProperties.cs.meta +11 -0
  1196. package/Editor/BeamCli/Commands/BeamProjectGenerateWebClient.cs +66 -0
  1197. package/Editor/BeamCli/Commands/BeamProjectGenerateWebClient.cs.meta +11 -0
  1198. package/Editor/BeamCli/Commands/BeamProjectList.cs +50 -0
  1199. package/Editor/BeamCli/Commands/BeamProjectList.cs.meta +11 -0
  1200. package/Editor/BeamCli/Commands/BeamProjectLogs.cs +69 -0
  1201. package/Editor/BeamCli/Commands/BeamProjectLogs.cs.meta +11 -0
  1202. package/Editor/BeamCli/Commands/BeamProjectNewCommonLib.cs +65 -0
  1203. package/Editor/BeamCli/Commands/BeamProjectNewCommonLib.cs.meta +11 -0
  1204. package/Editor/BeamCli/Commands/BeamProjectNewService.cs +108 -0
  1205. package/Editor/BeamCli/Commands/BeamProjectNewService.cs.meta +11 -0
  1206. package/Editor/BeamCli/Commands/BeamProjectNewStorage.cs +94 -0
  1207. package/Editor/BeamCli/Commands/BeamProjectNewStorage.cs.meta +11 -0
  1208. package/Editor/BeamCli/Commands/BeamProjectOapi.cs +69 -0
  1209. package/Editor/BeamCli/Commands/BeamProjectOapi.cs.meta +11 -0
  1210. package/Editor/BeamCli/Commands/BeamProjectOpen.cs +67 -0
  1211. package/Editor/BeamCli/Commands/BeamProjectOpen.cs.meta +11 -0
  1212. package/Editor/BeamCli/Commands/BeamProjectOpenMongo.cs +53 -0
  1213. package/Editor/BeamCli/Commands/BeamProjectOpenMongo.cs.meta +11 -0
  1214. package/Editor/BeamCli/Commands/BeamProjectOpenSwagger.cs +74 -0
  1215. package/Editor/BeamCli/Commands/BeamProjectOpenSwagger.cs.meta +11 -0
  1216. package/Editor/BeamCli/Commands/BeamProjectPs.cs +105 -0
  1217. package/Editor/BeamCli/Commands/BeamProjectPs.cs.meta +11 -0
  1218. package/Editor/BeamCli/Commands/BeamProjectReadSettings.cs +69 -0
  1219. package/Editor/BeamCli/Commands/BeamProjectReadSettings.cs.meta +11 -0
  1220. package/Editor/BeamCli/Commands/BeamProjectRegenerate.cs +71 -0
  1221. package/Editor/BeamCli/Commands/BeamProjectRegenerate.cs.meta +11 -0
  1222. package/Editor/BeamCli/Commands/BeamProjectRemoteLogs.cs +83 -0
  1223. package/Editor/BeamCli/Commands/BeamProjectRemoteLogs.cs.meta +11 -0
  1224. package/Editor/BeamCli/Commands/BeamProjectRemove.cs +105 -0
  1225. package/Editor/BeamCli/Commands/BeamProjectRemove.cs.meta +11 -0
  1226. package/Editor/BeamCli/Commands/BeamProjectRun.cs +136 -0
  1227. package/Editor/BeamCli/Commands/BeamProjectRun.cs.meta +11 -0
  1228. package/Editor/BeamCli/Commands/BeamProjectSettingsOutput.cs +13 -0
  1229. package/Editor/BeamCli/Commands/BeamProjectSettingsOutput.cs.meta +11 -0
  1230. package/Editor/BeamCli/Commands/BeamProjectStop.cs +76 -0
  1231. package/Editor/BeamCli/Commands/BeamProjectStop.cs.meta +11 -0
  1232. package/Editor/BeamCli/Commands/BeamProjectStorageErase.cs +61 -0
  1233. package/Editor/BeamCli/Commands/BeamProjectStorageErase.cs.meta +11 -0
  1234. package/Editor/BeamCli/Commands/BeamProjectStorageRestore.cs +75 -0
  1235. package/Editor/BeamCli/Commands/BeamProjectStorageRestore.cs.meta +11 -0
  1236. package/Editor/BeamCli/Commands/BeamProjectStorageSnapshot.cs +68 -0
  1237. package/Editor/BeamCli/Commands/BeamProjectStorageSnapshot.cs.meta +11 -0
  1238. package/Editor/BeamCli/Commands/BeamProjectWriteSetting.cs +95 -0
  1239. package/Editor/BeamCli/Commands/BeamProjectWriteSetting.cs.meta +11 -0
  1240. package/Editor/BeamCli/Commands/BeamReadProjectSettingsCommandOutput.cs +12 -0
  1241. package/Editor/BeamCli/Commands/BeamReadProjectSettingsCommandOutput.cs.meta +11 -0
  1242. package/Editor/BeamCli/Commands/BeamRealmConfigOutput.cs +12 -0
  1243. package/Editor/BeamCli/Commands/BeamRealmConfigOutput.cs.meta +11 -0
  1244. package/Editor/BeamCli/Commands/BeamRealmRole.cs +13 -0
  1245. package/Editor/BeamCli/Commands/BeamRealmRole.cs.meta +11 -0
  1246. package/Editor/BeamCli/Commands/BeamRealmsListCommandOutput.cs +14 -0
  1247. package/Editor/BeamCli/Commands/BeamRealmsListCommandOutput.cs.meta +11 -0
  1248. package/Editor/BeamCli/Commands/BeamReleaseSharedUnityCodeCommandOutput.cs +12 -0
  1249. package/Editor/BeamCli/Commands/BeamReleaseSharedUnityCodeCommandOutput.cs.meta +11 -0
  1250. package/Editor/BeamCli/Commands/BeamRemoteServiceDescriptor.cs +16 -0
  1251. package/Editor/BeamCli/Commands/BeamRemoteServiceDescriptor.cs.meta +11 -0
  1252. package/Editor/BeamCli/Commands/BeamRemoteStorageDescriptor.cs +13 -0
  1253. package/Editor/BeamCli/Commands/BeamRemoteStorageDescriptor.cs.meta +11 -0
  1254. package/Editor/BeamCli/Commands/BeamRemoveFederationCommandOutput.cs +11 -0
  1255. package/Editor/BeamCli/Commands/BeamRemoveFederationCommandOutput.cs.meta +11 -0
  1256. package/Editor/BeamCli/Commands/BeamReportTelemetryResult.cs +12 -0
  1257. package/Editor/BeamCli/Commands/BeamReportTelemetryResult.cs.meta +11 -0
  1258. package/Editor/BeamCli/Commands/BeamRequestCliCommandOutput.cs +11 -0
  1259. package/Editor/BeamCli/Commands/BeamRequestCliCommandOutput.cs.meta +11 -0
  1260. package/Editor/BeamCli/Commands/BeamRequiredFileEdit.cs +22 -0
  1261. package/Editor/BeamCli/Commands/BeamRequiredFileEdit.cs.meta +11 -0
  1262. package/Editor/BeamCli/Commands/BeamRestoreProjectCommandOutput.cs +11 -0
  1263. package/Editor/BeamCli/Commands/BeamRestoreProjectCommandOutput.cs.meta +11 -0
  1264. package/Editor/BeamCli/Commands/BeamRestoreStorageObjectCommandOutput.cs +11 -0
  1265. package/Editor/BeamCli/Commands/BeamRestoreStorageObjectCommandOutput.cs.meta +11 -0
  1266. package/Editor/BeamCli/Commands/BeamRunFailErrorOutput.cs +18 -0
  1267. package/Editor/BeamCli/Commands/BeamRunFailErrorOutput.cs.meta +11 -0
  1268. package/Editor/BeamCli/Commands/BeamRunProjectBuildErrorStream.cs +13 -0
  1269. package/Editor/BeamCli/Commands/BeamRunProjectBuildErrorStream.cs.meta +11 -0
  1270. package/Editor/BeamCli/Commands/BeamRunProjectResultStream.cs +14 -0
  1271. package/Editor/BeamCli/Commands/BeamRunProjectResultStream.cs.meta +11 -0
  1272. package/Editor/BeamCli/Commands/BeamSaveProjectPathsCommandResults.cs +11 -0
  1273. package/Editor/BeamCli/Commands/BeamSaveProjectPathsCommandResults.cs.meta +11 -0
  1274. package/Editor/BeamCli/Commands/BeamServeCliCommandOutput.cs +13 -0
  1275. package/Editor/BeamCli/Commands/BeamServeCliCommandOutput.cs.meta +11 -0
  1276. package/Editor/BeamCli/Commands/BeamServerClear.cs +79 -0
  1277. package/Editor/BeamCli/Commands/BeamServerClear.cs.meta +11 -0
  1278. package/Editor/BeamCli/Commands/BeamServerDescriptor.cs +17 -0
  1279. package/Editor/BeamCli/Commands/BeamServerDescriptor.cs.meta +11 -0
  1280. package/Editor/BeamCli/Commands/BeamServerKillCommandResult.cs +12 -0
  1281. package/Editor/BeamCli/Commands/BeamServerKillCommandResult.cs.meta +11 -0
  1282. package/Editor/BeamCli/Commands/BeamServerPs.cs +79 -0
  1283. package/Editor/BeamCli/Commands/BeamServerPs.cs.meta +11 -0
  1284. package/Editor/BeamCli/Commands/BeamServerPsCommandResult.cs +12 -0
  1285. package/Editor/BeamCli/Commands/BeamServerPsCommandResult.cs.meta +11 -0
  1286. package/Editor/BeamCli/Commands/BeamServerReq.cs +65 -0
  1287. package/Editor/BeamCli/Commands/BeamServerReq.cs.meta +11 -0
  1288. package/Editor/BeamCli/Commands/BeamServerServe.cs +102 -0
  1289. package/Editor/BeamCli/Commands/BeamServerServe.cs.meta +11 -0
  1290. package/Editor/BeamCli/Commands/BeamServiceDependenciesPair.cs +13 -0
  1291. package/Editor/BeamCli/Commands/BeamServiceDependenciesPair.cs.meta +11 -0
  1292. package/Editor/BeamCli/Commands/BeamServiceDeployReportResult.cs +13 -0
  1293. package/Editor/BeamCli/Commands/BeamServiceDeployReportResult.cs.meta +11 -0
  1294. package/Editor/BeamCli/Commands/BeamServiceFederationChange.cs +14 -0
  1295. package/Editor/BeamCli/Commands/BeamServiceFederationChange.cs.meta +11 -0
  1296. package/Editor/BeamCli/Commands/BeamServiceFederations.cs +14 -0
  1297. package/Editor/BeamCli/Commands/BeamServiceFederations.cs.meta +11 -0
  1298. package/Editor/BeamCli/Commands/BeamServiceImageIdChange.cs +14 -0
  1299. package/Editor/BeamCli/Commands/BeamServiceImageIdChange.cs.meta +11 -0
  1300. package/Editor/BeamCli/Commands/BeamServiceInstance.cs +18 -0
  1301. package/Editor/BeamCli/Commands/BeamServiceInstance.cs.meta +11 -0
  1302. package/Editor/BeamCli/Commands/BeamServiceListResult.cs +27 -0
  1303. package/Editor/BeamCli/Commands/BeamServiceListResult.cs.meta +11 -0
  1304. package/Editor/BeamCli/Commands/BeamServiceLogProviderChange.cs +14 -0
  1305. package/Editor/BeamCli/Commands/BeamServiceLogProviderChange.cs.meta +11 -0
  1306. package/Editor/BeamCli/Commands/BeamServiceManifestOutput.cs +12 -0
  1307. package/Editor/BeamCli/Commands/BeamServiceManifestOutput.cs.meta +11 -0
  1308. package/Editor/BeamCli/Commands/BeamServiceRemoteDeployProgressResult.cs +14 -0
  1309. package/Editor/BeamCli/Commands/BeamServiceRemoteDeployProgressResult.cs.meta +11 -0
  1310. package/Editor/BeamCli/Commands/BeamServiceRunProgressResult.cs +13 -0
  1311. package/Editor/BeamCli/Commands/BeamServiceRunProgressResult.cs.meta +11 -0
  1312. package/Editor/BeamCli/Commands/BeamServiceRunReportResult.cs +13 -0
  1313. package/Editor/BeamCli/Commands/BeamServiceRunReportResult.cs.meta +11 -0
  1314. package/Editor/BeamCli/Commands/BeamServiceStatus.cs +16 -0
  1315. package/Editor/BeamCli/Commands/BeamServiceStatus.cs.meta +11 -0
  1316. package/Editor/BeamCli/Commands/BeamServiceTemplate.cs +12 -0
  1317. package/Editor/BeamCli/Commands/BeamServiceTemplate.cs.meta +11 -0
  1318. package/Editor/BeamCli/Commands/BeamServicesBuild.cs +135 -0
  1319. package/Editor/BeamCli/Commands/BeamServicesBuild.cs.meta +11 -0
  1320. package/Editor/BeamCli/Commands/BeamServicesBuildCommandOutput.cs +14 -0
  1321. package/Editor/BeamCli/Commands/BeamServicesBuildCommandOutput.cs.meta +11 -0
  1322. package/Editor/BeamCli/Commands/BeamServicesBuiltProgress.cs +14 -0
  1323. package/Editor/BeamCli/Commands/BeamServicesBuiltProgress.cs.meta +11 -0
  1324. package/Editor/BeamCli/Commands/BeamServicesDeploy.cs +96 -0
  1325. package/Editor/BeamCli/Commands/BeamServicesDeploy.cs.meta +11 -0
  1326. package/Editor/BeamCli/Commands/BeamServicesDockerStart.cs +59 -0
  1327. package/Editor/BeamCli/Commands/BeamServicesDockerStart.cs.meta +11 -0
  1328. package/Editor/BeamCli/Commands/BeamServicesDockerStatus.cs +59 -0
  1329. package/Editor/BeamCli/Commands/BeamServicesDockerStatus.cs.meta +11 -0
  1330. package/Editor/BeamCli/Commands/BeamServicesForRouteCollection.cs +15 -0
  1331. package/Editor/BeamCli/Commands/BeamServicesForRouteCollection.cs.meta +11 -0
  1332. package/Editor/BeamCli/Commands/BeamServicesGetConnectionString.cs +69 -0
  1333. package/Editor/BeamCli/Commands/BeamServicesGetConnectionString.cs.meta +11 -0
  1334. package/Editor/BeamCli/Commands/BeamServicesGetConnectionStringCommandOutput.cs +12 -0
  1335. package/Editor/BeamCli/Commands/BeamServicesGetConnectionStringCommandOutput.cs.meta +11 -0
  1336. package/Editor/BeamCli/Commands/BeamServicesManifests.cs +65 -0
  1337. package/Editor/BeamCli/Commands/BeamServicesManifests.cs.meta +11 -0
  1338. package/Editor/BeamCli/Commands/BeamServicesPromote.cs +59 -0
  1339. package/Editor/BeamCli/Commands/BeamServicesPromote.cs.meta +11 -0
  1340. package/Editor/BeamCli/Commands/BeamServicesPs.cs +58 -0
  1341. package/Editor/BeamCli/Commands/BeamServicesPs.cs.meta +11 -0
  1342. package/Editor/BeamCli/Commands/BeamServicesRegistry.cs +50 -0
  1343. package/Editor/BeamCli/Commands/BeamServicesRegistry.cs.meta +11 -0
  1344. package/Editor/BeamCli/Commands/BeamServicesRegistryOutput.cs +12 -0
  1345. package/Editor/BeamCli/Commands/BeamServicesRegistryOutput.cs.meta +11 -0
  1346. package/Editor/BeamCli/Commands/BeamServicesResetContainer.cs +70 -0
  1347. package/Editor/BeamCli/Commands/BeamServicesResetContainer.cs.meta +11 -0
  1348. package/Editor/BeamCli/Commands/BeamServicesResetContainerCommandOutput.cs +13 -0
  1349. package/Editor/BeamCli/Commands/BeamServicesResetContainerCommandOutput.cs.meta +11 -0
  1350. package/Editor/BeamCli/Commands/BeamServicesResetImage.cs +70 -0
  1351. package/Editor/BeamCli/Commands/BeamServicesResetImage.cs.meta +11 -0
  1352. package/Editor/BeamCli/Commands/BeamServicesResetImageCommandOutput.cs +13 -0
  1353. package/Editor/BeamCli/Commands/BeamServicesResetImageCommandOutput.cs.meta +11 -0
  1354. package/Editor/BeamCli/Commands/BeamServicesRun.cs +88 -0
  1355. package/Editor/BeamCli/Commands/BeamServicesRun.cs.meta +11 -0
  1356. package/Editor/BeamCli/Commands/BeamServicesServiceLogs.cs +58 -0
  1357. package/Editor/BeamCli/Commands/BeamServicesServiceLogs.cs.meta +11 -0
  1358. package/Editor/BeamCli/Commands/BeamServicesServiceMetrics.cs +65 -0
  1359. package/Editor/BeamCli/Commands/BeamServicesServiceMetrics.cs.meta +11 -0
  1360. package/Editor/BeamCli/Commands/BeamServicesStop.cs +64 -0
  1361. package/Editor/BeamCli/Commands/BeamServicesStop.cs.meta +11 -0
  1362. package/Editor/BeamCli/Commands/BeamServicesTemplates.cs +50 -0
  1363. package/Editor/BeamCli/Commands/BeamServicesTemplates.cs.meta +11 -0
  1364. package/Editor/BeamCli/Commands/BeamServicesTemplatesCommandOutput.cs +12 -0
  1365. package/Editor/BeamCli/Commands/BeamServicesTemplatesCommandOutput.cs.meta +11 -0
  1366. package/Editor/BeamCli/Commands/BeamServicesUpdateDockerfile.cs +50 -0
  1367. package/Editor/BeamCli/Commands/BeamServicesUpdateDockerfile.cs.meta +11 -0
  1368. package/Editor/BeamCli/Commands/BeamServicesUploadApi.cs +50 -0
  1369. package/Editor/BeamCli/Commands/BeamServicesUploadApi.cs.meta +11 -0
  1370. package/Editor/BeamCli/Commands/BeamServicesUploadApiOutput.cs +12 -0
  1371. package/Editor/BeamCli/Commands/BeamServicesUploadApiOutput.cs.meta +11 -0
  1372. package/Editor/BeamCli/Commands/BeamSetAllFederationsCommandOutput.cs +11 -0
  1373. package/Editor/BeamCli/Commands/BeamSetAllFederationsCommandOutput.cs.meta +11 -0
  1374. package/Editor/BeamCli/Commands/BeamSetBeamOtelConfigCommandResults.cs +11 -0
  1375. package/Editor/BeamCli/Commands/BeamSetBeamOtelConfigCommandResults.cs.meta +11 -0
  1376. package/Editor/BeamCli/Commands/BeamSetEnabledCommandArgsOutput.cs +12 -0
  1377. package/Editor/BeamCli/Commands/BeamSetEnabledCommandArgsOutput.cs.meta +11 -0
  1378. package/Editor/BeamCli/Commands/BeamSetEnabledCommandComponent.cs +13 -0
  1379. package/Editor/BeamCli/Commands/BeamSetEnabledCommandComponent.cs.meta +11 -0
  1380. package/Editor/BeamCli/Commands/BeamSettingOutput.cs +13 -0
  1381. package/Editor/BeamCli/Commands/BeamSettingOutput.cs.meta +11 -0
  1382. package/Editor/BeamCli/Commands/BeamShowCurrentBeamoStatusCommandOutput.cs +12 -0
  1383. package/Editor/BeamCli/Commands/BeamShowCurrentBeamoStatusCommandOutput.cs.meta +11 -0
  1384. package/Editor/BeamCli/Commands/BeamShowManifestCommandOutput.cs +16 -0
  1385. package/Editor/BeamCli/Commands/BeamShowManifestCommandOutput.cs.meta +11 -0
  1386. package/Editor/BeamCli/Commands/BeamSnapshotStorageObjectCommandOutput.cs +11 -0
  1387. package/Editor/BeamCli/Commands/BeamSnapshotStorageObjectCommandOutput.cs.meta +11 -0
  1388. package/Editor/BeamCli/Commands/BeamStartDockerCommandOutput.cs +16 -0
  1389. package/Editor/BeamCli/Commands/BeamStartDockerCommandOutput.cs.meta +11 -0
  1390. package/Editor/BeamCli/Commands/BeamStartGrafanaCommandResults.cs +11 -0
  1391. package/Editor/BeamCli/Commands/BeamStartGrafanaCommandResults.cs.meta +11 -0
  1392. package/Editor/BeamCli/Commands/BeamStopProjectCommandOutput.cs +13 -0
  1393. package/Editor/BeamCli/Commands/BeamStopProjectCommandOutput.cs.meta +11 -0
  1394. package/Editor/BeamCli/Commands/BeamTailLogMessageForClient.cs +15 -0
  1395. package/Editor/BeamCli/Commands/BeamTailLogMessageForClient.cs.meta +11 -0
  1396. package/Editor/BeamCli/Commands/BeamTelemetryCollector.cs +45 -0
  1397. package/Editor/BeamCli/Commands/BeamTelemetryCollector.cs.meta +11 -0
  1398. package/Editor/BeamCli/Commands/BeamTelemetryCollectorGet.cs +66 -0
  1399. package/Editor/BeamCli/Commands/BeamTelemetryCollectorGet.cs.meta +11 -0
  1400. package/Editor/BeamCli/Commands/BeamTelemetryCollectorPs.cs +64 -0
  1401. package/Editor/BeamCli/Commands/BeamTelemetryCollectorPs.cs.meta +11 -0
  1402. package/Editor/BeamCli/Commands/BeamTelemetryConfig.cs +50 -0
  1403. package/Editor/BeamCli/Commands/BeamTelemetryConfig.cs.meta +11 -0
  1404. package/Editor/BeamCli/Commands/BeamTelemetryGetCreds.cs +50 -0
  1405. package/Editor/BeamCli/Commands/BeamTelemetryGetCreds.cs.meta +11 -0
  1406. package/Editor/BeamCli/Commands/BeamTelemetryLogs.cs +100 -0
  1407. package/Editor/BeamCli/Commands/BeamTelemetryLogs.cs.meta +11 -0
  1408. package/Editor/BeamCli/Commands/BeamTelemetryPrune.cs +67 -0
  1409. package/Editor/BeamCli/Commands/BeamTelemetryPrune.cs.meta +11 -0
  1410. package/Editor/BeamCli/Commands/BeamTelemetryPush.cs +60 -0
  1411. package/Editor/BeamCli/Commands/BeamTelemetryPush.cs.meta +11 -0
  1412. package/Editor/BeamCli/Commands/BeamTelemetryReport.cs +62 -0
  1413. package/Editor/BeamCli/Commands/BeamTelemetryReport.cs.meta +11 -0
  1414. package/Editor/BeamCli/Commands/BeamTelemetryReportStatus.cs +14 -0
  1415. package/Editor/BeamCli/Commands/BeamTelemetryReportStatus.cs.meta +11 -0
  1416. package/Editor/BeamCli/Commands/BeamTelemetrySetConfig.cs +63 -0
  1417. package/Editor/BeamCli/Commands/BeamTelemetrySetConfig.cs.meta +11 -0
  1418. package/Editor/BeamCli/Commands/BeamTelemetryStatus.cs +50 -0
  1419. package/Editor/BeamCli/Commands/BeamTelemetryStatus.cs.meta +11 -0
  1420. package/Editor/BeamCli/Commands/BeamTempClearLogs.cs +65 -0
  1421. package/Editor/BeamCli/Commands/BeamTempClearLogs.cs.meta +11 -0
  1422. package/Editor/BeamCli/Commands/BeamTokenFromRefresh.cs +58 -0
  1423. package/Editor/BeamCli/Commands/BeamTokenFromRefresh.cs.meta +11 -0
  1424. package/Editor/BeamCli/Commands/BeamTokenInspect.cs +70 -0
  1425. package/Editor/BeamCli/Commands/BeamTokenInspect.cs.meta +11 -0
  1426. package/Editor/BeamCli/Commands/BeamTokenList.cs +86 -0
  1427. package/Editor/BeamCli/Commands/BeamTokenList.cs.meta +11 -0
  1428. package/Editor/BeamCli/Commands/BeamTokenNewGuest.cs +73 -0
  1429. package/Editor/BeamCli/Commands/BeamTokenNewGuest.cs.meta +11 -0
  1430. package/Editor/BeamCli/Commands/BeamUnityAssemblyReferenceData.cs +13 -0
  1431. package/Editor/BeamCli/Commands/BeamUnityAssemblyReferenceData.cs.meta +11 -0
  1432. package/Editor/BeamCli/Commands/BeamUnityCopyDotnetSrc.cs +59 -0
  1433. package/Editor/BeamCli/Commands/BeamUnityCopyDotnetSrc.cs.meta +11 -0
  1434. package/Editor/BeamCli/Commands/BeamUnityDownloadAllNugetPackages.cs +55 -0
  1435. package/Editor/BeamCli/Commands/BeamUnityDownloadAllNugetPackages.cs.meta +11 -0
  1436. package/Editor/BeamCli/Commands/BeamUnityDownloadNugetPackage.cs +67 -0
  1437. package/Editor/BeamCli/Commands/BeamUnityDownloadNugetPackage.cs.meta +11 -0
  1438. package/Editor/BeamCli/Commands/BeamUnityGetVersionInfo.cs +55 -0
  1439. package/Editor/BeamCli/Commands/BeamUnityGetVersionInfo.cs.meta +11 -0
  1440. package/Editor/BeamCli/Commands/BeamUnityManifest.cs +50 -0
  1441. package/Editor/BeamCli/Commands/BeamUnityManifest.cs.meta +11 -0
  1442. package/Editor/BeamCli/Commands/BeamUnityReleaseSharedCode.cs +71 -0
  1443. package/Editor/BeamCli/Commands/BeamUnityReleaseSharedCode.cs.meta +11 -0
  1444. package/Editor/BeamCli/Commands/BeamUnityRestore.cs +58 -0
  1445. package/Editor/BeamCli/Commands/BeamUnityRestore.cs.meta +11 -0
  1446. package/Editor/BeamCli/Commands/BeamUnityUpdateDlls.cs +72 -0
  1447. package/Editor/BeamCli/Commands/BeamUnityUpdateDlls.cs.meta +11 -0
  1448. package/Editor/BeamCli/Commands/BeamUnityUpdateReferences.cs +79 -0
  1449. package/Editor/BeamCli/Commands/BeamUnityUpdateReferences.cs.meta +11 -0
  1450. package/Editor/BeamCli/Commands/BeamVersion.cs +49 -0
  1451. package/Editor/BeamCli/Commands/BeamVersion.cs.meta +11 -0
  1452. package/Editor/BeamCli/Commands/BeamVersionConstruct.cs +98 -0
  1453. package/Editor/BeamCli/Commands/BeamVersionConstruct.cs.meta +11 -0
  1454. package/Editor/BeamCli/Commands/BeamVersionResults.cs +15 -0
  1455. package/Editor/BeamCli/Commands/BeamVersionResults.cs.meta +11 -0
  1456. package/Editor/BeamCli/Commands/BeamWriteProjectSettingsCommandOutput.cs +11 -0
  1457. package/Editor/BeamCli/Commands/BeamWriteProjectSettingsCommandOutput.cs.meta +11 -0
  1458. package/Editor/BeamCli/Commands/Directory.Build.Props +13 -0
  1459. package/Editor/BeamCli/Commands/Directory.Build.Props.meta +7 -0
  1460. package/Editor/BeamCli/Commands.meta +8 -0
  1461. package/Editor/BeamCli/Extensions/BeamManifestServiceEntry_ComputedTypes.cs +53 -0
  1462. package/Editor/BeamCli/Extensions/BeamManifestServiceEntry_ComputedTypes.cs.meta +3 -0
  1463. package/Editor/BeamCli/Extensions/BeamManifestStorageEntry_ComputedTypes.cs +10 -0
  1464. package/Editor/BeamCli/Extensions/BeamManifestStorageEntry_ComputedTypes.cs.meta +3 -0
  1465. package/Editor/BeamCli/Extensions/DiscoveryExtensions.cs +41 -0
  1466. package/Editor/BeamCli/Extensions/DiscoveryExtensions.cs.meta +3 -0
  1467. package/Editor/BeamCli/Extensions/FederationsConfig.cs +22 -0
  1468. package/Editor/BeamCli/Extensions/FederationsConfig.cs.meta +3 -0
  1469. package/Editor/BeamCli/Extensions.meta +3 -0
  1470. package/Editor/BeamCli/UI/BeamCliJsonPopup.cs +29 -0
  1471. package/Editor/BeamCli/UI/BeamCliJsonPopup.cs.meta +3 -0
  1472. package/Editor/BeamCli/UI/BeamCliTextPopup.cs +32 -0
  1473. package/Editor/BeamCli/UI/BeamCliTextPopup.cs.meta +3 -0
  1474. package/Editor/BeamCli/UI/BeamCliWindow.cs +174 -0
  1475. package/Editor/BeamCli/UI/BeamCliWindow.cs.meta +3 -0
  1476. package/Editor/BeamCli/UI/BeamCliWindow_Commands.cs +512 -0
  1477. package/Editor/BeamCli/UI/BeamCliWindow_Commands.cs.meta +3 -0
  1478. package/Editor/BeamCli/UI/BeamCliWindow_Otel.cs +72 -0
  1479. package/Editor/BeamCli/UI/BeamCliWindow_Otel.cs.meta +3 -0
  1480. package/Editor/BeamCli/UI/BeamCliWindow_Overrides.cs +117 -0
  1481. package/Editor/BeamCli/UI/BeamCliWindow_Overrides.cs.meta +3 -0
  1482. package/Editor/BeamCli/UI/BeamCliWindow_Server.cs +156 -0
  1483. package/Editor/BeamCli/UI/BeamCliWindow_Server.cs.meta +3 -0
  1484. package/Editor/BeamCli/UI/BeamCliWindow_Terminal.cs +207 -0
  1485. package/Editor/BeamCli/UI/BeamCliWindow_Terminal.cs.meta +3 -0
  1486. package/Editor/BeamCli/UI/BeamCliWindow_Util.cs +336 -0
  1487. package/Editor/BeamCli/UI/BeamCliWindow_Util.cs.meta +3 -0
  1488. package/Editor/BeamCli/UI/JsonHighlighterUtil.cs +143 -0
  1489. package/Editor/BeamCli/UI/JsonHighlighterUtil.cs.meta +3 -0
  1490. package/Editor/BeamCli/UI/LogUtil/LogViewUtil.cs +727 -0
  1491. package/Editor/BeamCli/UI/LogUtil/LogViewUtil.cs.meta +3 -0
  1492. package/Editor/BeamCli/UI/LogUtil.meta +3 -0
  1493. package/Editor/BeamCli/UI/TimeDisplayUtil.cs +22 -0
  1494. package/Editor/BeamCli/UI/TimeDisplayUtil.cs.meta +3 -0
  1495. package/Editor/BeamCli/UI.meta +3 -0
  1496. package/Editor/BeamCli.meta +3 -0
  1497. package/Editor/BeamEditor.cs +733 -0
  1498. package/Editor/BeamEditor.cs.meta +11 -0
  1499. package/Editor/BeamableLinker.cs +77 -0
  1500. package/Editor/BeamableLinker.cs.meta +11 -0
  1501. package/Editor/BuildPostProcessor.cs +44 -0
  1502. package/Editor/BuildPostProcessor.cs.meta +3 -0
  1503. package/Editor/BuildPreProcessor.cs +264 -0
  1504. package/Editor/BuildPreProcessor.cs.meta +11 -0
  1505. package/Editor/Config/AccountManagementConfiguration.asset +24 -0
  1506. package/Editor/Config/AccountManagementConfiguration.asset.meta +8 -0
  1507. package/Editor/Config/AvatarConfiguration.asset +41 -0
  1508. package/Editor/Config/AvatarConfiguration.asset.meta +8 -0
  1509. package/Editor/Config/ConsoleConfiguration.asset +15 -0
  1510. package/Editor/Config/ConsoleConfiguration.asset.meta +8 -0
  1511. package/Editor/Config/ContentConfiguration.asset +15 -0
  1512. package/Editor/Config/ContentConfiguration.asset.meta +8 -0
  1513. package/Editor/Config/CoreConfiguration.asset +84 -0
  1514. package/Editor/Config/CoreConfiguration.asset.meta +8 -0
  1515. package/Editor/Config/EditorConfiguration.asset +22 -0
  1516. package/Editor/Config/EditorConfiguration.asset.meta +8 -0
  1517. package/Editor/Config/InventoryConfiguration.asset +17 -0
  1518. package/Editor/Config/InventoryConfiguration.asset.meta +8 -0
  1519. package/Editor/Config/MicroserviceConfiguration.asset +15 -0
  1520. package/Editor/Config/MicroserviceConfiguration.asset.meta +8 -0
  1521. package/Editor/Config/SessionConfiguration.asset +15 -0
  1522. package/Editor/Config/SessionConfiguration.asset.meta +8 -0
  1523. package/Editor/Config/ShopConfiguration.asset +19 -0
  1524. package/Editor/Config/ShopConfiguration.asset.meta +8 -0
  1525. package/Editor/Config/SoundConfiguration.asset +15 -0
  1526. package/Editor/Config/SoundConfiguration.asset.meta +8 -0
  1527. package/Editor/Config/ThemeConfiguration.asset +15 -0
  1528. package/Editor/Config/ThemeConfiguration.asset.meta +8 -0
  1529. package/Editor/Config/TournamentsConfiguration.asset +16 -0
  1530. package/Editor/Config/TournamentsConfiguration.asset.meta +8 -0
  1531. package/Editor/Config.meta +8 -0
  1532. package/Editor/ContentService/CliContentService.cs +920 -0
  1533. package/Editor/ContentService/CliContentService.cs.meta +3 -0
  1534. package/Editor/ContentService/ContentBaker.cs +199 -0
  1535. package/Editor/ContentService/ContentBaker.cs.meta +11 -0
  1536. package/Editor/ContentService/ContentUtils.cs +79 -0
  1537. package/Editor/ContentService/ContentUtils.cs.meta +11 -0
  1538. package/Editor/ContentService.meta +3 -0
  1539. package/Editor/Dotnet/DotnetService.cs +193 -0
  1540. package/Editor/Dotnet/DotnetService.cs.meta +3 -0
  1541. package/Editor/Dotnet/DotnetUtil.cs +296 -0
  1542. package/Editor/Dotnet/DotnetUtil.cs.meta +3 -0
  1543. package/Editor/Dotnet.meta +3 -0
  1544. package/Editor/EditorAPI.cs +4 -0
  1545. package/Editor/EditorAPI.cs.meta +11 -0
  1546. package/Editor/EditorPlatformRequesterErrorHandler.cs +28 -0
  1547. package/Editor/EditorPlatformRequesterErrorHandler.cs.meta +3 -0
  1548. package/Editor/EditorRuntimeConfigProvider.cs +19 -0
  1549. package/Editor/EditorRuntimeConfigProvider.cs.meta +3 -0
  1550. package/Editor/EditorStorageLayer.cs +40 -0
  1551. package/Editor/EditorStorageLayer.cs.meta +3 -0
  1552. package/Editor/Eggs/EggEntry.cs +38 -0
  1553. package/Editor/Eggs/EggEntry.cs.meta +3 -0
  1554. package/Editor/Eggs/Serpent/EggSerpent.cs +209 -0
  1555. package/Editor/Eggs/Serpent/EggSerpent.cs.meta +3 -0
  1556. package/Editor/Eggs/Serpent.meta +3 -0
  1557. package/Editor/Eggs.meta +3 -0
  1558. package/Editor/Environment/BeamableDiagnosticData.cs +198 -0
  1559. package/Editor/Environment/BeamableDiagnosticData.cs.meta +11 -0
  1560. package/Editor/Environment/BeamableEditorWebRequester.cs +62 -0
  1561. package/Editor/Environment/BeamableEditorWebRequester.cs.meta +11 -0
  1562. package/Editor/Environment/BeamablePackages.cs +90 -0
  1563. package/Editor/Environment/BeamablePackages.cs.meta +11 -0
  1564. package/Editor/Environment/IEditorHttpRequester.cs +49 -0
  1565. package/Editor/Environment/IEditorHttpRequester.cs.meta +11 -0
  1566. package/Editor/Environment.meta +8 -0
  1567. package/Editor/FileAssetModificationProcessor.cs +49 -0
  1568. package/Editor/FileAssetModificationProcessor.cs.meta +3 -0
  1569. package/Editor/LibraryService.cs +297 -0
  1570. package/Editor/LibraryService.cs.meta +3 -0
  1571. package/Editor/Modules/Account/BeamableSocialsImporter.cs +59 -0
  1572. package/Editor/Modules/Account/BeamableSocialsImporter.cs.meta +3 -0
  1573. package/Editor/Modules/Account/EditorAuthService.cs +244 -0
  1574. package/Editor/Modules/Account/EditorAuthService.cs.meta +11 -0
  1575. package/Editor/Modules/Account/PortalCommand.cs +37 -0
  1576. package/Editor/Modules/Account/PortalCommand.cs.meta +11 -0
  1577. package/Editor/Modules/Account.meta +8 -0
  1578. package/Editor/Modules/Content/CalendarWindow.cs +185 -0
  1579. package/Editor/Modules/Content/CalendarWindow.cs.meta +3 -0
  1580. package/Editor/Modules/Content/ContentObjectPropertyDrawer.cs +26 -0
  1581. package/Editor/Modules/Content/ContentObjectPropertyDrawer.cs.meta +11 -0
  1582. package/Editor/Modules/Content/ContentPropertyDrawer.cs +372 -0
  1583. package/Editor/Modules/Content/ContentPropertyDrawer.cs.meta +11 -0
  1584. package/Editor/Modules/Content/ContentValidationPropertyDrawer.cs +307 -0
  1585. package/Editor/Modules/Content/ContentValidationPropertyDrawer.cs.meta +11 -0
  1586. package/Editor/Modules/Content/DatePropertyDrawer.cs +355 -0
  1587. package/Editor/Modules/Content/DatePropertyDrawer.cs.meta +3 -0
  1588. package/Editor/Modules/Content/DefaultAssets~/currency/icon.png +0 -0
  1589. package/Editor/Modules/Content/DefaultAssets~/currency/icon.png.meta +99 -0
  1590. package/Editor/Modules/Content/DefaultAssets~/currency.meta +8 -0
  1591. package/Editor/Modules/Content/DefaultContent/currency/coins.asset +29 -0
  1592. package/Editor/Modules/Content/DefaultContent/currency/coins.asset.meta +8 -0
  1593. package/Editor/Modules/Content/DefaultContent/currency/gems.asset +29 -0
  1594. package/Editor/Modules/Content/DefaultContent/currency/gems.asset.meta +8 -0
  1595. package/Editor/Modules/Content/DefaultContent/currency.meta +8 -0
  1596. package/Editor/Modules/Content/DefaultContent/emails/password_update.asset +18 -0
  1597. package/Editor/Modules/Content/DefaultContent/emails/password_update.asset.meta +8 -0
  1598. package/Editor/Modules/Content/DefaultContent/emails.meta +8 -0
  1599. package/Editor/Modules/Content/DefaultContent/game_types/default1.asset +45 -0
  1600. package/Editor/Modules/Content/DefaultContent/game_types/default1.asset.meta +8 -0
  1601. package/Editor/Modules/Content/DefaultContent/game_types/default2.asset +45 -0
  1602. package/Editor/Modules/Content/DefaultContent/game_types/default2.asset.meta +8 -0
  1603. package/Editor/Modules/Content/DefaultContent/game_types.meta +8 -0
  1604. package/Editor/Modules/Content/DefaultContent/leaderboards/default.asset +28 -0
  1605. package/Editor/Modules/Content/DefaultContent/leaderboards/default.asset.meta +8 -0
  1606. package/Editor/Modules/Content/DefaultContent/leaderboards.meta +8 -0
  1607. package/Editor/Modules/Content/DefaultContent/tournaments/default.asset +148 -0
  1608. package/Editor/Modules/Content/DefaultContent/tournaments/default.asset.meta +8 -0
  1609. package/Editor/Modules/Content/DefaultContent/tournaments.meta +8 -0
  1610. package/Editor/Modules/Content/DefaultContent.meta +3 -0
  1611. package/Editor/Modules/Content/EventSchedulePropertyDrawer.cs +87 -0
  1612. package/Editor/Modules/Content/EventSchedulePropertyDrawer.cs.meta +3 -0
  1613. package/Editor/Modules/Content/Icons/Add_new.png +0 -0
  1614. package/Editor/Modules/Content/Icons/Add_new.png.meta +132 -0
  1615. package/Editor/Modules/Content/Icons/Add_no_sync_up.png +0 -0
  1616. package/Editor/Modules/Content/Icons/Add_no_sync_up.png.meta +132 -0
  1617. package/Editor/Modules/Content/Icons/All_good.png +0 -0
  1618. package/Editor/Modules/Content/Icons/All_good.png.meta +132 -0
  1619. package/Editor/Modules/Content/Icons/Deleted.png +0 -0
  1620. package/Editor/Modules/Content/Icons/Deleted.png.meta +132 -0
  1621. package/Editor/Modules/Content/Icons/Draw close.png +0 -0
  1622. package/Editor/Modules/Content/Icons/Draw close.png.meta +132 -0
  1623. package/Editor/Modules/Content/Icons/Edit.png +0 -0
  1624. package/Editor/Modules/Content/Icons/Edit.png.meta +132 -0
  1625. package/Editor/Modules/Content/Icons/background.png +0 -0
  1626. package/Editor/Modules/Content/Icons/background.png.meta +132 -0
  1627. package/Editor/Modules/Content/Icons/base.png +0 -0
  1628. package/Editor/Modules/Content/Icons/base.png.meta +132 -0
  1629. package/Editor/Modules/Content/Icons/changed_no_sync_up.png +0 -0
  1630. package/Editor/Modules/Content/Icons/changed_no_sync_up.png.meta +132 -0
  1631. package/Editor/Modules/Content/Icons/close-click.png +0 -0
  1632. package/Editor/Modules/Content/Icons/close-click.png.meta +88 -0
  1633. package/Editor/Modules/Content/Icons/close.png +0 -0
  1634. package/Editor/Modules/Content/Icons/close.png.meta +88 -0
  1635. package/Editor/Modules/Content/Icons/cloud.png +0 -0
  1636. package/Editor/Modules/Content/Icons/cloud.png.meta +132 -0
  1637. package/Editor/Modules/Content/Icons/deleted 1.png +0 -0
  1638. package/Editor/Modules/Content/Icons/deleted 1.png.meta +88 -0
  1639. package/Editor/Modules/Content/Icons/deleted2.png +0 -0
  1640. package/Editor/Modules/Content/Icons/deleted2.png.meta +88 -0
  1641. package/Editor/Modules/Content/Icons/draw_open.png +0 -0
  1642. package/Editor/Modules/Content/Icons/draw_open.png.meta +132 -0
  1643. package/Editor/Modules/Content/Icons/edit2.png +0 -0
  1644. package/Editor/Modules/Content/Icons/edit2.png.meta +88 -0
  1645. package/Editor/Modules/Content/Icons/info.png +0 -0
  1646. package/Editor/Modules/Content/Icons/info.png.meta +132 -0
  1647. package/Editor/Modules/Content/Icons/local.png +0 -0
  1648. package/Editor/Modules/Content/Icons/local.png.meta +132 -0
  1649. package/Editor/Modules/Content/Icons/open-click.png +0 -0
  1650. package/Editor/Modules/Content/Icons/open-click.png.meta +88 -0
  1651. package/Editor/Modules/Content/Icons/open.png +0 -0
  1652. package/Editor/Modules/Content/Icons/open.png.meta +88 -0
  1653. package/Editor/Modules/Content/Icons/remove_no_sync_up.png +0 -0
  1654. package/Editor/Modules/Content/Icons/remove_no_sync_up.png.meta +132 -0
  1655. package/Editor/Modules/Content/Icons.meta +8 -0
  1656. package/Editor/Modules/Content/OptionalPropertyDrawer.cs +80 -0
  1657. package/Editor/Modules/Content/OptionalPropertyDrawer.cs.meta +11 -0
  1658. package/Editor/Modules/Content/PropertyDrawerHelper.cs +44 -0
  1659. package/Editor/Modules/Content/PropertyDrawerHelper.cs.meta +3 -0
  1660. package/Editor/Modules/Content/ScheduleDefinitionPropertyDrawer.cs +554 -0
  1661. package/Editor/Modules/Content/ScheduleDefinitionPropertyDrawer.cs.meta +3 -0
  1662. package/Editor/Modules/Content/SerializedContentObject.cs +12 -0
  1663. package/Editor/Modules/Content/SerializedContentObject.cs.meta +11 -0
  1664. package/Editor/Modules/Content/UI/ContentObjectEditor.cs +390 -0
  1665. package/Editor/Modules/Content/UI/ContentObjectEditor.cs.meta +11 -0
  1666. package/Editor/Modules/Content/UI/DisplayableListPropertyDrawer.cs +47 -0
  1667. package/Editor/Modules/Content/UI/DisplayableListPropertyDrawer.cs.meta +11 -0
  1668. package/Editor/Modules/Content/UI/EditorValidationContext.cs +7 -0
  1669. package/Editor/Modules/Content/UI/EditorValidationContext.cs.meta +11 -0
  1670. package/Editor/Modules/Content/UI/SerializedDictionaryEditor.cs +208 -0
  1671. package/Editor/Modules/Content/UI/SerializedDictionaryEditor.cs.meta +11 -0
  1672. package/Editor/Modules/Content/UI.meta +8 -0
  1673. package/Editor/Modules/Content.meta +8 -0
  1674. package/Editor/Modules/ContentTypes/ContentTypesCreator.cs +58 -0
  1675. package/Editor/Modules/ContentTypes/ContentTypesCreator.cs.meta +11 -0
  1676. package/Editor/Modules/ContentTypes/ScriptTemplates/Content.cs.txt +16 -0
  1677. package/Editor/Modules/ContentTypes/ScriptTemplates/Content.cs.txt.meta +3 -0
  1678. package/Editor/Modules/ContentTypes/ScriptTemplates/CurrencyContent.cs.txt +14 -0
  1679. package/Editor/Modules/ContentTypes/ScriptTemplates/CurrencyContent.cs.txt.meta +3 -0
  1680. package/Editor/Modules/ContentTypes/ScriptTemplates/ItemContent.cs.txt +14 -0
  1681. package/Editor/Modules/ContentTypes/ScriptTemplates/ItemContent.cs.txt.meta +3 -0
  1682. package/Editor/Modules/ContentTypes/ScriptTemplates.meta +8 -0
  1683. package/Editor/Modules/ContentTypes.meta +8 -0
  1684. package/Editor/Modules/EditorConfig/EditorConfiguration.cs +209 -0
  1685. package/Editor/Modules/EditorConfig/EditorConfiguration.cs.meta +11 -0
  1686. package/Editor/Modules/EditorConfig.meta +8 -0
  1687. package/Editor/Modules/Input/Beamable.Editor.Input.asmdef +17 -0
  1688. package/Editor/Modules/Input/Beamable.Editor.Input.asmdef.meta +3 -0
  1689. package/Editor/Modules/Input/InputActionPropertyDrawer.cs +138 -0
  1690. package/Editor/Modules/Input/InputActionPropertyDrawer.cs.meta +3 -0
  1691. package/Editor/Modules/Input.meta +8 -0
  1692. package/Editor/Modules/Player/ObservableReadonlyListPropertyDrawer.cs +21 -0
  1693. package/Editor/Modules/Player/ObservableReadonlyListPropertyDrawer.cs.meta +3 -0
  1694. package/Editor/Modules/Player.meta +3 -0
  1695. package/Editor/Modules/Purchasing/BeamablePurchaserImporter.cs +74 -0
  1696. package/Editor/Modules/Purchasing/BeamablePurchaserImporter.cs.meta +11 -0
  1697. package/Editor/Modules/Purchasing.meta +3 -0
  1698. package/Editor/Modules/Sessions/DeviceOptionPropertyDrawer.cs +56 -0
  1699. package/Editor/Modules/Sessions/DeviceOptionPropertyDrawer.cs.meta +11 -0
  1700. package/Editor/Modules/Sessions/SessionParameterProviderCreator.cs +111 -0
  1701. package/Editor/Modules/Sessions/SessionParameterProviderCreator.cs.meta +11 -0
  1702. package/Editor/Modules/Sessions/SessionParameterProviderEditor.cs +25 -0
  1703. package/Editor/Modules/Sessions/SessionParameterProviderEditor.cs.meta +11 -0
  1704. package/Editor/Modules/Sessions.meta +8 -0
  1705. package/Editor/Modules/Stats/StatEditor.cs +18 -0
  1706. package/Editor/Modules/Stats/StatEditor.cs.meta +11 -0
  1707. package/Editor/Modules/Stats.meta +8 -0
  1708. package/Editor/Modules/Theme/ButtonStyleObject.cs +9 -0
  1709. package/Editor/Modules/Theme/ButtonStyleObject.cs.meta +11 -0
  1710. package/Editor/Modules/Theme/CanHideDrawer.cs +34 -0
  1711. package/Editor/Modules/Theme/CanHideDrawer.cs.meta +11 -0
  1712. package/Editor/Modules/Theme/ColorStyleObject.cs +9 -0
  1713. package/Editor/Modules/Theme/ColorStyleObject.cs.meta +11 -0
  1714. package/Editor/Modules/Theme/FilterSelection.cs +41 -0
  1715. package/Editor/Modules/Theme/FilterSelection.cs.meta +11 -0
  1716. package/Editor/Modules/Theme/FontStyleObject.cs +9 -0
  1717. package/Editor/Modules/Theme/FontStyleObject.cs.meta +11 -0
  1718. package/Editor/Modules/Theme/GradientStyleObject.cs +9 -0
  1719. package/Editor/Modules/Theme/GradientStyleObject.cs.meta +11 -0
  1720. package/Editor/Modules/Theme/ImageStyleObject.cs +9 -0
  1721. package/Editor/Modules/Theme/ImageStyleObject.cs.meta +11 -0
  1722. package/Editor/Modules/Theme/LayoutStyleObject.cs +9 -0
  1723. package/Editor/Modules/Theme/LayoutStyleObject.cs.meta +11 -0
  1724. package/Editor/Modules/Theme/PaletteStyleObject.cs +30 -0
  1725. package/Editor/Modules/Theme/PaletteStyleObject.cs.meta +11 -0
  1726. package/Editor/Modules/Theme/SelectableStyleObject.cs +9 -0
  1727. package/Editor/Modules/Theme/SelectableStyleObject.cs.meta +11 -0
  1728. package/Editor/Modules/Theme/SoundStyleObject.cs +9 -0
  1729. package/Editor/Modules/Theme/SoundStyleObject.cs.meta +11 -0
  1730. package/Editor/Modules/Theme/StringStyleObject.cs +9 -0
  1731. package/Editor/Modules/Theme/StringStyleObject.cs.meta +11 -0
  1732. package/Editor/Modules/Theme/Style/ButtonStyleObjectPropertyDrawer.cs +61 -0
  1733. package/Editor/Modules/Theme/Style/ButtonStyleObjectPropertyDrawer.cs.meta +11 -0
  1734. package/Editor/Modules/Theme/Style/GeneralPaletteBindingOptionDrawer.cs +25 -0
  1735. package/Editor/Modules/Theme/Style/GeneralPaletteBindingOptionDrawer.cs.meta +11 -0
  1736. package/Editor/Modules/Theme/Style/ThemeSelectorEditor.cs +79 -0
  1737. package/Editor/Modules/Theme/Style/ThemeSelectorEditor.cs.meta +11 -0
  1738. package/Editor/Modules/Theme/Style.meta +8 -0
  1739. package/Editor/Modules/Theme/TextStyleObject.cs +9 -0
  1740. package/Editor/Modules/Theme/TextStyleObject.cs.meta +11 -0
  1741. package/Editor/Modules/Theme/ThemeConfigurationPropertyDrawer.cs +64 -0
  1742. package/Editor/Modules/Theme/ThemeConfigurationPropertyDrawer.cs.meta +11 -0
  1743. package/Editor/Modules/Theme/TransformStyleObject.cs +9 -0
  1744. package/Editor/Modules/Theme/TransformStyleObject.cs.meta +11 -0
  1745. package/Editor/Modules/Theme/WindowStyleObject.cs +9 -0
  1746. package/Editor/Modules/Theme/WindowStyleObject.cs.meta +11 -0
  1747. package/Editor/Modules/Theme.meta +8 -0
  1748. package/Editor/Modules.meta +8 -0
  1749. package/Editor/NoOpAnalyticsTracker.cs +22 -0
  1750. package/Editor/NoOpAnalyticsTracker.cs.meta +3 -0
  1751. package/Editor/ReflectionCache/ReflectionCacheAssetPostProcessor.cs +68 -0
  1752. package/Editor/ReflectionCache/ReflectionCacheAssetPostProcessor.cs.meta +11 -0
  1753. package/Editor/ReflectionCache/UserSystems/BeamHintReflectionCache.asset +14 -0
  1754. package/Editor/ReflectionCache/UserSystems/BeamHintReflectionCache.asset.meta +8 -0
  1755. package/Editor/ReflectionCache/UserSystems.meta +8 -0
  1756. package/Editor/ReflectionCache.meta +8 -0
  1757. package/Editor/ResetPlayerAccessTokenEditor.cs +63 -0
  1758. package/Editor/ResetPlayerAccessTokenEditor.cs.meta +3 -0
  1759. package/Editor/Server/AssemblyDefinitionHelper.cs +237 -0
  1760. package/Editor/Server/AssemblyDefinitionHelper.cs.meta +3 -0
  1761. package/Editor/Server/CommonAreaService.cs +189 -0
  1762. package/Editor/Server/CommonAreaService.cs.meta +3 -0
  1763. package/Editor/Server/DependencyResolver.cs +177 -0
  1764. package/Editor/Server/DependencyResolver.cs.meta +11 -0
  1765. package/Editor/Server/ExtensionMethods.cs +40 -0
  1766. package/Editor/Server/ExtensionMethods.cs.meta +3 -0
  1767. package/Editor/Server/MicroserviceConfiguration.cs +87 -0
  1768. package/Editor/Server/MicroserviceConfiguration.cs.meta +11 -0
  1769. package/Editor/Server/RegisterDependencies.cs +33 -0
  1770. package/Editor/Server/RegisterDependencies.cs.meta +3 -0
  1771. package/Editor/Server/UI/Configs/BeamFederationSetting.cs +160 -0
  1772. package/Editor/Server/UI/Configs/BeamFederationSetting.cs.meta +3 -0
  1773. package/Editor/Server/UI/Configs/BeamStorageDependencySetting.cs +55 -0
  1774. package/Editor/Server/UI/Configs/BeamStorageDependencySetting.cs.meta +3 -0
  1775. package/Editor/Server/UI/Configs/BeamableMicroservicesSettings.cs +180 -0
  1776. package/Editor/Server/UI/Configs/BeamableMicroservicesSettings.cs.meta +3 -0
  1777. package/Editor/Server/UI/Configs/BeamableStorageSettings.cs +83 -0
  1778. package/Editor/Server/UI/Configs/BeamableStorageSettings.cs.meta +3 -0
  1779. package/Editor/Server/UI/Configs.meta +3 -0
  1780. package/Editor/Server/UI/FederationPropertyDrawer.cs +209 -0
  1781. package/Editor/Server/UI/FederationPropertyDrawer.cs.meta +3 -0
  1782. package/Editor/Server/UI/PublishWindow/UsamPublishWindow.cs +442 -0
  1783. package/Editor/Server/UI/PublishWindow/UsamPublishWindow.cs.meta +3 -0
  1784. package/Editor/Server/UI/PublishWindow/UsamPublishWindow_FatalError.cs +39 -0
  1785. package/Editor/Server/UI/PublishWindow/UsamPublishWindow_FatalError.cs.meta +3 -0
  1786. package/Editor/Server/UI/PublishWindow/UsamPublishWindow_Plan.cs +125 -0
  1787. package/Editor/Server/UI/PublishWindow/UsamPublishWindow_Plan.cs.meta +3 -0
  1788. package/Editor/Server/UI/PublishWindow/UsamPublishWindow_Review.cs +247 -0
  1789. package/Editor/Server/UI/PublishWindow/UsamPublishWindow_Review.cs.meta +3 -0
  1790. package/Editor/Server/UI/PublishWindow.meta +3 -0
  1791. package/Editor/Server/UI/ScriptTemplates/FederationId.cs.txt +7 -0
  1792. package/Editor/Server/UI/ScriptTemplates/FederationId.cs.txt.meta +3 -0
  1793. package/Editor/Server/UI/ScriptTemplates.meta +3 -0
  1794. package/Editor/Server/UI/UsamWindow/ServicePickerWindow.cs +308 -0
  1795. package/Editor/Server/UI/UsamWindow/ServicePickerWindow.cs.meta +3 -0
  1796. package/Editor/Server/UI/UsamWindow/UsamWindow.cs +94 -0
  1797. package/Editor/Server/UI/UsamWindow/UsamWindow.cs.meta +3 -0
  1798. package/Editor/Server/UI/UsamWindow/UsamWindow_Badges.cs +55 -0
  1799. package/Editor/Server/UI/UsamWindow/UsamWindow_Badges.cs.meta +3 -0
  1800. package/Editor/Server/UI/UsamWindow/UsamWindow_Create.cs +325 -0
  1801. package/Editor/Server/UI/UsamWindow/UsamWindow_Create.cs.meta +3 -0
  1802. package/Editor/Server/UI/UsamWindow/UsamWindow_Docker.cs +111 -0
  1803. package/Editor/Server/UI/UsamWindow/UsamWindow_Docker.cs.meta +3 -0
  1804. package/Editor/Server/UI/UsamWindow/UsamWindow_Main.cs +321 -0
  1805. package/Editor/Server/UI/UsamWindow/UsamWindow_Main.cs.meta +3 -0
  1806. package/Editor/Server/UI/UsamWindow/UsamWindow_Service.cs +313 -0
  1807. package/Editor/Server/UI/UsamWindow/UsamWindow_Service.cs.meta +3 -0
  1808. package/Editor/Server/UI/UsamWindow/UsamWindow_Settings.cs +405 -0
  1809. package/Editor/Server/UI/UsamWindow/UsamWindow_Settings.cs.meta +3 -0
  1810. package/Editor/Server/UI/UsamWindow/UsamWindow_Storage.cs +237 -0
  1811. package/Editor/Server/UI/UsamWindow/UsamWindow_Storage.cs.meta +3 -0
  1812. package/Editor/Server/UI/UsamWindow/UsamWindow_Upgrades.cs +121 -0
  1813. package/Editor/Server/UI/UsamWindow/UsamWindow_Upgrades.cs.meta +3 -0
  1814. package/Editor/Server/UI/UsamWindow.meta +3 -0
  1815. package/Editor/Server/UI.meta +3 -0
  1816. package/Editor/Server/Usam/AssemblyUtil.cs +136 -0
  1817. package/Editor/Server/Usam/AssemblyUtil.cs.meta +3 -0
  1818. package/Editor/Server/Usam/CsProjUtil.cs +12 -0
  1819. package/Editor/Server/Usam/CsProjUtil.cs.meta +3 -0
  1820. package/Editor/Server/Usam/CsharpProjectUtil.cs +325 -0
  1821. package/Editor/Server/Usam/CsharpProjectUtil.cs.meta +3 -0
  1822. package/Editor/Server/Usam/ServiceRoutingStrategy.cs +81 -0
  1823. package/Editor/Server/Usam/ServiceRoutingStrategy.cs.meta +3 -0
  1824. package/Editor/Server/Usam/UsamLogger.cs +46 -0
  1825. package/Editor/Server/Usam/UsamLogger.cs.meta +3 -0
  1826. package/Editor/Server/Usam/UsamService.cs +1150 -0
  1827. package/Editor/Server/Usam/UsamService.cs.meta +3 -0
  1828. package/Editor/Server/Usam/UsamService_GenerateClient.cs +243 -0
  1829. package/Editor/Server/Usam/UsamService_GenerateClient.cs.meta +3 -0
  1830. package/Editor/Server/Usam/UsamService_Reload.cs +119 -0
  1831. package/Editor/Server/Usam/UsamService_Reload.cs.meta +3 -0
  1832. package/Editor/Server/Usam/UsamService_Upgrades.cs +25 -0
  1833. package/Editor/Server/Usam/UsamService_Upgrades.cs.meta +3 -0
  1834. package/Editor/Server/Usam.meta +3 -0
  1835. package/Editor/Server/WebhookContentEditor/RouteParametersPropertyDrawer.cs +309 -0
  1836. package/Editor/Server/WebhookContentEditor/RouteParametersPropertyDrawer.cs.meta +3 -0
  1837. package/Editor/Server/WebhookContentEditor/RouteVariablesPropertyDrawer.cs +56 -0
  1838. package/Editor/Server/WebhookContentEditor/RouteVariablesPropertyDrawer.cs.meta +11 -0
  1839. package/Editor/Server/WebhookContentEditor/ServiceRoutePropertyDrawer.cs +137 -0
  1840. package/Editor/Server/WebhookContentEditor/ServiceRoutePropertyDrawer.cs.meta +11 -0
  1841. package/Editor/Server/WebhookContentEditor.meta +3 -0
  1842. package/Editor/Server/invalid-assemblies.txt +194 -0
  1843. package/Editor/Server/invalid-assemblies.txt.meta +3 -0
  1844. package/Editor/Server.meta +3 -0
  1845. package/Editor/ServiceStorage.cs +128 -0
  1846. package/Editor/ServiceStorage.cs.meta +3 -0
  1847. package/Editor/SessionStorageLayer.cs +29 -0
  1848. package/Editor/SessionStorageLayer.cs.meta +3 -0
  1849. package/Editor/TextMeshProImporter.cs +101 -0
  1850. package/Editor/TextMeshProImporter.cs.meta +11 -0
  1851. package/Editor/Toolbar/BeamableToolbarAssetPostProcessor.cs +32 -0
  1852. package/Editor/Toolbar/BeamableToolbarAssetPostProcessor.cs.meta +11 -0
  1853. package/Editor/Toolbar/BeamableToolbarButton.cs +45 -0
  1854. package/Editor/Toolbar/BeamableToolbarButton.cs.meta +11 -0
  1855. package/Editor/Toolbar/BeamableToolbarCallbacks.cs +153 -0
  1856. package/Editor/Toolbar/BeamableToolbarCallbacks.cs.meta +11 -0
  1857. package/Editor/Toolbar/BeamableToolbarExtender.cs +137 -0
  1858. package/Editor/Toolbar/BeamableToolbarExtender.cs.meta +11 -0
  1859. package/Editor/Toolbar/BeamableToolbarMenuItem.cs +40 -0
  1860. package/Editor/Toolbar/BeamableToolbarMenuItem.cs.meta +11 -0
  1861. package/Editor/Toolbar/MenuItems/AccountMenuItem.asset +16 -0
  1862. package/Editor/Toolbar/MenuItems/AccountMenuItem.asset.meta +8 -0
  1863. package/Editor/Toolbar/MenuItems/AccountMenuItem.cs +51 -0
  1864. package/Editor/Toolbar/MenuItems/AccountMenuItem.cs.meta +3 -0
  1865. package/Editor/Toolbar/MenuItems/BeamableConfigurationManagerMenuItem.cs +21 -0
  1866. package/Editor/Toolbar/MenuItems/BeamableConfigurationManagerMenuItem.cs.meta +3 -0
  1867. package/Editor/Toolbar/MenuItems/BeamableContentManagerMenuItem.cs +20 -0
  1868. package/Editor/Toolbar/MenuItems/BeamableContentManagerMenuItem.cs.meta +3 -0
  1869. package/Editor/Toolbar/MenuItems/BeamableMicroserviceManagerMenuItem.cs +20 -0
  1870. package/Editor/Toolbar/MenuItems/BeamableMicroserviceManagerMenuItem.cs.meta +11 -0
  1871. package/Editor/Toolbar/MenuItems/BeamablePortalMenuItem.cs +18 -0
  1872. package/Editor/Toolbar/MenuItems/BeamablePortalMenuItem.cs.meta +3 -0
  1873. package/Editor/Toolbar/MenuItems/BeamableRealmMenuItem.cs +99 -0
  1874. package/Editor/Toolbar/MenuItems/BeamableRealmMenuItem.cs.meta +3 -0
  1875. package/Editor/Toolbar/MenuItems/BeamableToolbarMenuItemSeparator.cs +17 -0
  1876. package/Editor/Toolbar/MenuItems/BeamableToolbarMenuItemSeparator.cs.meta +11 -0
  1877. package/Editor/Toolbar/MenuItems/BeamableToolboxWindowMenuItem.cs +20 -0
  1878. package/Editor/Toolbar/MenuItems/BeamableToolboxWindowMenuItem.cs.meta +3 -0
  1879. package/Editor/Toolbar/MenuItems/OpenConfigurationManagerMenuItem.asset +16 -0
  1880. package/Editor/Toolbar/MenuItems/OpenConfigurationManagerMenuItem.asset.meta +8 -0
  1881. package/Editor/Toolbar/MenuItems/OpenContentManagerMenuItem.asset +16 -0
  1882. package/Editor/Toolbar/MenuItems/OpenContentManagerMenuItem.asset.meta +8 -0
  1883. package/Editor/Toolbar/MenuItems/OpenMicroserviceManagerMenuItem.asset +16 -0
  1884. package/Editor/Toolbar/MenuItems/OpenMicroserviceManagerMenuItem.asset.meta +8 -0
  1885. package/Editor/Toolbar/MenuItems/OpenPortalMenuItem.asset +16 -0
  1886. package/Editor/Toolbar/MenuItems/OpenPortalMenuItem.asset.meta +8 -0
  1887. package/Editor/Toolbar/MenuItems/OpenToolboxWindowMenuItem.asset +16 -0
  1888. package/Editor/Toolbar/MenuItems/OpenToolboxWindowMenuItem.asset.meta +8 -0
  1889. package/Editor/Toolbar/MenuItems/SelectRealmMenuItem.asset +16 -0
  1890. package/Editor/Toolbar/MenuItems/SelectRealmMenuItem.asset.meta +8 -0
  1891. package/Editor/Toolbar/MenuItems/ToolboxSeparator 1.asset +16 -0
  1892. package/Editor/Toolbar/MenuItems/ToolboxSeparator 1.asset.meta +8 -0
  1893. package/Editor/Toolbar/MenuItems/ToolboxSeparator.asset +16 -0
  1894. package/Editor/Toolbar/MenuItems/ToolboxSeparator.asset.meta +8 -0
  1895. package/Editor/Toolbar/MenuItems.meta +8 -0
  1896. package/Editor/Toolbar/ToolbarButtons/SampleBeamableButton.cs +27 -0
  1897. package/Editor/Toolbar/ToolbarButtons/SampleBeamableButton.cs.meta +11 -0
  1898. package/Editor/Toolbar/ToolbarButtons.meta +8 -0
  1899. package/Editor/Toolbar.meta +3 -0
  1900. package/Editor/UI/AccountWindow/AccountWindow.cs +170 -0
  1901. package/Editor/UI/AccountWindow/AccountWindow.cs.meta +3 -0
  1902. package/Editor/UI/AccountWindow/AccountWindow_Games.cs +170 -0
  1903. package/Editor/UI/AccountWindow/AccountWindow_Games.cs.meta +3 -0
  1904. package/Editor/UI/AccountWindow/AccountWindow_SignIn.cs +297 -0
  1905. package/Editor/UI/AccountWindow/AccountWindow_SignIn.cs.meta +3 -0
  1906. package/Editor/UI/AccountWindow/AccountWindow_SignedIn.cs +225 -0
  1907. package/Editor/UI/AccountWindow/AccountWindow_SignedIn.cs.meta +3 -0
  1908. package/Editor/UI/AccountWindow.meta +3 -0
  1909. package/Editor/UI/BeamEditorWindow.cs +393 -0
  1910. package/Editor/UI/BeamEditorWindow.cs.meta +11 -0
  1911. package/Editor/UI/BeamGUI/BeamGUI_Dropdowns.cs +205 -0
  1912. package/Editor/UI/BeamGUI/BeamGUI_Dropdowns.cs.meta +3 -0
  1913. package/Editor/UI/BeamGUI/BeamGUI_Enabled.cs +31 -0
  1914. package/Editor/UI/BeamGUI/BeamGUI_Enabled.cs.meta +3 -0
  1915. package/Editor/UI/BeamGUI/BeamGUI_Header.cs +148 -0
  1916. package/Editor/UI/BeamGUI/BeamGUI_Header.cs.meta +3 -0
  1917. package/Editor/UI/BeamGUI/BeamGUI_Icons.cs +330 -0
  1918. package/Editor/UI/BeamGUI/BeamGUI_Icons.cs.meta +3 -0
  1919. package/Editor/UI/BeamGUI/BeamGUI_LoadingBars.cs +105 -0
  1920. package/Editor/UI/BeamGUI/BeamGUI_LoadingBars.cs.meta +3 -0
  1921. package/Editor/UI/BeamGUI/BeamGUI_LogoBanner.cs +36 -0
  1922. package/Editor/UI/BeamGUI/BeamGUI_LogoBanner.cs.meta +3 -0
  1923. package/Editor/UI/BeamGUI/BeamGUI_PlaceholdTextField.cs +64 -0
  1924. package/Editor/UI/BeamGUI/BeamGUI_PlaceholdTextField.cs.meta +3 -0
  1925. package/Editor/UI/BeamGUI/BeamGUI_PrimaryButton.cs +178 -0
  1926. package/Editor/UI/BeamGUI/BeamGUI_PrimaryButton.cs.meta +3 -0
  1927. package/Editor/UI/BeamGUI/BeamGUI_Spinner.cs +30 -0
  1928. package/Editor/UI/BeamGUI/BeamGUI_Spinner.cs.meta +3 -0
  1929. package/Editor/UI/BeamGUI/BeamGUI_StaticConstructor.cs +17 -0
  1930. package/Editor/UI/BeamGUI/BeamGUI_StaticConstructor.cs.meta +3 -0
  1931. package/Editor/UI/BeamGUI/BeamGUI_Toggle.cs +41 -0
  1932. package/Editor/UI/BeamGUI/BeamGUI_Toggle.cs.meta +3 -0
  1933. package/Editor/UI/BeamGUI/BeamGUI_Utils.cs +73 -0
  1934. package/Editor/UI/BeamGUI/BeamGUI_Utils.cs.meta +3 -0
  1935. package/Editor/UI/BeamGUI/PropertyDrawers/HelpBoxDecoratorDrawer.cs +32 -0
  1936. package/Editor/UI/BeamGUI/PropertyDrawers/HelpBoxDecoratorDrawer.cs.meta +3 -0
  1937. package/Editor/UI/BeamGUI/PropertyDrawers.meta +3 -0
  1938. package/Editor/UI/BeamGUI.meta +3 -0
  1939. package/Editor/UI/Common/FormConstraint.cs +53 -0
  1940. package/Editor/UI/Common/FormConstraint.cs.meta +11 -0
  1941. package/Editor/UI/Common/Icons/Beamable.png +0 -0
  1942. package/Editor/UI/Common/Icons/Beamable.png.meta +96 -0
  1943. package/Editor/UI/Common/Icons/BeamableWebIcons/API_Violet@3x.png +0 -0
  1944. package/Editor/UI/Common/Icons/BeamableWebIcons/API_Violet@3x.png.meta +153 -0
  1945. package/Editor/UI/Common/Icons/BeamableWebIcons/AWS_Violet@3x.png +0 -0
  1946. package/Editor/UI/Common/Icons/BeamableWebIcons/AWS_Violet@3x.png.meta +153 -0
  1947. package/Editor/UI/Common/Icons/BeamableWebIcons/Action_Violet@3x.png +0 -0
  1948. package/Editor/UI/Common/Icons/BeamableWebIcons/Action_Violet@3x.png.meta +153 -0
  1949. package/Editor/UI/Common/Icons/BeamableWebIcons/AdminPortal_Violet@3x.png +0 -0
  1950. package/Editor/UI/Common/Icons/BeamableWebIcons/AdminPortal_Violet@3x.png.meta +153 -0
  1951. package/Editor/UI/Common/Icons/BeamableWebIcons/AdvancedTechnology_Violet@3x.png +0 -0
  1952. package/Editor/UI/Common/Icons/BeamableWebIcons/AdvancedTechnology_Violet@3x.png.meta +153 -0
  1953. package/Editor/UI/Common/Icons/BeamableWebIcons/Alerts_Violet@3x.png +0 -0
  1954. package/Editor/UI/Common/Icons/BeamableWebIcons/Alerts_Violet@3x.png.meta +153 -0
  1955. package/Editor/UI/Common/Icons/BeamableWebIcons/BattleTested_Violet@3x.png +0 -0
  1956. package/Editor/UI/Common/Icons/BeamableWebIcons/BattleTested_Violet@3x.png.meta +153 -0
  1957. package/Editor/UI/Common/Icons/BeamableWebIcons/BeamableObjects@3x.png +0 -0
  1958. package/Editor/UI/Common/Icons/BeamableWebIcons/BeamableObjects@3x.png.meta +153 -0
  1959. package/Editor/UI/Common/Icons/BeamableWebIcons/Beamable_Violet@3x.png +0 -0
  1960. package/Editor/UI/Common/Icons/BeamableWebIcons/Beamable_Violet@3x.png.meta +153 -0
  1961. package/Editor/UI/Common/Icons/BeamableWebIcons/Chat_Violet@3x.png +0 -0
  1962. package/Editor/UI/Common/Icons/BeamableWebIcons/Chat_Violet@3x.png.meta +153 -0
  1963. package/Editor/UI/Common/Icons/BeamableWebIcons/CloudDataToMicroServices_Violet@3x.png +0 -0
  1964. package/Editor/UI/Common/Icons/BeamableWebIcons/CloudDataToMicroServices_Violet@3x.png.meta +153 -0
  1965. package/Editor/UI/Common/Icons/BeamableWebIcons/ContentMigration_Violet@3x.png +0 -0
  1966. package/Editor/UI/Common/Icons/BeamableWebIcons/ContentMigration_Violet@3x.png.meta +153 -0
  1967. package/Editor/UI/Common/Icons/BeamableWebIcons/Currency_Violet@3x.png +0 -0
  1968. package/Editor/UI/Common/Icons/BeamableWebIcons/Currency_Violet@3x.png.meta +153 -0
  1969. package/Editor/UI/Common/Icons/BeamableWebIcons/CustomerSatisfaction_Violet@3x.png +0 -0
  1970. package/Editor/UI/Common/Icons/BeamableWebIcons/CustomerSatisfaction_Violet@3x.png.meta +153 -0
  1971. package/Editor/UI/Common/Icons/BeamableWebIcons/Discounts_Violet@3x.png +0 -0
  1972. package/Editor/UI/Common/Icons/BeamableWebIcons/Discounts_Violet@3x.png.meta +153 -0
  1973. package/Editor/UI/Common/Icons/BeamableWebIcons/EasyToUse_Violet@3x.png +0 -0
  1974. package/Editor/UI/Common/Icons/BeamableWebIcons/EasyToUse_Violet@3x.png.meta +153 -0
  1975. package/Editor/UI/Common/Icons/BeamableWebIcons/Engagement_Violet@3x.png +0 -0
  1976. package/Editor/UI/Common/Icons/BeamableWebIcons/Engagement_Violet@3x.png.meta +153 -0
  1977. package/Editor/UI/Common/Icons/BeamableWebIcons/GameArtist_Violet@3x.png +0 -0
  1978. package/Editor/UI/Common/Icons/BeamableWebIcons/GameArtist_Violet@3x.png.meta +153 -0
  1979. package/Editor/UI/Common/Icons/BeamableWebIcons/GameDesigner_Violet@3x.png +0 -0
  1980. package/Editor/UI/Common/Icons/BeamableWebIcons/GameDesigner_Violet@3x.png.meta +153 -0
  1981. package/Editor/UI/Common/Icons/BeamableWebIcons/GameDeveloper_Violet@3x.png +0 -0
  1982. package/Editor/UI/Common/Icons/BeamableWebIcons/GameDeveloper_Violet@3x.png.meta +153 -0
  1983. package/Editor/UI/Common/Icons/BeamableWebIcons/GamePlay_Violet@3x.png +0 -0
  1984. package/Editor/UI/Common/Icons/BeamableWebIcons/GamePlay_Violet@3x.png.meta +153 -0
  1985. package/Editor/UI/Common/Icons/BeamableWebIcons/GameProducer_Violet@3x.png +0 -0
  1986. package/Editor/UI/Common/Icons/BeamableWebIcons/GameProducer_Violet@3x.png.meta +153 -0
  1987. package/Editor/UI/Common/Icons/BeamableWebIcons/GameSparksMigration_Violet@3x.png +0 -0
  1988. package/Editor/UI/Common/Icons/BeamableWebIcons/GameSparksMigration_Violet@3x.png.meta +153 -0
  1989. package/Editor/UI/Common/Icons/BeamableWebIcons/GameSparksToCSharp_Violet@3x.png +0 -0
  1990. package/Editor/UI/Common/Icons/BeamableWebIcons/GameSparksToCSharp_Violet@3x.png.meta +153 -0
  1991. package/Editor/UI/Common/Icons/BeamableWebIcons/Guilds_Violet@3x.png +0 -0
  1992. package/Editor/UI/Common/Icons/BeamableWebIcons/Guilds_Violet@3x.png.meta +153 -0
  1993. package/Editor/UI/Common/Icons/BeamableWebIcons/Inventory_Violet@3x.png +0 -0
  1994. package/Editor/UI/Common/Icons/BeamableWebIcons/Inventory_Violet@3x.png.meta +153 -0
  1995. package/Editor/UI/Common/Icons/BeamableWebIcons/Leaderboard_Violet@3x.png +0 -0
  1996. package/Editor/UI/Common/Icons/BeamableWebIcons/Leaderboard_Violet@3x.png.meta +153 -0
  1997. package/Editor/UI/Common/Icons/BeamableWebIcons/Mail_Violet@3x.png +0 -0
  1998. package/Editor/UI/Common/Icons/BeamableWebIcons/Mail_Violet@3x.png.meta +153 -0
  1999. package/Editor/UI/Common/Icons/BeamableWebIcons/MigrateContent_Violet@3x.png +0 -0
  2000. package/Editor/UI/Common/Icons/BeamableWebIcons/MigrateContent_Violet@3x.png.meta +153 -0
  2001. package/Editor/UI/Common/Icons/BeamableWebIcons/MigrationGamesparksPlayers_Violet@3x.png +0 -0
  2002. package/Editor/UI/Common/Icons/BeamableWebIcons/MigrationGamesparksPlayers_Violet@3x.png.meta +153 -0
  2003. package/Editor/UI/Common/Icons/BeamableWebIcons/Monetize_Violet@3x.png +0 -0
  2004. package/Editor/UI/Common/Icons/BeamableWebIcons/Monetize_Violet@3x.png.meta +153 -0
  2005. package/Editor/UI/Common/Icons/BeamableWebIcons/New_Violet@3x.png +0 -0
  2006. package/Editor/UI/Common/Icons/BeamableWebIcons/New_Violet@3x.png.meta +153 -0
  2007. package/Editor/UI/Common/Icons/BeamableWebIcons/Payments_Violet@3x.png +0 -0
  2008. package/Editor/UI/Common/Icons/BeamableWebIcons/Payments_Violet@3x.png.meta +153 -0
  2009. package/Editor/UI/Common/Icons/BeamableWebIcons/Profiles_Violet@3x.png +0 -0
  2010. package/Editor/UI/Common/Icons/BeamableWebIcons/Profiles_Violet@3x.png.meta +153 -0
  2011. package/Editor/UI/Common/Icons/BeamableWebIcons/Quote_Violet@3x.png +0 -0
  2012. package/Editor/UI/Common/Icons/BeamableWebIcons/Quote_Violet@3x.png.meta +153 -0
  2013. package/Editor/UI/Common/Icons/BeamableWebIcons/Rewards_Violet@3x.png +0 -0
  2014. package/Editor/UI/Common/Icons/BeamableWebIcons/Rewards_Violet@3x.png.meta +153 -0
  2015. package/Editor/UI/Common/Icons/BeamableWebIcons/Serve_Violet@3x.png +0 -0
  2016. package/Editor/UI/Common/Icons/BeamableWebIcons/Serve_Violet@3x.png.meta +153 -0
  2017. package/Editor/UI/Common/Icons/BeamableWebIcons/Social_Violet@3x.png +0 -0
  2018. package/Editor/UI/Common/Icons/BeamableWebIcons/Social_Violet@3x.png.meta +153 -0
  2019. package/Editor/UI/Common/Icons/BeamableWebIcons/Trial_Violet@3x.png +0 -0
  2020. package/Editor/UI/Common/Icons/BeamableWebIcons/Trial_Violet@3x.png.meta +153 -0
  2021. package/Editor/UI/Common/Icons/BeamableWebIcons/Unity_Violet@3x.png +0 -0
  2022. package/Editor/UI/Common/Icons/BeamableWebIcons/Unity_Violet@3x.png.meta +153 -0
  2023. package/Editor/UI/Common/Icons/BeamableWebIcons/Victory_Violet@3x.png +0 -0
  2024. package/Editor/UI/Common/Icons/BeamableWebIcons/Victory_Violet@3x.png.meta +153 -0
  2025. package/Editor/UI/Common/Icons/BeamableWebIcons.meta +8 -0
  2026. package/Editor/UI/Common/Icons/Beamable_dark.png +0 -0
  2027. package/Editor/UI/Common/Icons/Beamable_dark.png.meta +96 -0
  2028. package/Editor/UI/Common/Icons/Check.png +0 -0
  2029. package/Editor/UI/Common/Icons/Check.png.meta +197 -0
  2030. package/Editor/UI/Common/Icons/Checked.png +0 -0
  2031. package/Editor/UI/Common/Icons/Checked.png.meta +92 -0
  2032. package/Editor/UI/Common/Icons/Checked2x.png +0 -0
  2033. package/Editor/UI/Common/Icons/Checked2x.png.meta +88 -0
  2034. package/Editor/UI/Common/Icons/Checked_Dark.png +0 -0
  2035. package/Editor/UI/Common/Icons/Checked_Dark.png.meta +88 -0
  2036. package/Editor/UI/Common/Icons/Checked_light.png +0 -0
  2037. package/Editor/UI/Common/Icons/Checked_light.png.meta +88 -0
  2038. package/Editor/UI/Common/Icons/Database_Dark.png +0 -0
  2039. package/Editor/UI/Common/Icons/Database_Dark.png.meta +88 -0
  2040. package/Editor/UI/Common/Icons/Database_light.png +0 -0
  2041. package/Editor/UI/Common/Icons/Database_light.png.meta +88 -0
  2042. package/Editor/UI/Common/Icons/Fold out_Dark.png +0 -0
  2043. package/Editor/UI/Common/Icons/Fold out_Dark.png.meta +92 -0
  2044. package/Editor/UI/Common/Icons/Fold out_light.png +0 -0
  2045. package/Editor/UI/Common/Icons/Fold out_light.png.meta +92 -0
  2046. package/Editor/UI/Common/Icons/FoldRight_Dark copy.png +0 -0
  2047. package/Editor/UI/Common/Icons/FoldRight_Dark copy.png.meta +92 -0
  2048. package/Editor/UI/Common/Icons/IconAction_Revert.png +0 -0
  2049. package/Editor/UI/Common/Icons/IconAction_Revert.png.meta +147 -0
  2050. package/Editor/UI/Common/Icons/IconBeam_API.png +0 -0
  2051. package/Editor/UI/Common/Icons/IconBeam_API.png.meta +159 -0
  2052. package/Editor/UI/Common/Icons/IconBeam_Announcements.png +0 -0
  2053. package/Editor/UI/Common/Icons/IconBeam_Announcements.png.meta +147 -0
  2054. package/Editor/UI/Common/Icons/IconBeam_AnnouncementsAPI.png +0 -0
  2055. package/Editor/UI/Common/Icons/IconBeam_AnnouncementsAPI.png.meta +159 -0
  2056. package/Editor/UI/Common/Icons/IconBeam_Calendar.png +0 -0
  2057. package/Editor/UI/Common/Icons/IconBeam_Calendar.png.meta +159 -0
  2058. package/Editor/UI/Common/Icons/IconBeam_ContentSnapshot.png +0 -0
  2059. package/Editor/UI/Common/Icons/IconBeam_ContentSnapshot.png.meta +147 -0
  2060. package/Editor/UI/Common/Icons/IconBeam_Currency.png +0 -0
  2061. package/Editor/UI/Common/Icons/IconBeam_Currency.png.meta +147 -0
  2062. package/Editor/UI/Common/Icons/IconBeam_Donation.png +0 -0
  2063. package/Editor/UI/Common/Icons/IconBeam_Donation.png.meta +159 -0
  2064. package/Editor/UI/Common/Icons/IconBeam_Emails.png +0 -0
  2065. package/Editor/UI/Common/Icons/IconBeam_Emails.png.meta +159 -0
  2066. package/Editor/UI/Common/Icons/IconBeam_GameType.png +0 -0
  2067. package/Editor/UI/Common/Icons/IconBeam_GameType.png.meta +147 -0
  2068. package/Editor/UI/Common/Icons/IconBeam_Item.png +0 -0
  2069. package/Editor/UI/Common/Icons/IconBeam_Item.png.meta +147 -0
  2070. package/Editor/UI/Common/Icons/IconBeam_ItemFallback.png +0 -0
  2071. package/Editor/UI/Common/Icons/IconBeam_ItemFallback.png.meta +147 -0
  2072. package/Editor/UI/Common/Icons/IconBeam_ItemStoreContent.png +0 -0
  2073. package/Editor/UI/Common/Icons/IconBeam_ItemStoreContent.png.meta +147 -0
  2074. package/Editor/UI/Common/Icons/IconBeam_LeaderBoards.png +0 -0
  2075. package/Editor/UI/Common/Icons/IconBeam_LeaderBoards.png.meta +159 -0
  2076. package/Editor/UI/Common/Icons/IconBeam_Listing.png +0 -0
  2077. package/Editor/UI/Common/Icons/IconBeam_Listing.png.meta +147 -0
  2078. package/Editor/UI/Common/Icons/IconBeam_Publish.png +0 -0
  2079. package/Editor/UI/Common/Icons/IconBeam_Publish.png.meta +147 -0
  2080. package/Editor/UI/Common/Icons/IconBeam_SKUs.png +0 -0
  2081. package/Editor/UI/Common/Icons/IconBeam_SKUs.png.meta +159 -0
  2082. package/Editor/UI/Common/Icons/IconBeam_Sync.png +0 -0
  2083. package/Editor/UI/Common/Icons/IconBeam_Sync.png.meta +147 -0
  2084. package/Editor/UI/Common/Icons/IconBeam_Tournaments.png +0 -0
  2085. package/Editor/UI/Common/Icons/IconBeam_Tournaments.png.meta +159 -0
  2086. package/Editor/UI/Common/Icons/IconBeam_VIP.png +0 -0
  2087. package/Editor/UI/Common/Icons/IconBeam_VIP.png.meta +159 -0
  2088. package/Editor/UI/Common/Icons/IconLogs_WarningMsg.png +0 -0
  2089. package/Editor/UI/Common/Icons/IconLogs_WarningMsg.png.meta +147 -0
  2090. package/Editor/UI/Common/Icons/IconStatus_Added.png +0 -0
  2091. package/Editor/UI/Common/Icons/IconStatus_Added.png.meta +147 -0
  2092. package/Editor/UI/Common/Icons/IconStatus_Delete.png +0 -0
  2093. package/Editor/UI/Common/Icons/IconStatus_Delete.png.meta +147 -0
  2094. package/Editor/UI/Common/Icons/IconStatus_Deleted.png +0 -0
  2095. package/Editor/UI/Common/Icons/IconStatus_Deleted.png.meta +147 -0
  2096. package/Editor/UI/Common/Icons/IconStatus_Invalid.png +0 -0
  2097. package/Editor/UI/Common/Icons/IconStatus_Invalid.png.meta +147 -0
  2098. package/Editor/UI/Common/Icons/IconStatus_Modified.png +0 -0
  2099. package/Editor/UI/Common/Icons/IconStatus_Modified.png.meta +147 -0
  2100. package/Editor/UI/Common/Icons/IconsWhite_ContentSnapshot.png +0 -0
  2101. package/Editor/UI/Common/Icons/IconsWhite_ContentSnapshot.png.meta +147 -0
  2102. package/Editor/UI/Common/Icons/Question.png +0 -0
  2103. package/Editor/UI/Common/Icons/Question.png.meta +88 -0
  2104. package/Editor/UI/Common/Icons/Refresh-dark.png +0 -0
  2105. package/Editor/UI/Common/Icons/Refresh-dark.png.meta +88 -0
  2106. package/Editor/UI/Common/Icons/Refresh.png +0 -0
  2107. package/Editor/UI/Common/Icons/Refresh.png.meta +88 -0
  2108. package/Editor/UI/Common/Icons/Remove.png +0 -0
  2109. package/Editor/UI/Common/Icons/Remove.png.meta +88 -0
  2110. package/Editor/UI/Common/Icons/Resources/SampleImage.png +0 -0
  2111. package/Editor/UI/Common/Icons/Resources/SampleImage.png.meta +88 -0
  2112. package/Editor/UI/Common/Icons/Resources.meta +8 -0
  2113. package/Editor/UI/Common/Icons/Share_feedback_dark.png +0 -0
  2114. package/Editor/UI/Common/Icons/Share_feedback_dark.png.meta +96 -0
  2115. package/Editor/UI/Common/Icons/Share_feedback_light.png +0 -0
  2116. package/Editor/UI/Common/Icons/Share_feedback_light.png.meta +96 -0
  2117. package/Editor/UI/Common/Icons/Statuses-dark.png +0 -0
  2118. package/Editor/UI/Common/Icons/Statuses-dark.png.meta +88 -0
  2119. package/Editor/UI/Common/Icons/Statuses.png +0 -0
  2120. package/Editor/UI/Common/Icons/Statuses.png.meta +88 -0
  2121. package/Editor/UI/Common/Icons/Survey_dark.png +0 -0
  2122. package/Editor/UI/Common/Icons/Survey_dark.png.meta +96 -0
  2123. package/Editor/UI/Common/Icons/Survey_light.png +0 -0
  2124. package/Editor/UI/Common/Icons/Survey_light.png.meta +96 -0
  2125. package/Editor/UI/Common/Icons/Tag-dark.png +0 -0
  2126. package/Editor/UI/Common/Icons/Tag-dark.png.meta +88 -0
  2127. package/Editor/UI/Common/Icons/Tag.png +0 -0
  2128. package/Editor/UI/Common/Icons/Tag.png.meta +88 -0
  2129. package/Editor/UI/Common/Icons/Type-dark.png +0 -0
  2130. package/Editor/UI/Common/Icons/Type-dark.png.meta +88 -0
  2131. package/Editor/UI/Common/Icons/Type.png +0 -0
  2132. package/Editor/UI/Common/Icons/Type.png.meta +88 -0
  2133. package/Editor/UI/Common/Icons/VerticalLine.png +0 -0
  2134. package/Editor/UI/Common/Icons/VerticalLine.png.meta +92 -0
  2135. package/Editor/UI/Common/Icons/Warning.png +0 -0
  2136. package/Editor/UI/Common/Icons/Warning.png.meta +88 -0
  2137. package/Editor/UI/Common/Icons/actionBarBackground.png +0 -0
  2138. package/Editor/UI/Common/Icons/actionBarBackground.png.meta +88 -0
  2139. package/Editor/UI/Common/Icons/actionBarlight.png +0 -0
  2140. package/Editor/UI/Common/Icons/actionBarlight.png.meta +88 -0
  2141. package/Editor/UI/Common/Icons/addNewDark.png +0 -0
  2142. package/Editor/UI/Common/Icons/addNewDark.png.meta +88 -0
  2143. package/Editor/UI/Common/Icons/addNewLight.png +0 -0
  2144. package/Editor/UI/Common/Icons/addNewLight.png.meta +88 -0
  2145. package/Editor/UI/Common/Icons/add_stylesheet_dark.png +0 -0
  2146. package/Editor/UI/Common/Icons/add_stylesheet_dark.png.meta +92 -0
  2147. package/Editor/UI/Common/Icons/add_stylesheet_light.png +0 -0
  2148. package/Editor/UI/Common/Icons/add_stylesheet_light.png.meta +92 -0
  2149. package/Editor/UI/Common/Icons/announcement-dark.png +0 -0
  2150. package/Editor/UI/Common/Icons/announcement-dark.png.meta +88 -0
  2151. package/Editor/UI/Common/Icons/announcement-light.png +0 -0
  2152. package/Editor/UI/Common/Icons/announcement-light.png.meta +88 -0
  2153. package/Editor/UI/Common/Icons/beam_art_game_content.png +0 -0
  2154. package/Editor/UI/Common/Icons/beam_art_game_content.png.meta +153 -0
  2155. package/Editor/UI/Common/Icons/beam_art_gameservers.png +0 -0
  2156. package/Editor/UI/Common/Icons/beam_art_gameservers.png.meta +153 -0
  2157. package/Editor/UI/Common/Icons/beam_art_liveops.png +0 -0
  2158. package/Editor/UI/Common/Icons/beam_art_liveops.png.meta +153 -0
  2159. package/Editor/UI/Common/Icons/beam_art_serverless.png +0 -0
  2160. package/Editor/UI/Common/Icons/beam_art_serverless.png.meta +153 -0
  2161. package/Editor/UI/Common/Icons/beam_icon_small.png +0 -0
  2162. package/Editor/UI/Common/Icons/beam_icon_small.png.meta +153 -0
  2163. package/Editor/UI/Common/Icons/beam_icon_small_color.png +0 -0
  2164. package/Editor/UI/Common/Icons/beam_icon_small_color.png.meta +153 -0
  2165. package/Editor/UI/Common/Icons/close_dark_SM.png +0 -0
  2166. package/Editor/UI/Common/Icons/close_dark_SM.png.meta +96 -0
  2167. package/Editor/UI/Common/Icons/close_light.png +0 -0
  2168. package/Editor/UI/Common/Icons/close_light.png.meta +92 -0
  2169. package/Editor/UI/Common/Icons/close_light_SM.png +0 -0
  2170. package/Editor/UI/Common/Icons/close_light_SM.png.meta +123 -0
  2171. package/Editor/UI/Common/Icons/dark_Square_background.png +0 -0
  2172. package/Editor/UI/Common/Icons/dark_Square_background.png.meta +88 -0
  2173. package/Editor/UI/Common/Icons/docker_dark.png +0 -0
  2174. package/Editor/UI/Common/Icons/docker_dark.png.meta +96 -0
  2175. package/Editor/UI/Common/Icons/docker_light.png +0 -0
  2176. package/Editor/UI/Common/Icons/docker_light.png.meta +96 -0
  2177. package/Editor/UI/Common/Icons/dropdown Close Dark.png +0 -0
  2178. package/Editor/UI/Common/Icons/dropdown Close Dark.png.meta +92 -0
  2179. package/Editor/UI/Common/Icons/dropdown Close.png +0 -0
  2180. package/Editor/UI/Common/Icons/dropdown Close.png.meta +92 -0
  2181. package/Editor/UI/Common/Icons/dropdown Open Dark.png +0 -0
  2182. package/Editor/UI/Common/Icons/dropdown Open Dark.png.meta +88 -0
  2183. package/Editor/UI/Common/Icons/dropdown Open.png +0 -0
  2184. package/Editor/UI/Common/Icons/dropdown Open.png.meta +88 -0
  2185. package/Editor/UI/Common/Icons/dropdown_Line_dark.png +0 -0
  2186. package/Editor/UI/Common/Icons/dropdown_Line_dark.png.meta +92 -0
  2187. package/Editor/UI/Common/Icons/dropdown_Line_light.png +0 -0
  2188. package/Editor/UI/Common/Icons/dropdown_Line_light.png.meta +92 -0
  2189. package/Editor/UI/Common/Icons/edit_stylesheet_dark.png +0 -0
  2190. package/Editor/UI/Common/Icons/edit_stylesheet_dark.png.meta +92 -0
  2191. package/Editor/UI/Common/Icons/edit_stylesheet_light.png +0 -0
  2192. package/Editor/UI/Common/Icons/edit_stylesheet_light.png.meta +92 -0
  2193. package/Editor/UI/Common/Icons/editing_dark.png +0 -0
  2194. package/Editor/UI/Common/Icons/editing_dark.png.meta +88 -0
  2195. package/Editor/UI/Common/Icons/editing_light.png +0 -0
  2196. package/Editor/UI/Common/Icons/editing_light.png.meta +88 -0
  2197. package/Editor/UI/Common/Icons/face_happy_light.png +0 -0
  2198. package/Editor/UI/Common/Icons/face_happy_light.png.meta +88 -0
  2199. package/Editor/UI/Common/Icons/face_ok_light.png +0 -0
  2200. package/Editor/UI/Common/Icons/face_ok_light.png.meta +88 -0
  2201. package/Editor/UI/Common/Icons/face_sad_light.png +0 -0
  2202. package/Editor/UI/Common/Icons/face_sad_light.png.meta +88 -0
  2203. package/Editor/UI/Common/Icons/foldoutRight.png +0 -0
  2204. package/Editor/UI/Common/Icons/foldoutRight.png.meta +92 -0
  2205. package/Editor/UI/Common/Icons/gradient-deep-space.jpg +0 -0
  2206. package/Editor/UI/Common/Icons/gradient-deep-space.jpg.meta +153 -0
  2207. package/Editor/UI/Common/Icons/in-sync 1.png +0 -0
  2208. package/Editor/UI/Common/Icons/in-sync 1.png.meta +147 -0
  2209. package/Editor/UI/Common/Icons/in-sync-dark.png +0 -0
  2210. package/Editor/UI/Common/Icons/in-sync-dark.png.meta +147 -0
  2211. package/Editor/UI/Common/Icons/lcoal-new.png +0 -0
  2212. package/Editor/UI/Common/Icons/lcoal-new.png.meta +147 -0
  2213. package/Editor/UI/Common/Icons/light_Square_background.png +0 -0
  2214. package/Editor/UI/Common/Icons/light_Square_background.png.meta +88 -0
  2215. package/Editor/UI/Common/Icons/loading_animation.png +0 -0
  2216. package/Editor/UI/Common/Icons/loading_animation.png.meta +104 -0
  2217. package/Editor/UI/Common/Icons/loading_dark.png +0 -0
  2218. package/Editor/UI/Common/Icons/loading_dark.png.meta +88 -0
  2219. package/Editor/UI/Common/Icons/loading_light.png +0 -0
  2220. package/Editor/UI/Common/Icons/loading_light.png.meta +88 -0
  2221. package/Editor/UI/Common/Icons/local-delete.png +0 -0
  2222. package/Editor/UI/Common/Icons/local-delete.png.meta +88 -0
  2223. package/Editor/UI/Common/Icons/microservice.png +0 -0
  2224. package/Editor/UI/Common/Icons/microservice.png.meta +153 -0
  2225. package/Editor/UI/Common/Icons/modified.png +0 -0
  2226. package/Editor/UI/Common/Icons/modified.png.meta +88 -0
  2227. package/Editor/UI/Common/Icons/ms_header_green.png +0 -0
  2228. package/Editor/UI/Common/Icons/ms_header_green.png.meta +92 -0
  2229. package/Editor/UI/Common/Icons/ms_header_green_light.png +0 -0
  2230. package/Editor/UI/Common/Icons/ms_header_green_light.png.meta +92 -0
  2231. package/Editor/UI/Common/Icons/question_mark_dark.png +0 -0
  2232. package/Editor/UI/Common/Icons/question_mark_dark.png.meta +92 -0
  2233. package/Editor/UI/Common/Icons/question_mark_light.png +0 -0
  2234. package/Editor/UI/Common/Icons/question_mark_light.png.meta +92 -0
  2235. package/Editor/UI/Common/Icons/refresh_dark.png +0 -0
  2236. package/Editor/UI/Common/Icons/refresh_dark.png.meta +92 -0
  2237. package/Editor/UI/Common/Icons/refresh_light.png +0 -0
  2238. package/Editor/UI/Common/Icons/refresh_light.png.meta +92 -0
  2239. package/Editor/UI/Common/Icons/removeDark.png +0 -0
  2240. package/Editor/UI/Common/Icons/removeDark.png.meta +88 -0
  2241. package/Editor/UI/Common/Icons/removeLight.png +0 -0
  2242. package/Editor/UI/Common/Icons/removeLight.png.meta +88 -0
  2243. package/Editor/UI/Common/Icons/search.png +0 -0
  2244. package/Editor/UI/Common/Icons/search.png.meta +88 -0
  2245. package/Editor/UI/Common/Icons/server-delete.png +0 -0
  2246. package/Editor/UI/Common/Icons/server-delete.png.meta +88 -0
  2247. package/Editor/UI/Common/Icons/server-new.png +0 -0
  2248. package/Editor/UI/Common/Icons/server-new.png.meta +88 -0
  2249. package/Editor/UI/Common/Icons/softShadow.png +0 -0
  2250. package/Editor/UI/Common/Icons/softShadow.png.meta +153 -0
  2251. package/Editor/UI/Common/Icons/storage.png +0 -0
  2252. package/Editor/UI/Common/Icons/storage.png.meta +153 -0
  2253. package/Editor/UI/Common/Icons/triangle_down_dark.png +0 -0
  2254. package/Editor/UI/Common/Icons/triangle_down_dark.png.meta +96 -0
  2255. package/Editor/UI/Common/Icons/triangle_down_light.png +0 -0
  2256. package/Editor/UI/Common/Icons/triangle_down_light.png.meta +96 -0
  2257. package/Editor/UI/Common/Icons/triangle_left_dark.png +0 -0
  2258. package/Editor/UI/Common/Icons/triangle_left_dark.png.meta +96 -0
  2259. package/Editor/UI/Common/Icons/triangle_left_light.png +0 -0
  2260. package/Editor/UI/Common/Icons/triangle_left_light.png.meta +96 -0
  2261. package/Editor/UI/Common/Icons/triangle_right_dark.png +0 -0
  2262. package/Editor/UI/Common/Icons/triangle_right_dark.png.meta +96 -0
  2263. package/Editor/UI/Common/Icons/triangle_right_light.png +0 -0
  2264. package/Editor/UI/Common/Icons/triangle_right_light.png.meta +96 -0
  2265. package/Editor/UI/Common/Icons/welcome.png +0 -0
  2266. package/Editor/UI/Common/Icons/welcome.png.meta +88 -0
  2267. package/Editor/UI/Common/Icons.meta +8 -0
  2268. package/Editor/UI/Common/Materials/BeamIconMat.mat +87 -0
  2269. package/Editor/UI/Common/Materials/BeamIconMat.mat.meta +8 -0
  2270. package/Editor/UI/Common/Materials/BeamIconUnlit.shader +113 -0
  2271. package/Editor/UI/Common/Materials/BeamIconUnlit.shader.meta +9 -0
  2272. package/Editor/UI/Common/Materials/BeamLibraryGradientMat.mat +88 -0
  2273. package/Editor/UI/Common/Materials/BeamLibraryGradientMat.mat.meta +8 -0
  2274. package/Editor/UI/Common/Materials/BeamLibraryGradientUnlit.shader +89 -0
  2275. package/Editor/UI/Common/Materials/BeamLibraryGradientUnlit.shader.meta +9 -0
  2276. package/Editor/UI/Common/Materials.meta +8 -0
  2277. package/Editor/UI/Common/MediaQueryObjectPropertyDrawer.cs +42 -0
  2278. package/Editor/UI/Common/MediaQueryObjectPropertyDrawer.cs.meta +11 -0
  2279. package/Editor/UI/Common/ReparenterCustomEditor.cs +24 -0
  2280. package/Editor/UI/Common/ReparenterCustomEditor.cs.meta +11 -0
  2281. package/Editor/UI/Common.meta +8 -0
  2282. package/Editor/UI/Config/BeamableSettingsProvider.cs +222 -0
  2283. package/Editor/UI/Config/BeamableSettingsProvider.cs.meta +11 -0
  2284. package/Editor/UI/Config/BeamableSpewSettingsProvider.cs +163 -0
  2285. package/Editor/UI/Config/BeamableSpewSettingsProvider.cs.meta +3 -0
  2286. package/Editor/UI/Config/ConfigManager.cs +207 -0
  2287. package/Editor/UI/Config/ConfigManager.cs.meta +11 -0
  2288. package/Editor/UI/Config/Model/ConfigOption.cs +26 -0
  2289. package/Editor/UI/Config/Model/ConfigOption.cs.meta +11 -0
  2290. package/Editor/UI/Config/Model/ConfigQuery.cs +114 -0
  2291. package/Editor/UI/Config/Model/ConfigQuery.cs.meta +11 -0
  2292. package/Editor/UI/Config/Model.meta +8 -0
  2293. package/Editor/UI/Config/UpdateGPGSRealmConfigHelper.cs +97 -0
  2294. package/Editor/UI/Config/UpdateGPGSRealmConfigHelper.cs.meta +11 -0
  2295. package/Editor/UI/Config.meta +8 -0
  2296. package/Editor/UI/ContentWindow/ContentFilterStatus.cs +12 -0
  2297. package/Editor/UI/ContentWindow/ContentFilterStatus.cs.meta +3 -0
  2298. package/Editor/UI/ContentWindow/ContentSearchFilterType.cs +9 -0
  2299. package/Editor/UI/ContentWindow/ContentSearchFilterType.cs.meta +3 -0
  2300. package/Editor/UI/ContentWindow/ContentSortOptionType.cs +12 -0
  2301. package/Editor/UI/ContentWindow/ContentSortOptionType.cs.meta +3 -0
  2302. package/Editor/UI/ContentWindow/ContentWindow.cs +373 -0
  2303. package/Editor/UI/ContentWindow/ContentWindow.cs.meta +3 -0
  2304. package/Editor/UI/ContentWindow/ContentWindow_ContentActions.cs +381 -0
  2305. package/Editor/UI/ContentWindow/ContentWindow_ContentActions.cs.meta +3 -0
  2306. package/Editor/UI/ContentWindow/ContentWindow_GroupPanel.cs +192 -0
  2307. package/Editor/UI/ContentWindow/ContentWindow_GroupPanel.cs.meta +3 -0
  2308. package/Editor/UI/ContentWindow/ContentWindow_Header.cs +577 -0
  2309. package/Editor/UI/ContentWindow/ContentWindow_Header.cs.meta +11 -0
  2310. package/Editor/UI/ContentWindow/ContentWindow_ItemsPanel.cs +1197 -0
  2311. package/Editor/UI/ContentWindow/ContentWindow_ItemsPanel.cs.meta +3 -0
  2312. package/Editor/UI/ContentWindow/ContentWindow_Migration.cs +315 -0
  2313. package/Editor/UI/ContentWindow/ContentWindow_Migration.cs.meta +3 -0
  2314. package/Editor/UI/ContentWindow/ContentWindow_SnapshotManager.cs +611 -0
  2315. package/Editor/UI/ContentWindow/ContentWindow_SnapshotManager.cs.meta +3 -0
  2316. package/Editor/UI/ContentWindow.meta +3 -0
  2317. package/Editor/UI/CronEditorWindow/CronEditorWindow.cs +134 -0
  2318. package/Editor/UI/CronEditorWindow/CronEditorWindow.cs.meta +11 -0
  2319. package/Editor/UI/CronEditorWindow.meta +8 -0
  2320. package/Editor/UI/CronExpression/Common/Extensions.cs +23 -0
  2321. package/Editor/UI/CronExpression/Common/Extensions.cs.meta +3 -0
  2322. package/Editor/UI/CronExpression/Common.meta +3 -0
  2323. package/Editor/UI/CronExpression/DescriptionTypeEnum.cs +18 -0
  2324. package/Editor/UI/CronExpression/DescriptionTypeEnum.cs.meta +11 -0
  2325. package/Editor/UI/CronExpression/ExpressionDescriptor.cs +761 -0
  2326. package/Editor/UI/CronExpression/ExpressionDescriptor.cs.meta +11 -0
  2327. package/Editor/UI/CronExpression/Localization/CronLocalizationData.cs +77 -0
  2328. package/Editor/UI/CronExpression/Localization/CronLocalizationData.cs.meta +3 -0
  2329. package/Editor/UI/CronExpression/Localization/CronLocalizationDatabase.cs +15 -0
  2330. package/Editor/UI/CronExpression/Localization/CronLocalizationDatabase.cs.meta +3 -0
  2331. package/Editor/UI/CronExpression/Localization.meta +3 -0
  2332. package/Editor/UI/CronExpression/Resources/CronLocalizationDatabase.asset +18 -0
  2333. package/Editor/UI/CronExpression/Resources/CronLocalizationDatabase.asset.meta +8 -0
  2334. package/Editor/UI/CronExpression/Resources/Localizations/en-US.asset +63 -0
  2335. package/Editor/UI/CronExpression/Resources/Localizations/en-US.asset.meta +8 -0
  2336. package/Editor/UI/CronExpression/Resources/Localizations/pl_PL.asset +65 -0
  2337. package/Editor/UI/CronExpression/Resources/Localizations/pl_PL.asset.meta +8 -0
  2338. package/Editor/UI/CronExpression/Resources/Localizations.meta +8 -0
  2339. package/Editor/UI/CronExpression/Resources.meta +8 -0
  2340. package/Editor/UI/CronExpression.meta +8 -0
  2341. package/Editor/UI/HelpMenuItems.cs +29 -0
  2342. package/Editor/UI/HelpMenuItems.cs.meta +11 -0
  2343. package/Editor/UI/IDelayedActionWindow.cs +10 -0
  2344. package/Editor/UI/IDelayedActionWindow.cs.meta +3 -0
  2345. package/Editor/UI/Inspectors/BeamableBehaviourInspector.cs +45 -0
  2346. package/Editor/UI/Inspectors/BeamableBehaviourInspector.cs.meta +3 -0
  2347. package/Editor/UI/Inspectors.meta +3 -0
  2348. package/Editor/UI/LibraryWindow/BeamLibraryWindow.cs +71 -0
  2349. package/Editor/UI/LibraryWindow/BeamLibraryWindow.cs.meta +3 -0
  2350. package/Editor/UI/LibraryWindow/BeamLibraryWindow_Main.cs +35 -0
  2351. package/Editor/UI/LibraryWindow/BeamLibraryWindow_Main.cs.meta +3 -0
  2352. package/Editor/UI/LibraryWindow/BeamLibraryWindow_Samples.cs +330 -0
  2353. package/Editor/UI/LibraryWindow/BeamLibraryWindow_Samples.cs.meta +3 -0
  2354. package/Editor/UI/LibraryWindow.meta +3 -0
  2355. package/Editor/UI/Login/UI/icon/logo2 L tran.png +0 -0
  2356. package/Editor/UI/Login/UI/icon/logo2 L tran.png.meta +88 -0
  2357. package/Editor/UI/Login/UI/icon/logo2 L white.png +0 -0
  2358. package/Editor/UI/Login/UI/icon/logo2 L white.png.meta +88 -0
  2359. package/Editor/UI/Login/UI/icon.meta +8 -0
  2360. package/Editor/UI/Login/UI.meta +8 -0
  2361. package/Editor/UI/Login.meta +8 -0
  2362. package/Editor/UI/OptionDialogWindow/OptionDialogWindow.cs +90 -0
  2363. package/Editor/UI/OptionDialogWindow/OptionDialogWindow.cs.meta +3 -0
  2364. package/Editor/UI/OptionDialogWindow.meta +8 -0
  2365. package/Editor/UI/Toolbar/BeamableVersionButton/BeamableVersionButton.dark.uss +3 -0
  2366. package/Editor/UI/Toolbar/BeamableVersionButton/BeamableVersionButton.dark.uss.meta +3 -0
  2367. package/Editor/UI/Toolbar/BeamableVersionButton/BeamableVersionButton.light.uss +3 -0
  2368. package/Editor/UI/Toolbar/BeamableVersionButton/BeamableVersionButton.light.uss.meta +3 -0
  2369. package/Editor/UI/Toolbar/BeamableVersionButton/BeamableVersionButton.uss +40 -0
  2370. package/Editor/UI/Toolbar/BeamableVersionButton/BeamableVersionButton.uss.meta +3 -0
  2371. package/Editor/UI/Toolbar/BeamableVersionButton.meta +8 -0
  2372. package/Editor/UI/Toolbar/Icons/info hit.png +0 -0
  2373. package/Editor/UI/Toolbar/Icons/info hit.png.meta +88 -0
  2374. package/Editor/UI/Toolbar/Icons/info valu.png +0 -0
  2375. package/Editor/UI/Toolbar/Icons/info valu.png.meta +88 -0
  2376. package/Editor/UI/Toolbar/Icons/info.png +0 -0
  2377. package/Editor/UI/Toolbar/Icons/info.png.meta +88 -0
  2378. package/Editor/UI/Toolbar/Icons/info_light.png +0 -0
  2379. package/Editor/UI/Toolbar/Icons/info_light.png.meta +88 -0
  2380. package/Editor/UI/Toolbar/Icons.meta +8 -0
  2381. package/Editor/UI/Toolbar.meta +8 -0
  2382. package/Editor/UI/Toolbox/Icons/Account HUD.png +0 -0
  2383. package/Editor/UI/Toolbox/Icons/Account HUD.png.meta +88 -0
  2384. package/Editor/UI/Toolbox/Icons/Account_Light.png +0 -0
  2385. package/Editor/UI/Toolbox/Icons/Account_Light.png.meta +88 -0
  2386. package/Editor/UI/Toolbox/Icons/Account_dark.png +0 -0
  2387. package/Editor/UI/Toolbox/Icons/Account_dark.png.meta +88 -0
  2388. package/Editor/UI/Toolbox/Icons/Acoounnt Management.png +0 -0
  2389. package/Editor/UI/Toolbox/Icons/Acoounnt Management.png.meta +92 -0
  2390. package/Editor/UI/Toolbox/Icons/Admin Flow 1.png +0 -0
  2391. package/Editor/UI/Toolbox/Icons/Admin Flow 1.png.meta +92 -0
  2392. package/Editor/UI/Toolbox/Icons/Admin Flow.png +0 -0
  2393. package/Editor/UI/Toolbox/Icons/Admin Flow.png.meta +88 -0
  2394. package/Editor/UI/Toolbox/Icons/Announcement flow.png +0 -0
  2395. package/Editor/UI/Toolbox/Icons/Announcement flow.png.meta +88 -0
  2396. package/Editor/UI/Toolbox/Icons/Beamable.png +0 -0
  2397. package/Editor/UI/Toolbox/Icons/Beamable.png.meta +92 -0
  2398. package/Editor/UI/Toolbox/Icons/Category_dark.png +0 -0
  2399. package/Editor/UI/Toolbox/Icons/Category_dark.png.meta +88 -0
  2400. package/Editor/UI/Toolbox/Icons/Category_light.png +0 -0
  2401. package/Editor/UI/Toolbox/Icons/Category_light.png.meta +88 -0
  2402. package/Editor/UI/Toolbox/Icons/Config_Light.png +0 -0
  2403. package/Editor/UI/Toolbox/Icons/Config_Light.png.meta +88 -0
  2404. package/Editor/UI/Toolbox/Icons/Config_dark.png +0 -0
  2405. package/Editor/UI/Toolbox/Icons/Config_dark.png.meta +88 -0
  2406. package/Editor/UI/Toolbox/Icons/Content_Manager_dark 1.png +0 -0
  2407. package/Editor/UI/Toolbox/Icons/Content_Manager_dark 1.png.meta +92 -0
  2408. package/Editor/UI/Toolbox/Icons/Content_Manager_dark.png +0 -0
  2409. package/Editor/UI/Toolbox/Icons/Content_Manager_dark.png.meta +88 -0
  2410. package/Editor/UI/Toolbox/Icons/Content_Manager_light 1.png +0 -0
  2411. package/Editor/UI/Toolbox/Icons/Content_Manager_light 1.png.meta +92 -0
  2412. package/Editor/UI/Toolbox/Icons/Content_Manager_light.png +0 -0
  2413. package/Editor/UI/Toolbox/Icons/Content_Manager_light.png.meta +88 -0
  2414. package/Editor/UI/Toolbox/Icons/Currency HUD 1.png +0 -0
  2415. package/Editor/UI/Toolbox/Icons/Currency HUD 1.png.meta +92 -0
  2416. package/Editor/UI/Toolbox/Icons/Currency HUD.png +0 -0
  2417. package/Editor/UI/Toolbox/Icons/Currency HUD.png.meta +88 -0
  2418. package/Editor/UI/Toolbox/Icons/Friends.png +0 -0
  2419. package/Editor/UI/Toolbox/Icons/Friends.png.meta +92 -0
  2420. package/Editor/UI/Toolbox/Icons/Game_mode_dark.png +0 -0
  2421. package/Editor/UI/Toolbox/Icons/Game_mode_dark.png.meta +88 -0
  2422. package/Editor/UI/Toolbox/Icons/Game_mode_light.png +0 -0
  2423. package/Editor/UI/Toolbox/Icons/Game_mode_light.png.meta +88 -0
  2424. package/Editor/UI/Toolbox/Icons/INFO.png +0 -0
  2425. package/Editor/UI/Toolbox/Icons/INFO.png.meta +88 -0
  2426. package/Editor/UI/Toolbox/Icons/Info_Light.png +0 -0
  2427. package/Editor/UI/Toolbox/Icons/Info_Light.png.meta +88 -0
  2428. package/Editor/UI/Toolbox/Icons/Info_dark.png +0 -0
  2429. package/Editor/UI/Toolbox/Icons/Info_dark.png.meta +88 -0
  2430. package/Editor/UI/Toolbox/Icons/Login Flow.png +0 -0
  2431. package/Editor/UI/Toolbox/Icons/Login Flow.png.meta +88 -0
  2432. package/Editor/UI/Toolbox/Icons/Microservice_Light.png +0 -0
  2433. package/Editor/UI/Toolbox/Icons/Microservice_Light.png.meta +88 -0
  2434. package/Editor/UI/Toolbox/Icons/Microservice_dark.png +0 -0
  2435. package/Editor/UI/Toolbox/Icons/Microservice_dark.png.meta +88 -0
  2436. package/Editor/UI/Toolbox/Icons/Module_dark.png +0 -0
  2437. package/Editor/UI/Toolbox/Icons/Module_dark.png.meta +88 -0
  2438. package/Editor/UI/Toolbox/Icons/Module_light.png +0 -0
  2439. package/Editor/UI/Toolbox/Icons/Module_light.png.meta +88 -0
  2440. package/Editor/UI/Toolbox/Icons/NEW Acoounnt HUD.png +0 -0
  2441. package/Editor/UI/Toolbox/Icons/NEW Acoounnt HUD.png.meta +92 -0
  2442. package/Editor/UI/Toolbox/Icons/Skinning_dark.png +0 -0
  2443. package/Editor/UI/Toolbox/Icons/Skinning_dark.png.meta +88 -0
  2444. package/Editor/UI/Toolbox/Icons/Skinning_light.png +0 -0
  2445. package/Editor/UI/Toolbox/Icons/Skinning_light.png.meta +88 -0
  2446. package/Editor/UI/Toolbox/Icons/Store Flow 1.png +0 -0
  2447. package/Editor/UI/Toolbox/Icons/Store Flow 1.png.meta +92 -0
  2448. package/Editor/UI/Toolbox/Icons/Store Flow.png +0 -0
  2449. package/Editor/UI/Toolbox/Icons/Store Flow.png.meta +88 -0
  2450. package/Editor/UI/Toolbox/Icons/Tag_dark.png +0 -0
  2451. package/Editor/UI/Toolbox/Icons/Tag_dark.png.meta +88 -0
  2452. package/Editor/UI/Toolbox/Icons/Tag_light.png +0 -0
  2453. package/Editor/UI/Toolbox/Icons/Tag_light.png.meta +88 -0
  2454. package/Editor/UI/Toolbox/Icons/Tournaments flow.png +0 -0
  2455. package/Editor/UI/Toolbox/Icons/Tournaments flow.png.meta +88 -0
  2456. package/Editor/UI/Toolbox/Icons/account.png +0 -0
  2457. package/Editor/UI/Toolbox/Icons/account.png.meta +91 -0
  2458. package/Editor/UI/Toolbox/Icons/admin.png +0 -0
  2459. package/Editor/UI/Toolbox/Icons/admin.png.meta +91 -0
  2460. package/Editor/UI/Toolbox/Icons/announcements.png +0 -0
  2461. package/Editor/UI/Toolbox/Icons/announcements.png.meta +91 -0
  2462. package/Editor/UI/Toolbox/Icons/bargraph.png +0 -0
  2463. package/Editor/UI/Toolbox/Icons/bargraph.png.meta +91 -0
  2464. package/Editor/UI/Toolbox/Icons/beamable_gradient.png +0 -0
  2465. package/Editor/UI/Toolbox/Icons/beamable_gradient.png.meta +91 -0
  2466. package/Editor/UI/Toolbox/Icons/gamemode.png +0 -0
  2467. package/Editor/UI/Toolbox/Icons/gamemode.png.meta +88 -0
  2468. package/Editor/UI/Toolbox/Icons/inventory Flow.png +0 -0
  2469. package/Editor/UI/Toolbox/Icons/inventory Flow.png.meta +88 -0
  2470. package/Editor/UI/Toolbox/Icons/inventory.png +0 -0
  2471. package/Editor/UI/Toolbox/Icons/inventory.png.meta +92 -0
  2472. package/Editor/UI/Toolbox/Icons/leaderboard flow.png +0 -0
  2473. package/Editor/UI/Toolbox/Icons/leaderboard flow.png.meta +88 -0
  2474. package/Editor/UI/Toolbox/Icons/leaderboard.png +0 -0
  2475. package/Editor/UI/Toolbox/Icons/leaderboard.png.meta +92 -0
  2476. package/Editor/UI/Toolbox/Icons/lobby.png +0 -0
  2477. package/Editor/UI/Toolbox/Icons/lobby.png.meta +92 -0
  2478. package/Editor/UI/Toolbox/Icons/party.png +0 -0
  2479. package/Editor/UI/Toolbox/Icons/party.png.meta +92 -0
  2480. package/Editor/UI/Toolbox/Icons/shoparrow.png +0 -0
  2481. package/Editor/UI/Toolbox/Icons/shoparrow.png.meta +91 -0
  2482. package/Editor/UI/Toolbox/Icons/uicomponents.png +0 -0
  2483. package/Editor/UI/Toolbox/Icons/uicomponents.png.meta +91 -0
  2484. package/Editor/UI/Toolbox/Icons.meta +8 -0
  2485. package/Editor/UI/Toolbox/ToolboxWindow.cs +19 -0
  2486. package/Editor/UI/Toolbox/ToolboxWindow.cs.meta +3 -0
  2487. package/Editor/UI/Toolbox/gear.png +0 -0
  2488. package/Editor/UI/Toolbox/gear.png.meta +88 -0
  2489. package/Editor/UI/Toolbox.meta +8 -0
  2490. package/Editor/UI/Utils/RectUtils.cs +42 -0
  2491. package/Editor/UI/Utils/RectUtils.cs.meta +3 -0
  2492. package/Editor/UI/Utils/ToggleListWindow.cs +104 -0
  2493. package/Editor/UI/Utils/ToggleListWindow.cs.meta +3 -0
  2494. package/Editor/UI/Utils.meta +3 -0
  2495. package/Editor/UI.meta +8 -0
  2496. package/Editor/Unity.Beamable.Editor.asmdef +33 -0
  2497. package/Editor/Unity.Beamable.Editor.asmdef.meta +7 -0
  2498. package/Editor/Utility/BeamableAssetDatabase.cs +30 -0
  2499. package/Editor/Utility/BeamableAssetDatabase.cs.meta +11 -0
  2500. package/Editor/Utility/BeamableDispatcher.cs +222 -0
  2501. package/Editor/Utility/BeamableDispatcher.cs.meta +3 -0
  2502. package/Editor/Utility/EditorConstants.cs +7 -0
  2503. package/Editor/Utility/EditorConstants.cs.meta +3 -0
  2504. package/Editor/Utility/EditorDebouncer.cs +78 -0
  2505. package/Editor/Utility/EditorDebouncer.cs.meta +3 -0
  2506. package/Editor/Utility/EditorFilesystemAccessor.cs +13 -0
  2507. package/Editor/Utility/EditorFilesystemAccessor.cs.meta +3 -0
  2508. package/Editor/Utility/EditorGUIExtension.cs +148 -0
  2509. package/Editor/Utility/EditorGUIExtension.cs.meta +3 -0
  2510. package/Editor/Utility/EditorGUIRectController.cs +72 -0
  2511. package/Editor/Utility/EditorGUIRectController.cs.meta +3 -0
  2512. package/Editor/Utility/FilePathSelectorDrawer.cs +81 -0
  2513. package/Editor/Utility/FilePathSelectorDrawer.cs.meta +3 -0
  2514. package/Editor/Utility/FileUtils.cs +76 -0
  2515. package/Editor/Utility/FileUtils.cs.meta +3 -0
  2516. package/Editor/Utility/GenericMessagePopup.cs +34 -0
  2517. package/Editor/Utility/GenericMessagePopup.cs.meta +3 -0
  2518. package/Editor/Utility/PlayerSettingsExtensions.cs +54 -0
  2519. package/Editor/Utility/PlayerSettingsExtensions.cs.meta +3 -0
  2520. package/Editor/Utility/PromiseEditor.cs +22 -0
  2521. package/Editor/Utility/PromiseEditor.cs.meta +3 -0
  2522. package/Editor/Utility/PropertyDrawerFinder.cs +235 -0
  2523. package/Editor/Utility/PropertyDrawerFinder.cs.meta +3 -0
  2524. package/Editor/Utility/ReadonlyIfDrawer.cs +56 -0
  2525. package/Editor/Utility/ReadonlyIfDrawer.cs.meta +3 -0
  2526. package/Editor/Utility/SchedulerDefinitionExtensions.cs +28 -0
  2527. package/Editor/Utility/SchedulerDefinitionExtensions.cs.meta +11 -0
  2528. package/Editor/Utility/ShowOnlyDrawer.cs +36 -0
  2529. package/Editor/Utility/ShowOnlyDrawer.cs.meta +3 -0
  2530. package/Editor/Utility/TaskUtil.cs +58 -0
  2531. package/Editor/Utility/TaskUtil.cs.meta +3 -0
  2532. package/Editor/Utility/UnityOtelManager.cs +518 -0
  2533. package/Editor/Utility/UnityOtelManager.cs.meta +3 -0
  2534. package/Editor/Utility.meta +3 -0
  2535. package/Editor.meta +8 -0
  2536. package/Plugins/Android/googlesignin-release.aar +0 -0
  2537. package/Plugins/Android/googlesignin-release.aar.meta +32 -0
  2538. package/Plugins/Android.meta +8 -0
  2539. package/Plugins/WebGL/FileUtility.jslib +11 -0
  2540. package/Plugins/WebGL/FileUtility.jslib.meta +76 -0
  2541. package/Plugins/WebGL.meta +8 -0
  2542. package/Plugins/iOS/BeamableGoogleSignIn/BeamableGoogleSignIn.h +8 -0
  2543. package/Plugins/iOS/BeamableGoogleSignIn/BeamableGoogleSignIn.h.meta +35 -0
  2544. package/Plugins/iOS/BeamableGoogleSignIn/BeamableGoogleSignIn.mm +68 -0
  2545. package/Plugins/iOS/BeamableGoogleSignIn/BeamableGoogleSignIn.mm.meta +102 -0
  2546. package/Plugins/iOS/BeamableGoogleSignIn.meta +8 -0
  2547. package/Plugins/iOS/GameCenterSignIn/GCIdentity.h +8 -0
  2548. package/Plugins/iOS/GameCenterSignIn/GCIdentity.h.meta +97 -0
  2549. package/Plugins/iOS/GameCenterSignIn/GCIdentity.mm +91 -0
  2550. package/Plugins/iOS/GameCenterSignIn/GCIdentity.mm.meta +37 -0
  2551. package/Plugins/iOS/GameCenterSignIn.meta +8 -0
  2552. package/Plugins/iOS.meta +8 -0
  2553. package/Plugins.meta +8 -0
  2554. package/README.md +10 -0
  2555. package/README.md.meta +7 -0
  2556. package/Runtime/3rdParty/PubNub/PubNub.asmdef +15 -0
  2557. package/Runtime/3rdParty/PubNub/PubNub.asmdef.meta +7 -0
  2558. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/BuildRequests.cs +961 -0
  2559. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/BuildRequests.cs.meta +11 -0
  2560. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/CoroutineClass.cs +1396 -0
  2561. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/CoroutineClass.cs.meta +11 -0
  2562. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/ExceptionHandlers.cs +295 -0
  2563. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/ExceptionHandlers.cs.meta +11 -0
  2564. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/Helpers.cs +1337 -0
  2565. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/Helpers.cs.meta +11 -0
  2566. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/IPubnubUnitTest.cs +31 -0
  2567. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/IPubnubUnitTest.cs.meta +11 -0
  2568. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/JSONSerializer.cs +62 -0
  2569. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/JSONSerializer.cs.meta +11 -0
  2570. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/LoggingMethod.cs +661 -0
  2571. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/LoggingMethod.cs.meta +11 -0
  2572. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/MD5.cs +723 -0
  2573. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/MD5.cs.meta +11 -0
  2574. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/Pubnub.cs +1164 -0
  2575. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/Pubnub.cs.meta +11 -0
  2576. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/PubnubCallbacks.cs +464 -0
  2577. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/PubnubCallbacks.cs.meta +11 -0
  2578. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/PubnubCrypto.cs +77 -0
  2579. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/PubnubCrypto.cs.meta +11 -0
  2580. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/PubnubUnity.cs +2080 -0
  2581. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/PubnubUnity.cs.meta +11 -0
  2582. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/ReconnectState.cs +180 -0
  2583. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/ReconnectState.cs.meta +11 -0
  2584. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/SafeDictionary.cs +204 -0
  2585. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/SafeDictionary.cs.meta +11 -0
  2586. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/SharedStringBuilder.cs +23 -0
  2587. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/SharedStringBuilder.cs.meta +3 -0
  2588. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/SubscribeEnvelope.cs +226 -0
  2589. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/SubscribeEnvelope.cs.meta +11 -0
  2590. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/Subscription.cs +421 -0
  2591. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/Subscription.cs.meta +11 -0
  2592. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/Utility.cs +350 -0
  2593. package/Runtime/3rdParty/PubNub/Scripts/Pubnub/Utility.cs.meta +11 -0
  2594. package/Runtime/3rdParty/PubNub/Scripts/Pubnub.meta +8 -0
  2595. package/Runtime/3rdParty/PubNub/Scripts.meta +8 -0
  2596. package/Runtime/3rdParty/PubNub.meta +8 -0
  2597. package/Runtime/3rdParty/UnityUIExtensions/ExtentionMethods.cs +19 -0
  2598. package/Runtime/3rdParty/UnityUIExtensions/ExtentionMethods.cs.meta +11 -0
  2599. package/Runtime/3rdParty/UnityUIExtensions/Gradient.cs +122 -0
  2600. package/Runtime/3rdParty/UnityUIExtensions/Gradient.cs.meta +11 -0
  2601. package/Runtime/3rdParty/UnityUIExtensions/HorizontalScrollSnap.cs +317 -0
  2602. package/Runtime/3rdParty/UnityUIExtensions/HorizontalScrollSnap.cs.meta +11 -0
  2603. package/Runtime/3rdParty/UnityUIExtensions/IScrollSnap.cs +15 -0
  2604. package/Runtime/3rdParty/UnityUIExtensions/IScrollSnap.cs.meta +11 -0
  2605. package/Runtime/3rdParty/UnityUIExtensions/Readme.txt +6 -0
  2606. package/Runtime/3rdParty/UnityUIExtensions/Readme.txt.meta +7 -0
  2607. package/Runtime/3rdParty/UnityUIExtensions/ScrollSnap.cs +573 -0
  2608. package/Runtime/3rdParty/UnityUIExtensions/ScrollSnap.cs.meta +11 -0
  2609. package/Runtime/3rdParty/UnityUIExtensions/ScrollSnapBase.cs +615 -0
  2610. package/Runtime/3rdParty/UnityUIExtensions/ScrollSnapBase.cs.meta +11 -0
  2611. package/Runtime/3rdParty/UnityUIExtensions/ScrollSnapScrollbarHelper.cs +56 -0
  2612. package/Runtime/3rdParty/UnityUIExtensions/ScrollSnapScrollbarHelper.cs.meta +11 -0
  2613. package/Runtime/3rdParty/UnityUIExtensions/UI_InfiniteScroll.cs +175 -0
  2614. package/Runtime/3rdParty/UnityUIExtensions/UI_InfiniteScroll.cs.meta +11 -0
  2615. package/Runtime/3rdParty/UnityUIExtensions/UnityUIExtensions.asmdef +12 -0
  2616. package/Runtime/3rdParty/UnityUIExtensions/UnityUIExtensions.asmdef.meta +7 -0
  2617. package/Runtime/3rdParty/UnityUIExtensions.meta +8 -0
  2618. package/Runtime/3rdParty/VirtualList/Editor/AbstractVirtualListEditor.cs +43 -0
  2619. package/Runtime/3rdParty/VirtualList/Editor/AbstractVirtualListEditor.cs.meta +11 -0
  2620. package/Runtime/3rdParty/VirtualList/Editor/VirtualList.Editor.asmdef +16 -0
  2621. package/Runtime/3rdParty/VirtualList/Editor/VirtualList.Editor.asmdef.meta +7 -0
  2622. package/Runtime/3rdParty/VirtualList/Editor.meta +8 -0
  2623. package/Runtime/3rdParty/VirtualList/README.md +64 -0
  2624. package/Runtime/3rdParty/VirtualList/README.md.meta +7 -0
  2625. package/Runtime/3rdParty/VirtualList/Runtime/AbstractVirtualList.cs +388 -0
  2626. package/Runtime/3rdParty/VirtualList/Runtime/AbstractVirtualList.cs.meta +11 -0
  2627. package/Runtime/3rdParty/VirtualList/Runtime/IListSource.cs +50 -0
  2628. package/Runtime/3rdParty/VirtualList/Runtime/IListSource.cs.meta +11 -0
  2629. package/Runtime/3rdParty/VirtualList/Runtime/SimpleSource.cs +81 -0
  2630. package/Runtime/3rdParty/VirtualList/Runtime/SimpleSource.cs.meta +11 -0
  2631. package/Runtime/3rdParty/VirtualList/Runtime/VirtualGridList.cs +123 -0
  2632. package/Runtime/3rdParty/VirtualList/Runtime/VirtualGridList.cs.meta +11 -0
  2633. package/Runtime/3rdParty/VirtualList/Runtime/VirtualHorizontalList.cs +84 -0
  2634. package/Runtime/3rdParty/VirtualList/Runtime/VirtualHorizontalList.cs.meta +11 -0
  2635. package/Runtime/3rdParty/VirtualList/Runtime/VirtualList.asmdef +12 -0
  2636. package/Runtime/3rdParty/VirtualList/Runtime/VirtualList.asmdef.meta +7 -0
  2637. package/Runtime/3rdParty/VirtualList/Runtime/VirtualVerticalList.cs +84 -0
  2638. package/Runtime/3rdParty/VirtualList/Runtime/VirtualVerticalList.cs.meta +11 -0
  2639. package/Runtime/3rdParty/VirtualList/Runtime.meta +8 -0
  2640. package/Runtime/3rdParty/VirtualList/package.json +16 -0
  2641. package/Runtime/3rdParty/VirtualList/package.json.meta +7 -0
  2642. package/Runtime/3rdParty/VirtualList.meta +8 -0
  2643. package/Runtime/3rdParty/WebSocket/Beamable.Endel.NativeWebsocket.asmdef +16 -0
  2644. package/Runtime/3rdParty/WebSocket/Beamable.Endel.NativeWebsocket.asmdef.meta +7 -0
  2645. package/Runtime/3rdParty/WebSocket/BeamableWebSocket.jslib +333 -0
  2646. package/Runtime/3rdParty/WebSocket/BeamableWebSocket.jslib.meta +32 -0
  2647. package/Runtime/3rdParty/WebSocket/WebSocket.cs +866 -0
  2648. package/Runtime/3rdParty/WebSocket/WebSocket.cs.meta +11 -0
  2649. package/Runtime/3rdParty/WebSocket.meta +8 -0
  2650. package/Runtime/3rdParty.meta +8 -0
  2651. package/Runtime/API.cs +267 -0
  2652. package/Runtime/API.cs.meta +11 -0
  2653. package/Runtime/Beam.cs +528 -0
  2654. package/Runtime/Beam.cs.meta +3 -0
  2655. package/Runtime/BeamContext.cs +1037 -0
  2656. package/Runtime/BeamContext.cs.meta +3 -0
  2657. package/Runtime/BeamDeveloperAuthProvider.cs +13 -0
  2658. package/Runtime/BeamDeveloperAuthProvider.cs.meta +3 -0
  2659. package/Runtime/Commands/Beamable.Commands.asmdef +14 -0
  2660. package/Runtime/Commands/Beamable.Commands.asmdef.meta +3 -0
  2661. package/Runtime/Commands/CommandExtensions.cs +26 -0
  2662. package/Runtime/Commands/CommandExtensions.cs.meta +3 -0
  2663. package/Runtime/Commands/ICommand.cs +7 -0
  2664. package/Runtime/Commands/ICommand.cs.meta +3 -0
  2665. package/Runtime/Commands.meta +3 -0
  2666. package/Runtime/Connection/BeamableSubscriptionManager.cs +38 -0
  2667. package/Runtime/Connection/BeamableSubscriptionManager.cs.meta +3 -0
  2668. package/Runtime/Connection/IBeamableConnection.cs +30 -0
  2669. package/Runtime/Connection/IBeamableConnection.cs.meta +3 -0
  2670. package/Runtime/Connection/WebSocketConnection.cs +285 -0
  2671. package/Runtime/Connection/WebSocketConnection.cs.meta +3 -0
  2672. package/Runtime/Connection/WebSocketConnectionException.cs +9 -0
  2673. package/Runtime/Connection/WebSocketConnectionException.cs.meta +3 -0
  2674. package/Runtime/Connection.meta +3 -0
  2675. package/Runtime/Core/Config/Beamable.Config.asmdef +17 -0
  2676. package/Runtime/Core/Config/Beamable.Config.asmdef.meta +7 -0
  2677. package/Runtime/Core/Config/ConfigConsoleCommands.cs +69 -0
  2678. package/Runtime/Core/Config/ConfigConsoleCommands.cs.meta +3 -0
  2679. package/Runtime/Core/Config/ConfigDatabase.cs +253 -0
  2680. package/Runtime/Core/Config/ConfigDatabase.cs.meta +11 -0
  2681. package/Runtime/Core/Config/RuntimeConfigProvider.cs +86 -0
  2682. package/Runtime/Core/Config/RuntimeConfigProvider.cs.meta +3 -0
  2683. package/Runtime/Core/Config.meta +8 -0
  2684. package/Runtime/Core/ConsoleCommands/Beamable.ConsoleCommands.asmdef +16 -0
  2685. package/Runtime/Core/ConsoleCommands/Beamable.ConsoleCommands.asmdef.meta +7 -0
  2686. package/Runtime/Core/ConsoleCommands/BeamableConsole.cs +169 -0
  2687. package/Runtime/Core/ConsoleCommands/BeamableConsole.cs.meta +3 -0
  2688. package/Runtime/Core/ConsoleCommands/BeamableConsoleCommandAttribute.cs +27 -0
  2689. package/Runtime/Core/ConsoleCommands/BeamableConsoleCommandAttribute.cs.meta +11 -0
  2690. package/Runtime/Core/ConsoleCommands/BeamableConsoleCommandProviderAttribute.cs +15 -0
  2691. package/Runtime/Core/ConsoleCommands/BeamableConsoleCommandProviderAttribute.cs.meta +3 -0
  2692. package/Runtime/Core/ConsoleCommands/DefaultConsoleCommands.cs +45 -0
  2693. package/Runtime/Core/ConsoleCommands/DefaultConsoleCommands.cs.meta +3 -0
  2694. package/Runtime/Core/ConsoleCommands.meta +8 -0
  2695. package/Runtime/Core/Coroutines/Beamable.Coroutines.asmdef +15 -0
  2696. package/Runtime/Core/Coroutines/Beamable.Coroutines.asmdef.meta +7 -0
  2697. package/Runtime/Core/Coroutines/CompletedYieldInstruction.cs +14 -0
  2698. package/Runtime/Core/Coroutines/CompletedYieldInstruction.cs.meta +11 -0
  2699. package/Runtime/Core/Coroutines/CoroutineService.cs +115 -0
  2700. package/Runtime/Core/Coroutines/CoroutineService.cs.meta +11 -0
  2701. package/Runtime/Core/Coroutines/Debouncer.cs +147 -0
  2702. package/Runtime/Core/Coroutines/Debouncer.cs.meta +3 -0
  2703. package/Runtime/Core/Coroutines/Yielders.cs +40 -0
  2704. package/Runtime/Core/Coroutines/Yielders.cs.meta +11 -0
  2705. package/Runtime/Core/Coroutines.meta +8 -0
  2706. package/Runtime/Core/Extensions/Beamable.Extensions.asmdef +12 -0
  2707. package/Runtime/Core/Extensions/Beamable.Extensions.asmdef.meta +7 -0
  2708. package/Runtime/Core/Extensions/TransformExtensions.cs +118 -0
  2709. package/Runtime/Core/Extensions/TransformExtensions.cs.meta +11 -0
  2710. package/Runtime/Core/Extensions.meta +8 -0
  2711. package/Runtime/Core/Platform/Beamable.Platform.asmdef +35 -0
  2712. package/Runtime/Core/Platform/Beamable.Platform.asmdef.meta +7 -0
  2713. package/Runtime/Core/Platform/SDK/AccessToken.cs +151 -0
  2714. package/Runtime/Core/Platform/SDK/AccessToken.cs.meta +11 -0
  2715. package/Runtime/Core/Platform/SDK/AccessTokenStorage.cs +225 -0
  2716. package/Runtime/Core/Platform/SDK/AccessTokenStorage.cs.meta +11 -0
  2717. package/Runtime/Core/Platform/SDK/AdvertisingIdentifier/AdvertisingIdentifier.cs +30 -0
  2718. package/Runtime/Core/Platform/SDK/AdvertisingIdentifier/AdvertisingIdentifier.cs.meta +11 -0
  2719. package/Runtime/Core/Platform/SDK/AdvertisingIdentifier.meta +8 -0
  2720. package/Runtime/Core/Platform/SDK/Analytics/AnalyticsTracker.cs +200 -0
  2721. package/Runtime/Core/Platform/SDK/Analytics/AnalyticsTracker.cs.meta +11 -0
  2722. package/Runtime/Core/Platform/SDK/Analytics/Batch/BatchContainer.cs +107 -0
  2723. package/Runtime/Core/Platform/SDK/Analytics/Batch/BatchContainer.cs.meta +11 -0
  2724. package/Runtime/Core/Platform/SDK/Analytics/Batch/BatchManager.cs +207 -0
  2725. package/Runtime/Core/Platform/SDK/Analytics/Batch/BatchManager.cs.meta +11 -0
  2726. package/Runtime/Core/Platform/SDK/Analytics/Batch/IBatchContainer.cs +66 -0
  2727. package/Runtime/Core/Platform/SDK/Analytics/Batch/IBatchContainer.cs.meta +11 -0
  2728. package/Runtime/Core/Platform/SDK/Analytics/Batch/PersistentBatchManager.cs +143 -0
  2729. package/Runtime/Core/Platform/SDK/Analytics/Batch/PersistentBatchManager.cs.meta +11 -0
  2730. package/Runtime/Core/Platform/SDK/Analytics/Batch/SerializableBatch.cs +33 -0
  2731. package/Runtime/Core/Platform/SDK/Analytics/Batch/SerializableBatch.cs.meta +11 -0
  2732. package/Runtime/Core/Platform/SDK/Analytics/Batch.meta +8 -0
  2733. package/Runtime/Core/Platform/SDK/Analytics/Models/BillerPurchaseFailedEvent.cs +16 -0
  2734. package/Runtime/Core/Platform/SDK/Analytics/Models/BillerPurchaseFailedEvent.cs.meta +11 -0
  2735. package/Runtime/Core/Platform/SDK/Analytics/Models/LoginPanicEvent.cs +19 -0
  2736. package/Runtime/Core/Platform/SDK/Analytics/Models/LoginPanicEvent.cs.meta +11 -0
  2737. package/Runtime/Core/Platform/SDK/Analytics/Models.meta +8 -0
  2738. package/Runtime/Core/Platform/SDK/Analytics.meta +8 -0
  2739. package/Runtime/Core/Platform/SDK/Announcements/AnnouncementsService.cs +121 -0
  2740. package/Runtime/Core/Platform/SDK/Announcements/AnnouncementsService.cs.meta +11 -0
  2741. package/Runtime/Core/Platform/SDK/Announcements.meta +8 -0
  2742. package/Runtime/Core/Platform/SDK/Auth/AuthService.cs +230 -0
  2743. package/Runtime/Core/Platform/SDK/Auth/AuthService.cs.meta +11 -0
  2744. package/Runtime/Core/Platform/SDK/Auth/DeviceIdResolver.cs +24 -0
  2745. package/Runtime/Core/Platform/SDK/Auth/DeviceIdResolver.cs.meta +11 -0
  2746. package/Runtime/Core/Platform/SDK/Auth/GCIdentity.cs +24 -0
  2747. package/Runtime/Core/Platform/SDK/Auth/GCIdentity.cs.meta +11 -0
  2748. package/Runtime/Core/Platform/SDK/Auth/GoogleSignIn.cs +89 -0
  2749. package/Runtime/Core/Platform/SDK/Auth/GoogleSignIn.cs.meta +3 -0
  2750. package/Runtime/Core/Platform/SDK/Auth/SignInWithApple.cs +263 -0
  2751. package/Runtime/Core/Platform/SDK/Auth/SignInWithApple.cs.meta +11 -0
  2752. package/Runtime/Core/Platform/SDK/Auth/SignInWithFacebookLimited.cs +112 -0
  2753. package/Runtime/Core/Platform/SDK/Auth/SignInWithFacebookLimited.cs.meta +11 -0
  2754. package/Runtime/Core/Platform/SDK/Auth/SignInWithGPG.cs +109 -0
  2755. package/Runtime/Core/Platform/SDK/Auth/SignInWithGPG.cs.meta +3 -0
  2756. package/Runtime/Core/Platform/SDK/Auth/SignInWithGameCenter.cs +107 -0
  2757. package/Runtime/Core/Platform/SDK/Auth/SignInWithGameCenter.cs.meta +11 -0
  2758. package/Runtime/Core/Platform/SDK/Auth/UnitySignInWithApple.m +138 -0
  2759. package/Runtime/Core/Platform/SDK/Auth/UnitySignInWithApple.m.meta +105 -0
  2760. package/Runtime/Core/Platform/SDK/Auth.meta +8 -0
  2761. package/Runtime/Core/Platform/SDK/BeamableApiRequester.cs +112 -0
  2762. package/Runtime/Core/Platform/SDK/BeamableApiRequester.cs.meta +3 -0
  2763. package/Runtime/Core/Platform/SDK/Caches/OfflineCache.cs +319 -0
  2764. package/Runtime/Core/Platform/SDK/Caches/OfflineCache.cs.meta +11 -0
  2765. package/Runtime/Core/Platform/SDK/Caches.meta +8 -0
  2766. package/Runtime/Core/Platform/SDK/Calendars/CalendarsService.cs +123 -0
  2767. package/Runtime/Core/Platform/SDK/Calendars/CalendarsService.cs.meta +11 -0
  2768. package/Runtime/Core/Platform/SDK/Calendars.meta +8 -0
  2769. package/Runtime/Core/Platform/SDK/Chat/ChatProvider.cs +190 -0
  2770. package/Runtime/Core/Platform/SDK/Chat/ChatProvider.cs.meta +11 -0
  2771. package/Runtime/Core/Platform/SDK/Chat/ChatService.cs +61 -0
  2772. package/Runtime/Core/Platform/SDK/Chat/ChatService.cs.meta +11 -0
  2773. package/Runtime/Core/Platform/SDK/Chat/ChatView.cs +292 -0
  2774. package/Runtime/Core/Platform/SDK/Chat/ChatView.cs.meta +11 -0
  2775. package/Runtime/Core/Platform/SDK/Chat/PubNubChatProvider.cs +51 -0
  2776. package/Runtime/Core/Platform/SDK/Chat/PubNubChatProvider.cs.meta +11 -0
  2777. package/Runtime/Core/Platform/SDK/Chat/PubNubRoom.cs +135 -0
  2778. package/Runtime/Core/Platform/SDK/Chat/PubNubRoom.cs.meta +11 -0
  2779. package/Runtime/Core/Platform/SDK/Chat/Room.cs +121 -0
  2780. package/Runtime/Core/Platform/SDK/Chat/Room.cs.meta +11 -0
  2781. package/Runtime/Core/Platform/SDK/Chat.meta +8 -0
  2782. package/Runtime/Core/Platform/SDK/CloudData/CloudDataConsoleCommands.cs +52 -0
  2783. package/Runtime/Core/Platform/SDK/CloudData/CloudDataConsoleCommands.cs.meta +11 -0
  2784. package/Runtime/Core/Platform/SDK/CloudData/CloudDataService.cs +24 -0
  2785. package/Runtime/Core/Platform/SDK/CloudData/CloudDataService.cs.meta +11 -0
  2786. package/Runtime/Core/Platform/SDK/CloudData.meta +8 -0
  2787. package/Runtime/Core/Platform/SDK/CloudSaving/CloudSavingError.cs +14 -0
  2788. package/Runtime/Core/Platform/SDK/CloudSaving/CloudSavingError.cs.meta +11 -0
  2789. package/Runtime/Core/Platform/SDK/CloudSaving/CloudSavingExtensions.cs +82 -0
  2790. package/Runtime/Core/Platform/SDK/CloudSaving/CloudSavingExtensions.cs.meta +3 -0
  2791. package/Runtime/Core/Platform/SDK/CloudSaving/CloudSavingService.cs +1121 -0
  2792. package/Runtime/Core/Platform/SDK/CloudSaving/CloudSavingService.cs.meta +11 -0
  2793. package/Runtime/Core/Platform/SDK/CloudSaving.meta +8 -0
  2794. package/Runtime/Core/Platform/SDK/CometClientData.cs +44 -0
  2795. package/Runtime/Core/Platform/SDK/CometClientData.cs.meta +3 -0
  2796. package/Runtime/Core/Platform/SDK/Commerce/CommerceConsoleCommands.cs +45 -0
  2797. package/Runtime/Core/Platform/SDK/Commerce/CommerceConsoleCommands.cs.meta +11 -0
  2798. package/Runtime/Core/Platform/SDK/Commerce/CommerceService.cs +101 -0
  2799. package/Runtime/Core/Platform/SDK/Commerce/CommerceService.cs.meta +11 -0
  2800. package/Runtime/Core/Platform/SDK/Commerce/ICommerceConfig.cs +19 -0
  2801. package/Runtime/Core/Platform/SDK/Commerce/ICommerceConfig.cs.meta +3 -0
  2802. package/Runtime/Core/Platform/SDK/Commerce.meta +8 -0
  2803. package/Runtime/Core/Platform/SDK/Connectivity/Connectivity.cs +238 -0
  2804. package/Runtime/Core/Platform/SDK/Connectivity/Connectivity.cs.meta +11 -0
  2805. package/Runtime/Core/Platform/SDK/Connectivity/IConnectivityChecker.cs +109 -0
  2806. package/Runtime/Core/Platform/SDK/Connectivity/IConnectivityChecker.cs.meta +3 -0
  2807. package/Runtime/Core/Platform/SDK/Connectivity.meta +8 -0
  2808. package/Runtime/Core/Platform/SDK/ErrorCode.cs +62 -0
  2809. package/Runtime/Core/Platform/SDK/ErrorCode.cs.meta +11 -0
  2810. package/Runtime/Core/Platform/SDK/Events/EventsService.cs +129 -0
  2811. package/Runtime/Core/Platform/SDK/Events/EventsService.cs.meta +11 -0
  2812. package/Runtime/Core/Platform/SDK/Events.meta +8 -0
  2813. package/Runtime/Core/Platform/SDK/Groups/GroupsService.cs +58 -0
  2814. package/Runtime/Core/Platform/SDK/Groups/GroupsService.cs.meta +11 -0
  2815. package/Runtime/Core/Platform/SDK/Groups.meta +8 -0
  2816. package/Runtime/Core/Platform/SDK/Gzip.cs +51 -0
  2817. package/Runtime/Core/Platform/SDK/Gzip.cs.meta +11 -0
  2818. package/Runtime/Core/Platform/SDK/Inventory/InventoryConsoleCommands.cs +65 -0
  2819. package/Runtime/Core/Platform/SDK/Inventory/InventoryConsoleCommands.cs.meta +11 -0
  2820. package/Runtime/Core/Platform/SDK/Inventory/InventoryService.cs +149 -0
  2821. package/Runtime/Core/Platform/SDK/Inventory/InventoryService.cs.meta +3 -0
  2822. package/Runtime/Core/Platform/SDK/Inventory.meta +3 -0
  2823. package/Runtime/Core/Platform/SDK/Leaderboard/LeaderboardService.cs +31 -0
  2824. package/Runtime/Core/Platform/SDK/Leaderboard/LeaderboardService.cs.meta +11 -0
  2825. package/Runtime/Core/Platform/SDK/Leaderboard.meta +8 -0
  2826. package/Runtime/Core/Platform/SDK/Mail/MailService.cs +44 -0
  2827. package/Runtime/Core/Platform/SDK/Mail/MailService.cs.meta +11 -0
  2828. package/Runtime/Core/Platform/SDK/Mail.meta +8 -0
  2829. package/Runtime/Core/Platform/SDK/Matchmaking/Match.cs +46 -0
  2830. package/Runtime/Core/Platform/SDK/Matchmaking/Match.cs.meta +3 -0
  2831. package/Runtime/Core/Platform/SDK/Matchmaking/MatchmakingService.cs +450 -0
  2832. package/Runtime/Core/Platform/SDK/Matchmaking/MatchmakingService.cs.meta +3 -0
  2833. package/Runtime/Core/Platform/SDK/Matchmaking/Ticket.cs +36 -0
  2834. package/Runtime/Core/Platform/SDK/Matchmaking/Ticket.cs.meta +3 -0
  2835. package/Runtime/Core/Platform/SDK/Matchmaking/TicketReservationRequest.cs +43 -0
  2836. package/Runtime/Core/Platform/SDK/Matchmaking/TicketReservationRequest.cs.meta +3 -0
  2837. package/Runtime/Core/Platform/SDK/Matchmaking/TicketReservationResponse.cs +21 -0
  2838. package/Runtime/Core/Platform/SDK/Matchmaking/TicketReservationResponse.cs.meta +3 -0
  2839. package/Runtime/Core/Platform/SDK/Matchmaking.meta +3 -0
  2840. package/Runtime/Core/Platform/SDK/Notification/Internal/AppleLocalNotificationRelay.cs +117 -0
  2841. package/Runtime/Core/Platform/SDK/Notification/Internal/AppleLocalNotificationRelay.cs.meta +11 -0
  2842. package/Runtime/Core/Platform/SDK/Notification/Internal/DummyLocalNotificationRelay.cs +33 -0
  2843. package/Runtime/Core/Platform/SDK/Notification/Internal/DummyLocalNotificationRelay.cs.meta +11 -0
  2844. package/Runtime/Core/Platform/SDK/Notification/Internal/GoogleLocalNotificationRelay.cs +86 -0
  2845. package/Runtime/Core/Platform/SDK/Notification/Internal/GoogleLocalNotificationRelay.cs.meta +11 -0
  2846. package/Runtime/Core/Platform/SDK/Notification/Internal/ILocalNotificationRelay.cs +40 -0
  2847. package/Runtime/Core/Platform/SDK/Notification/Internal/ILocalNotificationRelay.cs.meta +11 -0
  2848. package/Runtime/Core/Platform/SDK/Notification/Internal/IMessageHandler.cs +11 -0
  2849. package/Runtime/Core/Platform/SDK/Notification/Internal/IMessageHandler.cs.meta +11 -0
  2850. package/Runtime/Core/Platform/SDK/Notification/Internal/InGameNotification.cs +39 -0
  2851. package/Runtime/Core/Platform/SDK/Notification/Internal/InGameNotification.cs.meta +11 -0
  2852. package/Runtime/Core/Platform/SDK/Notification/Internal/MultiChannelSubscriptionHandler.cs +90 -0
  2853. package/Runtime/Core/Platform/SDK/Notification/Internal/MultiChannelSubscriptionHandler.cs.meta +11 -0
  2854. package/Runtime/Core/Platform/SDK/Notification/Internal.meta +8 -0
  2855. package/Runtime/Core/Platform/SDK/Notification/NotificationService.cs +505 -0
  2856. package/Runtime/Core/Platform/SDK/Notification/NotificationService.cs.meta +11 -0
  2857. package/Runtime/Core/Platform/SDK/Notification/PubnubData.cs +50 -0
  2858. package/Runtime/Core/Platform/SDK/Notification/PubnubData.cs.meta +11 -0
  2859. package/Runtime/Core/Platform/SDK/Notification/PubnubSubscriptionManager.cs +668 -0
  2860. package/Runtime/Core/Platform/SDK/Notification/PubnubSubscriptionManager.cs.meta +11 -0
  2861. package/Runtime/Core/Platform/SDK/Notification/PushProvider.cs +25 -0
  2862. package/Runtime/Core/Platform/SDK/Notification/PushProvider.cs.meta +11 -0
  2863. package/Runtime/Core/Platform/SDK/Notification/PushService.cs +74 -0
  2864. package/Runtime/Core/Platform/SDK/Notification/PushService.cs.meta +11 -0
  2865. package/Runtime/Core/Platform/SDK/Notification.meta +8 -0
  2866. package/Runtime/Core/Platform/SDK/Payments/DummyPurchaser.cs +32 -0
  2867. package/Runtime/Core/Platform/SDK/Payments/DummyPurchaser.cs.meta +3 -0
  2868. package/Runtime/Core/Platform/SDK/Payments/IBeamablePurchaser.cs +62 -0
  2869. package/Runtime/Core/Platform/SDK/Payments/IBeamablePurchaser.cs.meta +11 -0
  2870. package/Runtime/Core/Platform/SDK/Payments/IPaymentServiceOptions.cs +38 -0
  2871. package/Runtime/Core/Platform/SDK/Payments/IPaymentServiceOptions.cs.meta +3 -0
  2872. package/Runtime/Core/Platform/SDK/Payments/PaymentErrorCodes.cs +17 -0
  2873. package/Runtime/Core/Platform/SDK/Payments/PaymentErrorCodes.cs.meta +11 -0
  2874. package/Runtime/Core/Platform/SDK/Payments/PaymentModel.cs +75 -0
  2875. package/Runtime/Core/Platform/SDK/Payments/PaymentModel.cs.meta +11 -0
  2876. package/Runtime/Core/Platform/SDK/Payments/PaymentService.cs +445 -0
  2877. package/Runtime/Core/Platform/SDK/Payments/PaymentService.cs.meta +11 -0
  2878. package/Runtime/Core/Platform/SDK/Payments/PaymentTransaction.cs +138 -0
  2879. package/Runtime/Core/Platform/SDK/Payments/PaymentTransaction.cs.meta +11 -0
  2880. package/Runtime/Core/Platform/SDK/Payments/PurchasingInitializationStatus.cs +65 -0
  2881. package/Runtime/Core/Platform/SDK/Payments/PurchasingInitializationStatus.cs.meta +3 -0
  2882. package/Runtime/Core/Platform/SDK/Payments/TransactionManager.cs +348 -0
  2883. package/Runtime/Core/Platform/SDK/Payments/TransactionManager.cs.meta +11 -0
  2884. package/Runtime/Core/Platform/SDK/Payments.meta +8 -0
  2885. package/Runtime/Core/Platform/SDK/PlatformFilesystemAccessor.cs +14 -0
  2886. package/Runtime/Core/Platform/SDK/PlatformFilesystemAccessor.cs.meta +11 -0
  2887. package/Runtime/Core/Platform/SDK/PlatformRequester.cs +757 -0
  2888. package/Runtime/Core/Platform/SDK/PlatformRequester.cs.meta +11 -0
  2889. package/Runtime/Core/Platform/SDK/PlatformRequesterExceptions.cs +31 -0
  2890. package/Runtime/Core/Platform/SDK/PlatformRequesterExceptions.cs.meta +3 -0
  2891. package/Runtime/Core/Platform/SDK/PlatformRequesterExtensions.cs +21 -0
  2892. package/Runtime/Core/Platform/SDK/PlatformRequesterExtensions.cs.meta +11 -0
  2893. package/Runtime/Core/Platform/SDK/PlatformRequesterInterfaces.cs +29 -0
  2894. package/Runtime/Core/Platform/SDK/PlatformRequesterInterfaces.cs.meta +3 -0
  2895. package/Runtime/Core/Platform/SDK/PlatformService.cs +81 -0
  2896. package/Runtime/Core/Platform/SDK/PlatformService.cs.meta +11 -0
  2897. package/Runtime/Core/Platform/SDK/PlatformSubscribable.cs +621 -0
  2898. package/Runtime/Core/Platform/SDK/PlatformSubscribable.cs.meta +11 -0
  2899. package/Runtime/Core/Platform/SDK/Polyfill.cs +25 -0
  2900. package/Runtime/Core/Platform/SDK/Polyfill.cs.meta +11 -0
  2901. package/Runtime/Core/Platform/SDK/PubnubNotificationService.cs +42 -0
  2902. package/Runtime/Core/Platform/SDK/PubnubNotificationService.cs.meta +11 -0
  2903. package/Runtime/Core/Platform/SDK/Session/Heartbeat.cs +127 -0
  2904. package/Runtime/Core/Platform/SDK/Session/Heartbeat.cs.meta +11 -0
  2905. package/Runtime/Core/Platform/SDK/Session/SessionDeviceOptions.cs +213 -0
  2906. package/Runtime/Core/Platform/SDK/Session/SessionDeviceOptions.cs.meta +11 -0
  2907. package/Runtime/Core/Platform/SDK/Session/SessionParameterProvider.cs +61 -0
  2908. package/Runtime/Core/Platform/SDK/Session/SessionParameterProvider.cs.meta +11 -0
  2909. package/Runtime/Core/Platform/SDK/Session/SessionService.cs +292 -0
  2910. package/Runtime/Core/Platform/SDK/Session/SessionService.cs.meta +11 -0
  2911. package/Runtime/Core/Platform/SDK/Session/SessionServiceHelper.cs +192 -0
  2912. package/Runtime/Core/Platform/SDK/Session/SessionServiceHelper.cs.meta +3 -0
  2913. package/Runtime/Core/Platform/SDK/Session.meta +8 -0
  2914. package/Runtime/Core/Platform/SDK/Sim/GameRelayService.cs +243 -0
  2915. package/Runtime/Core/Platform/SDK/Sim/GameRelayService.cs.meta +3 -0
  2916. package/Runtime/Core/Platform/SDK/Sim/SimBehavior.cs +73 -0
  2917. package/Runtime/Core/Platform/SDK/Sim/SimBehavior.cs.meta +12 -0
  2918. package/Runtime/Core/Platform/SDK/Sim/SimClient.cs +427 -0
  2919. package/Runtime/Core/Platform/SDK/Sim/SimClient.cs.meta +12 -0
  2920. package/Runtime/Core/Platform/SDK/Sim/SimEvent.cs +39 -0
  2921. package/Runtime/Core/Platform/SDK/Sim/SimEvent.cs.meta +12 -0
  2922. package/Runtime/Core/Platform/SDK/Sim/SimFaultHandler.cs +172 -0
  2923. package/Runtime/Core/Platform/SDK/Sim/SimFaultHandler.cs.meta +3 -0
  2924. package/Runtime/Core/Platform/SDK/Sim/SimFrame.cs +76 -0
  2925. package/Runtime/Core/Platform/SDK/Sim/SimFrame.cs.meta +12 -0
  2926. package/Runtime/Core/Platform/SDK/Sim/SimLog.cs +113 -0
  2927. package/Runtime/Core/Platform/SDK/Sim/SimLog.cs.meta +12 -0
  2928. package/Runtime/Core/Platform/SDK/Sim/SimNetworkInterface.cs +79 -0
  2929. package/Runtime/Core/Platform/SDK/Sim/SimNetworkInterface.cs.meta +12 -0
  2930. package/Runtime/Core/Platform/SDK/Sim/network/eventStream/SimNetworkEventStream.cs +186 -0
  2931. package/Runtime/Core/Platform/SDK/Sim/network/eventStream/SimNetworkEventStream.cs.meta +12 -0
  2932. package/Runtime/Core/Platform/SDK/Sim/network/eventStream.meta +9 -0
  2933. package/Runtime/Core/Platform/SDK/Sim/network/local/SimNetworkLocal.cs +62 -0
  2934. package/Runtime/Core/Platform/SDK/Sim/network/local/SimNetworkLocal.cs.meta +12 -0
  2935. package/Runtime/Core/Platform/SDK/Sim/network/local.meta +9 -0
  2936. package/Runtime/Core/Platform/SDK/Sim/network.meta +9 -0
  2937. package/Runtime/Core/Platform/SDK/Sim.meta +8 -0
  2938. package/Runtime/Core/Platform/SDK/Social/SocialService.cs +22 -0
  2939. package/Runtime/Core/Platform/SDK/Social/SocialService.cs.meta +3 -0
  2940. package/Runtime/Core/Platform/SDK/Social.meta +3 -0
  2941. package/Runtime/Core/Platform/SDK/Stats/StatsService.cs +96 -0
  2942. package/Runtime/Core/Platform/SDK/Stats/StatsService.cs.meta +11 -0
  2943. package/Runtime/Core/Platform/SDK/Stats.meta +8 -0
  2944. package/Runtime/Core/Platform/SDK/TokenAnalyticsUtil.cs +65 -0
  2945. package/Runtime/Core/Platform/SDK/TokenAnalyticsUtil.cs.meta +3 -0
  2946. package/Runtime/Core/Platform/SDK/Tournaments/TournamentConsoleCommands.cs +87 -0
  2947. package/Runtime/Core/Platform/SDK/Tournaments/TournamentConsoleCommands.cs.meta +11 -0
  2948. package/Runtime/Core/Platform/SDK/Tournaments/TournamentService.cs +26 -0
  2949. package/Runtime/Core/Platform/SDK/Tournaments/TournamentService.cs.meta +11 -0
  2950. package/Runtime/Core/Platform/SDK/Tournaments.meta +8 -0
  2951. package/Runtime/Core/Platform/SDK/UnityUserDataCache.cs +169 -0
  2952. package/Runtime/Core/Platform/SDK/UnityUserDataCache.cs.meta +11 -0
  2953. package/Runtime/Core/Platform/SDK.meta +8 -0
  2954. package/Runtime/Core/Platform/TaskLikeExtensions.cs +26 -0
  2955. package/Runtime/Core/Platform/TaskLikeExtensions.cs.meta +3 -0
  2956. package/Runtime/Core/Platform.meta +8 -0
  2957. package/Runtime/Core/Pooling/Beamable.Pooling.asmdef +16 -0
  2958. package/Runtime/Core/Pooling/Beamable.Pooling.asmdef.meta +7 -0
  2959. package/Runtime/Core/Pooling/DisablePool.cs +104 -0
  2960. package/Runtime/Core/Pooling/DisablePool.cs.meta +11 -0
  2961. package/Runtime/Core/Pooling/HidePool.cs +203 -0
  2962. package/Runtime/Core/Pooling/HidePool.cs.meta +11 -0
  2963. package/Runtime/Core/Pooling/HidePoolObject.cs +15 -0
  2964. package/Runtime/Core/Pooling/HidePoolObject.cs.meta +11 -0
  2965. package/Runtime/Core/Pooling/HidePoolService.cs +64 -0
  2966. package/Runtime/Core/Pooling/HidePoolService.cs.meta +11 -0
  2967. package/Runtime/Core/Pooling/StaticClassPool.cs +82 -0
  2968. package/Runtime/Core/Pooling/StaticClassPool.cs.meta +11 -0
  2969. package/Runtime/Core/Pooling/StringBuilderPool.cs +116 -0
  2970. package/Runtime/Core/Pooling/StringBuilderPool.cs.meta +11 -0
  2971. package/Runtime/Core/Pooling.meta +8 -0
  2972. package/Runtime/Core/Utility/Beamable.Utility.asmdef +14 -0
  2973. package/Runtime/Core/Utility/Beamable.Utility.asmdef.meta +7 -0
  2974. package/Runtime/Core/Utility/ServiceLock.cs +29 -0
  2975. package/Runtime/Core/Utility/ServiceLock.cs.meta +11 -0
  2976. package/Runtime/Core/Utility.meta +8 -0
  2977. package/Runtime/Core.meta +8 -0
  2978. package/Runtime/Dependencies/GameObjectContext.cs +36 -0
  2979. package/Runtime/Dependencies/GameObjectContext.cs.meta +3 -0
  2980. package/Runtime/Dependencies/ILoadWithContext.cs +12 -0
  2981. package/Runtime/Dependencies/ILoadWithContext.cs.meta +3 -0
  2982. package/Runtime/Dependencies.meta +3 -0
  2983. package/Runtime/Environment/BeamableEnvironment.cs +134 -0
  2984. package/Runtime/Environment/BeamableEnvironment.cs.meta +3 -0
  2985. package/Runtime/Environment/PlatformHostConfigProvider.cs +21 -0
  2986. package/Runtime/Environment/PlatformHostConfigProvider.cs.meta +3 -0
  2987. package/Runtime/Environment/Resources/env-default.json +9 -0
  2988. package/Runtime/Environment/Resources/env-default.json.meta +7 -0
  2989. package/Runtime/Environment/Resources/env-dev.json +9 -0
  2990. package/Runtime/Environment/Resources/env-dev.json.meta +7 -0
  2991. package/Runtime/Environment/Resources/env-prod.json +9 -0
  2992. package/Runtime/Environment/Resources/env-prod.json.meta +7 -0
  2993. package/Runtime/Environment/Resources/env-staging.json +9 -0
  2994. package/Runtime/Environment/Resources/env-staging.json.meta +7 -0
  2995. package/Runtime/Environment/Resources/versions-default.json +3 -0
  2996. package/Runtime/Environment/Resources/versions-default.json.meta +3 -0
  2997. package/Runtime/Environment/Resources.meta +8 -0
  2998. package/Runtime/Environment.meta +3 -0
  2999. package/Runtime/ExperimentalAPI.cs +49 -0
  3000. package/Runtime/ExperimentalAPI.cs.meta +11 -0
  3001. package/Runtime/GlobalServices/BeamableGlobalGameObject.cs +37 -0
  3002. package/Runtime/GlobalServices/BeamableGlobalGameObject.cs.meta +3 -0
  3003. package/Runtime/GlobalServices.meta +3 -0
  3004. package/Runtime/HelpBoxDecoratorAttribute.cs +16 -0
  3005. package/Runtime/HelpBoxDecoratorAttribute.cs.meta +3 -0
  3006. package/Runtime/InventoryViewEx.cs +171 -0
  3007. package/Runtime/InventoryViewEx.cs.meta +11 -0
  3008. package/Runtime/Modules/AccountManagement/Prefabs/AccountDisplayActive.prefab +6768 -0
  3009. package/Runtime/Modules/AccountManagement/Prefabs/AccountDisplayActive.prefab.meta +7 -0
  3010. package/Runtime/Modules/AccountManagement/Prefabs/AccountDisplayItem.prefab +3329 -0
  3011. package/Runtime/Modules/AccountManagement/Prefabs/AccountDisplayItem.prefab.meta +7 -0
  3012. package/Runtime/Modules/AccountManagement/Prefabs/AccountDisplayReadOnly.prefab +1693 -0
  3013. package/Runtime/Modules/AccountManagement/Prefabs/AccountDisplayReadOnly.prefab.meta +7 -0
  3014. package/Runtime/Modules/AccountManagement/Prefabs/AccountHUD.prefab +365 -0
  3015. package/Runtime/Modules/AccountManagement/Prefabs/AccountHUD.prefab.meta +7 -0
  3016. package/Runtime/Modules/AccountManagement/Prefabs/AccountManagementFlow.prefab +37528 -0
  3017. package/Runtime/Modules/AccountManagement/Prefabs/AccountManagementFlow.prefab.meta +7 -0
  3018. package/Runtime/Modules/AccountManagement/Prefabs/AvatarPreview.prefab +401 -0
  3019. package/Runtime/Modules/AccountManagement/Prefabs/AvatarPreview.prefab.meta +7 -0
  3020. package/Runtime/Modules/AccountManagement/Prefabs.meta +8 -0
  3021. package/Runtime/Modules/AccountManagement/Scripts/AccountAvatarBehaviour.cs +51 -0
  3022. package/Runtime/Modules/AccountManagement/Scripts/AccountAvatarBehaviour.cs.meta +11 -0
  3023. package/Runtime/Modules/AccountManagement/Scripts/AccountCustomizationBehaviour.cs +185 -0
  3024. package/Runtime/Modules/AccountManagement/Scripts/AccountCustomizationBehaviour.cs.meta +11 -0
  3025. package/Runtime/Modules/AccountManagement/Scripts/AccountDisplayItem.cs +245 -0
  3026. package/Runtime/Modules/AccountManagement/Scripts/AccountDisplayItem.cs.meta +11 -0
  3027. package/Runtime/Modules/AccountManagement/Scripts/AccountEmailLogin.cs +126 -0
  3028. package/Runtime/Modules/AccountManagement/Scripts/AccountEmailLogin.cs.meta +11 -0
  3029. package/Runtime/Modules/AccountManagement/Scripts/AccountExistsSelect.cs +27 -0
  3030. package/Runtime/Modules/AccountManagement/Scripts/AccountExistsSelect.cs.meta +11 -0
  3031. package/Runtime/Modules/AccountManagement/Scripts/AccountForgotPassword.cs +63 -0
  3032. package/Runtime/Modules/AccountManagement/Scripts/AccountForgotPassword.cs.meta +11 -0
  3033. package/Runtime/Modules/AccountManagement/Scripts/AccountGeneralErrorBehaviour.cs +15 -0
  3034. package/Runtime/Modules/AccountManagement/Scripts/AccountGeneralErrorBehaviour.cs.meta +11 -0
  3035. package/Runtime/Modules/AccountManagement/Scripts/AccountMainMenu.cs +315 -0
  3036. package/Runtime/Modules/AccountManagement/Scripts/AccountMainMenu.cs.meta +11 -0
  3037. package/Runtime/Modules/AccountManagement/Scripts/AccountManagementAdapter.cs +75 -0
  3038. package/Runtime/Modules/AccountManagement/Scripts/AccountManagementAdapter.cs.meta +11 -0
  3039. package/Runtime/Modules/AccountManagement/Scripts/AccountManagementBehaviour.cs +68 -0
  3040. package/Runtime/Modules/AccountManagement/Scripts/AccountManagementBehaviour.cs.meta +11 -0
  3041. package/Runtime/Modules/AccountManagement/Scripts/AccountManagementCommands.cs +50 -0
  3042. package/Runtime/Modules/AccountManagement/Scripts/AccountManagementCommands.cs.meta +11 -0
  3043. package/Runtime/Modules/AccountManagement/Scripts/AccountManagementConfiguration.cs +172 -0
  3044. package/Runtime/Modules/AccountManagement/Scripts/AccountManagementConfiguration.cs.meta +11 -0
  3045. package/Runtime/Modules/AccountManagement/Scripts/AccountManagementHelper.cs +40 -0
  3046. package/Runtime/Modules/AccountManagement/Scripts/AccountManagementHelper.cs.meta +3 -0
  3047. package/Runtime/Modules/AccountManagement/Scripts/AccountManagementSignals.cs +716 -0
  3048. package/Runtime/Modules/AccountManagement/Scripts/AccountManagementSignals.cs.meta +11 -0
  3049. package/Runtime/Modules/AccountManagement/Scripts/AccountPlayerDataMenu.cs +94 -0
  3050. package/Runtime/Modules/AccountManagement/Scripts/AccountPlayerDataMenu.cs.meta +11 -0
  3051. package/Runtime/Modules/AccountManagement/Scripts/AccountSwitch.cs +55 -0
  3052. package/Runtime/Modules/AccountManagement/Scripts/AccountSwitch.cs.meta +11 -0
  3053. package/Runtime/Modules/AccountManagement/Scripts/AccountThirdPartyWaitingMenu.cs +22 -0
  3054. package/Runtime/Modules/AccountManagement/Scripts/AccountThirdPartyWaitingMenu.cs.meta +11 -0
  3055. package/Runtime/Modules/AccountManagement/Scripts/AppleSignInBehavior.cs +64 -0
  3056. package/Runtime/Modules/AccountManagement/Scripts/AppleSignInBehavior.cs.meta +11 -0
  3057. package/Runtime/Modules/AccountManagement/Scripts/ForgotPasswordArguments.cs +10 -0
  3058. package/Runtime/Modules/AccountManagement/Scripts/ForgotPasswordArguments.cs.meta +11 -0
  3059. package/Runtime/Modules/AccountManagement/Scripts/GoogleGameServicesBehavior.cs +67 -0
  3060. package/Runtime/Modules/AccountManagement/Scripts/GoogleGameServicesBehavior.cs.meta +3 -0
  3061. package/Runtime/Modules/AccountManagement/Scripts/GoogleSignInBehavior.cs +70 -0
  3062. package/Runtime/Modules/AccountManagement/Scripts/GoogleSignInBehavior.cs.meta +3 -0
  3063. package/Runtime/Modules/AccountManagement/Scripts/LoadingPopup.cs +34 -0
  3064. package/Runtime/Modules/AccountManagement/Scripts/LoadingPopup.cs.meta +11 -0
  3065. package/Runtime/Modules/AccountManagement/Scripts/LoginArguments.cs +10 -0
  3066. package/Runtime/Modules/AccountManagement/Scripts/LoginArguments.cs.meta +11 -0
  3067. package/Runtime/Modules/AccountManagement/Scripts/ThirdPartyLoginArgument.cs +10 -0
  3068. package/Runtime/Modules/AccountManagement/Scripts/ThirdPartyLoginArgument.cs.meta +11 -0
  3069. package/Runtime/Modules/AccountManagement/Scripts/TokenReference.cs +10 -0
  3070. package/Runtime/Modules/AccountManagement/Scripts/TokenReference.cs.meta +11 -0
  3071. package/Runtime/Modules/AccountManagement/Scripts.meta +8 -0
  3072. package/Runtime/Modules/AccountManagement/Sprites/Beamable_Logo.png +0 -0
  3073. package/Runtime/Modules/AccountManagement/Sprites/Beamable_Logo.png.meta +121 -0
  3074. package/Runtime/Modules/AccountManagement/Sprites/Container for avatar.png +0 -0
  3075. package/Runtime/Modules/AccountManagement/Sprites/Container for avatar.png.meta +99 -0
  3076. package/Runtime/Modules/AccountManagement/Sprites/Icons/edit.png +0 -0
  3077. package/Runtime/Modules/AccountManagement/Sprites/Icons/edit.png.meta +99 -0
  3078. package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-apple.png +0 -0
  3079. package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-apple.png.meta +121 -0
  3080. package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-check-circle.png +0 -0
  3081. package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-check-circle.png.meta +121 -0
  3082. package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-cloud-upload-2x.png +0 -0
  3083. package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-cloud-upload-2x.png.meta +121 -0
  3084. package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-facebook.png +0 -0
  3085. package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-facebook.png.meta +121 -0
  3086. package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-google.png +0 -0
  3087. package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-google.png.meta +88 -0
  3088. package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-mobile.png +0 -0
  3089. package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-mobile.png.meta +121 -0
  3090. package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-spinner.png +0 -0
  3091. package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-spinner.png.meta +121 -0
  3092. package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-tablet.png +0 -0
  3093. package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-tablet.png.meta +121 -0
  3094. package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-times-circle.png +0 -0
  3095. package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-times-circle.png.meta +121 -0
  3096. package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-user-circle.png +0 -0
  3097. package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-user-circle.png.meta +121 -0
  3098. package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-user-friends-2x.png +0 -0
  3099. package/Runtime/Modules/AccountManagement/Sprites/Icons/fa-user-friends-2x.png.meta +121 -0
  3100. package/Runtime/Modules/AccountManagement/Sprites/Icons/ic_back.png +0 -0
  3101. package/Runtime/Modules/AccountManagement/Sprites/Icons/ic_back.png.meta +99 -0
  3102. package/Runtime/Modules/AccountManagement/Sprites/Icons/ic_chevron_left_white_24dp.png +0 -0
  3103. package/Runtime/Modules/AccountManagement/Sprites/Icons/ic_chevron_left_white_24dp.png.meta +121 -0
  3104. package/Runtime/Modules/AccountManagement/Sprites/Icons/ic_close_white_24dp.png +0 -0
  3105. package/Runtime/Modules/AccountManagement/Sprites/Icons/ic_close_white_24dp.png.meta +121 -0
  3106. package/Runtime/Modules/AccountManagement/Sprites/Icons/ic_lock_outline_white_24dp.png +0 -0
  3107. package/Runtime/Modules/AccountManagement/Sprites/Icons/ic_lock_outline_white_24dp.png.meta +121 -0
  3108. package/Runtime/Modules/AccountManagement/Sprites/Icons/ic_mail_outline_white_24dp.png +0 -0
  3109. package/Runtime/Modules/AccountManagement/Sprites/Icons/ic_mail_outline_white_24dp.png.meta +121 -0
  3110. package/Runtime/Modules/AccountManagement/Sprites/Icons/icon - cloud save.png +0 -0
  3111. package/Runtime/Modules/AccountManagement/Sprites/Icons/icon - cloud save.png.meta +88 -0
  3112. package/Runtime/Modules/AccountManagement/Sprites/Icons/lost wifi.png +0 -0
  3113. package/Runtime/Modules/AccountManagement/Sprites/Icons/lost wifi.png.meta +91 -0
  3114. package/Runtime/Modules/AccountManagement/Sprites/Icons/remove.png +0 -0
  3115. package/Runtime/Modules/AccountManagement/Sprites/Icons/remove.png.meta +99 -0
  3116. package/Runtime/Modules/AccountManagement/Sprites/Icons.meta +8 -0
  3117. package/Runtime/Modules/AccountManagement/Sprites/Material Icons Atlas.spriteatlas +81 -0
  3118. package/Runtime/Modules/AccountManagement/Sprites/Material Icons Atlas.spriteatlas.meta +8 -0
  3119. package/Runtime/Modules/AccountManagement/Sprites/Portrait Grid Template.png +0 -0
  3120. package/Runtime/Modules/AccountManagement/Sprites/Portrait Grid Template.png.meta +121 -0
  3121. package/Runtime/Modules/AccountManagement/Sprites/TEMP_Background_Black_2048.jpg +0 -0
  3122. package/Runtime/Modules/AccountManagement/Sprites/TEMP_Background_Black_2048.jpg.meta +121 -0
  3123. package/Runtime/Modules/AccountManagement/Sprites/TEMP_Background_White_2048.jpg +0 -0
  3124. package/Runtime/Modules/AccountManagement/Sprites/TEMP_Background_White_2048.jpg.meta +121 -0
  3125. package/Runtime/Modules/AccountManagement/Sprites/Triangle (1).png +0 -0
  3126. package/Runtime/Modules/AccountManagement/Sprites/Triangle (1).png.meta +99 -0
  3127. package/Runtime/Modules/AccountManagement/Sprites/avatar mask.png +0 -0
  3128. package/Runtime/Modules/AccountManagement/Sprites/avatar mask.png.meta +99 -0
  3129. package/Runtime/Modules/AccountManagement/Sprites/board.png +0 -0
  3130. package/Runtime/Modules/AccountManagement/Sprites/board.png.meta +99 -0
  3131. package/Runtime/Modules/AccountManagement/Sprites/boarder 2 (3).png +0 -0
  3132. package/Runtime/Modules/AccountManagement/Sprites/boarder 2 (3).png.meta +99 -0
  3133. package/Runtime/Modules/AccountManagement/Sprites/panel-left-only.png +0 -0
  3134. package/Runtime/Modules/AccountManagement/Sprites/panel-left-only.png.meta +88 -0
  3135. package/Runtime/Modules/AccountManagement/Sprites/panel-right-only.png +0 -0
  3136. package/Runtime/Modules/AccountManagement/Sprites/panel-right-only.png.meta +88 -0
  3137. package/Runtime/Modules/AccountManagement/Sprites/panel.png +0 -0
  3138. package/Runtime/Modules/AccountManagement/Sprites/panel.png.meta +99 -0
  3139. package/Runtime/Modules/AccountManagement/Sprites/rounded_rect_8pt.png +0 -0
  3140. package/Runtime/Modules/AccountManagement/Sprites/rounded_rect_8pt.png.meta +121 -0
  3141. package/Runtime/Modules/AccountManagement/Sprites/rounded_rect_8pt_shadow.png +0 -0
  3142. package/Runtime/Modules/AccountManagement/Sprites/rounded_rect_8pt_shadow.png.meta +121 -0
  3143. package/Runtime/Modules/AccountManagement/Sprites/shadow button with shadow.png +0 -0
  3144. package/Runtime/Modules/AccountManagement/Sprites/shadow button with shadow.png.meta +99 -0
  3145. package/Runtime/Modules/AccountManagement/Sprites.meta +8 -0
  3146. package/Runtime/Modules/AccountManagement.meta +8 -0
  3147. package/Runtime/Modules/Announcements/Prefabs/AnnouncementRow Variant.prefab +629 -0
  3148. package/Runtime/Modules/Announcements/Prefabs/AnnouncementRow Variant.prefab.meta +7 -0
  3149. package/Runtime/Modules/Announcements/Prefabs/AnnouncementsFlow.prefab +2059 -0
  3150. package/Runtime/Modules/Announcements/Prefabs/AnnouncementsFlow.prefab.meta +7 -0
  3151. package/Runtime/Modules/Announcements/Prefabs.meta +8 -0
  3152. package/Runtime/Modules/Announcements/Rework/AnnouncementRow.prefab +577 -0
  3153. package/Runtime/Modules/Announcements/Rework/AnnouncementRow.prefab.meta +7 -0
  3154. package/Runtime/Modules/Announcements/Rework/AnnouncementsCollection.cs +53 -0
  3155. package/Runtime/Modules/Announcements/Rework/AnnouncementsCollection.cs.meta +11 -0
  3156. package/Runtime/Modules/Announcements/Rework/AnnouncementsPresenter.cs +70 -0
  3157. package/Runtime/Modules/Announcements/Rework/AnnouncementsPresenter.cs.meta +11 -0
  3158. package/Runtime/Modules/Announcements/Rework/AnnouncementsPresenter.prefab +2309 -0
  3159. package/Runtime/Modules/Announcements/Rework/AnnouncementsPresenter.prefab.meta +7 -0
  3160. package/Runtime/Modules/Announcements/Rework.meta +8 -0
  3161. package/Runtime/Modules/Announcements/Scripts/AnnouncementBehavior.cs +22 -0
  3162. package/Runtime/Modules/Announcements/Scripts/AnnouncementBehavior.cs.meta +11 -0
  3163. package/Runtime/Modules/Announcements/Scripts/AnnouncementMainMenu.cs +79 -0
  3164. package/Runtime/Modules/Announcements/Scripts/AnnouncementMainMenu.cs.meta +11 -0
  3165. package/Runtime/Modules/Announcements/Scripts/AnnouncementReadMenu.cs +47 -0
  3166. package/Runtime/Modules/Announcements/Scripts/AnnouncementReadMenu.cs.meta +11 -0
  3167. package/Runtime/Modules/Announcements/Scripts/AnnouncementSignals.cs +39 -0
  3168. package/Runtime/Modules/Announcements/Scripts/AnnouncementSignals.cs.meta +11 -0
  3169. package/Runtime/Modules/Announcements/Scripts/AnnouncementSummary.cs +19 -0
  3170. package/Runtime/Modules/Announcements/Scripts/AnnouncementSummary.cs.meta +11 -0
  3171. package/Runtime/Modules/Announcements/Scripts.meta +8 -0
  3172. package/Runtime/Modules/Announcements.meta +8 -0
  3173. package/Runtime/Modules/Avatars/Prefabs/AvatarPicker.prefab +1214 -0
  3174. package/Runtime/Modules/Avatars/Prefabs/AvatarPicker.prefab.meta +7 -0
  3175. package/Runtime/Modules/Avatars/Prefabs.meta +8 -0
  3176. package/Runtime/Modules/Avatars/Scripts/AvatarConfiguration.cs +33 -0
  3177. package/Runtime/Modules/Avatars/Scripts/AvatarConfiguration.cs.meta +11 -0
  3178. package/Runtime/Modules/Avatars/Scripts/AvatarElementMaterial.mat +86 -0
  3179. package/Runtime/Modules/Avatars/Scripts/AvatarElementMaterial.mat.meta +8 -0
  3180. package/Runtime/Modules/Avatars/Scripts/AvatarElementUnlit.shader +113 -0
  3181. package/Runtime/Modules/Avatars/Scripts/AvatarElementUnlit.shader.meta +9 -0
  3182. package/Runtime/Modules/Avatars/Scripts/AvatarPickerBehaviour.cs +99 -0
  3183. package/Runtime/Modules/Avatars/Scripts/AvatarPickerBehaviour.cs.meta +11 -0
  3184. package/Runtime/Modules/Avatars/Scripts.meta +8 -0
  3185. package/Runtime/Modules/Avatars/Sprites/Avatars.png +0 -0
  3186. package/Runtime/Modules/Avatars/Sprites/Avatars.png.meta +340 -0
  3187. package/Runtime/Modules/Avatars/Sprites/de_avatar_1.png +0 -0
  3188. package/Runtime/Modules/Avatars/Sprites/de_avatar_1.png.meta +110 -0
  3189. package/Runtime/Modules/Avatars/Sprites/de_avatar_2.png +0 -0
  3190. package/Runtime/Modules/Avatars/Sprites/de_avatar_2.png.meta +110 -0
  3191. package/Runtime/Modules/Avatars/Sprites/de_avatar_3.png +0 -0
  3192. package/Runtime/Modules/Avatars/Sprites/de_avatar_3.png.meta +110 -0
  3193. package/Runtime/Modules/Avatars/Sprites/de_avatar_4.png +0 -0
  3194. package/Runtime/Modules/Avatars/Sprites/de_avatar_4.png.meta +110 -0
  3195. package/Runtime/Modules/Avatars/Sprites/de_avatar_5.png +0 -0
  3196. package/Runtime/Modules/Avatars/Sprites/de_avatar_5.png.meta +110 -0
  3197. package/Runtime/Modules/Avatars/Sprites/de_avatar_6.png +0 -0
  3198. package/Runtime/Modules/Avatars/Sprites/de_avatar_6.png.meta +110 -0
  3199. package/Runtime/Modules/Avatars/Sprites.meta +8 -0
  3200. package/Runtime/Modules/Avatars.meta +8 -0
  3201. package/Runtime/Modules/BeamableDisplayModule.cs +83 -0
  3202. package/Runtime/Modules/BeamableDisplayModule.cs.meta +11 -0
  3203. package/Runtime/Modules/BeamableModule.cs +17 -0
  3204. package/Runtime/Modules/BeamableModule.cs.meta +11 -0
  3205. package/Runtime/Modules/Calendars/Prefabs/CalendarFlow.prefab +2881 -0
  3206. package/Runtime/Modules/Calendars/Prefabs/CalendarFlow.prefab.meta +7 -0
  3207. package/Runtime/Modules/Calendars/Prefabs/CalendarReward.prefab +318 -0
  3208. package/Runtime/Modules/Calendars/Prefabs/CalendarReward.prefab.meta +7 -0
  3209. package/Runtime/Modules/Calendars/Prefabs.meta +8 -0
  3210. package/Runtime/Modules/Calendars/Scripts/CalendarBehaviour.cs +85 -0
  3211. package/Runtime/Modules/Calendars/Scripts/CalendarBehaviour.cs.meta +11 -0
  3212. package/Runtime/Modules/Calendars/Scripts/CalendarFlowMainPage.cs +8 -0
  3213. package/Runtime/Modules/Calendars/Scripts/CalendarFlowMainPage.cs.meta +11 -0
  3214. package/Runtime/Modules/Calendars/Scripts/CalendarRewardsDay.cs +32 -0
  3215. package/Runtime/Modules/Calendars/Scripts/CalendarRewardsDay.cs.meta +11 -0
  3216. package/Runtime/Modules/Calendars/Scripts.meta +8 -0
  3217. package/Runtime/Modules/Calendars.meta +8 -0
  3218. package/Runtime/Modules/Console/AdminFlow.prefab +1043 -0
  3219. package/Runtime/Modules/Console/AdminFlow.prefab.meta +7 -0
  3220. package/Runtime/Modules/Console/ConsoleConfiguration.cs +25 -0
  3221. package/Runtime/Modules/Console/ConsoleConfiguration.cs.meta +11 -0
  3222. package/Runtime/Modules/Console/ConsoleFlow.cs +662 -0
  3223. package/Runtime/Modules/Console/ConsoleFlow.cs.meta +11 -0
  3224. package/Runtime/Modules/Console/High-contrast-utilities-terminal.png +0 -0
  3225. package/Runtime/Modules/Console/High-contrast-utilities-terminal.png.meta +88 -0
  3226. package/Runtime/Modules/Console.meta +8 -0
  3227. package/Runtime/Modules/Content/ContentCache.cs +184 -0
  3228. package/Runtime/Modules/Content/ContentCache.cs.meta +11 -0
  3229. package/Runtime/Modules/Content/ContentCommands.cs +161 -0
  3230. package/Runtime/Modules/Content/ContentCommands.cs.meta +3 -0
  3231. package/Runtime/Modules/Content/ContentConfiguration.cs +161 -0
  3232. package/Runtime/Modules/Content/ContentConfiguration.cs.meta +11 -0
  3233. package/Runtime/Modules/Content/ContentParameterProvider.cs +9 -0
  3234. package/Runtime/Modules/Content/ContentParameterProvider.cs.meta +3 -0
  3235. package/Runtime/Modules/Content/ContentService.cs +739 -0
  3236. package/Runtime/Modules/Content/ContentService.cs.meta +11 -0
  3237. package/Runtime/Modules/Content/ContentTextureConfiguration.cs +74 -0
  3238. package/Runtime/Modules/Content/ContentTextureConfiguration.cs.meta +3 -0
  3239. package/Runtime/Modules/Content/Extensions.cs +42 -0
  3240. package/Runtime/Modules/Content/Extensions.cs.meta +3 -0
  3241. package/Runtime/Modules/Content/IContentCacheFactory.cs +0 -0
  3242. package/Runtime/Modules/Content/IContentCacheFactory.cs.meta +3 -0
  3243. package/Runtime/Modules/Content/IManifestResolver.cs +42 -0
  3244. package/Runtime/Modules/Content/IManifestResolver.cs.meta +3 -0
  3245. package/Runtime/Modules/Content/Manifest.cs +22 -0
  3246. package/Runtime/Modules/Content/Manifest.cs.meta +11 -0
  3247. package/Runtime/Modules/Content.meta +8 -0
  3248. package/Runtime/Modules/CoreConfiguration.cs +285 -0
  3249. package/Runtime/Modules/CoreConfiguration.cs.meta +3 -0
  3250. package/Runtime/Modules/CurrencyHUD/CurrencyHUD.prefab +787 -0
  3251. package/Runtime/Modules/CurrencyHUD/CurrencyHUD.prefab.meta +7 -0
  3252. package/Runtime/Modules/CurrencyHUD/CurrencyHUDFlow.cs +74 -0
  3253. package/Runtime/Modules/CurrencyHUD/CurrencyHUDFlow.cs.meta +11 -0
  3254. package/Runtime/Modules/CurrencyHUD/tool_icon_currency.png +0 -0
  3255. package/Runtime/Modules/CurrencyHUD/tool_icon_currency.png.meta +121 -0
  3256. package/Runtime/Modules/CurrencyHUD.meta +8 -0
  3257. package/Runtime/Modules/DisruptorEngineDisplayModule.prefab +115 -0
  3258. package/Runtime/Modules/DisruptorEngineDisplayModule.prefab.meta +7 -0
  3259. package/Runtime/Modules/DisruptorEngineModule.prefab +113 -0
  3260. package/Runtime/Modules/DisruptorEngineModule.prefab.meta +7 -0
  3261. package/Runtime/Modules/Generics/CollectionPresenter.cs +9 -0
  3262. package/Runtime/Modules/Generics/CollectionPresenter.cs.meta +3 -0
  3263. package/Runtime/Modules/Generics/DataCollection.cs +19 -0
  3264. package/Runtime/Modules/Generics/DataCollection.cs.meta +3 -0
  3265. package/Runtime/Modules/Generics/DataPresenter.cs +40 -0
  3266. package/Runtime/Modules/Generics/DataPresenter.cs.meta +3 -0
  3267. package/Runtime/Modules/Generics/GenericButton.cs +21 -0
  3268. package/Runtime/Modules/Generics/GenericButton.cs.meta +3 -0
  3269. package/Runtime/Modules/Generics/Model.cs +26 -0
  3270. package/Runtime/Modules/Generics/Model.cs.meta +3 -0
  3271. package/Runtime/Modules/Generics/ModelPresenter.cs +25 -0
  3272. package/Runtime/Modules/Generics/ModelPresenter.cs.meta +3 -0
  3273. package/Runtime/Modules/Generics.meta +8 -0
  3274. package/Runtime/Modules/Input/Beamable.Runtime.Input.asmdef +14 -0
  3275. package/Runtime/Modules/Input/Beamable.Runtime.Input.asmdef.meta +7 -0
  3276. package/Runtime/Modules/Input/BeamableInput.cs +45 -0
  3277. package/Runtime/Modules/Input/BeamableInput.cs.meta +3 -0
  3278. package/Runtime/Modules/Input/InputActionArg.cs +55 -0
  3279. package/Runtime/Modules/Input/InputActionArg.cs.meta +3 -0
  3280. package/Runtime/Modules/Input.meta +8 -0
  3281. package/Runtime/Modules/Inventory/Prefabs/InventoryFlow.prefab +1230 -0
  3282. package/Runtime/Modules/Inventory/Prefabs/InventoryFlow.prefab.meta +7 -0
  3283. package/Runtime/Modules/Inventory/Prefabs/InventoryGroupPanel.prefab +831 -0
  3284. package/Runtime/Modules/Inventory/Prefabs/InventoryGroupPanel.prefab.meta +7 -0
  3285. package/Runtime/Modules/Inventory/Prefabs/InventoryObjectUI.prefab +513 -0
  3286. package/Runtime/Modules/Inventory/Prefabs/InventoryObjectUI.prefab.meta +7 -0
  3287. package/Runtime/Modules/Inventory/Prefabs.meta +8 -0
  3288. package/Runtime/Modules/Inventory/Prototype/Assets/InventoryPresenter.prefab +1297 -0
  3289. package/Runtime/Modules/Inventory/Prototype/Assets/InventoryPresenter.prefab.meta +7 -0
  3290. package/Runtime/Modules/Inventory/Prototype/Assets/ItemPresenter.prefab +576 -0
  3291. package/Runtime/Modules/Inventory/Prototype/Assets/ItemPresenter.prefab.meta +7 -0
  3292. package/Runtime/Modules/Inventory/Prototype/Assets.meta +8 -0
  3293. package/Runtime/Modules/Inventory/Prototype/GenericComponents/GenericTextButton.cs +36 -0
  3294. package/Runtime/Modules/Inventory/Prototype/GenericComponents/GenericTextButton.cs.meta +3 -0
  3295. package/Runtime/Modules/Inventory/Prototype/GenericComponents.meta +3 -0
  3296. package/Runtime/Modules/Inventory/Prototype/InventoryPresenter.cs +159 -0
  3297. package/Runtime/Modules/Inventory/Prototype/InventoryPresenter.cs.meta +3 -0
  3298. package/Runtime/Modules/Inventory/Prototype/ItemPresenter.cs +29 -0
  3299. package/Runtime/Modules/Inventory/Prototype/ItemPresenter.cs.meta +3 -0
  3300. package/Runtime/Modules/Inventory/Prototype/ItemsCollection.cs +79 -0
  3301. package/Runtime/Modules/Inventory/Prototype/ItemsCollection.cs.meta +3 -0
  3302. package/Runtime/Modules/Inventory/Prototype/LanguageLocalization/LanguageLocalizationElement.cs +47 -0
  3303. package/Runtime/Modules/Inventory/Prototype/LanguageLocalization/LanguageLocalizationElement.cs.meta +3 -0
  3304. package/Runtime/Modules/Inventory/Prototype/LanguageLocalization/LanguageLocalizationManager.cs +43 -0
  3305. package/Runtime/Modules/Inventory/Prototype/LanguageLocalization/LanguageLocalizationManager.cs.meta +3 -0
  3306. package/Runtime/Modules/Inventory/Prototype/LanguageLocalization/LocalizationHelper.cs +15 -0
  3307. package/Runtime/Modules/Inventory/Prototype/LanguageLocalization/LocalizationHelper.cs.meta +3 -0
  3308. package/Runtime/Modules/Inventory/Prototype/LanguageLocalization.meta +3 -0
  3309. package/Runtime/Modules/Inventory/Prototype.meta +8 -0
  3310. package/Runtime/Modules/Inventory/Scripts/InventoryBehaviour.cs +59 -0
  3311. package/Runtime/Modules/Inventory/Scripts/InventoryBehaviour.cs.meta +11 -0
  3312. package/Runtime/Modules/Inventory/Scripts/InventoryCommands.cs +190 -0
  3313. package/Runtime/Modules/Inventory/Scripts/InventoryCommands.cs.meta +3 -0
  3314. package/Runtime/Modules/Inventory/Scripts/InventoryConfiguration.cs +32 -0
  3315. package/Runtime/Modules/Inventory/Scripts/InventoryConfiguration.cs.meta +11 -0
  3316. package/Runtime/Modules/Inventory/Scripts/InventoryGroupUI.cs +56 -0
  3317. package/Runtime/Modules/Inventory/Scripts/InventoryGroupUI.cs.meta +11 -0
  3318. package/Runtime/Modules/Inventory/Scripts/InventoryMainMenu.cs +65 -0
  3319. package/Runtime/Modules/Inventory/Scripts/InventoryMainMenu.cs.meta +11 -0
  3320. package/Runtime/Modules/Inventory/Scripts/InventoryMenuBehaviour.cs +56 -0
  3321. package/Runtime/Modules/Inventory/Scripts/InventoryMenuBehaviour.cs.meta +11 -0
  3322. package/Runtime/Modules/Inventory/Scripts/InventoryObjectUI.cs +38 -0
  3323. package/Runtime/Modules/Inventory/Scripts/InventoryObjectUI.cs.meta +11 -0
  3324. package/Runtime/Modules/Inventory/Scripts/InventorySignals.cs +43 -0
  3325. package/Runtime/Modules/Inventory/Scripts/InventorySignals.cs.meta +11 -0
  3326. package/Runtime/Modules/Inventory/Scripts/ItemImageSetter.cs +41 -0
  3327. package/Runtime/Modules/Inventory/Scripts/ItemImageSetter.cs.meta +11 -0
  3328. package/Runtime/Modules/Inventory/Scripts.meta +8 -0
  3329. package/Runtime/Modules/Inventory.meta +8 -0
  3330. package/Runtime/Modules/Leaderboards/Prefabs/LeaderboardFlow.prefab +1349 -0
  3331. package/Runtime/Modules/Leaderboards/Prefabs/LeaderboardFlow.prefab.meta +7 -0
  3332. package/Runtime/Modules/Leaderboards/Prefabs/LeaderboardRow.prefab +823 -0
  3333. package/Runtime/Modules/Leaderboards/Prefabs/LeaderboardRow.prefab.meta +7 -0
  3334. package/Runtime/Modules/Leaderboards/Prefabs.meta +8 -0
  3335. package/Runtime/Modules/Leaderboards/Scripts/LeaderboardBehavior.cs +32 -0
  3336. package/Runtime/Modules/Leaderboards/Scripts/LeaderboardBehavior.cs.meta +11 -0
  3337. package/Runtime/Modules/Leaderboards/Scripts/LeaderboardItem.cs +24 -0
  3338. package/Runtime/Modules/Leaderboards/Scripts/LeaderboardItem.cs.meta +11 -0
  3339. package/Runtime/Modules/Leaderboards/Scripts/LeaderboardMainMenu.cs +80 -0
  3340. package/Runtime/Modules/Leaderboards/Scripts/LeaderboardMainMenu.cs.meta +11 -0
  3341. package/Runtime/Modules/Leaderboards/Scripts/LeaderboardSignals.cs +33 -0
  3342. package/Runtime/Modules/Leaderboards/Scripts/LeaderboardSignals.cs.meta +11 -0
  3343. package/Runtime/Modules/Leaderboards/Scripts.meta +8 -0
  3344. package/Runtime/Modules/Leaderboards.meta +8 -0
  3345. package/Runtime/Modules/ModuleConfigurationObject.cs +212 -0
  3346. package/Runtime/Modules/ModuleConfigurationObject.cs.meta +11 -0
  3347. package/Runtime/Modules/PackageUtil.cs +80 -0
  3348. package/Runtime/Modules/PackageUtil.cs.meta +3 -0
  3349. package/Runtime/Modules/Purchasing/PaymentCommands.cs +55 -0
  3350. package/Runtime/Modules/Purchasing/PaymentCommands.cs.meta +3 -0
  3351. package/Runtime/Modules/Purchasing/Steam/SteamPurchasingModule.cs +20 -0
  3352. package/Runtime/Modules/Purchasing/Steam/SteamPurchasingModule.cs.meta +11 -0
  3353. package/Runtime/Modules/Purchasing/Steam/SteamStore.cs +147 -0
  3354. package/Runtime/Modules/Purchasing/Steam/SteamStore.cs.meta +11 -0
  3355. package/Runtime/Modules/Purchasing/Steam.meta +8 -0
  3356. package/Runtime/Modules/Purchasing/Unity.Beamable.Purchasing.asmdef +32 -0
  3357. package/Runtime/Modules/Purchasing/Unity.Beamable.Purchasing.asmdef.meta +7 -0
  3358. package/Runtime/Modules/Purchasing/UnityBeamablePurchaser.cs +514 -0
  3359. package/Runtime/Modules/Purchasing/UnityBeamablePurchaser.cs.meta +11 -0
  3360. package/Runtime/Modules/Purchasing.meta +8 -0
  3361. package/Runtime/Modules/Sessions/SessionConfiguration.cs +16 -0
  3362. package/Runtime/Modules/Sessions/SessionConfiguration.cs.meta +11 -0
  3363. package/Runtime/Modules/Sessions.meta +8 -0
  3364. package/Runtime/Modules/Shop/Prefabs/BasicListingRenderer.prefab +1231 -0
  3365. package/Runtime/Modules/Shop/Prefabs/BasicListingRenderer.prefab.meta +7 -0
  3366. package/Runtime/Modules/Shop/Prefabs/BasicStoreRenderer.prefab +1158 -0
  3367. package/Runtime/Modules/Shop/Prefabs/BasicStoreRenderer.prefab.meta +7 -0
  3368. package/Runtime/Modules/Shop/Prefabs/ObtainSummaryListCurrencyRenderer.prefab +699 -0
  3369. package/Runtime/Modules/Shop/Prefabs/ObtainSummaryListCurrencyRenderer.prefab.meta +7 -0
  3370. package/Runtime/Modules/Shop/Prefabs/ObtainSummaryListItemRenderer.prefab +515 -0
  3371. package/Runtime/Modules/Shop/Prefabs/ObtainSummaryListItemRenderer.prefab.meta +7 -0
  3372. package/Runtime/Modules/Shop/Prefabs/ObtainSummaryListRenderer.prefab +146 -0
  3373. package/Runtime/Modules/Shop/Prefabs/ObtainSummaryListRenderer.prefab.meta +7 -0
  3374. package/Runtime/Modules/Shop/Prefabs/ShopSpecials.prefab +886 -0
  3375. package/Runtime/Modules/Shop/Prefabs/ShopSpecials.prefab.meta +7 -0
  3376. package/Runtime/Modules/Shop/Prefabs/StoreButton.prefab +712 -0
  3377. package/Runtime/Modules/Shop/Prefabs/StoreButton.prefab.meta +7 -0
  3378. package/Runtime/Modules/Shop/Prefabs/StoreFlow.prefab +3396 -0
  3379. package/Runtime/Modules/Shop/Prefabs/StoreFlow.prefab.meta +7 -0
  3380. package/Runtime/Modules/Shop/Prefabs.meta +8 -0
  3381. package/Runtime/Modules/Shop/Scripts/Defaults/BasicListingRenderer.cs +124 -0
  3382. package/Runtime/Modules/Shop/Scripts/Defaults/BasicListingRenderer.cs.meta +11 -0
  3383. package/Runtime/Modules/Shop/Scripts/Defaults/BasicStoreRenderer.cs +60 -0
  3384. package/Runtime/Modules/Shop/Scripts/Defaults/BasicStoreRenderer.cs.meta +11 -0
  3385. package/Runtime/Modules/Shop/Scripts/Defaults/ObtainSummaryListCurrencyRenderer.cs +25 -0
  3386. package/Runtime/Modules/Shop/Scripts/Defaults/ObtainSummaryListCurrencyRenderer.cs.meta +11 -0
  3387. package/Runtime/Modules/Shop/Scripts/Defaults/ObtainSummaryListItemRenderer.cs +23 -0
  3388. package/Runtime/Modules/Shop/Scripts/Defaults/ObtainSummaryListItemRenderer.cs.meta +3 -0
  3389. package/Runtime/Modules/Shop/Scripts/Defaults/ObtainSummaryListRenderer.cs +37 -0
  3390. package/Runtime/Modules/Shop/Scripts/Defaults/ObtainSummaryListRenderer.cs.meta +11 -0
  3391. package/Runtime/Modules/Shop/Scripts/Defaults.meta +8 -0
  3392. package/Runtime/Modules/Shop/Scripts/ListingContent.cs +36 -0
  3393. package/Runtime/Modules/Shop/Scripts/ListingContent.cs.meta +11 -0
  3394. package/Runtime/Modules/Shop/Scripts/ListingRenderer.cs +10 -0
  3395. package/Runtime/Modules/Shop/Scripts/ListingRenderer.cs.meta +11 -0
  3396. package/Runtime/Modules/Shop/Scripts/ObtainRenderer.cs +10 -0
  3397. package/Runtime/Modules/Shop/Scripts/ObtainRenderer.cs.meta +11 -0
  3398. package/Runtime/Modules/Shop/Scripts/ShopConfiguration.cs +24 -0
  3399. package/Runtime/Modules/Shop/Scripts/ShopConfiguration.cs.meta +11 -0
  3400. package/Runtime/Modules/Shop/Scripts/ShopFlow.cs +124 -0
  3401. package/Runtime/Modules/Shop/Scripts/ShopFlow.cs.meta +11 -0
  3402. package/Runtime/Modules/Shop/Scripts/ShopLoadingMenu.cs +5 -0
  3403. package/Runtime/Modules/Shop/Scripts/ShopLoadingMenu.cs.meta +11 -0
  3404. package/Runtime/Modules/Shop/Scripts/ShopRewardRenderer.cs +26 -0
  3405. package/Runtime/Modules/Shop/Scripts/ShopRewardRenderer.cs.meta +11 -0
  3406. package/Runtime/Modules/Shop/Scripts/ShopSignals.cs +45 -0
  3407. package/Runtime/Modules/Shop/Scripts/ShopSignals.cs.meta +11 -0
  3408. package/Runtime/Modules/Shop/Scripts.meta +8 -0
  3409. package/Runtime/Modules/Shop/Sprites/Buy Button.png +0 -0
  3410. package/Runtime/Modules/Shop/Sprites/Buy Button.png.meta +121 -0
  3411. package/Runtime/Modules/Shop/Sprites/Frame for button.png +0 -0
  3412. package/Runtime/Modules/Shop/Sprites/Frame for button.png.meta +121 -0
  3413. package/Runtime/Modules/Shop/Sprites/Item number container.png +0 -0
  3414. package/Runtime/Modules/Shop/Sprites/Item number container.png.meta +121 -0
  3415. package/Runtime/Modules/Shop/Sprites/base container P.png +0 -0
  3416. package/Runtime/Modules/Shop/Sprites/base container P.png.meta +121 -0
  3417. package/Runtime/Modules/Shop/Sprites/card frame.png +0 -0
  3418. package/Runtime/Modules/Shop/Sprites/card frame.png.meta +121 -0
  3419. package/Runtime/Modules/Shop/Sprites/item container.png +0 -0
  3420. package/Runtime/Modules/Shop/Sprites/item container.png.meta +121 -0
  3421. package/Runtime/Modules/Shop/Sprites.meta +8 -0
  3422. package/Runtime/Modules/Shop.meta +8 -0
  3423. package/Runtime/Modules/Show_page/Sprites/AvatarBTN/AvatarSMR.png +0 -0
  3424. package/Runtime/Modules/Show_page/Sprites/AvatarBTN/AvatarSMR.png.meta +88 -0
  3425. package/Runtime/Modules/Show_page/Sprites/AvatarBTN/AvatarSMRS.png +0 -0
  3426. package/Runtime/Modules/Show_page/Sprites/AvatarBTN/AvatarSMRS.png.meta +88 -0
  3427. package/Runtime/Modules/Show_page/Sprites/AvatarBTN/Avatarexample 1.png +0 -0
  3428. package/Runtime/Modules/Show_page/Sprites/AvatarBTN/Avatarexample 1.png.meta +88 -0
  3429. package/Runtime/Modules/Show_page/Sprites/AvatarBTN/AvatoarButtonSMG.png +0 -0
  3430. package/Runtime/Modules/Show_page/Sprites/AvatarBTN/AvatoarButtonSMG.png.meta +88 -0
  3431. package/Runtime/Modules/Show_page/Sprites/AvatarBTN.meta +8 -0
  3432. package/Runtime/Modules/Show_page/Sprites/Container/ContainerGS.png +0 -0
  3433. package/Runtime/Modules/Show_page/Sprites/Container/ContainerGS.png.meta +88 -0
  3434. package/Runtime/Modules/Show_page/Sprites/Container/ContainerGSR.png +0 -0
  3435. package/Runtime/Modules/Show_page/Sprites/Container/ContainerGSR.png.meta +88 -0
  3436. package/Runtime/Modules/Show_page/Sprites/Container/ContainerTexture.png +0 -0
  3437. package/Runtime/Modules/Show_page/Sprites/Container/ContainerTexture.png.meta +88 -0
  3438. package/Runtime/Modules/Show_page/Sprites/Container/Containeroutline.png +0 -0
  3439. package/Runtime/Modules/Show_page/Sprites/Container/Containeroutline.png.meta +88 -0
  3440. package/Runtime/Modules/Show_page/Sprites/Container/containerSR.png +0 -0
  3441. package/Runtime/Modules/Show_page/Sprites/Container/containerSR.png.meta +88 -0
  3442. package/Runtime/Modules/Show_page/Sprites/Container.meta +8 -0
  3443. package/Runtime/Modules/Show_page/Sprites/DisableBTN/DisableSR.png +0 -0
  3444. package/Runtime/Modules/Show_page/Sprites/DisableBTN/DisableSR.png.meta +88 -0
  3445. package/Runtime/Modules/Show_page/Sprites/DisableBTN/SMdiableRound.png +0 -0
  3446. package/Runtime/Modules/Show_page/Sprites/DisableBTN/SMdiableRound.png.meta +88 -0
  3447. package/Runtime/Modules/Show_page/Sprites/DisableBTN/SMdisableR.png +0 -0
  3448. package/Runtime/Modules/Show_page/Sprites/DisableBTN/SMdisableR.png.meta +88 -0
  3449. package/Runtime/Modules/Show_page/Sprites/DisableBTN/SMdisableSR.png +0 -0
  3450. package/Runtime/Modules/Show_page/Sprites/DisableBTN/SMdisableSR.png.meta +88 -0
  3451. package/Runtime/Modules/Show_page/Sprites/DisableBTN/disableR.png +0 -0
  3452. package/Runtime/Modules/Show_page/Sprites/DisableBTN/disableR.png.meta +88 -0
  3453. package/Runtime/Modules/Show_page/Sprites/DisableBTN/disableround.png +0 -0
  3454. package/Runtime/Modules/Show_page/Sprites/DisableBTN/disableround.png.meta +88 -0
  3455. package/Runtime/Modules/Show_page/Sprites/DisableBTN.meta +8 -0
  3456. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/SwitchSMSR.png +0 -0
  3457. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/SwitchSMSR.png.meta +88 -0
  3458. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/SwitchSQ.png +0 -0
  3459. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/SwitchSQ.png.meta +88 -0
  3460. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/SwitchSquare.png +0 -0
  3461. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/SwitchSquare.png.meta +88 -0
  3462. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_BTNL.png +0 -0
  3463. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_BTNL.png.meta +88 -0
  3464. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_BTNLR.png +0 -0
  3465. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_BTNLR.png.meta +88 -0
  3466. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_BTNR.png +0 -0
  3467. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_BTNR.png.meta +88 -0
  3468. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_BTNRR.png +0 -0
  3469. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_BTNRR.png.meta +88 -0
  3470. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_BTNSR.png +0 -0
  3471. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_BTNSR.png.meta +88 -0
  3472. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_SBTNL.png +0 -0
  3473. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/Switch_SBTNL.png.meta +88 -0
  3474. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/checkboxR.png +0 -0
  3475. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/checkboxR.png.meta +88 -0
  3476. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/swatichSMR.png +0 -0
  3477. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/swatichSMR.png.meta +88 -0
  3478. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/switch_BTNO.png +0 -0
  3479. package/Runtime/Modules/Show_page/Sprites/Switch_BTN/switch_BTNO.png.meta +88 -0
  3480. package/Runtime/Modules/Show_page/Sprites/Switch_BTN.meta +8 -0
  3481. package/Runtime/Modules/Show_page/Sprites/Tab/TabroundG.png +0 -0
  3482. package/Runtime/Modules/Show_page/Sprites/Tab/TabroundG.png.meta +88 -0
  3483. package/Runtime/Modules/Show_page/Sprites/Tab/Tabtexture.png +0 -0
  3484. package/Runtime/Modules/Show_page/Sprites/Tab/Tabtexture.png.meta +88 -0
  3485. package/Runtime/Modules/Show_page/Sprites/Tab/tabG.png +0 -0
  3486. package/Runtime/Modules/Show_page/Sprites/Tab/tabG.png.meta +88 -0
  3487. package/Runtime/Modules/Show_page/Sprites/Tab/tabRound.png +0 -0
  3488. package/Runtime/Modules/Show_page/Sprites/Tab/tabRound.png.meta +88 -0
  3489. package/Runtime/Modules/Show_page/Sprites/Tab/tabRoundtexture.png +0 -0
  3490. package/Runtime/Modules/Show_page/Sprites/Tab/tabRoundtexture.png.meta +88 -0
  3491. package/Runtime/Modules/Show_page/Sprites/Tab/tabroundoutline.png +0 -0
  3492. package/Runtime/Modules/Show_page/Sprites/Tab/tabroundoutline.png.meta +88 -0
  3493. package/Runtime/Modules/Show_page/Sprites/Tab.meta +8 -0
  3494. package/Runtime/Modules/Show_page/Sprites/primary_color/SMsquareoutline.png +0 -0
  3495. package/Runtime/Modules/Show_page/Sprites/primary_color/SMsquareoutline.png.meta +88 -0
  3496. package/Runtime/Modules/Show_page/Sprites/primary_color/example.png +0 -0
  3497. package/Runtime/Modules/Show_page/Sprites/primary_color/example.png.meta +88 -0
  3498. package/Runtime/Modules/Show_page/Sprites/primary_color/example2.png +0 -0
  3499. package/Runtime/Modules/Show_page/Sprites/primary_color/example2.png.meta +88 -0
  3500. package/Runtime/Modules/Show_page/Sprites/primary_color/outline round.png +0 -0
  3501. package/Runtime/Modules/Show_page/Sprites/primary_color/outline round.png.meta +88 -0
  3502. package/Runtime/Modules/Show_page/Sprites/primary_color/outline.png +0 -0
  3503. package/Runtime/Modules/Show_page/Sprites/primary_color/outline.png.meta +88 -0
  3504. package/Runtime/Modules/Show_page/Sprites/primary_color/outlineS.png +0 -0
  3505. package/Runtime/Modules/Show_page/Sprites/primary_color/outlineS.png.meta +88 -0
  3506. package/Runtime/Modules/Show_page/Sprites/primary_color/round-button.png +0 -0
  3507. package/Runtime/Modules/Show_page/Sprites/primary_color/round-button.png.meta +88 -0
  3508. package/Runtime/Modules/Show_page/Sprites/primary_color/round2.png +0 -0
  3509. package/Runtime/Modules/Show_page/Sprites/primary_color/round2.png.meta +88 -0
  3510. package/Runtime/Modules/Show_page/Sprites/primary_color/smallRoutline.png +0 -0
  3511. package/Runtime/Modules/Show_page/Sprites/primary_color/smallRoutline.png.meta +88 -0
  3512. package/Runtime/Modules/Show_page/Sprites/primary_color/smallroundoutline.png +0 -0
  3513. package/Runtime/Modules/Show_page/Sprites/primary_color/smallroundoutline.png.meta +88 -0
  3514. package/Runtime/Modules/Show_page/Sprites/primary_color/texture.png +0 -0
  3515. package/Runtime/Modules/Show_page/Sprites/primary_color/texture.png.meta +88 -0
  3516. package/Runtime/Modules/Show_page/Sprites/primary_color/textureex1.png +0 -0
  3517. package/Runtime/Modules/Show_page/Sprites/primary_color/textureex1.png.meta +88 -0
  3518. package/Runtime/Modules/Show_page/Sprites/primary_color/woodtexture.png +0 -0
  3519. package/Runtime/Modules/Show_page/Sprites/primary_color/woodtexture.png.meta +88 -0
  3520. package/Runtime/Modules/Show_page/Sprites/primary_color.meta +8 -0
  3521. package/Runtime/Modules/Show_page/Sprites.meta +8 -0
  3522. package/Runtime/Modules/Show_page.meta +8 -0
  3523. package/Runtime/Modules/Signals/DeSignal.cs +68 -0
  3524. package/Runtime/Modules/Signals/DeSignal.cs.meta +11 -0
  3525. package/Runtime/Modules/Signals/DeSignalTower.cs +68 -0
  3526. package/Runtime/Modules/Signals/DeSignalTower.cs.meta +11 -0
  3527. package/Runtime/Modules/Signals.meta +8 -0
  3528. package/Runtime/Modules/Sound/AudioSourcePrefab.prefab +129 -0
  3529. package/Runtime/Modules/Sound/AudioSourcePrefab.prefab.meta +7 -0
  3530. package/Runtime/Modules/Sound/Scripts/SoundConfiguration.cs +52 -0
  3531. package/Runtime/Modules/Sound/Scripts/SoundConfiguration.cs.meta +11 -0
  3532. package/Runtime/Modules/Sound/Scripts.meta +8 -0
  3533. package/Runtime/Modules/Sound.meta +8 -0
  3534. package/Runtime/Modules/Stats/DefaultStats/Resources/AliasStat.asset +18 -0
  3535. package/Runtime/Modules/Stats/DefaultStats/Resources/AliasStat.asset.meta +8 -0
  3536. package/Runtime/Modules/Stats/DefaultStats/Resources/AvatarStat.asset +17 -0
  3537. package/Runtime/Modules/Stats/DefaultStats/Resources/AvatarStat.asset.meta +8 -0
  3538. package/Runtime/Modules/Stats/DefaultStats/Resources.meta +8 -0
  3539. package/Runtime/Modules/Stats/DefaultStats.meta +8 -0
  3540. package/Runtime/Modules/Stats/StatBehaviour.cs +181 -0
  3541. package/Runtime/Modules/Stats/StatBehaviour.cs.meta +11 -0
  3542. package/Runtime/Modules/Stats/StatObject.cs +106 -0
  3543. package/Runtime/Modules/Stats/StatObject.cs.meta +11 -0
  3544. package/Runtime/Modules/Stats/UserExtensions.cs +89 -0
  3545. package/Runtime/Modules/Stats/UserExtensions.cs.meta +11 -0
  3546. package/Runtime/Modules/Stats.meta +8 -0
  3547. package/Runtime/Modules/Theme/Appliers/ButtonStyleApplier.cs +59 -0
  3548. package/Runtime/Modules/Theme/Appliers/ButtonStyleApplier.cs.meta +11 -0
  3549. package/Runtime/Modules/Theme/Appliers/GradientStyleApplier.cs +32 -0
  3550. package/Runtime/Modules/Theme/Appliers/GradientStyleApplier.cs.meta +11 -0
  3551. package/Runtime/Modules/Theme/Appliers/ImageStyleApplier.cs +30 -0
  3552. package/Runtime/Modules/Theme/Appliers/ImageStyleApplier.cs.meta +11 -0
  3553. package/Runtime/Modules/Theme/Appliers/LayoutStyleApplier.cs +22 -0
  3554. package/Runtime/Modules/Theme/Appliers/LayoutStyleApplier.cs.meta +11 -0
  3555. package/Runtime/Modules/Theme/Appliers/SelectableStyleApplier.cs +32 -0
  3556. package/Runtime/Modules/Theme/Appliers/SelectableStyleApplier.cs.meta +11 -0
  3557. package/Runtime/Modules/Theme/Appliers/SoundStyleApplier.cs +27 -0
  3558. package/Runtime/Modules/Theme/Appliers/SoundStyleApplier.cs.meta +11 -0
  3559. package/Runtime/Modules/Theme/Appliers/StringStyleApplier.cs +20 -0
  3560. package/Runtime/Modules/Theme/Appliers/StringStyleApplier.cs.meta +11 -0
  3561. package/Runtime/Modules/Theme/Appliers/StyleApplier.cs +28 -0
  3562. package/Runtime/Modules/Theme/Appliers/StyleApplier.cs.meta +11 -0
  3563. package/Runtime/Modules/Theme/Appliers/TextStyleApplier.cs +57 -0
  3564. package/Runtime/Modules/Theme/Appliers/TextStyleApplier.cs.meta +11 -0
  3565. package/Runtime/Modules/Theme/Appliers/TransformStyleApplier.cs +21 -0
  3566. package/Runtime/Modules/Theme/Appliers/TransformStyleApplier.cs.meta +11 -0
  3567. package/Runtime/Modules/Theme/Appliers/WindowStyleApplier.cs +51 -0
  3568. package/Runtime/Modules/Theme/Appliers/WindowStyleApplier.cs.meta +11 -0
  3569. package/Runtime/Modules/Theme/Appliers.meta +8 -0
  3570. package/Runtime/Modules/Theme/CanHideAttribute.cs +12 -0
  3571. package/Runtime/Modules/Theme/CanHideAttribute.cs.meta +11 -0
  3572. package/Runtime/Modules/Theme/DefaultTheme.asset +949 -0
  3573. package/Runtime/Modules/Theme/DefaultTheme.asset.meta +8 -0
  3574. package/Runtime/Modules/Theme/Objects/GradientStyleObject.cs +33 -0
  3575. package/Runtime/Modules/Theme/Objects/GradientStyleObject.cs.meta +11 -0
  3576. package/Runtime/Modules/Theme/Objects/ImageStyleObject.cs +27 -0
  3577. package/Runtime/Modules/Theme/Objects/ImageStyleObject.cs.meta +11 -0
  3578. package/Runtime/Modules/Theme/Objects/LayoutStyleObject.cs +20 -0
  3579. package/Runtime/Modules/Theme/Objects/LayoutStyleObject.cs.meta +11 -0
  3580. package/Runtime/Modules/Theme/Objects/SelectableStyleObject.cs +38 -0
  3581. package/Runtime/Modules/Theme/Objects/SelectableStyleObject.cs.meta +11 -0
  3582. package/Runtime/Modules/Theme/Objects/TextStyleObject.cs +34 -0
  3583. package/Runtime/Modules/Theme/Objects/TextStyleObject.cs.meta +11 -0
  3584. package/Runtime/Modules/Theme/Objects.meta +8 -0
  3585. package/Runtime/Modules/Theme/Palette.cs +94 -0
  3586. package/Runtime/Modules/Theme/Palette.cs.meta +11 -0
  3587. package/Runtime/Modules/Theme/PaletteStyleCopier.cs +34 -0
  3588. package/Runtime/Modules/Theme/PaletteStyleCopier.cs.meta +11 -0
  3589. package/Runtime/Modules/Theme/Palettes/ButtonPalette.cs +78 -0
  3590. package/Runtime/Modules/Theme/Palettes/ButtonPalette.cs.meta +11 -0
  3591. package/Runtime/Modules/Theme/Palettes/ColorPalette.cs +27 -0
  3592. package/Runtime/Modules/Theme/Palettes/ColorPalette.cs.meta +11 -0
  3593. package/Runtime/Modules/Theme/Palettes/FontPalette.cs +28 -0
  3594. package/Runtime/Modules/Theme/Palettes/FontPalette.cs.meta +11 -0
  3595. package/Runtime/Modules/Theme/Palettes/GradientPalette.cs +57 -0
  3596. package/Runtime/Modules/Theme/Palettes/GradientPalette.cs.meta +11 -0
  3597. package/Runtime/Modules/Theme/Palettes/ImagePalette.cs +31 -0
  3598. package/Runtime/Modules/Theme/Palettes/ImagePalette.cs.meta +11 -0
  3599. package/Runtime/Modules/Theme/Palettes/LayoutPalette.cs +28 -0
  3600. package/Runtime/Modules/Theme/Palettes/LayoutPalette.cs.meta +11 -0
  3601. package/Runtime/Modules/Theme/Palettes/SelectablePalette.cs +36 -0
  3602. package/Runtime/Modules/Theme/Palettes/SelectablePalette.cs.meta +11 -0
  3603. package/Runtime/Modules/Theme/Palettes/SoundPalette.cs +30 -0
  3604. package/Runtime/Modules/Theme/Palettes/SoundPalette.cs.meta +11 -0
  3605. package/Runtime/Modules/Theme/Palettes/StringPalette.cs +37 -0
  3606. package/Runtime/Modules/Theme/Palettes/StringPalette.cs.meta +11 -0
  3607. package/Runtime/Modules/Theme/Palettes/TextPalette.cs +61 -0
  3608. package/Runtime/Modules/Theme/Palettes/TextPalette.cs.meta +11 -0
  3609. package/Runtime/Modules/Theme/Palettes/TransformPalette.cs +29 -0
  3610. package/Runtime/Modules/Theme/Palettes/TransformPalette.cs.meta +11 -0
  3611. package/Runtime/Modules/Theme/Palettes/WindowPalette.cs +43 -0
  3612. package/Runtime/Modules/Theme/Palettes/WindowPalette.cs.meta +11 -0
  3613. package/Runtime/Modules/Theme/Palettes.meta +8 -0
  3614. package/Runtime/Modules/Theme/StyleBehaviour.cs +73 -0
  3615. package/Runtime/Modules/Theme/StyleBehaviour.cs.meta +11 -0
  3616. package/Runtime/Modules/Theme/StyleObject.cs +46 -0
  3617. package/Runtime/Modules/Theme/StyleObject.cs.meta +11 -0
  3618. package/Runtime/Modules/Theme/ThemeConfiguration.cs +9 -0
  3619. package/Runtime/Modules/Theme/ThemeConfiguration.cs.meta +11 -0
  3620. package/Runtime/Modules/Theme/ThemeObject.cs +160 -0
  3621. package/Runtime/Modules/Theme/ThemeObject.cs.meta +11 -0
  3622. package/Runtime/Modules/Theme.meta +8 -0
  3623. package/Runtime/Modules/Tournaments/Materials/TournamentEntryGradientUnlit.shader +109 -0
  3624. package/Runtime/Modules/Tournaments/Materials/TournamentEntryGradientUnlit.shader.meta +9 -0
  3625. package/Runtime/Modules/Tournaments/Materials/TournamentEntryMaterial.mat +86 -0
  3626. package/Runtime/Modules/Tournaments/Materials/TournamentEntryMaterial.mat.meta +8 -0
  3627. package/Runtime/Modules/Tournaments/Materials/TournamentGreyscale.mat +87 -0
  3628. package/Runtime/Modules/Tournaments/Materials/TournamentGreyscale.mat.meta +8 -0
  3629. package/Runtime/Modules/Tournaments/Materials/TournamentGreyscaleUnlit.shader +94 -0
  3630. package/Runtime/Modules/Tournaments/Materials/TournamentGreyscaleUnlit.shader.meta +9 -0
  3631. package/Runtime/Modules/Tournaments/Materials/TournamentStage.mat +86 -0
  3632. package/Runtime/Modules/Tournaments/Materials/TournamentStage.mat.meta +8 -0
  3633. package/Runtime/Modules/Tournaments/Materials/TournamentTypeButton.mat +86 -0
  3634. package/Runtime/Modules/Tournaments/Materials/TournamentTypeButton.mat.meta +8 -0
  3635. package/Runtime/Modules/Tournaments/Materials/TournamentYesterdayInactive 1.mat +86 -0
  3636. package/Runtime/Modules/Tournaments/Materials/TournamentYesterdayInactive 1.mat.meta +8 -0
  3637. package/Runtime/Modules/Tournaments/Materials/TournamentYesterdayInactive.mat +86 -0
  3638. package/Runtime/Modules/Tournaments/Materials/TournamentYesterdayInactive.mat.meta +8 -0
  3639. package/Runtime/Modules/Tournaments/Materials.meta +8 -0
  3640. package/Runtime/Modules/Tournaments/Prefabs/InfoCard.prefab +741 -0
  3641. package/Runtime/Modules/Tournaments/Prefabs/InfoCard.prefab.meta +7 -0
  3642. package/Runtime/Modules/Tournaments/Prefabs/Panel.prefab +74 -0
  3643. package/Runtime/Modules/Tournaments/Prefabs/Panel.prefab.meta +7 -0
  3644. package/Runtime/Modules/Tournaments/Prefabs/RankBackground.prefab +442 -0
  3645. package/Runtime/Modules/Tournaments/Prefabs/RankBackground.prefab.meta +7 -0
  3646. package/Runtime/Modules/Tournaments/Prefabs/Reward1.prefab +521 -0
  3647. package/Runtime/Modules/Tournaments/Prefabs/Reward1.prefab.meta +7 -0
  3648. package/Runtime/Modules/Tournaments/Prefabs/Reward2.prefab +458 -0
  3649. package/Runtime/Modules/Tournaments/Prefabs/Reward2.prefab.meta +7 -0
  3650. package/Runtime/Modules/Tournaments/Prefabs/Reward3.prefab +226 -0
  3651. package/Runtime/Modules/Tournaments/Prefabs/Reward3.prefab.meta +7 -0
  3652. package/Runtime/Modules/Tournaments/Prefabs/RewardClaim.prefab +499 -0
  3653. package/Runtime/Modules/Tournaments/Prefabs/RewardClaim.prefab.meta +7 -0
  3654. package/Runtime/Modules/Tournaments/Prefabs/StageGain.prefab +135 -0
  3655. package/Runtime/Modules/Tournaments/Prefabs/StageGain.prefab.meta +7 -0
  3656. package/Runtime/Modules/Tournaments/Prefabs/StageGain2.prefab +157 -0
  3657. package/Runtime/Modules/Tournaments/Prefabs/StageGain2.prefab.meta +7 -0
  3658. package/Runtime/Modules/Tournaments/Prefabs/StageGainDown.prefab +156 -0
  3659. package/Runtime/Modules/Tournaments/Prefabs/StageGainDown.prefab.meta +7 -0
  3660. package/Runtime/Modules/Tournaments/Prefabs/TournamentEntryPlayer.prefab +753 -0
  3661. package/Runtime/Modules/Tournaments/Prefabs/TournamentEntryPlayer.prefab.meta +7 -0
  3662. package/Runtime/Modules/Tournaments/Prefabs/TournamentFlow.prefab +10421 -0
  3663. package/Runtime/Modules/Tournaments/Prefabs/TournamentFlow.prefab.meta +7 -0
  3664. package/Runtime/Modules/Tournaments/Prefabs/TournamentInfoDetail_General.prefab +209 -0
  3665. package/Runtime/Modules/Tournaments/Prefabs/TournamentInfoDetail_General.prefab.meta +7 -0
  3666. package/Runtime/Modules/Tournaments/Prefabs/Tournament_entry.prefab +3002 -0
  3667. package/Runtime/Modules/Tournaments/Prefabs/Tournament_entry.prefab.meta +7 -0
  3668. package/Runtime/Modules/Tournaments/Prefabs/infoDetail.prefab +988 -0
  3669. package/Runtime/Modules/Tournaments/Prefabs/infoDetail.prefab.meta +7 -0
  3670. package/Runtime/Modules/Tournaments/Prefabs/number.prefab +244 -0
  3671. package/Runtime/Modules/Tournaments/Prefabs/number.prefab.meta +7 -0
  3672. package/Runtime/Modules/Tournaments/Prefabs.meta +8 -0
  3673. package/Runtime/Modules/Tournaments/Scripts/CountdownTextBehaviour.cs +65 -0
  3674. package/Runtime/Modules/Tournaments/Scripts/CountdownTextBehaviour.cs.meta +11 -0
  3675. package/Runtime/Modules/Tournaments/Scripts/FixedCharacterFitter.cs +49 -0
  3676. package/Runtime/Modules/Tournaments/Scripts/FixedCharacterFitter.cs.meta +11 -0
  3677. package/Runtime/Modules/Tournaments/Scripts/MockTournamentService.cs +221 -0
  3678. package/Runtime/Modules/Tournaments/Scripts/MockTournamentService.cs.meta +11 -0
  3679. package/Runtime/Modules/Tournaments/Scripts/TabBehaviour.cs +97 -0
  3680. package/Runtime/Modules/Tournaments/Scripts/TabBehaviour.cs.meta +11 -0
  3681. package/Runtime/Modules/Tournaments/Scripts/TournamenClaimableRewardBehaviour.cs +37 -0
  3682. package/Runtime/Modules/Tournaments/Scripts/TournamenClaimableRewardBehaviour.cs.meta +11 -0
  3683. package/Runtime/Modules/Tournaments/Scripts/TournamentColorConstraint.cs +62 -0
  3684. package/Runtime/Modules/Tournaments/Scripts/TournamentColorConstraint.cs.meta +11 -0
  3685. package/Runtime/Modules/Tournaments/Scripts/TournamentDataSource.cs +74 -0
  3686. package/Runtime/Modules/Tournaments/Scripts/TournamentDataSource.cs.meta +11 -0
  3687. package/Runtime/Modules/Tournaments/Scripts/TournamentEntryBehavior.cs +221 -0
  3688. package/Runtime/Modules/Tournaments/Scripts/TournamentEntryBehavior.cs.meta +11 -0
  3689. package/Runtime/Modules/Tournaments/Scripts/TournamentEntryPlayerBehaviour.cs +152 -0
  3690. package/Runtime/Modules/Tournaments/Scripts/TournamentEntryPlayerBehaviour.cs.meta +11 -0
  3691. package/Runtime/Modules/Tournaments/Scripts/TournamentInfoBehaviour.cs +33 -0
  3692. package/Runtime/Modules/Tournaments/Scripts/TournamentInfoBehaviour.cs.meta +11 -0
  3693. package/Runtime/Modules/Tournaments/Scripts/TournamentInfoDetailBehaviour.cs +8 -0
  3694. package/Runtime/Modules/Tournaments/Scripts/TournamentInfoDetailBehaviour.cs.meta +11 -0
  3695. package/Runtime/Modules/Tournaments/Scripts/TournamentInfoDetailContainerBehaviour.cs +32 -0
  3696. package/Runtime/Modules/Tournaments/Scripts/TournamentInfoDetailContainerBehaviour.cs.meta +11 -0
  3697. package/Runtime/Modules/Tournaments/Scripts/TournamentNumbersBehaviour.cs +20 -0
  3698. package/Runtime/Modules/Tournaments/Scripts/TournamentNumbersBehaviour.cs.meta +11 -0
  3699. package/Runtime/Modules/Tournaments/Scripts/TournamentRewardBehaviour.cs +21 -0
  3700. package/Runtime/Modules/Tournaments/Scripts/TournamentRewardBehaviour.cs.meta +11 -0
  3701. package/Runtime/Modules/Tournaments/Scripts/TournamentRewardEntryBehaviour.cs +32 -0
  3702. package/Runtime/Modules/Tournaments/Scripts/TournamentRewardEntryBehaviour.cs.meta +11 -0
  3703. package/Runtime/Modules/Tournaments/Scripts/TournamentRewardPanelBehaviour.cs +78 -0
  3704. package/Runtime/Modules/Tournaments/Scripts/TournamentRewardPanelBehaviour.cs.meta +11 -0
  3705. package/Runtime/Modules/Tournaments/Scripts/TournamentScoreUtil.cs +77 -0
  3706. package/Runtime/Modules/Tournaments/Scripts/TournamentScoreUtil.cs.meta +11 -0
  3707. package/Runtime/Modules/Tournaments/Scripts/TournamentStageGainBehaviour.cs +25 -0
  3708. package/Runtime/Modules/Tournaments/Scripts/TournamentStageGainBehaviour.cs.meta +11 -0
  3709. package/Runtime/Modules/Tournaments/Scripts/TournamentsBehaviour.cs +630 -0
  3710. package/Runtime/Modules/Tournaments/Scripts/TournamentsBehaviour.cs.meta +11 -0
  3711. package/Runtime/Modules/Tournaments/Scripts/TournamentsConfiguration.cs +32 -0
  3712. package/Runtime/Modules/Tournaments/Scripts/TournamentsConfiguration.cs.meta +11 -0
  3713. package/Runtime/Modules/Tournaments/Scripts.meta +8 -0
  3714. package/Runtime/Modules/Tournaments/Sprites/1stageup.png +0 -0
  3715. package/Runtime/Modules/Tournaments/Sprites/1stageup.png.meta +88 -0
  3716. package/Runtime/Modules/Tournaments/Sprites/2Stageup.png +0 -0
  3717. package/Runtime/Modules/Tournaments/Sprites/2Stageup.png.meta +88 -0
  3718. package/Runtime/Modules/Tournaments/Sprites/4-10.png +0 -0
  3719. package/Runtime/Modules/Tournaments/Sprites/4-10.png.meta +88 -0
  3720. package/Runtime/Modules/Tournaments/Sprites/4-10new.png +0 -0
  3721. package/Runtime/Modules/Tournaments/Sprites/4-10new.png.meta +88 -0
  3722. package/Runtime/Modules/Tournaments/Sprites/Bronzer.png +0 -0
  3723. package/Runtime/Modules/Tournaments/Sprites/Bronzer.png.meta +88 -0
  3724. package/Runtime/Modules/Tournaments/Sprites/Oval_background.png +0 -0
  3725. package/Runtime/Modules/Tournaments/Sprites/Oval_background.png.meta +92 -0
  3726. package/Runtime/Modules/Tournaments/Sprites/Oval_outline.png +0 -0
  3727. package/Runtime/Modules/Tournaments/Sprites/Oval_outline.png.meta +92 -0
  3728. package/Runtime/Modules/Tournaments/Sprites/Playerbaroutline_T.png +0 -0
  3729. package/Runtime/Modules/Tournaments/Sprites/Playerbaroutline_T.png.meta +88 -0
  3730. package/Runtime/Modules/Tournaments/Sprites/Readmore.png +0 -0
  3731. package/Runtime/Modules/Tournaments/Sprites/Readmore.png.meta +88 -0
  3732. package/Runtime/Modules/Tournaments/Sprites/Rectangle_background.png +0 -0
  3733. package/Runtime/Modules/Tournaments/Sprites/Rectangle_background.png.meta +88 -0
  3734. package/Runtime/Modules/Tournaments/Sprites/Rectangle_background2.png +0 -0
  3735. package/Runtime/Modules/Tournaments/Sprites/Rectangle_background2.png.meta +88 -0
  3736. package/Runtime/Modules/Tournaments/Sprites/Rectangle_outline_B.png +0 -0
  3737. package/Runtime/Modules/Tournaments/Sprites/Rectangle_outline_B.png.meta +92 -0
  3738. package/Runtime/Modules/Tournaments/Sprites/Rectangle_outline_T.png +0 -0
  3739. package/Runtime/Modules/Tournaments/Sprites/Rectangle_outline_T.png.meta +92 -0
  3740. package/Runtime/Modules/Tournaments/Sprites/Today white inactive.png +0 -0
  3741. package/Runtime/Modules/Tournaments/Sprites/Today white inactive.png.meta +88 -0
  3742. package/Runtime/Modules/Tournaments/Sprites/Today white.png +0 -0
  3743. package/Runtime/Modules/Tournaments/Sprites/Today white.png.meta +88 -0
  3744. package/Runtime/Modules/Tournaments/Sprites/Todayoutline.png +0 -0
  3745. package/Runtime/Modules/Tournaments/Sprites/Todayoutline.png.meta +88 -0
  3746. package/Runtime/Modules/Tournaments/Sprites/ToptabOutline.png +0 -0
  3747. package/Runtime/Modules/Tournaments/Sprites/ToptabOutline.png.meta +92 -0
  3748. package/Runtime/Modules/Tournaments/Sprites/Yesterday white inactive.png +0 -0
  3749. package/Runtime/Modules/Tournaments/Sprites/Yesterday white inactive.png.meta +88 -0
  3750. package/Runtime/Modules/Tournaments/Sprites/Yesterdaybackground.png +0 -0
  3751. package/Runtime/Modules/Tournaments/Sprites/Yesterdaybackground.png.meta +88 -0
  3752. package/Runtime/Modules/Tournaments/Sprites/Yesterdayoutline.png +0 -0
  3753. package/Runtime/Modules/Tournaments/Sprites/Yesterdayoutline.png.meta +88 -0
  3754. package/Runtime/Modules/Tournaments/Sprites/arrow.png +0 -0
  3755. package/Runtime/Modules/Tournaments/Sprites/arrow.png.meta +92 -0
  3756. package/Runtime/Modules/Tournaments/Sprites/atlas-sdf.png +0 -0
  3757. package/Runtime/Modules/Tournaments/Sprites/atlas-sdf.png.meta +88 -0
  3758. package/Runtime/Modules/Tournaments/Sprites/badge.png +0 -0
  3759. package/Runtime/Modules/Tournaments/Sprites/badge.png.meta +88 -0
  3760. package/Runtime/Modules/Tournaments/Sprites/button left.png +0 -0
  3761. package/Runtime/Modules/Tournaments/Sprites/button left.png.meta +88 -0
  3762. package/Runtime/Modules/Tournaments/Sprites/button_left.png +0 -0
  3763. package/Runtime/Modules/Tournaments/Sprites/button_left.png.meta +92 -0
  3764. package/Runtime/Modules/Tournaments/Sprites/coloroutline.png +0 -0
  3765. package/Runtime/Modules/Tournaments/Sprites/coloroutline.png.meta +92 -0
  3766. package/Runtime/Modules/Tournaments/Sprites/gradient_left.png +0 -0
  3767. package/Runtime/Modules/Tournaments/Sprites/gradient_left.png.meta +88 -0
  3768. package/Runtime/Modules/Tournaments/Sprites/icons/Gold.png +0 -0
  3769. package/Runtime/Modules/Tournaments/Sprites/icons/Gold.png.meta +92 -0
  3770. package/Runtime/Modules/Tournaments/Sprites/icons/Tourament.png +0 -0
  3771. package/Runtime/Modules/Tournaments/Sprites/icons/Tourament.png.meta +92 -0
  3772. package/Runtime/Modules/Tournaments/Sprites/icons/avator.png +0 -0
  3773. package/Runtime/Modules/Tournaments/Sprites/icons/avator.png.meta +92 -0
  3774. package/Runtime/Modules/Tournaments/Sprites/icons/back.png +0 -0
  3775. package/Runtime/Modules/Tournaments/Sprites/icons/back.png.meta +92 -0
  3776. package/Runtime/Modules/Tournaments/Sprites/icons/info.png +0 -0
  3777. package/Runtime/Modules/Tournaments/Sprites/icons/info.png.meta +92 -0
  3778. package/Runtime/Modules/Tournaments/Sprites/icons/lootbox.png +0 -0
  3779. package/Runtime/Modules/Tournaments/Sprites/icons/lootbox.png.meta +92 -0
  3780. package/Runtime/Modules/Tournaments/Sprites/icons/main panel back.png +0 -0
  3781. package/Runtime/Modules/Tournaments/Sprites/icons/main panel back.png.meta +88 -0
  3782. package/Runtime/Modules/Tournaments/Sprites/icons/virtual currency.png +0 -0
  3783. package/Runtime/Modules/Tournaments/Sprites/icons/virtual currency.png.meta +92 -0
  3784. package/Runtime/Modules/Tournaments/Sprites/icons//342/200/246.png +0 -0
  3785. package/Runtime/Modules/Tournaments/Sprites/icons//342/200/246.png.meta +92 -0
  3786. package/Runtime/Modules/Tournaments/Sprites/icons.meta +8 -0
  3787. package/Runtime/Modules/Tournaments/Sprites/imageExample.png +0 -0
  3788. package/Runtime/Modules/Tournaments/Sprites/imageExample.png.meta +88 -0
  3789. package/Runtime/Modules/Tournaments/Sprites/info card.png +0 -0
  3790. package/Runtime/Modules/Tournaments/Sprites/info card.png.meta +88 -0
  3791. package/Runtime/Modules/Tournaments/Sprites/info.png +0 -0
  3792. package/Runtime/Modules/Tournaments/Sprites/info.png.meta +88 -0
  3793. package/Runtime/Modules/Tournaments/Sprites/infodetail back.png +0 -0
  3794. package/Runtime/Modules/Tournaments/Sprites/infodetail back.png.meta +88 -0
  3795. package/Runtime/Modules/Tournaments/Sprites/left tab with shadow.png +0 -0
  3796. package/Runtime/Modules/Tournaments/Sprites/left tab with shadow.png.meta +88 -0
  3797. package/Runtime/Modules/Tournaments/Sprites/new_player_bar.png +0 -0
  3798. package/Runtime/Modules/Tournaments/Sprites/new_player_bar.png.meta +110 -0
  3799. package/Runtime/Modules/Tournaments/Sprites/nextBT.png +0 -0
  3800. package/Runtime/Modules/Tournaments/Sprites/nextBT.png.meta +88 -0
  3801. package/Runtime/Modules/Tournaments/Sprites/number.png +0 -0
  3802. package/Runtime/Modules/Tournaments/Sprites/number.png.meta +92 -0
  3803. package/Runtime/Modules/Tournaments/Sprites/page.png +0 -0
  3804. package/Runtime/Modules/Tournaments/Sprites/page.png.meta +88 -0
  3805. package/Runtime/Modules/Tournaments/Sprites/player_bar_outline.png +0 -0
  3806. package/Runtime/Modules/Tournaments/Sprites/player_bar_outline.png.meta +88 -0
  3807. package/Runtime/Modules/Tournaments/Sprites/player_panel.png +0 -0
  3808. package/Runtime/Modules/Tournaments/Sprites/player_panel.png.meta +88 -0
  3809. package/Runtime/Modules/Tournaments/Sprites/playerbar_45.png +0 -0
  3810. package/Runtime/Modules/Tournaments/Sprites/playerbar_45.png.meta +88 -0
  3811. package/Runtime/Modules/Tournaments/Sprites/playeroutline.png +0 -0
  3812. package/Runtime/Modules/Tournaments/Sprites/playeroutline.png.meta +92 -0
  3813. package/Runtime/Modules/Tournaments/Sprites/rank_panel.png +0 -0
  3814. package/Runtime/Modules/Tournaments/Sprites/rank_panel.png.meta +88 -0
  3815. package/Runtime/Modules/Tournaments/Sprites/read less.png +0 -0
  3816. package/Runtime/Modules/Tournaments/Sprites/read less.png.meta +88 -0
  3817. package/Runtime/Modules/Tournaments/Sprites/read less2.png +0 -0
  3818. package/Runtime/Modules/Tournaments/Sprites/read less2.png.meta +88 -0
  3819. package/Runtime/Modules/Tournaments/Sprites/rect_sdf.png +0 -0
  3820. package/Runtime/Modules/Tournaments/Sprites/rect_sdf.png.meta +88 -0
  3821. package/Runtime/Modules/Tournaments/Sprites/reward_shape.png +0 -0
  3822. package/Runtime/Modules/Tournaments/Sprites/reward_shape.png.meta +92 -0
  3823. package/Runtime/Modules/Tournaments/Sprites/shadow.png +0 -0
  3824. package/Runtime/Modules/Tournaments/Sprites/shadow.png.meta +92 -0
  3825. package/Runtime/Modules/Tournaments/Sprites/tab outline.png +0 -0
  3826. package/Runtime/Modules/Tournaments/Sprites/tab outline.png.meta +92 -0
  3827. package/Runtime/Modules/Tournaments/Sprites/today.png +0 -0
  3828. package/Runtime/Modules/Tournaments/Sprites/today.png.meta +88 -0
  3829. package/Runtime/Modules/Tournaments/Sprites/todaybackground.png +0 -0
  3830. package/Runtime/Modules/Tournaments/Sprites/todaybackground.png.meta +88 -0
  3831. package/Runtime/Modules/Tournaments/Sprites/white shadow.png +0 -0
  3832. package/Runtime/Modules/Tournaments/Sprites/white shadow.png.meta +88 -0
  3833. package/Runtime/Modules/Tournaments/Sprites/white_shadow_vertical.png +0 -0
  3834. package/Runtime/Modules/Tournaments/Sprites/white_shadow_vertical.png.meta +88 -0
  3835. package/Runtime/Modules/Tournaments/Sprites/yellow-background-png.png +0 -0
  3836. package/Runtime/Modules/Tournaments/Sprites/yellow-background-png.png.meta +88 -0
  3837. package/Runtime/Modules/Tournaments/Sprites/yesterday white.png +0 -0
  3838. package/Runtime/Modules/Tournaments/Sprites/yesterday white.png.meta +88 -0
  3839. package/Runtime/Modules/Tournaments/Sprites/yesterday.png +0 -0
  3840. package/Runtime/Modules/Tournaments/Sprites/yesterday.png.meta +88 -0
  3841. package/Runtime/Modules/Tournaments/Sprites.meta +8 -0
  3842. package/Runtime/Modules/Tournaments.meta +8 -0
  3843. package/Runtime/Modules.meta +8 -0
  3844. package/Runtime/OpenApiExtensions.cs +18 -0
  3845. package/Runtime/OpenApiExtensions.cs.meta +3 -0
  3846. package/Runtime/PaymentExtensions.cs +16 -0
  3847. package/Runtime/PaymentExtensions.cs.meta +3 -0
  3848. package/Runtime/PlatformConsoleCommands.cs +559 -0
  3849. package/Runtime/PlatformConsoleCommands.cs.meta +3 -0
  3850. package/Runtime/Player/ApiServices.cs +162 -0
  3851. package/Runtime/Player/ApiServices.cs.meta +3 -0
  3852. package/Runtime/Player/BeamableBehaviour.cs +142 -0
  3853. package/Runtime/Player/BeamableBehaviour.cs.meta +3 -0
  3854. package/Runtime/Player/CloudSaving/CloudDataUpdateBuilder.cs +125 -0
  3855. package/Runtime/Player/CloudSaving/CloudDataUpdateBuilder.cs.meta +3 -0
  3856. package/Runtime/Player/CloudSaving/CloudServiceConflictResolver.cs +19 -0
  3857. package/Runtime/Player/CloudSaving/CloudServiceConflictResolver.cs.meta +3 -0
  3858. package/Runtime/Player/CloudSaving/ConflictResolverExtensions.cs +58 -0
  3859. package/Runtime/Player/CloudSaving/ConflictResolverExtensions.cs.meta +3 -0
  3860. package/Runtime/Player/CloudSaving/Data/CloudSaveEntry.cs +43 -0
  3861. package/Runtime/Player/CloudSaving/Data/CloudSaveEntry.cs.meta +3 -0
  3862. package/Runtime/Player/CloudSaving/Data/CloudSaveStatus.cs +10 -0
  3863. package/Runtime/Player/CloudSaving/Data/CloudSaveStatus.cs.meta +3 -0
  3864. package/Runtime/Player/CloudSaving/Data/CloudSavingManifest.cs +12 -0
  3865. package/Runtime/Player/CloudSaving/Data/CloudSavingManifest.cs.meta +3 -0
  3866. package/Runtime/Player/CloudSaving/Data/ConflictResolveType.cs +8 -0
  3867. package/Runtime/Player/CloudSaving/Data/ConflictResolveType.cs.meta +3 -0
  3868. package/Runtime/Player/CloudSaving/Data/DataConflictDetail.cs +51 -0
  3869. package/Runtime/Player/CloudSaving/Data/DataConflictDetail.cs.meta +3 -0
  3870. package/Runtime/Player/CloudSaving/Data/EntryDownloadDetail.cs +9 -0
  3871. package/Runtime/Player/CloudSaving/Data/EntryDownloadDetail.cs.meta +3 -0
  3872. package/Runtime/Player/CloudSaving/Data/PlayerCloudSavingConfiguration.cs +56 -0
  3873. package/Runtime/Player/CloudSaving/Data/PlayerCloudSavingConfiguration.cs.meta +3 -0
  3874. package/Runtime/Player/CloudSaving/Data/SavingFileEntry.cs +11 -0
  3875. package/Runtime/Player/CloudSaving/Data/SavingFileEntry.cs.meta +3 -0
  3876. package/Runtime/Player/CloudSaving/Data.meta +8 -0
  3877. package/Runtime/Player/CloudSaving/Interfaces/ICloudSavingService.cs +165 -0
  3878. package/Runtime/Player/CloudSaving/Interfaces/ICloudSavingService.cs.meta +3 -0
  3879. package/Runtime/Player/CloudSaving/Interfaces/IConflictResolver.cs +22 -0
  3880. package/Runtime/Player/CloudSaving/Interfaces/IConflictResolver.cs.meta +3 -0
  3881. package/Runtime/Player/CloudSaving/Interfaces.meta +8 -0
  3882. package/Runtime/Player/CloudSaving/PlayerCloudSaving.cs +1158 -0
  3883. package/Runtime/Player/CloudSaving/PlayerCloudSaving.cs.meta +11 -0
  3884. package/Runtime/Player/CloudSaving.meta +8 -0
  3885. package/Runtime/Player/Leaderboards/LeaderboardLists.cs +216 -0
  3886. package/Runtime/Player/Leaderboards/LeaderboardLists.cs.meta +3 -0
  3887. package/Runtime/Player/Leaderboards/Lists/FriendScoresList.cs +76 -0
  3888. package/Runtime/Player/Leaderboards/Lists/FriendScoresList.cs.meta +3 -0
  3889. package/Runtime/Player/Leaderboards/Lists/NearbyScoresList.cs +67 -0
  3890. package/Runtime/Player/Leaderboards/Lists/NearbyScoresList.cs.meta +3 -0
  3891. package/Runtime/Player/Leaderboards/Lists/PlayerCollectionScoresList.cs +52 -0
  3892. package/Runtime/Player/Leaderboards/Lists/PlayerCollectionScoresList.cs.meta +3 -0
  3893. package/Runtime/Player/Leaderboards/Lists/TopScoresList.cs +41 -0
  3894. package/Runtime/Player/Leaderboards/Lists/TopScoresList.cs.meta +3 -0
  3895. package/Runtime/Player/Leaderboards/Lists.meta +3 -0
  3896. package/Runtime/Player/Leaderboards/PlayerLeaderboard.cs +774 -0
  3897. package/Runtime/Player/Leaderboards/PlayerLeaderboard.cs.meta +3 -0
  3898. package/Runtime/Player/Leaderboards/PlayerLeaderboards.cs +95 -0
  3899. package/Runtime/Player/Leaderboards/PlayerLeaderboards.cs.meta +3 -0
  3900. package/Runtime/Player/Leaderboards.meta +3 -0
  3901. package/Runtime/Player/MonoBehaviourExtensions.cs +17 -0
  3902. package/Runtime/Player/MonoBehaviourExtensions.cs.meta +3 -0
  3903. package/Runtime/Player/ObservableAccessToken.cs +12 -0
  3904. package/Runtime/Player/ObservableAccessToken.cs.meta +3 -0
  3905. package/Runtime/Player/ObservableUser.cs +30 -0
  3906. package/Runtime/Player/ObservableUser.cs.meta +3 -0
  3907. package/Runtime/Player/PlayerAccounts.cs +2132 -0
  3908. package/Runtime/Player/PlayerAccounts.cs.meta +3 -0
  3909. package/Runtime/Player/PlayerAnnouncements.cs +239 -0
  3910. package/Runtime/Player/PlayerAnnouncements.cs.meta +3 -0
  3911. package/Runtime/Player/PlayerCurrencies.cs +157 -0
  3912. package/Runtime/Player/PlayerCurrencies.cs.meta +3 -0
  3913. package/Runtime/Player/PlayerFriends.cs +661 -0
  3914. package/Runtime/Player/PlayerFriends.cs.meta +11 -0
  3915. package/Runtime/Player/PlayerInventory.cs +893 -0
  3916. package/Runtime/Player/PlayerInventory.cs.meta +3 -0
  3917. package/Runtime/Player/PlayerItemGroup.cs +200 -0
  3918. package/Runtime/Player/PlayerItemGroup.cs.meta +3 -0
  3919. package/Runtime/Player/PlayerLobby.cs +328 -0
  3920. package/Runtime/Player/PlayerLobby.cs.meta +3 -0
  3921. package/Runtime/Player/PlayerParty.cs +601 -0
  3922. package/Runtime/Player/PlayerParty.cs.meta +11 -0
  3923. package/Runtime/Player/PlayerStateService.cs +44 -0
  3924. package/Runtime/Player/PlayerStateService.cs.meta +3 -0
  3925. package/Runtime/Player/PlayerStats.cs +238 -0
  3926. package/Runtime/Player/PlayerStats.cs.meta +3 -0
  3927. package/Runtime/Player/SdkEventService.cs +259 -0
  3928. package/Runtime/Player/SdkEventService.cs.meta +3 -0
  3929. package/Runtime/Player.meta +3 -0
  3930. package/Runtime/PromiseExtensions.cs +304 -0
  3931. package/Runtime/PromiseExtensions.cs.meta +11 -0
  3932. package/Runtime/ReflectionCache/BeamReflectionCache.cs +186 -0
  3933. package/Runtime/ReflectionCache/BeamReflectionCache.cs.meta +11 -0
  3934. package/Runtime/ReflectionCache/ReflectionSystemObject.cs +55 -0
  3935. package/Runtime/ReflectionCache/ReflectionSystemObject.cs.meta +11 -0
  3936. package/Runtime/ReflectionCache/Resources/ReflectionSystems/BeamReflectionCache.asset +16 -0
  3937. package/Runtime/ReflectionCache/Resources/ReflectionSystems/BeamReflectionCache.asset.meta +8 -0
  3938. package/Runtime/ReflectionCache/Resources/ReflectionSystems/ThirdPartyIdentityReflectionCache.asset +16 -0
  3939. package/Runtime/ReflectionCache/Resources/ReflectionSystems/ThirdPartyIdentityReflectionCache.asset.meta +8 -0
  3940. package/Runtime/ReflectionCache/Resources/ReflectionSystems.meta +8 -0
  3941. package/Runtime/ReflectionCache/Resources.meta +8 -0
  3942. package/Runtime/ReflectionCache/ThirdPartyIdentityReflectionCache.cs +84 -0
  3943. package/Runtime/ReflectionCache/ThirdPartyIdentityReflectionCache.cs.meta +3 -0
  3944. package/Runtime/ReflectionCache.meta +8 -0
  3945. package/Runtime/Server/BeamContextExtensions.cs +13 -0
  3946. package/Runtime/Server/BeamContextExtensions.cs.meta +3 -0
  3947. package/Runtime/Server/Content/ApiContentExtensions.cs +88 -0
  3948. package/Runtime/Server/Content/ApiContentExtensions.cs.meta +3 -0
  3949. package/Runtime/Server/Content.meta +8 -0
  3950. package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonElement.cs +40 -0
  3951. package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonElement.cs.meta +11 -0
  3952. package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonIdAttribute.cs +13 -0
  3953. package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonIdAttribute.cs.meta +11 -0
  3954. package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonIgnoreAttribute.cs +15 -0
  3955. package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonIgnoreAttribute.cs.meta +11 -0
  3956. package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonIgnoreIfDefault.cs +22 -0
  3957. package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonIgnoreIfDefault.cs.meta +11 -0
  3958. package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonIgnoreIfNull.cs +23 -0
  3959. package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonIgnoreIfNull.cs.meta +11 -0
  3960. package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonMemberMapAttributeUsageAttribute.cs +23 -0
  3961. package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonMemberMapAttributeUsageAttribute.cs.meta +11 -0
  3962. package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonRepresentationAttribute.cs +16 -0
  3963. package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonRepresentationAttribute.cs.meta +11 -0
  3964. package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonSerializationOptionsAttribute.cs +12 -0
  3965. package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonSerializationOptionsAttribute.cs.meta +11 -0
  3966. package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonType.cs +34 -0
  3967. package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/BsonType.cs.meta +11 -0
  3968. package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/IBsonMemberMapAttribute.cs +11 -0
  3969. package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson/IBsonMemberMapAttribute.cs.meta +11 -0
  3970. package/Runtime/Server/LegacyCommon/Mocks/MongoDB/Bson.meta +11 -0
  3971. package/Runtime/Server/LegacyCommon/Mocks/MongoDB.meta +8 -0
  3972. package/Runtime/Server/LegacyCommon/Mocks.meta +3 -0
  3973. package/Runtime/Server/LegacyCommon/StorageDocument.cs +32 -0
  3974. package/Runtime/Server/LegacyCommon/StorageDocument.cs.meta +11 -0
  3975. package/Runtime/Server/LegacyCommon.meta +3 -0
  3976. package/Runtime/Server/MicroserviceClient.cs +415 -0
  3977. package/Runtime/Server/MicroserviceClient.cs.meta +11 -0
  3978. package/Runtime/Server/MicroserviceIndividualization.cs +80 -0
  3979. package/Runtime/Server/MicroserviceIndividualization.cs.meta +11 -0
  3980. package/Runtime/Server/MicroservicePrefixService.cs +10 -0
  3981. package/Runtime/Server/MicroservicePrefixService.cs.meta +3 -0
  3982. package/Runtime/Server/ThirdPartyFederatedLoginExtensions.cs +60 -0
  3983. package/Runtime/Server/ThirdPartyFederatedLoginExtensions.cs.meta +3 -0
  3984. package/Runtime/Server.meta +3 -0
  3985. package/Runtime/UI/Buttons/DE_Button.prefab +402 -0
  3986. package/Runtime/UI/Buttons/DE_Button.prefab.meta +7 -0
  3987. package/Runtime/UI/Buttons/DE_ButtonInline.prefab +220 -0
  3988. package/Runtime/UI/Buttons/DE_ButtonInline.prefab.meta +7 -0
  3989. package/Runtime/UI/Buttons/DeButtonBehaviour.cs +33 -0
  3990. package/Runtime/UI/Buttons/DeButtonBehaviour.cs.meta +11 -0
  3991. package/Runtime/UI/Buttons.meta +8 -0
  3992. package/Runtime/UI/DE_Canvas.prefab +100 -0
  3993. package/Runtime/UI/DE_Canvas.prefab.meta +7 -0
  3994. package/Runtime/UI/DE_Panel.prefab +113 -0
  3995. package/Runtime/UI/DE_Panel.prefab.meta +7 -0
  3996. package/Runtime/UI/DE_Title.prefab +259 -0
  3997. package/Runtime/UI/DE_Title.prefab.meta +7 -0
  3998. package/Runtime/UI/DE_Title_Small.prefab +193 -0
  3999. package/Runtime/UI/DE_Title_Small.prefab.meta +7 -0
  4000. package/Runtime/UI/DE_Window.prefab +1718 -0
  4001. package/Runtime/UI/DE_Window.prefab.meta +7 -0
  4002. package/Runtime/UI/De_Panel_Horizontal.prefab +151 -0
  4003. package/Runtime/UI/De_Panel_Horizontal.prefab.meta +7 -0
  4004. package/Runtime/UI/Fonts/Lato-Bold SDF 1.asset +5411 -0
  4005. package/Runtime/UI/Fonts/Lato-Bold SDF 1.asset.meta +8 -0
  4006. package/Runtime/UI/Fonts/Lato-Bold.ttf +0 -0
  4007. package/Runtime/UI/Fonts/Lato-Bold.ttf.meta +23 -0
  4008. package/Runtime/UI/Fonts/Lato-Regular SDF 1.asset +5419 -0
  4009. package/Runtime/UI/Fonts/Lato-Regular SDF 1.asset.meta +8 -0
  4010. package/Runtime/UI/Fonts/Lato-Regular.ttf +0 -0
  4011. package/Runtime/UI/Fonts/Lato-Regular.ttf.meta +22 -0
  4012. package/Runtime/UI/Fonts/OpenSans-Regular SDF 1.asset +5675 -0
  4013. package/Runtime/UI/Fonts/OpenSans-Regular SDF 1.asset.meta +8 -0
  4014. package/Runtime/UI/Fonts/OpenSans-Regular.ttf +0 -0
  4015. package/Runtime/UI/Fonts/OpenSans-Regular.ttf.meta +22 -0
  4016. package/Runtime/UI/Fonts/Ubuntu-Bold.ttf +0 -0
  4017. package/Runtime/UI/Fonts/Ubuntu-Bold.ttf.meta +22 -0
  4018. package/Runtime/UI/Fonts/Ubuntu-BoldItalic.ttf +0 -0
  4019. package/Runtime/UI/Fonts/Ubuntu-BoldItalic.ttf.meta +23 -0
  4020. package/Runtime/UI/Fonts/Ubuntu-Italic.ttf +0 -0
  4021. package/Runtime/UI/Fonts/Ubuntu-Italic.ttf.meta +25 -0
  4022. package/Runtime/UI/Fonts/Ubuntu-Light.ttf +0 -0
  4023. package/Runtime/UI/Fonts/Ubuntu-Light.ttf.meta +29 -0
  4024. package/Runtime/UI/Fonts/Ubuntu-LightItalic.ttf +0 -0
  4025. package/Runtime/UI/Fonts/Ubuntu-LightItalic.ttf.meta +27 -0
  4026. package/Runtime/UI/Fonts/Ubuntu-Medium SDF.asset +835 -0
  4027. package/Runtime/UI/Fonts/Ubuntu-Medium SDF.asset.meta +8 -0
  4028. package/Runtime/UI/Fonts/Ubuntu-Medium.ttf +0 -0
  4029. package/Runtime/UI/Fonts/Ubuntu-Medium.ttf.meta +24 -0
  4030. package/Runtime/UI/Fonts/Ubuntu-MediumItalic.ttf +0 -0
  4031. package/Runtime/UI/Fonts/Ubuntu-MediumItalic.ttf.meta +26 -0
  4032. package/Runtime/UI/Fonts/Ubuntu-Regular.ttf +0 -0
  4033. package/Runtime/UI/Fonts/Ubuntu-Regular.ttf.meta +28 -0
  4034. package/Runtime/UI/Fonts/Vision/Vision-Bold SDF.asset +2064 -0
  4035. package/Runtime/UI/Fonts/Vision/Vision-Bold SDF.asset.meta +8 -0
  4036. package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-Alias.mat +104 -0
  4037. package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-Alias.mat.meta +8 -0
  4038. package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-Heavy-Shadow.mat +104 -0
  4039. package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-Heavy-Shadow.mat.meta +8 -0
  4040. package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-RankBronze.mat +104 -0
  4041. package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-RankBronze.mat.meta +8 -0
  4042. package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-RankGold.mat +104 -0
  4043. package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-RankGold.mat.meta +8 -0
  4044. package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-RankSilver.mat +104 -0
  4045. package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-RankSilver.mat.meta +8 -0
  4046. package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-RankStandard.mat +104 -0
  4047. package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-RankStandard.mat.meta +8 -0
  4048. package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-Shadow.mat +104 -0
  4049. package/Runtime/UI/Fonts/Vision/Vision-Bold-SDF-Shadow.mat.meta +8 -0
  4050. package/Runtime/UI/Fonts/Vision/Vision-Bold.ttf +0 -0
  4051. package/Runtime/UI/Fonts/Vision/Vision-Bold.ttf.meta +24 -0
  4052. package/Runtime/UI/Fonts/Vision/Vision-Heavy.ttf +0 -0
  4053. package/Runtime/UI/Fonts/Vision/Vision-Heavy.ttf.meta +23 -0
  4054. package/Runtime/UI/Fonts/Vision.meta +8 -0
  4055. package/Runtime/UI/Fonts.meta +8 -0
  4056. package/Runtime/UI/Layouts/MediaQueryBehaviour.cs +74 -0
  4057. package/Runtime/UI/Layouts/MediaQueryBehaviour.cs.meta +11 -0
  4058. package/Runtime/UI/Layouts/MediaQueryObject.cs +118 -0
  4059. package/Runtime/UI/Layouts/MediaQueryObject.cs.meta +11 -0
  4060. package/Runtime/UI/Layouts/MediaSourceBehaviour.cs +49 -0
  4061. package/Runtime/UI/Layouts/MediaSourceBehaviour.cs.meta +11 -0
  4062. package/Runtime/UI/Layouts/ReparenterBehaviour.cs +86 -0
  4063. package/Runtime/UI/Layouts/ReparenterBehaviour.cs.meta +11 -0
  4064. package/Runtime/UI/Layouts/Resources/accountFlowMediaQuery.asset +17 -0
  4065. package/Runtime/UI/Layouts/Resources/accountFlowMediaQuery.asset.meta +8 -0
  4066. package/Runtime/UI/Layouts/Resources/keyboardOpen.asset +17 -0
  4067. package/Runtime/UI/Layouts/Resources/keyboardOpen.asset.meta +8 -0
  4068. package/Runtime/UI/Layouts/Resources.meta +8 -0
  4069. package/Runtime/UI/Layouts/StackLayout.cs +70 -0
  4070. package/Runtime/UI/Layouts/StackLayout.cs.meta +11 -0
  4071. package/Runtime/UI/Layouts.meta +8 -0
  4072. package/Runtime/UI/Lightbeam/DependencyExtensions.cs +359 -0
  4073. package/Runtime/UI/Lightbeam/DependencyExtensions.cs.meta +3 -0
  4074. package/Runtime/UI/Lightbeam/LightBeam.cs +155 -0
  4075. package/Runtime/UI/Lightbeam/LightBeam.cs.meta +3 -0
  4076. package/Runtime/UI/Lightbeam/RealmSettingDeclaration.cs +43 -0
  4077. package/Runtime/UI/Lightbeam/RealmSettingDeclaration.cs.meta +3 -0
  4078. package/Runtime/UI/Lightbeam/UIExtensions.cs +182 -0
  4079. package/Runtime/UI/Lightbeam/UIExtensions.cs.meta +3 -0
  4080. package/Runtime/UI/Lightbeam/Unity.Beamable.LightBeams.asmdef +23 -0
  4081. package/Runtime/UI/Lightbeam/Unity.Beamable.LightBeams.asmdef.meta +3 -0
  4082. package/Runtime/UI/Lightbeam.meta +3 -0
  4083. package/Runtime/UI/Materials/De_Panel_Loader_Mat.mat +77 -0
  4084. package/Runtime/UI/Materials/De_Panel_Loader_Mat.mat.meta +8 -0
  4085. package/Runtime/UI/Materials/De_Panel_Loader_Unlit.shader +124 -0
  4086. package/Runtime/UI/Materials/De_Panel_Loader_Unlit.shader.meta +9 -0
  4087. package/Runtime/UI/Materials/Standard/MSDF.cginc +187 -0
  4088. package/Runtime/UI/Materials/Standard/MSDF.cginc.meta +9 -0
  4089. package/Runtime/UI/Materials/Standard/MSDF_Standard.cginc +119 -0
  4090. package/Runtime/UI/Materials/Standard/MSDF_Standard.cginc.meta +9 -0
  4091. package/Runtime/UI/Materials/Standard/MSDF_VertFrag.cginc +693 -0
  4092. package/Runtime/UI/Materials/Standard/MSDF_VertFrag.cginc.meta +9 -0
  4093. package/Runtime/UI/Materials/Standard.meta +8 -0
  4094. package/Runtime/UI/Materials.meta +8 -0
  4095. package/Runtime/UI/OfflineObjects.prefab +735 -0
  4096. package/Runtime/UI/OfflineObjects.prefab.meta +7 -0
  4097. package/Runtime/UI/Prefab Components/BackButton.prefab +320 -0
  4098. package/Runtime/UI/Prefab Components/BackButton.prefab.meta +7 -0
  4099. package/Runtime/UI/Prefab Components/Background.prefab +131 -0
  4100. package/Runtime/UI/Prefab Components/Background.prefab.meta +7 -0
  4101. package/Runtime/UI/Prefab Components/Banner.prefab +757 -0
  4102. package/Runtime/UI/Prefab Components/Banner.prefab.meta +7 -0
  4103. package/Runtime/UI/Prefab Components/BasicPanel.prefab +132 -0
  4104. package/Runtime/UI/Prefab Components/BasicPanel.prefab.meta +7 -0
  4105. package/Runtime/UI/Prefab Components/Body.prefab +216 -0
  4106. package/Runtime/UI/Prefab Components/Body.prefab.meta +7 -0
  4107. package/Runtime/UI/Prefab Components/ButtonCard.prefab +449 -0
  4108. package/Runtime/UI/Prefab Components/ButtonCard.prefab.meta +7 -0
  4109. package/Runtime/UI/Prefab Components/ButtonPrimary.prefab +486 -0
  4110. package/Runtime/UI/Prefab Components/ButtonPrimary.prefab.meta +7 -0
  4111. package/Runtime/UI/Prefab Components/ButtonPrimaryHalf.prefab +136 -0
  4112. package/Runtime/UI/Prefab Components/ButtonPrimaryHalf.prefab.meta +7 -0
  4113. package/Runtime/UI/Prefab Components/ButtonPrimaryIcon.prefab +574 -0
  4114. package/Runtime/UI/Prefab Components/ButtonPrimaryIcon.prefab.meta +7 -0
  4115. package/Runtime/UI/Prefab Components/ButtonSecondary.prefab +613 -0
  4116. package/Runtime/UI/Prefab Components/ButtonSecondary.prefab.meta +7 -0
  4117. package/Runtime/UI/Prefab Components/ButtonSecondaryHalf.prefab +142 -0
  4118. package/Runtime/UI/Prefab Components/ButtonSecondaryHalf.prefab.meta +7 -0
  4119. package/Runtime/UI/Prefab Components/ButtonSecondaryIcon.prefab +492 -0
  4120. package/Runtime/UI/Prefab Components/ButtonSecondaryIcon.prefab.meta +7 -0
  4121. package/Runtime/UI/Prefab Components/CloseButton.prefab +334 -0
  4122. package/Runtime/UI/Prefab Components/CloseButton.prefab.meta +7 -0
  4123. package/Runtime/UI/Prefab Components/ClosebackT.prefab +355 -0
  4124. package/Runtime/UI/Prefab Components/ClosebackT.prefab.meta +7 -0
  4125. package/Runtime/UI/Prefab Components/DeveloperLogo.prefab +133 -0
  4126. package/Runtime/UI/Prefab Components/DeveloperLogo.prefab.meta +7 -0
  4127. package/Runtime/UI/Prefab Components/ExtendedLayoutTemplate.prefab +1539 -0
  4128. package/Runtime/UI/Prefab Components/ExtendedLayoutTemplate.prefab.meta +7 -0
  4129. package/Runtime/UI/Prefab Components/Header.prefab +196 -0
  4130. package/Runtime/UI/Prefab Components/Header.prefab.meta +7 -0
  4131. package/Runtime/UI/Prefab Components/Header2.prefab +223 -0
  4132. package/Runtime/UI/Prefab Components/Header2.prefab.meta +7 -0
  4133. package/Runtime/UI/Prefab Components/InputField.prefab +1155 -0
  4134. package/Runtime/UI/Prefab Components/InputField.prefab.meta +7 -0
  4135. package/Runtime/UI/Prefab Components/InputField_Password.prefab +173 -0
  4136. package/Runtime/UI/Prefab Components/InputField_Password.prefab.meta +7 -0
  4137. package/Runtime/UI/Prefab Components/Loading.prefab +363 -0
  4138. package/Runtime/UI/Prefab Components/Loading.prefab.meta +7 -0
  4139. package/Runtime/UI/Prefab Components/MessageText.prefab +252 -0
  4140. package/Runtime/UI/Prefab Components/MessageText.prefab.meta +7 -0
  4141. package/Runtime/UI/Prefab Components/MessageTextSmall.prefab +166 -0
  4142. package/Runtime/UI/Prefab Components/MessageTextSmall.prefab.meta +7 -0
  4143. package/Runtime/UI/Prefab Components/ScrollDots.prefab +335 -0
  4144. package/Runtime/UI/Prefab Components/ScrollDots.prefab.meta +7 -0
  4145. package/Runtime/UI/Prefab Components/TableRow.prefab +132 -0
  4146. package/Runtime/UI/Prefab Components/TableRow.prefab.meta +7 -0
  4147. package/Runtime/UI/Prefab Components.meta +8 -0
  4148. package/Runtime/UI/Prefab Menus/LoadingPopup.prefab +503 -0
  4149. package/Runtime/UI/Prefab Menus/LoadingPopup.prefab.meta +7 -0
  4150. package/Runtime/UI/Prefab Menus.meta +8 -0
  4151. package/Runtime/UI/Prompt/DE_Prompt.prefab +864 -0
  4152. package/Runtime/UI/Prompt/DE_Prompt.prefab.meta +7 -0
  4153. package/Runtime/UI/Prompt/DePromptBehaviour.cs +38 -0
  4154. package/Runtime/UI/Prompt/DePromptBehaviour.cs.meta +11 -0
  4155. package/Runtime/UI/Prompt/DePromptData.cs +14 -0
  4156. package/Runtime/UI/Prompt/DePromptData.cs.meta +11 -0
  4157. package/Runtime/UI/Prompt.meta +8 -0
  4158. package/Runtime/UI/Scripts/AddressableImageBehaviour.cs +15 -0
  4159. package/Runtime/UI/Scripts/AddressableImageBehaviour.cs.meta +11 -0
  4160. package/Runtime/UI/Scripts/AddressableSpriteLoader.cs +107 -0
  4161. package/Runtime/UI/Scripts/AddressableSpriteLoader.cs.meta +3 -0
  4162. package/Runtime/UI/Scripts/BackButtonBehaviour.cs +14 -0
  4163. package/Runtime/UI/Scripts/BackButtonBehaviour.cs.meta +11 -0
  4164. package/Runtime/UI/Scripts/BeamableAnimationUtil.cs +100 -0
  4165. package/Runtime/UI/Scripts/BeamableAnimationUtil.cs.meta +11 -0
  4166. package/Runtime/UI/Scripts/BeamableButton.cs +33 -0
  4167. package/Runtime/UI/Scripts/BeamableButton.cs.meta +11 -0
  4168. package/Runtime/UI/Scripts/BeamableWindow.cs +15 -0
  4169. package/Runtime/UI/Scripts/BeamableWindow.cs.meta +11 -0
  4170. package/Runtime/UI/Scripts/ClickOffBehaviour.cs +42 -0
  4171. package/Runtime/UI/Scripts/ClickOffBehaviour.cs.meta +11 -0
  4172. package/Runtime/UI/Scripts/CloseButtonBehaviour.cs +14 -0
  4173. package/Runtime/UI/Scripts/CloseButtonBehaviour.cs.meta +11 -0
  4174. package/Runtime/UI/Scripts/EventSoundBehaviour.cs +55 -0
  4175. package/Runtime/UI/Scripts/EventSoundBehaviour.cs.meta +11 -0
  4176. package/Runtime/UI/Scripts/GameObjectToggler.cs +25 -0
  4177. package/Runtime/UI/Scripts/GameObjectToggler.cs.meta +3 -0
  4178. package/Runtime/UI/Scripts/InputReference.cs +24 -0
  4179. package/Runtime/UI/Scripts/InputReference.cs.meta +11 -0
  4180. package/Runtime/UI/Scripts/InputValidationBehaviour.cs +153 -0
  4181. package/Runtime/UI/Scripts/InputValidationBehaviour.cs.meta +11 -0
  4182. package/Runtime/UI/Scripts/LoadingDisableBehaviour.cs +87 -0
  4183. package/Runtime/UI/Scripts/LoadingDisableBehaviour.cs.meta +11 -0
  4184. package/Runtime/UI/Scripts/LoadingIndicator.cs +117 -0
  4185. package/Runtime/UI/Scripts/LoadingIndicator.cs.meta +11 -0
  4186. package/Runtime/UI/Scripts/Menu.cs +47 -0
  4187. package/Runtime/UI/Scripts/Menu.cs.meta +11 -0
  4188. package/Runtime/UI/Scripts/MenuManagementBehaviour.cs +268 -0
  4189. package/Runtime/UI/Scripts/MenuManagementBehaviour.cs.meta +11 -0
  4190. package/Runtime/UI/Scripts/MobileUtilities.cs +84 -0
  4191. package/Runtime/UI/Scripts/MobileUtilities.cs.meta +11 -0
  4192. package/Runtime/UI/Scripts/OfflineNotificationBehaviour.cs +37 -0
  4193. package/Runtime/UI/Scripts/OfflineNotificationBehaviour.cs.meta +11 -0
  4194. package/Runtime/UI/Scripts/OfflineObject.cs +69 -0
  4195. package/Runtime/UI/Scripts/OfflineObject.cs.meta +11 -0
  4196. package/Runtime/UI/Scripts/ScrollButton.cs +23 -0
  4197. package/Runtime/UI/Scripts/ScrollButton.cs.meta +11 -0
  4198. package/Runtime/UI/Scripts/ScrollDotsBehaviour.cs +83 -0
  4199. package/Runtime/UI/Scripts/ScrollDotsBehaviour.cs.meta +11 -0
  4200. package/Runtime/UI/Scripts/ScrollToAlphaBehaviour.cs +47 -0
  4201. package/Runtime/UI/Scripts/ScrollToAlphaBehaviour.cs.meta +11 -0
  4202. package/Runtime/UI/Scripts/StickyScrollElement.cs +176 -0
  4203. package/Runtime/UI/Scripts/StickyScrollElement.cs.meta +11 -0
  4204. package/Runtime/UI/Scripts/TextReference.cs +15 -0
  4205. package/Runtime/UI/Scripts/TextReference.cs.meta +11 -0
  4206. package/Runtime/UI/Scripts/TextReferenceBase.cs +14 -0
  4207. package/Runtime/UI/Scripts/TextReferenceBase.cs.meta +11 -0
  4208. package/Runtime/UI/Scripts/TransformOffsetBehaviour.cs +61 -0
  4209. package/Runtime/UI/Scripts/TransformOffsetBehaviour.cs.meta +11 -0
  4210. package/Runtime/UI/Scripts.meta +8 -0
  4211. package/Runtime/UI/Sprites/MSDF/box-slant-msdf2.png +0 -0
  4212. package/Runtime/UI/Sprites/MSDF/box-slant-msdf2.png.meta +110 -0
  4213. package/Runtime/UI/Sprites/MSDF/pill-msdf (1).png +0 -0
  4214. package/Runtime/UI/Sprites/MSDF/pill-msdf (1).png.meta +110 -0
  4215. package/Runtime/UI/Sprites/MSDF/square.png +0 -0
  4216. package/Runtime/UI/Sprites/MSDF/square.png.meta +110 -0
  4217. package/Runtime/UI/Sprites/MSDF.meta +8 -0
  4218. package/Runtime/UI/Sprites/SDF/box_slanted.png +0 -0
  4219. package/Runtime/UI/Sprites/SDF/box_slanted.png.meta +88 -0
  4220. package/Runtime/UI/Sprites/SDF/circle.png +0 -0
  4221. package/Runtime/UI/Sprites/SDF/circle.png.meta +88 -0
  4222. package/Runtime/UI/Sprites/SDF/hexagon.png +0 -0
  4223. package/Runtime/UI/Sprites/SDF/hexagon.png.meta +88 -0
  4224. package/Runtime/UI/Sprites/SDF/octagon.png +0 -0
  4225. package/Runtime/UI/Sprites/SDF/octagon.png.meta +88 -0
  4226. package/Runtime/UI/Sprites/SDF/pill.png +0 -0
  4227. package/Runtime/UI/Sprites/SDF/pill.png.meta +88 -0
  4228. package/Runtime/UI/Sprites/SDF/pill_2.png +0 -0
  4229. package/Runtime/UI/Sprites/SDF/pill_2.png.meta +177 -0
  4230. package/Runtime/UI/Sprites/SDF/pill_slanted.png +0 -0
  4231. package/Runtime/UI/Sprites/SDF/pill_slanted.png.meta +88 -0
  4232. package/Runtime/UI/Sprites/SDF.meta +8 -0
  4233. package/Runtime/UI/Sprites/shapelined-_JBKdviweXI-unsplash.jpg +0 -0
  4234. package/Runtime/UI/Sprites/shapelined-_JBKdviweXI-unsplash.jpg.meta +121 -0
  4235. package/Runtime/UI/Sprites/star_sdf.png +0 -0
  4236. package/Runtime/UI/Sprites/star_sdf.png.meta +110 -0
  4237. package/Runtime/UI/Sprites.meta +8 -0
  4238. package/Runtime/UI/TextField/DE_TextField.prefab +899 -0
  4239. package/Runtime/UI/TextField/DE_TextField.prefab.meta +7 -0
  4240. package/Runtime/UI/TextField/DeTextFieldBehaviour.cs +48 -0
  4241. package/Runtime/UI/TextField/DeTextFieldBehaviour.cs.meta +11 -0
  4242. package/Runtime/UI/TextField.meta +8 -0
  4243. package/Runtime/UI/beamable feature icon/Closeoutline.png +0 -0
  4244. package/Runtime/UI/beamable feature icon/Closeoutline.png.meta +88 -0
  4245. package/Runtime/UI/beamable feature icon/apple.png +0 -0
  4246. package/Runtime/UI/beamable feature icon/apple.png.meta +88 -0
  4247. package/Runtime/UI/beamable feature icon/back2.png +0 -0
  4248. package/Runtime/UI/beamable feature icon/back2.png.meta +88 -0
  4249. package/Runtime/UI/beamable feature icon/deleted.png +0 -0
  4250. package/Runtime/UI/beamable feature icon/deleted.png.meta +88 -0
  4251. package/Runtime/UI/beamable feature icon/edit.png +0 -0
  4252. package/Runtime/UI/beamable feature icon/edit.png.meta +88 -0
  4253. package/Runtime/UI/beamable feature icon/icon - email.png +0 -0
  4254. package/Runtime/UI/beamable feature icon/icon - email.png.meta +88 -0
  4255. package/Runtime/UI/beamable feature icon/leaderboard.png +0 -0
  4256. package/Runtime/UI/beamable feature icon/leaderboard.png.meta +88 -0
  4257. package/Runtime/UI/beamable feature icon/myaccount.png +0 -0
  4258. package/Runtime/UI/beamable feature icon/myaccount.png.meta +88 -0
  4259. package/Runtime/UI/beamable feature icon/setting.png +0 -0
  4260. package/Runtime/UI/beamable feature icon/setting.png.meta +88 -0
  4261. package/Runtime/UI/beamable feature icon.meta +8 -0
  4262. package/Runtime/UI.meta +8 -0
  4263. package/Runtime/Unity.Beamable.asmdef +33 -0
  4264. package/Runtime/Unity.Beamable.asmdef.meta +7 -0
  4265. package/Runtime/Utility/BeamUnityFileUtils.cs +231 -0
  4266. package/Runtime/Utility/BeamUnityFileUtils.cs.meta +3 -0
  4267. package/Runtime/Utility.meta +8 -0
  4268. package/Runtime/VectorIntExtensions.cs +45 -0
  4269. package/Runtime/VectorIntExtensions.cs.meta +11 -0
  4270. package/Runtime.meta +8 -0
  4271. package/Samples/LightBeamSamples/AccountManager/AccountConfig.asset +29 -0
  4272. package/Samples/LightBeamSamples/AccountManager/AccountConfig.asset.meta +8 -0
  4273. package/Samples/LightBeamSamples/AccountManager/AccountExampleConfig.cs +15 -0
  4274. package/Samples/LightBeamSamples/AccountManager/AccountExampleConfig.cs.meta +3 -0
  4275. package/Samples/LightBeamSamples/AccountManager/AccountManager.cs +57 -0
  4276. package/Samples/LightBeamSamples/AccountManager/AccountManager.cs.meta +3 -0
  4277. package/Samples/LightBeamSamples/AccountManager/LightBeam.AccountManager.asmdef +19 -0
  4278. package/Samples/LightBeamSamples/AccountManager/LightBeam.AccountManager.asmdef.meta +7 -0
  4279. package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountDetailsBehaviour/AccountDetails.prefab +2537 -0
  4280. package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountDetailsBehaviour/AccountDetails.prefab.meta +7 -0
  4281. package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountDetailsBehaviour/AccountDetailsBehaviour.cs +53 -0
  4282. package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountDetailsBehaviour/AccountDetailsBehaviour.cs.meta +3 -0
  4283. package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountDetailsBehaviour.meta +3 -0
  4284. package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountDisplayBehaviour/AccountDisplay.prefab +1060 -0
  4285. package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountDisplayBehaviour/AccountDisplay.prefab.meta +7 -0
  4286. package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountDisplayBehaviour/AccountDisplayBehaviour.cs +51 -0
  4287. package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountDisplayBehaviour/AccountDisplayBehaviour.cs.meta +3 -0
  4288. package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountDisplayBehaviour.meta +3 -0
  4289. package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountSwitchPage/AccountSwitchPage.cs +42 -0
  4290. package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountSwitchPage/AccountSwitchPage.cs.meta +3 -0
  4291. package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountSwitchPage/AccountSwitchPage.prefab +1007 -0
  4292. package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountSwitchPage/AccountSwitchPage.prefab.meta +7 -0
  4293. package/Samples/LightBeamSamples/AccountManager/Prefabs/AccountSwitchPage.meta +3 -0
  4294. package/Samples/LightBeamSamples/AccountManager/Prefabs/AvatarDisplay/AvatarDisplay.prefab +237 -0
  4295. package/Samples/LightBeamSamples/AccountManager/Prefabs/AvatarDisplay/AvatarDisplay.prefab.meta +7 -0
  4296. package/Samples/LightBeamSamples/AccountManager/Prefabs/AvatarDisplay/AvatarDisplayBehaviour.cs +21 -0
  4297. package/Samples/LightBeamSamples/AccountManager/Prefabs/AvatarDisplay/AvatarDisplayBehaviour.cs.meta +3 -0
  4298. package/Samples/LightBeamSamples/AccountManager/Prefabs/AvatarDisplay.meta +3 -0
  4299. package/Samples/LightBeamSamples/AccountManager/Prefabs/ForgotPasswordPage/ForgotPasswordPage.cs +64 -0
  4300. package/Samples/LightBeamSamples/AccountManager/Prefabs/ForgotPasswordPage/ForgotPasswordPage.cs.meta +3 -0
  4301. package/Samples/LightBeamSamples/AccountManager/Prefabs/ForgotPasswordPage/ForgotPasswordPage.prefab +1752 -0
  4302. package/Samples/LightBeamSamples/AccountManager/Prefabs/ForgotPasswordPage/ForgotPasswordPage.prefab.meta +7 -0
  4303. package/Samples/LightBeamSamples/AccountManager/Prefabs/ForgotPasswordPage.meta +3 -0
  4304. package/Samples/LightBeamSamples/AccountManager/Prefabs/HomePage/HomePage.cs +70 -0
  4305. package/Samples/LightBeamSamples/AccountManager/Prefabs/HomePage/HomePage.cs.meta +2 -0
  4306. package/Samples/LightBeamSamples/AccountManager/Prefabs/HomePage/HomePage.prefab +2226 -0
  4307. package/Samples/LightBeamSamples/AccountManager/Prefabs/HomePage/HomePage.prefab.meta +7 -0
  4308. package/Samples/LightBeamSamples/AccountManager/Prefabs/HomePage.meta +3 -0
  4309. package/Samples/LightBeamSamples/AccountManager/Prefabs/RecoverEmailPage/RecoverAccountPage.prefab +2592 -0
  4310. package/Samples/LightBeamSamples/AccountManager/Prefabs/RecoverEmailPage/RecoverAccountPage.prefab.meta +7 -0
  4311. package/Samples/LightBeamSamples/AccountManager/Prefabs/RecoverEmailPage/RecoverEmailPage.cs +131 -0
  4312. package/Samples/LightBeamSamples/AccountManager/Prefabs/RecoverEmailPage/RecoverEmailPage.cs.meta +3 -0
  4313. package/Samples/LightBeamSamples/AccountManager/Prefabs/RecoverEmailPage.meta +3 -0
  4314. package/Samples/LightBeamSamples/AccountManager/Prefabs/RegisterEmailPage/RegisterEmailPage.cs +79 -0
  4315. package/Samples/LightBeamSamples/AccountManager/Prefabs/RegisterEmailPage/RegisterEmailPage.cs.meta +3 -0
  4316. package/Samples/LightBeamSamples/AccountManager/Prefabs/RegisterEmailPage/RegisterEmailPage.prefab +2009 -0
  4317. package/Samples/LightBeamSamples/AccountManager/Prefabs/RegisterEmailPage/RegisterEmailPage.prefab.meta +7 -0
  4318. package/Samples/LightBeamSamples/AccountManager/Prefabs/RegisterEmailPage.meta +3 -0
  4319. package/Samples/LightBeamSamples/AccountManager/Prefabs.meta +3 -0
  4320. package/Samples/LightBeamSamples/AccountManager/Sample_AccountManager.unity +770 -0
  4321. package/Samples/LightBeamSamples/AccountManager/Sample_AccountManager.unity.meta +7 -0
  4322. package/Samples/LightBeamSamples/AccountManager.meta +3 -0
  4323. package/Samples/LightBeamSamples/AdminFlowPrefab/AdminFlow.prefab +1043 -0
  4324. package/Samples/LightBeamSamples/AdminFlowPrefab/AdminFlow.prefab.meta +7 -0
  4325. package/Samples/LightBeamSamples/AdminFlowPrefab.meta +3 -0
  4326. package/Samples/LightBeamSamples/CloudSaving/CloudSavingConfig.asset +22 -0
  4327. package/Samples/LightBeamSamples/CloudSaving/CloudSavingConfig.asset.meta +8 -0
  4328. package/Samples/LightBeamSamples/CloudSaving/CloudSavingExampleConfig.cs +11 -0
  4329. package/Samples/LightBeamSamples/CloudSaving/CloudSavingExampleConfig.cs.meta +11 -0
  4330. package/Samples/LightBeamSamples/CloudSaving/CloudSavingManager.cs +35 -0
  4331. package/Samples/LightBeamSamples/CloudSaving/CloudSavingManager.cs.meta +11 -0
  4332. package/Samples/LightBeamSamples/CloudSaving/LightBeam.CloudSavingManager.asmdef +21 -0
  4333. package/Samples/LightBeamSamples/CloudSaving/LightBeam.CloudSavingManager.asmdef.meta +7 -0
  4334. package/Samples/LightBeamSamples/CloudSaving/Prefabs/BytePage/BytePage.cs +102 -0
  4335. package/Samples/LightBeamSamples/CloudSaving/Prefabs/BytePage/BytePage.cs.meta +11 -0
  4336. package/Samples/LightBeamSamples/CloudSaving/Prefabs/BytePage/BytePage.prefab +3175 -0
  4337. package/Samples/LightBeamSamples/CloudSaving/Prefabs/BytePage/BytePage.prefab.meta +7 -0
  4338. package/Samples/LightBeamSamples/CloudSaving/Prefabs/BytePage.meta +3 -0
  4339. package/Samples/LightBeamSamples/CloudSaving/Prefabs/HomePage/ConflictViewReferences.cs +26 -0
  4340. package/Samples/LightBeamSamples/CloudSaving/Prefabs/HomePage/ConflictViewReferences.cs.meta +3 -0
  4341. package/Samples/LightBeamSamples/CloudSaving/Prefabs/HomePage/HomePage.cs +121 -0
  4342. package/Samples/LightBeamSamples/CloudSaving/Prefabs/HomePage/HomePage.cs.meta +11 -0
  4343. package/Samples/LightBeamSamples/CloudSaving/Prefabs/HomePage/HomePage.prefab +5587 -0
  4344. package/Samples/LightBeamSamples/CloudSaving/Prefabs/HomePage/HomePage.prefab.meta +7 -0
  4345. package/Samples/LightBeamSamples/CloudSaving/Prefabs/HomePage.meta +3 -0
  4346. package/Samples/LightBeamSamples/CloudSaving/Prefabs/JsonPage/JsonPage.cs +142 -0
  4347. package/Samples/LightBeamSamples/CloudSaving/Prefabs/JsonPage/JsonPage.cs.meta +11 -0
  4348. package/Samples/LightBeamSamples/CloudSaving/Prefabs/JsonPage/JsonPage.prefab +5551 -0
  4349. package/Samples/LightBeamSamples/CloudSaving/Prefabs/JsonPage/JsonPage.prefab.meta +7 -0
  4350. package/Samples/LightBeamSamples/CloudSaving/Prefabs/JsonPage.meta +3 -0
  4351. package/Samples/LightBeamSamples/CloudSaving/Prefabs/StringPage/StringPage.cs +91 -0
  4352. package/Samples/LightBeamSamples/CloudSaving/Prefabs/StringPage/StringPage.cs.meta +11 -0
  4353. package/Samples/LightBeamSamples/CloudSaving/Prefabs/StringPage/StringPage.prefab +2881 -0
  4354. package/Samples/LightBeamSamples/CloudSaving/Prefabs/StringPage/StringPage.prefab.meta +7 -0
  4355. package/Samples/LightBeamSamples/CloudSaving/Prefabs/StringPage.meta +3 -0
  4356. package/Samples/LightBeamSamples/CloudSaving/Prefabs.meta +8 -0
  4357. package/Samples/LightBeamSamples/CloudSaving/Sample_CloudSaving.unity +793 -0
  4358. package/Samples/LightBeamSamples/CloudSaving/Sample_CloudSaving.unity.meta +7 -0
  4359. package/Samples/LightBeamSamples/CloudSaving.meta +8 -0
  4360. package/Samples/LightBeamSamples/CurrencyHud/CurrencyHudManager.cs +40 -0
  4361. package/Samples/LightBeamSamples/CurrencyHud/CurrencyHudManager.cs.meta +3 -0
  4362. package/Samples/LightBeamSamples/CurrencyHud/LightBeam.CurrencyHud.asmdef +20 -0
  4363. package/Samples/LightBeamSamples/CurrencyHud/LightBeam.CurrencyHud.asmdef.meta +3 -0
  4364. package/Samples/LightBeamSamples/CurrencyHud/Prefabs/CurrencyView/CurrencyView.prefab +306 -0
  4365. package/Samples/LightBeamSamples/CurrencyHud/Prefabs/CurrencyView/CurrencyView.prefab.meta +7 -0
  4366. package/Samples/LightBeamSamples/CurrencyHud/Prefabs/CurrencyView/CurrencyViewBehaviour.cs +50 -0
  4367. package/Samples/LightBeamSamples/CurrencyHud/Prefabs/CurrencyView/CurrencyViewBehaviour.cs.meta +3 -0
  4368. package/Samples/LightBeamSamples/CurrencyHud/Prefabs/CurrencyView.meta +3 -0
  4369. package/Samples/LightBeamSamples/CurrencyHud/Prefabs.meta +3 -0
  4370. package/Samples/LightBeamSamples/CurrencyHud/Sample_CurrencyHud.unity +1121 -0
  4371. package/Samples/LightBeamSamples/CurrencyHud/Sample_CurrencyHud.unity.meta +7 -0
  4372. package/Samples/LightBeamSamples/CurrencyHud.meta +3 -0
  4373. package/Samples/LightBeamSamples/FriendsManager/FriendsConfig.asset +26 -0
  4374. package/Samples/LightBeamSamples/FriendsManager/FriendsConfig.asset.meta +8 -0
  4375. package/Samples/LightBeamSamples/FriendsManager/FriendsExampleConfig.cs +13 -0
  4376. package/Samples/LightBeamSamples/FriendsManager/FriendsExampleConfig.cs.meta +3 -0
  4377. package/Samples/LightBeamSamples/FriendsManager/FriendsManager.cs +32 -0
  4378. package/Samples/LightBeamSamples/FriendsManager/FriendsManager.cs.meta +3 -0
  4379. package/Samples/LightBeamSamples/FriendsManager/LightBeam.FriendsManager.asmdef +20 -0
  4380. package/Samples/LightBeamSamples/FriendsManager/LightBeam.FriendsManager.asmdef.meta +7 -0
  4381. package/Samples/LightBeamSamples/FriendsManager/Prefabs/BlockedDisplay/BlockedDisplay.prefab +639 -0
  4382. package/Samples/LightBeamSamples/FriendsManager/Prefabs/BlockedDisplay/BlockedDisplay.prefab.meta +7 -0
  4383. package/Samples/LightBeamSamples/FriendsManager/Prefabs/BlockedDisplay/BlockedPlayersDisplayBehaviour.cs +25 -0
  4384. package/Samples/LightBeamSamples/FriendsManager/Prefabs/BlockedDisplay/BlockedPlayersDisplayBehaviour.cs.meta +11 -0
  4385. package/Samples/LightBeamSamples/FriendsManager/Prefabs/BlockedDisplay.meta +3 -0
  4386. package/Samples/LightBeamSamples/FriendsManager/Prefabs/FriendDisplay/FriendDisplay.prefab +896 -0
  4387. package/Samples/LightBeamSamples/FriendsManager/Prefabs/FriendDisplay/FriendDisplay.prefab.meta +7 -0
  4388. package/Samples/LightBeamSamples/FriendsManager/Prefabs/FriendDisplay/FriendDisplayBehaviour.cs +31 -0
  4389. package/Samples/LightBeamSamples/FriendsManager/Prefabs/FriendDisplay/FriendDisplayBehaviour.cs.meta +11 -0
  4390. package/Samples/LightBeamSamples/FriendsManager/Prefabs/FriendDisplay.meta +8 -0
  4391. package/Samples/LightBeamSamples/FriendsManager/Prefabs/HomePage/HomePage.cs +31 -0
  4392. package/Samples/LightBeamSamples/FriendsManager/Prefabs/HomePage/HomePage.cs.meta +11 -0
  4393. package/Samples/LightBeamSamples/FriendsManager/Prefabs/HomePage/HomePage.prefab +1232 -0
  4394. package/Samples/LightBeamSamples/FriendsManager/Prefabs/HomePage/HomePage.prefab.meta +7 -0
  4395. package/Samples/LightBeamSamples/FriendsManager/Prefabs/HomePage.meta +3 -0
  4396. package/Samples/LightBeamSamples/FriendsManager/Prefabs/PlayerFriendsDisplay/PlayerDisplay.prefab +2963 -0
  4397. package/Samples/LightBeamSamples/FriendsManager/Prefabs/PlayerFriendsDisplay/PlayerDisplay.prefab.meta +7 -0
  4398. package/Samples/LightBeamSamples/FriendsManager/Prefabs/PlayerFriendsDisplay/PlayerFriendsBehaviour.cs +194 -0
  4399. package/Samples/LightBeamSamples/FriendsManager/Prefabs/PlayerFriendsDisplay/PlayerFriendsBehaviour.cs.meta +3 -0
  4400. package/Samples/LightBeamSamples/FriendsManager/Prefabs/PlayerFriendsDisplay.meta +3 -0
  4401. package/Samples/LightBeamSamples/FriendsManager/Prefabs/ReceivedInvitesDisplay/ReceivedInviteDisplay.prefab +896 -0
  4402. package/Samples/LightBeamSamples/FriendsManager/Prefabs/ReceivedInvitesDisplay/ReceivedInviteDisplay.prefab.meta +7 -0
  4403. package/Samples/LightBeamSamples/FriendsManager/Prefabs/ReceivedInvitesDisplay/ReceivedInviteDisplayBehaviour.cs +31 -0
  4404. package/Samples/LightBeamSamples/FriendsManager/Prefabs/ReceivedInvitesDisplay/ReceivedInviteDisplayBehaviour.cs.meta +11 -0
  4405. package/Samples/LightBeamSamples/FriendsManager/Prefabs/ReceivedInvitesDisplay.meta +8 -0
  4406. package/Samples/LightBeamSamples/FriendsManager/Prefabs/Selector/Editor/LightBeam.FriendsManager.Selector.Editor.asmdef +18 -0
  4407. package/Samples/LightBeamSamples/FriendsManager/Prefabs/Selector/Editor/LightBeam.FriendsManager.Selector.Editor.asmdef.meta +7 -0
  4408. package/Samples/LightBeamSamples/FriendsManager/Prefabs/Selector/Editor/SelectorButtonBehaviourEditor.cs +27 -0
  4409. package/Samples/LightBeamSamples/FriendsManager/Prefabs/Selector/Editor/SelectorButtonBehaviourEditor.cs.meta +3 -0
  4410. package/Samples/LightBeamSamples/FriendsManager/Prefabs/Selector/Editor.meta +3 -0
  4411. package/Samples/LightBeamSamples/FriendsManager/Prefabs/Selector/SelectorButtonBehaviour.cs +13 -0
  4412. package/Samples/LightBeamSamples/FriendsManager/Prefabs/Selector/SelectorButtonBehaviour.cs.meta +11 -0
  4413. package/Samples/LightBeamSamples/FriendsManager/Prefabs/Selector.meta +3 -0
  4414. package/Samples/LightBeamSamples/FriendsManager/Prefabs/SelectorButton.prefab +361 -0
  4415. package/Samples/LightBeamSamples/FriendsManager/Prefabs/SelectorButton.prefab.meta +7 -0
  4416. package/Samples/LightBeamSamples/FriendsManager/Prefabs/SentInvitesDisplay/SentInviteDisplay.prefab +639 -0
  4417. package/Samples/LightBeamSamples/FriendsManager/Prefabs/SentInvitesDisplay/SentInviteDisplay.prefab.meta +7 -0
  4418. package/Samples/LightBeamSamples/FriendsManager/Prefabs/SentInvitesDisplay/SentInviteDisplayBehaviour.cs +25 -0
  4419. package/Samples/LightBeamSamples/FriendsManager/Prefabs/SentInvitesDisplay/SentInviteDisplayBehaviour.cs.meta +11 -0
  4420. package/Samples/LightBeamSamples/FriendsManager/Prefabs/SentInvitesDisplay.meta +3 -0
  4421. package/Samples/LightBeamSamples/FriendsManager/Prefabs.meta +3 -0
  4422. package/Samples/LightBeamSamples/FriendsManager/Sample_FriendsManager.unity +781 -0
  4423. package/Samples/LightBeamSamples/FriendsManager/Sample_FriendsManager.unity.meta +7 -0
  4424. package/Samples/LightBeamSamples/FriendsManager.meta +8 -0
  4425. package/Samples/LightBeamSamples/Inventory/InventoryConfig.asset +25 -0
  4426. package/Samples/LightBeamSamples/Inventory/InventoryConfig.asset.meta +8 -0
  4427. package/Samples/LightBeamSamples/Inventory/InventoryExampleConfig.cs +12 -0
  4428. package/Samples/LightBeamSamples/Inventory/InventoryExampleConfig.cs.meta +3 -0
  4429. package/Samples/LightBeamSamples/Inventory/InventoryManager.cs +32 -0
  4430. package/Samples/LightBeamSamples/Inventory/InventoryManager.cs.meta +3 -0
  4431. package/Samples/LightBeamSamples/Inventory/LightBeam.InventoryManager.asmdef +21 -0
  4432. package/Samples/LightBeamSamples/Inventory/LightBeam.InventoryManager.asmdef.meta +7 -0
  4433. package/Samples/LightBeamSamples/Inventory/Prefabs/CurrencyDisplay/CurrencyDisplay.prefab +582 -0
  4434. package/Samples/LightBeamSamples/Inventory/Prefabs/CurrencyDisplay/CurrencyDisplay.prefab.meta +7 -0
  4435. package/Samples/LightBeamSamples/Inventory/Prefabs/CurrencyDisplay/CurrencyDisplayBehaviour.cs +48 -0
  4436. package/Samples/LightBeamSamples/Inventory/Prefabs/CurrencyDisplay/CurrencyDisplayBehaviour.cs.meta +11 -0
  4437. package/Samples/LightBeamSamples/Inventory/Prefabs/CurrencyDisplay.meta +8 -0
  4438. package/Samples/LightBeamSamples/Inventory/Prefabs/CurrencyInfoPage/CurrencyInfoBehaviour.cs +70 -0
  4439. package/Samples/LightBeamSamples/Inventory/Prefabs/CurrencyInfoPage/CurrencyInfoBehaviour.cs.meta +11 -0
  4440. package/Samples/LightBeamSamples/Inventory/Prefabs/CurrencyInfoPage/CurrencyInfoDisplay.prefab +1480 -0
  4441. package/Samples/LightBeamSamples/Inventory/Prefabs/CurrencyInfoPage/CurrencyInfoDisplay.prefab.meta +7 -0
  4442. package/Samples/LightBeamSamples/Inventory/Prefabs/CurrencyInfoPage.meta +8 -0
  4443. package/Samples/LightBeamSamples/Inventory/Prefabs/HomePage/HomePage.cs +82 -0
  4444. package/Samples/LightBeamSamples/Inventory/Prefabs/HomePage/HomePage.cs.meta +11 -0
  4445. package/Samples/LightBeamSamples/Inventory/Prefabs/HomePage/HomePage.prefab +3001 -0
  4446. package/Samples/LightBeamSamples/Inventory/Prefabs/HomePage/HomePage.prefab.meta +7 -0
  4447. package/Samples/LightBeamSamples/Inventory/Prefabs/HomePage.meta +3 -0
  4448. package/Samples/LightBeamSamples/Inventory/Prefabs/ItemDisplay/ItemDisplay.prefab +582 -0
  4449. package/Samples/LightBeamSamples/Inventory/Prefabs/ItemDisplay/ItemDisplay.prefab.meta +7 -0
  4450. package/Samples/LightBeamSamples/Inventory/Prefabs/ItemDisplay/ItemDisplayBehaviour.cs +51 -0
  4451. package/Samples/LightBeamSamples/Inventory/Prefabs/ItemDisplay/ItemDisplayBehaviour.cs.meta +11 -0
  4452. package/Samples/LightBeamSamples/Inventory/Prefabs/ItemDisplay.meta +8 -0
  4453. package/Samples/LightBeamSamples/Inventory/Prefabs/ItemInfoPage/ItemInfoPage.cs +74 -0
  4454. package/Samples/LightBeamSamples/Inventory/Prefabs/ItemInfoPage/ItemInfoPage.cs.meta +11 -0
  4455. package/Samples/LightBeamSamples/Inventory/Prefabs/ItemInfoPage/ItemInfoPage.prefab +1752 -0
  4456. package/Samples/LightBeamSamples/Inventory/Prefabs/ItemInfoPage/ItemInfoPage.prefab.meta +7 -0
  4457. package/Samples/LightBeamSamples/Inventory/Prefabs/ItemInfoPage.meta +8 -0
  4458. package/Samples/LightBeamSamples/Inventory/Prefabs/PropertyDisplay/PropertyDisplay.prefab +383 -0
  4459. package/Samples/LightBeamSamples/Inventory/Prefabs/PropertyDisplay/PropertyDisplay.prefab.meta +7 -0
  4460. package/Samples/LightBeamSamples/Inventory/Prefabs/PropertyDisplay/PropertyDisplayBehaviour.cs +21 -0
  4461. package/Samples/LightBeamSamples/Inventory/Prefabs/PropertyDisplay/PropertyDisplayBehaviour.cs.meta +11 -0
  4462. package/Samples/LightBeamSamples/Inventory/Prefabs/PropertyDisplay.meta +8 -0
  4463. package/Samples/LightBeamSamples/Inventory/Prefabs.meta +3 -0
  4464. package/Samples/LightBeamSamples/Inventory/Sample_InventoryManager.unity +781 -0
  4465. package/Samples/LightBeamSamples/Inventory/Sample_InventoryManager.unity.meta +7 -0
  4466. package/Samples/LightBeamSamples/Inventory.meta +8 -0
  4467. package/Samples/LightBeamSamples/LobbyManager/LightBeam.LobbyManager.asmdef +20 -0
  4468. package/Samples/LightBeamSamples/LobbyManager/LightBeam.LobbyManager.asmdef.meta +7 -0
  4469. package/Samples/LightBeamSamples/LobbyManager/LobbyConfig.asset +30 -0
  4470. package/Samples/LightBeamSamples/LobbyManager/LobbyConfig.asset.meta +8 -0
  4471. package/Samples/LightBeamSamples/LobbyManager/LobbyExampleConfig.cs +14 -0
  4472. package/Samples/LightBeamSamples/LobbyManager/LobbyExampleConfig.cs.meta +3 -0
  4473. package/Samples/LightBeamSamples/LobbyManager/LobbyManager.cs +36 -0
  4474. package/Samples/LightBeamSamples/LobbyManager/LobbyManager.cs.meta +3 -0
  4475. package/Samples/LightBeamSamples/LobbyManager/Prefabs/CreateLobbyDisplay/CreateLobbyDisplay.prefab +2556 -0
  4476. package/Samples/LightBeamSamples/LobbyManager/Prefabs/CreateLobbyDisplay/CreateLobbyDisplay.prefab.meta +7 -0
  4477. package/Samples/LightBeamSamples/LobbyManager/Prefabs/CreateLobbyDisplay/CreateLobbyDisplayBehaviour.cs +54 -0
  4478. package/Samples/LightBeamSamples/LobbyManager/Prefabs/CreateLobbyDisplay/CreateLobbyDisplayBehaviour.cs.meta +11 -0
  4479. package/Samples/LightBeamSamples/LobbyManager/Prefabs/CreateLobbyDisplay.meta +8 -0
  4480. package/Samples/LightBeamSamples/LobbyManager/Prefabs/FindLobbyDisplay/FindLobbyDisplay.prefab +1061 -0
  4481. package/Samples/LightBeamSamples/LobbyManager/Prefabs/FindLobbyDisplay/FindLobbyDisplay.prefab.meta +7 -0
  4482. package/Samples/LightBeamSamples/LobbyManager/Prefabs/FindLobbyDisplay/FindLobbyDisplayBehaviour.cs +36 -0
  4483. package/Samples/LightBeamSamples/LobbyManager/Prefabs/FindLobbyDisplay/FindLobbyDisplayBehaviour.cs.meta +11 -0
  4484. package/Samples/LightBeamSamples/LobbyManager/Prefabs/FindLobbyDisplay.meta +8 -0
  4485. package/Samples/LightBeamSamples/LobbyManager/Prefabs/HomePage/HomePage.cs +71 -0
  4486. package/Samples/LightBeamSamples/LobbyManager/Prefabs/HomePage/HomePage.cs.meta +11 -0
  4487. package/Samples/LightBeamSamples/LobbyManager/Prefabs/HomePage/HomePage.prefab +428 -0
  4488. package/Samples/LightBeamSamples/LobbyManager/Prefabs/HomePage/HomePage.prefab.meta +7 -0
  4489. package/Samples/LightBeamSamples/LobbyManager/Prefabs/HomePage.meta +3 -0
  4490. package/Samples/LightBeamSamples/LobbyManager/Prefabs/JoinLobbyDisplay/JoinLobbyDisplay.prefab +2238 -0
  4491. package/Samples/LightBeamSamples/LobbyManager/Prefabs/JoinLobbyDisplay/JoinLobbyDisplay.prefab.meta +7 -0
  4492. package/Samples/LightBeamSamples/LobbyManager/Prefabs/JoinLobbyDisplay/JoinLobbyDisplayBehaviour.cs +75 -0
  4493. package/Samples/LightBeamSamples/LobbyManager/Prefabs/JoinLobbyDisplay/JoinLobbyDisplayBehaviour.cs.meta +11 -0
  4494. package/Samples/LightBeamSamples/LobbyManager/Prefabs/JoinLobbyDisplay.meta +8 -0
  4495. package/Samples/LightBeamSamples/LobbyManager/Prefabs/LobbyDetailsDisplay/LobbyDetailsDisplay.prefab +2609 -0
  4496. package/Samples/LightBeamSamples/LobbyManager/Prefabs/LobbyDetailsDisplay/LobbyDetailsDisplay.prefab.meta +7 -0
  4497. package/Samples/LightBeamSamples/LobbyManager/Prefabs/LobbyDetailsDisplay/LobbyDetailsDisplayBehaviour.cs +80 -0
  4498. package/Samples/LightBeamSamples/LobbyManager/Prefabs/LobbyDetailsDisplay/LobbyDetailsDisplayBehaviour.cs.meta +11 -0
  4499. package/Samples/LightBeamSamples/LobbyManager/Prefabs/LobbyDetailsDisplay.meta +8 -0
  4500. package/Samples/LightBeamSamples/LobbyManager/Prefabs/LobbyDisplay/LobbyDisplay.prefab +532 -0
  4501. package/Samples/LightBeamSamples/LobbyManager/Prefabs/LobbyDisplay/LobbyDisplay.prefab.meta +7 -0
  4502. package/Samples/LightBeamSamples/LobbyManager/Prefabs/LobbyDisplay/LobbyDisplayBehaviour.cs +27 -0
  4503. package/Samples/LightBeamSamples/LobbyManager/Prefabs/LobbyDisplay/LobbyDisplayBehaviour.cs.meta +11 -0
  4504. package/Samples/LightBeamSamples/LobbyManager/Prefabs/LobbyDisplay.meta +8 -0
  4505. package/Samples/LightBeamSamples/LobbyManager/Prefabs/PlayerDisplay/PlayerIdDisplay.prefab +292 -0
  4506. package/Samples/LightBeamSamples/LobbyManager/Prefabs/PlayerDisplay/PlayerIdDisplay.prefab.meta +7 -0
  4507. package/Samples/LightBeamSamples/LobbyManager/Prefabs/PlayerDisplay/PlayerIdDisplayBehaviour.cs +17 -0
  4508. package/Samples/LightBeamSamples/LobbyManager/Prefabs/PlayerDisplay/PlayerIdDisplayBehaviour.cs.meta +11 -0
  4509. package/Samples/LightBeamSamples/LobbyManager/Prefabs/PlayerDisplay.meta +8 -0
  4510. package/Samples/LightBeamSamples/LobbyManager/Prefabs/PlayerLobby/PlayerLobby.prefab +2038 -0
  4511. package/Samples/LightBeamSamples/LobbyManager/Prefabs/PlayerLobby/PlayerLobby.prefab.meta +7 -0
  4512. package/Samples/LightBeamSamples/LobbyManager/Prefabs/PlayerLobby/PlayerLobbyBehaviour.cs +112 -0
  4513. package/Samples/LightBeamSamples/LobbyManager/Prefabs/PlayerLobby/PlayerLobbyBehaviour.cs.meta +11 -0
  4514. package/Samples/LightBeamSamples/LobbyManager/Prefabs/PlayerLobby.meta +8 -0
  4515. package/Samples/LightBeamSamples/LobbyManager/Prefabs.meta +3 -0
  4516. package/Samples/LightBeamSamples/LobbyManager/Sample_LobbyManager.unity +781 -0
  4517. package/Samples/LightBeamSamples/LobbyManager/Sample_LobbyManager.unity.meta +7 -0
  4518. package/Samples/LightBeamSamples/LobbyManager.meta +8 -0
  4519. package/Samples/LightBeamSamples/LootBox/.idea/.idea.SampleSolution/.idea/.name +1 -0
  4520. package/Samples/LightBeamSamples/LootBox/.idea/.idea.SampleSolution/.idea/encodings.xml +4 -0
  4521. package/Samples/LightBeamSamples/LootBox/.idea/.idea.SampleSolution/.idea/indexLayout.xml +8 -0
  4522. package/Samples/LightBeamSamples/LootBox/.idea/.idea.SampleSolution/.idea/vcs.xml +6 -0
  4523. package/Samples/LightBeamSamples/LootBox/BeamableServices~/LootBoxService/.dockerignore +26 -0
  4524. package/Samples/LightBeamSamples/LootBox/BeamableServices~/LootBoxService/.env +2 -0
  4525. package/Samples/LightBeamSamples/LootBox/BeamableServices~/LootBoxService/BeamSourceGenConfig.json +1 -0
  4526. package/Samples/LightBeamSamples/LootBox/BeamableServices~/LootBoxService/Dockerfile +41 -0
  4527. package/Samples/LightBeamSamples/LootBox/BeamableServices~/LootBoxService/LootBoxService.cs +45 -0
  4528. package/Samples/LightBeamSamples/LootBox/BeamableServices~/LootBoxService/LootBoxService.csproj +28 -0
  4529. package/Samples/LightBeamSamples/LootBox/BeamableServices~/LootBoxService/Program.cs +20 -0
  4530. package/Samples/LightBeamSamples/LootBox/BeamableServices~/LootBoxService/federations.json +1 -0
  4531. package/Samples/LightBeamSamples/LootBox/Client/DummyScript.cs +18 -0
  4532. package/Samples/LightBeamSamples/LootBox/Client/DummyScript.cs.meta +11 -0
  4533. package/Samples/LightBeamSamples/LootBox/Client/LootBoxService.Client.asmdef +12 -0
  4534. package/Samples/LightBeamSamples/LootBox/Client/LootBoxService.Client.asmdef.meta +7 -0
  4535. package/Samples/LightBeamSamples/LootBox/Client/LootBoxServiceClient.cs +74 -0
  4536. package/Samples/LightBeamSamples/LootBox/Client/LootBoxServiceClient.cs.meta +11 -0
  4537. package/Samples/LightBeamSamples/LootBox/Client.meta +8 -0
  4538. package/Samples/LightBeamSamples/LootBox/LightBeam.LootBox.asmdef +23 -0
  4539. package/Samples/LightBeamSamples/LootBox/LightBeam.LootBox.asmdef.meta +7 -0
  4540. package/Samples/LightBeamSamples/LootBox/LootBoxExampleConfig.asset +16 -0
  4541. package/Samples/LightBeamSamples/LootBox/LootBoxExampleConfig.asset.meta +8 -0
  4542. package/Samples/LightBeamSamples/LootBox/LootBoxExampleConfig.cs +8 -0
  4543. package/Samples/LightBeamSamples/LootBox/LootBoxExampleConfig.cs.meta +3 -0
  4544. package/Samples/LightBeamSamples/LootBox/LootBoxManager.cs +30 -0
  4545. package/Samples/LightBeamSamples/LootBox/LootBoxManager.cs.meta +3 -0
  4546. package/Samples/LightBeamSamples/LootBox/Prefabs/LootBoxPage/LootBoxPage.cs +47 -0
  4547. package/Samples/LightBeamSamples/LootBox/Prefabs/LootBoxPage/LootBoxPage.cs.meta +3 -0
  4548. package/Samples/LightBeamSamples/LootBox/Prefabs/LootBoxPage/LootBoxPage.prefab +793 -0
  4549. package/Samples/LightBeamSamples/LootBox/Prefabs/LootBoxPage/LootBoxPage.prefab.meta +7 -0
  4550. package/Samples/LightBeamSamples/LootBox/Prefabs/LootBoxPage.meta +3 -0
  4551. package/Samples/LightBeamSamples/LootBox/Prefabs.meta +3 -0
  4552. package/Samples/LightBeamSamples/LootBox/Sample_LootBox.unity +781 -0
  4553. package/Samples/LightBeamSamples/LootBox/Sample_LootBox.unity.meta +7 -0
  4554. package/Samples/LightBeamSamples/LootBox/Shared/Lightbeam.Lootbox.SharedCode.asmdef +14 -0
  4555. package/Samples/LightBeamSamples/LootBox/Shared/Lightbeam.Lootbox.SharedCode.asmdef.meta +7 -0
  4556. package/Samples/LightBeamSamples/LootBox/Shared/LootboxConstants.cs +5 -0
  4557. package/Samples/LightBeamSamples/LootBox/Shared/LootboxConstants.cs.meta +11 -0
  4558. package/Samples/LightBeamSamples/LootBox/Shared.meta +8 -0
  4559. package/Samples/LightBeamSamples/LootBox.meta +8 -0
  4560. package/Samples/LightBeamSamples/SceneLoader/Beamable.LightBeam.Boot.asmdef +22 -0
  4561. package/Samples/LightBeamSamples/SceneLoader/Beamable.LightBeam.Boot.asmdef.meta +7 -0
  4562. package/Samples/LightBeamSamples/SceneLoader/Config/LightBeamSceneConfigObject.cs +85 -0
  4563. package/Samples/LightBeamSamples/SceneLoader/Config/LightBeamSceneConfigObject.cs.meta +3 -0
  4564. package/Samples/LightBeamSamples/SceneLoader/Config/LightBeamSceneConfigObject_Editor.cs +37 -0
  4565. package/Samples/LightBeamSamples/SceneLoader/Config/LightBeamSceneConfigObject_Editor.cs.meta +3 -0
  4566. package/Samples/LightBeamSamples/SceneLoader/Config.meta +3 -0
  4567. package/Samples/LightBeamSamples/SceneLoader/Editor/Beamable.LightBeam.Boot.Editor.asmdef +18 -0
  4568. package/Samples/LightBeamSamples/SceneLoader/Editor/Beamable.LightBeam.Boot.Editor.asmdef.meta +7 -0
  4569. package/Samples/LightBeamSamples/SceneLoader/Editor/LightBeamBuilds.cs +156 -0
  4570. package/Samples/LightBeamSamples/SceneLoader/Editor/LightBeamBuilds.cs.meta +11 -0
  4571. package/Samples/LightBeamSamples/SceneLoader/Editor.meta +3 -0
  4572. package/Samples/LightBeamSamples/SceneLoader/LightBeamBooter.cs +485 -0
  4573. package/Samples/LightBeamSamples/SceneLoader/LightBeamBooter.cs.meta +11 -0
  4574. package/Samples/LightBeamSamples/SceneLoader/LightBeam_Boot.unity +1584 -0
  4575. package/Samples/LightBeamSamples/SceneLoader/LightBeam_Boot.unity.meta +7 -0
  4576. package/Samples/LightBeamSamples/SceneLoader/Prefabs/SceneDisplay/SceneDisplay.prefab +661 -0
  4577. package/Samples/LightBeamSamples/SceneLoader/Prefabs/SceneDisplay/SceneDisplay.prefab.meta +7 -0
  4578. package/Samples/LightBeamSamples/SceneLoader/Prefabs/SceneDisplay/SceneDisplayBehaviour.cs +25 -0
  4579. package/Samples/LightBeamSamples/SceneLoader/Prefabs/SceneDisplay/SceneDisplayBehaviour.cs.meta +11 -0
  4580. package/Samples/LightBeamSamples/SceneLoader/Prefabs/SceneDisplay.meta +8 -0
  4581. package/Samples/LightBeamSamples/SceneLoader/Prefabs.meta +8 -0
  4582. package/Samples/LightBeamSamples/SceneLoader/Resources/SceneConfig.asset +171 -0
  4583. package/Samples/LightBeamSamples/SceneLoader/Resources/SceneConfig.asset.meta +8 -0
  4584. package/Samples/LightBeamSamples/SceneLoader/Resources/link.xml +3 -0
  4585. package/Samples/LightBeamSamples/SceneLoader/Resources/link.xml.meta +3 -0
  4586. package/Samples/LightBeamSamples/SceneLoader/Resources.meta +3 -0
  4587. package/Samples/LightBeamSamples/SceneLoader.meta +8 -0
  4588. package/Samples/LightBeamSamples.meta +3 -0
  4589. package/Samples/SampleProjectBase/Art/Textures/BeamableSDKReadmeImage.png +0 -0
  4590. package/Samples/SampleProjectBase/Art/Textures/BeamableSDKReadmeImage.png.meta +88 -0
  4591. package/Samples/SampleProjectBase/Art/Textures/ReadMeFileIcon.png +0 -0
  4592. package/Samples/SampleProjectBase/Art/Textures/ReadMeFileIcon.png.meta +88 -0
  4593. package/Samples/SampleProjectBase/Art/Textures.meta +8 -0
  4594. package/Samples/SampleProjectBase/Art.meta +8 -0
  4595. package/Samples/SampleProjectBase/Readme.asset +33 -0
  4596. package/Samples/SampleProjectBase/Readme.asset.meta +8 -0
  4597. package/Samples/SampleProjectBase/Scripts/Editor/Beamable/Samples/SampleProjectBase/AutoOpenReadme.cs +46 -0
  4598. package/Samples/SampleProjectBase/Scripts/Editor/Beamable/Samples/SampleProjectBase/AutoOpenReadme.cs.meta +11 -0
  4599. package/Samples/SampleProjectBase/Scripts/Editor/Beamable/Samples/SampleProjectBase/BeamableReadmeEditor.cs +158 -0
  4600. package/Samples/SampleProjectBase/Scripts/Editor/Beamable/Samples/SampleProjectBase/BeamableReadmeEditor.cs.meta +12 -0
  4601. package/Samples/SampleProjectBase/Scripts/Editor/Beamable/Samples/SampleProjectBase.meta +8 -0
  4602. package/Samples/SampleProjectBase/Scripts/Editor/Beamable/Samples.meta +8 -0
  4603. package/Samples/SampleProjectBase/Scripts/Editor/Beamable.meta +8 -0
  4604. package/Samples/SampleProjectBase/Scripts/Editor/Unity.Beamable.Samples.Editor.asmdef +19 -0
  4605. package/Samples/SampleProjectBase/Scripts/Editor/Unity.Beamable.Samples.Editor.asmdef.meta +7 -0
  4606. package/Samples/SampleProjectBase/Scripts/Editor.meta +9 -0
  4607. package/Samples/SampleProjectBase/Scripts/Runtime/Beamable/Samples/SampleProjectBase/Readme.cs +33 -0
  4608. package/Samples/SampleProjectBase/Scripts/Runtime/Beamable/Samples/SampleProjectBase/Readme.cs.meta +12 -0
  4609. package/Samples/SampleProjectBase/Scripts/Runtime/Beamable/Samples/SampleProjectBase.meta +8 -0
  4610. package/Samples/SampleProjectBase/Scripts/Runtime/Beamable/Samples.meta +8 -0
  4611. package/Samples/SampleProjectBase/Scripts/Runtime/Beamable.meta +8 -0
  4612. package/Samples/SampleProjectBase/Scripts/Runtime/Unity.Beamable.Samples.Runtime.asmdef +16 -0
  4613. package/Samples/SampleProjectBase/Scripts/Runtime/Unity.Beamable.Samples.Runtime.asmdef.meta +7 -0
  4614. package/Samples/SampleProjectBase/Scripts/Runtime.meta +8 -0
  4615. package/Samples/SampleProjectBase/Scripts.meta +9 -0
  4616. package/Samples/SampleProjectBase.meta +8 -0
  4617. package/Samples.meta +8 -0
  4618. package/Template/AutoGenMicroserviceClientSample.cs +70 -0
  4619. package/Template/AutoGenMicroserviceClientSample.cs.meta +3 -0
  4620. package/Template/SharedSample.cs +19 -0
  4621. package/Template/SharedSample.cs.meta +3 -0
  4622. package/Template/Unity.Beamable.Server.Templates.asmdef +20 -0
  4623. package/Template/Unity.Beamable.Server.Templates.asmdef.meta +3 -0
  4624. package/Template.meta +8 -0
  4625. package/Tests/Editor/AliasHelperTests.cs +64 -0
  4626. package/Tests/Editor/AliasHelperTests.cs.meta +11 -0
  4627. package/Tests/Editor/CLI/DataTransferTests.cs +65 -0
  4628. package/Tests/Editor/CLI/DataTransferTests.cs.meta +3 -0
  4629. package/Tests/Editor/CLI.meta +3 -0
  4630. package/Tests/Editor/Common/BeamUtil/SanitizeStringForPathTests.cs +18 -0
  4631. package/Tests/Editor/Common/BeamUtil/SanitizeStringForPathTests.cs.meta +3 -0
  4632. package/Tests/Editor/Common/BeamUtil.meta +3 -0
  4633. package/Tests/Editor/Common/TrieTests.cs +253 -0
  4634. package/Tests/Editor/Common/TrieTests.cs.meta +3 -0
  4635. package/Tests/Editor/Common/TryInvokeCallbackTests.cs +93 -0
  4636. package/Tests/Editor/Common/TryInvokeCallbackTests.cs.meta +3 -0
  4637. package/Tests/Editor/Common.meta +3 -0
  4638. package/Tests/Editor/ContentObjectTests.cs +65 -0
  4639. package/Tests/Editor/ContentObjectTests.cs.meta +11 -0
  4640. package/Tests/Editor/EditorDisruptorEngine/Content/ContentObjectFieldTests.cs +81 -0
  4641. package/Tests/Editor/EditorDisruptorEngine/Content/ContentObjectFieldTests.cs.meta +3 -0
  4642. package/Tests/Editor/EditorDisruptorEngine/Content/ContentObjectLinkRefTests.cs +81 -0
  4643. package/Tests/Editor/EditorDisruptorEngine/Content/ContentObjectLinkRefTests.cs.meta +3 -0
  4644. package/Tests/Editor/EditorDisruptorEngine/Content/ExampleContent.cs +10 -0
  4645. package/Tests/Editor/EditorDisruptorEngine/Content/ExampleContent.cs.meta +11 -0
  4646. package/Tests/Editor/EditorDisruptorEngine/Content/Schedules/CronTests.cs +189 -0
  4647. package/Tests/Editor/EditorDisruptorEngine/Content/Schedules/CronTests.cs.meta +3 -0
  4648. package/Tests/Editor/EditorDisruptorEngine/Content/Schedules.meta +3 -0
  4649. package/Tests/Editor/EditorDisruptorEngine/Content.meta +8 -0
  4650. package/Tests/Editor/EditorDisruptorEngine.meta +8 -0
  4651. package/Tests/Editor/EditorTest.cs +51 -0
  4652. package/Tests/Editor/EditorTest.cs.meta +3 -0
  4653. package/Tests/Editor/JsonPerfTesting.cs +117 -0
  4654. package/Tests/Editor/JsonPerfTesting.cs.meta +3 -0
  4655. package/Tests/Editor/JsonPerfTesting_PayloadSize.cs +96 -0
  4656. package/Tests/Editor/JsonPerfTesting_PayloadSize.cs.meta +3 -0
  4657. package/Tests/Editor/JsonTestHelp.cs +82 -0
  4658. package/Tests/Editor/JsonTestHelp.cs.meta +3 -0
  4659. package/Tests/Editor/MockLogProvider.cs +47 -0
  4660. package/Tests/Editor/MockLogProvider.cs.meta +11 -0
  4661. package/Tests/Editor/PreserveAttributeTests.cs +26 -0
  4662. package/Tests/Editor/PreserveAttributeTests.cs.meta +11 -0
  4663. package/Tests/Editor/PromiseTests/ErrorTests.cs +582 -0
  4664. package/Tests/Editor/PromiseTests/ErrorTests.cs.meta +11 -0
  4665. package/Tests/Editor/PromiseTests.meta +8 -0
  4666. package/Tests/Editor/SmallerJSON/InfinityTests.cs +61 -0
  4667. package/Tests/Editor/SmallerJSON/InfinityTests.cs.meta +3 -0
  4668. package/Tests/Editor/SmallerJSON/JsonPathTests.cs +107 -0
  4669. package/Tests/Editor/SmallerJSON/JsonPathTests.cs.meta +11 -0
  4670. package/Tests/Editor/SmallerJSON/JsonSerializeTest.cs +135 -0
  4671. package/Tests/Editor/SmallerJSON/JsonSerializeTest.cs.meta +3 -0
  4672. package/Tests/Editor/SmallerJSON.meta +8 -0
  4673. package/Tests/Editor/Unity.Beamable.Editor.Tests.asmdef +32 -0
  4674. package/Tests/Editor/Unity.Beamable.Editor.Tests.asmdef.meta +7 -0
  4675. package/Tests/Editor.meta +8 -0
  4676. package/Tests/Runtime/Beamable/BeamContextInitTests.cs +103 -0
  4677. package/Tests/Runtime/Beamable/BeamContextInitTests.cs.meta +11 -0
  4678. package/Tests/Runtime/Beamable/BeamContextTest.cs +72 -0
  4679. package/Tests/Runtime/Beamable/BeamContextTest.cs.meta +3 -0
  4680. package/Tests/Runtime/Beamable/BeamableTest.cs +46 -0
  4681. package/Tests/Runtime/Beamable/BeamableTest.cs.meta +11 -0
  4682. package/Tests/Runtime/Beamable/Content/ClientManifest/ParseCSVTests.cs +102 -0
  4683. package/Tests/Runtime/Beamable/Content/ClientManifest/ParseCSVTests.cs.meta +11 -0
  4684. package/Tests/Runtime/Beamable/Content/ClientManifest.meta +8 -0
  4685. package/Tests/Runtime/Beamable/Content/ContentRegistry/GetTypeFromIdTests.cs +164 -0
  4686. package/Tests/Runtime/Beamable/Content/ContentRegistry/GetTypeFromIdTests.cs.meta +11 -0
  4687. package/Tests/Runtime/Beamable/Content/ContentRegistry.meta +8 -0
  4688. package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/DeserializeEmptyFields.cs +114 -0
  4689. package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/DeserializeEmptyFields.cs.meta +3 -0
  4690. package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/DeserializeTests.cs +1343 -0
  4691. package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/DeserializeTests.cs.meta +11 -0
  4692. package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/EscapedStringTests.cs +119 -0
  4693. package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/EscapedStringTests.cs.meta +11 -0
  4694. package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/GetNullStringForTypeTests.cs +104 -0
  4695. package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/GetNullStringForTypeTests.cs.meta +3 -0
  4696. package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/SerializeFieldSubclassSerializeTests.cs +157 -0
  4697. package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/SerializeFieldSubclassSerializeTests.cs.meta +11 -0
  4698. package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/SerializeTests.cs +1066 -0
  4699. package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer/SerializeTests.cs.meta +11 -0
  4700. package/Tests/Runtime/Beamable/Content/Serialization/ClientContentSerializer.meta +8 -0
  4701. package/Tests/Runtime/Beamable/Content/Serialization/TestContentRef.cs +66 -0
  4702. package/Tests/Runtime/Beamable/Content/Serialization/TestContentRef.cs.meta +11 -0
  4703. package/Tests/Runtime/Beamable/Content/Serialization/VipContentSerialization/VipContentSerializationTests.cs +34 -0
  4704. package/Tests/Runtime/Beamable/Content/Serialization/VipContentSerialization/VipContentSerializationTests.cs.meta +11 -0
  4705. package/Tests/Runtime/Beamable/Content/Serialization/VipContentSerialization.meta +8 -0
  4706. package/Tests/Runtime/Beamable/Content/Serialization.meta +8 -0
  4707. package/Tests/Runtime/Beamable/Content.meta +8 -0
  4708. package/Tests/Runtime/Beamable/DebouncerTests.cs +110 -0
  4709. package/Tests/Runtime/Beamable/DebouncerTests.cs.meta +3 -0
  4710. package/Tests/Runtime/Beamable/Dependencies/ScopingTests.cs +235 -0
  4711. package/Tests/Runtime/Beamable/Dependencies/ScopingTests.cs.meta +3 -0
  4712. package/Tests/Runtime/Beamable/Dependencies.meta +3 -0
  4713. package/Tests/Runtime/Beamable/Environment/PackageVersionTests/FromSemanticVersionStringTests.cs +161 -0
  4714. package/Tests/Runtime/Beamable/Environment/PackageVersionTests/FromSemanticVersionStringTests.cs.meta +3 -0
  4715. package/Tests/Runtime/Beamable/Environment/PackageVersionTests/ImplicitConversionTest.cs +24 -0
  4716. package/Tests/Runtime/Beamable/Environment/PackageVersionTests/ImplicitConversionTest.cs.meta +3 -0
  4717. package/Tests/Runtime/Beamable/Environment/PackageVersionTests/RangeOperatorTests.cs +209 -0
  4718. package/Tests/Runtime/Beamable/Environment/PackageVersionTests/RangeOperatorTests.cs.meta +3 -0
  4719. package/Tests/Runtime/Beamable/Environment/PackageVersionTests/ToStringTests.cs +64 -0
  4720. package/Tests/Runtime/Beamable/Environment/PackageVersionTests/ToStringTests.cs.meta +3 -0
  4721. package/Tests/Runtime/Beamable/Environment/PackageVersionTests.meta +3 -0
  4722. package/Tests/Runtime/Beamable/Environment.meta +3 -0
  4723. package/Tests/Runtime/Beamable/MockAuthService.cs +218 -0
  4724. package/Tests/Runtime/Beamable/MockAuthService.cs.meta +11 -0
  4725. package/Tests/Runtime/Beamable/MockBeamContext.cs +171 -0
  4726. package/Tests/Runtime/Beamable/MockBeamContext.cs.meta +3 -0
  4727. package/Tests/Runtime/Beamable/MockBeamableApi.cs +122 -0
  4728. package/Tests/Runtime/Beamable/MockBeamableApi.cs.meta +11 -0
  4729. package/Tests/Runtime/Beamable/MockConfigurationHelper.cs +19 -0
  4730. package/Tests/Runtime/Beamable/MockConfigurationHelper.cs.meta +11 -0
  4731. package/Tests/Runtime/Beamable/MockFileAccessor.cs +19 -0
  4732. package/Tests/Runtime/Beamable/MockFileAccessor.cs.meta +3 -0
  4733. package/Tests/Runtime/Beamable/Modules/AccountManagement/AccountManagementSignalsTests/AcceptAccountSwitchTests.cs +95 -0
  4734. package/Tests/Runtime/Beamable/Modules/AccountManagement/AccountManagementSignalsTests/AcceptAccountSwitchTests.cs.meta +11 -0
  4735. package/Tests/Runtime/Beamable/Modules/AccountManagement/AccountManagementSignalsTests/CheckSignedInUserTests.cs +134 -0
  4736. package/Tests/Runtime/Beamable/Modules/AccountManagement/AccountManagementSignalsTests/CheckSignedInUserTests.cs.meta +11 -0
  4737. package/Tests/Runtime/Beamable/Modules/AccountManagement/AccountManagementSignalsTests/LoginTests.cs +108 -0
  4738. package/Tests/Runtime/Beamable/Modules/AccountManagement/AccountManagementSignalsTests/LoginTests.cs.meta +11 -0
  4739. package/Tests/Runtime/Beamable/Modules/AccountManagement/AccountManagementSignalsTests/TestHelperExtensions.cs +38 -0
  4740. package/Tests/Runtime/Beamable/Modules/AccountManagement/AccountManagementSignalsTests/TestHelperExtensions.cs.meta +11 -0
  4741. package/Tests/Runtime/Beamable/Modules/AccountManagement/AccountManagementSignalsTests/UpdateLoginEmailTests.cs +81 -0
  4742. package/Tests/Runtime/Beamable/Modules/AccountManagement/AccountManagementSignalsTests/UpdateLoginEmailTests.cs.meta +11 -0
  4743. package/Tests/Runtime/Beamable/Modules/AccountManagement/AccountManagementSignalsTests.meta +8 -0
  4744. package/Tests/Runtime/Beamable/Modules/AccountManagement.meta +8 -0
  4745. package/Tests/Runtime/Beamable/Modules/Leaderboards/IncrementTests.cs +88 -0
  4746. package/Tests/Runtime/Beamable/Modules/Leaderboards/IncrementTests.cs.meta +3 -0
  4747. package/Tests/Runtime/Beamable/Modules/Leaderboards/LeaderboardViewSerializeTests.cs +109 -0
  4748. package/Tests/Runtime/Beamable/Modules/Leaderboards/LeaderboardViewSerializeTests.cs.meta +3 -0
  4749. package/Tests/Runtime/Beamable/Modules/Leaderboards.meta +3 -0
  4750. package/Tests/Runtime/Beamable/Modules/Shop/ListingContentTests/ValidateListingTests.cs +66 -0
  4751. package/Tests/Runtime/Beamable/Modules/Shop/ListingContentTests/ValidateListingTests.cs.meta +11 -0
  4752. package/Tests/Runtime/Beamable/Modules/Shop/ListingContentTests.meta +8 -0
  4753. package/Tests/Runtime/Beamable/Modules/Shop.meta +8 -0
  4754. package/Tests/Runtime/Beamable/Modules/Stats/StatObjectTests/WriteTests.cs +42 -0
  4755. package/Tests/Runtime/Beamable/Modules/Stats/StatObjectTests/WriteTests.cs.meta +11 -0
  4756. package/Tests/Runtime/Beamable/Modules/Stats/StatObjectTests.meta +8 -0
  4757. package/Tests/Runtime/Beamable/Modules/Stats.meta +8 -0
  4758. package/Tests/Runtime/Beamable/Modules/Tournaments/TournamentScoreUtilTests/GetShortScoreTests.cs +329 -0
  4759. package/Tests/Runtime/Beamable/Modules/Tournaments/TournamentScoreUtilTests/GetShortScoreTests.cs.meta +11 -0
  4760. package/Tests/Runtime/Beamable/Modules/Tournaments/TournamentScoreUtilTests.meta +8 -0
  4761. package/Tests/Runtime/Beamable/Modules/Tournaments.meta +8 -0
  4762. package/Tests/Runtime/Beamable/Modules.meta +8 -0
  4763. package/Tests/Runtime/Beamable/Platform/AccessTokenStorageTests.cs +154 -0
  4764. package/Tests/Runtime/Beamable/Platform/AccessTokenStorageTests.cs.meta +11 -0
  4765. package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/AuthServiceTestBase.cs +39 -0
  4766. package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/AuthServiceTestBase.cs.meta +11 -0
  4767. package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/CustomDeviceIdTests.cs +51 -0
  4768. package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/CustomDeviceIdTests.cs.meta +11 -0
  4769. package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/GetUserTests.cs +33 -0
  4770. package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/GetUserTests.cs.meta +11 -0
  4771. package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/IsEmailAvailableTests.cs +58 -0
  4772. package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/IsEmailAvailableTests.cs.meta +11 -0
  4773. package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/LoginTests.cs +37 -0
  4774. package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/LoginTests.cs.meta +11 -0
  4775. package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/RemoveDeviceIdTests.cs +69 -0
  4776. package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests/RemoveDeviceIdTests.cs.meta +3 -0
  4777. package/Tests/Runtime/Beamable/Platform/Auth/AuthServiceTests.meta +8 -0
  4778. package/Tests/Runtime/Beamable/Platform/Auth.meta +8 -0
  4779. package/Tests/Runtime/Beamable/Platform/Connectivity/MockConnectivityService.cs +45 -0
  4780. package/Tests/Runtime/Beamable/Platform/Connectivity/MockConnectivityService.cs.meta +11 -0
  4781. package/Tests/Runtime/Beamable/Platform/Connectivity.meta +8 -0
  4782. package/Tests/Runtime/Beamable/Platform/Content/MockContentService.cs +140 -0
  4783. package/Tests/Runtime/Beamable/Platform/Content/MockContentService.cs.meta +11 -0
  4784. package/Tests/Runtime/Beamable/Platform/Content.meta +8 -0
  4785. package/Tests/Runtime/Beamable/Platform/Inventory/InventoryResponseTests/MergeViewTests.cs +245 -0
  4786. package/Tests/Runtime/Beamable/Platform/Inventory/InventoryResponseTests/MergeViewTests.cs.meta +11 -0
  4787. package/Tests/Runtime/Beamable/Platform/Inventory/InventoryResponseTests.meta +8 -0
  4788. package/Tests/Runtime/Beamable/Platform/Inventory/InventoryServiceTests/GetItemTests.cs +225 -0
  4789. package/Tests/Runtime/Beamable/Platform/Inventory/InventoryServiceTests/GetItemTests.cs.meta +11 -0
  4790. package/Tests/Runtime/Beamable/Platform/Inventory/InventoryServiceTests/InventoryServiceTestBase.cs +52 -0
  4791. package/Tests/Runtime/Beamable/Platform/Inventory/InventoryServiceTests/InventoryServiceTestBase.cs.meta +11 -0
  4792. package/Tests/Runtime/Beamable/Platform/Inventory/InventoryServiceTests/UpdateTests.cs +73 -0
  4793. package/Tests/Runtime/Beamable/Platform/Inventory/InventoryServiceTests/UpdateTests.cs.meta +11 -0
  4794. package/Tests/Runtime/Beamable/Platform/Inventory/InventoryServiceTests.meta +8 -0
  4795. package/Tests/Runtime/Beamable/Platform/Inventory/InventoryTestItem.cs +26 -0
  4796. package/Tests/Runtime/Beamable/Platform/Inventory/InventoryTestItem.cs.meta +11 -0
  4797. package/Tests/Runtime/Beamable/Platform/Inventory/InventoryUpdateBuilderTests/AddItemTests.cs +24 -0
  4798. package/Tests/Runtime/Beamable/Platform/Inventory/InventoryUpdateBuilderTests/AddItemTests.cs.meta +11 -0
  4799. package/Tests/Runtime/Beamable/Platform/Inventory/InventoryUpdateBuilderTests/SerializationTests.cs +227 -0
  4800. package/Tests/Runtime/Beamable/Platform/Inventory/InventoryUpdateBuilderTests/SerializationTests.cs.meta +3 -0
  4801. package/Tests/Runtime/Beamable/Platform/Inventory/InventoryUpdateBuilderTests/UnitySerializationTests.cs +215 -0
  4802. package/Tests/Runtime/Beamable/Platform/Inventory/InventoryUpdateBuilderTests/UnitySerializationTests.cs.meta +3 -0
  4803. package/Tests/Runtime/Beamable/Platform/Inventory/InventoryUpdateBuilderTests.meta +8 -0
  4804. package/Tests/Runtime/Beamable/Platform/Inventory.meta +8 -0
  4805. package/Tests/Runtime/Beamable/Platform/Mail/MailTests.cs +67 -0
  4806. package/Tests/Runtime/Beamable/Platform/Mail/MailTests.cs.meta +3 -0
  4807. package/Tests/Runtime/Beamable/Platform/Mail.meta +3 -0
  4808. package/Tests/Runtime/Beamable/Platform/MockConnectivityChecker.cs +24 -0
  4809. package/Tests/Runtime/Beamable/Platform/MockConnectivityChecker.cs.meta +3 -0
  4810. package/Tests/Runtime/Beamable/Platform/MockPlatformAPI.cs +398 -0
  4811. package/Tests/Runtime/Beamable/Platform/MockPlatformAPI.cs.meta +11 -0
  4812. package/Tests/Runtime/Beamable/Platform/MockPlatformRequester.cs +78 -0
  4813. package/Tests/Runtime/Beamable/Platform/MockPlatformRequester.cs.meta +11 -0
  4814. package/Tests/Runtime/Beamable/Platform/MockPlatformService.cs +47 -0
  4815. package/Tests/Runtime/Beamable/Platform/MockPlatformService.cs.meta +11 -0
  4816. package/Tests/Runtime/Beamable/Platform/MockRequesterExtensions.cs +13 -0
  4817. package/Tests/Runtime/Beamable/Platform/MockRequesterExtensions.cs.meta +3 -0
  4818. package/Tests/Runtime/Beamable/Platform/TestUtil.cs +59 -0
  4819. package/Tests/Runtime/Beamable/Platform/TestUtil.cs.meta +11 -0
  4820. package/Tests/Runtime/Beamable/Platform.meta +8 -0
  4821. package/Tests/Runtime/Beamable/Player/Accounts/ExternalIdentityQueryArgsTests.cs +132 -0
  4822. package/Tests/Runtime/Beamable/Player/Accounts/ExternalIdentityQueryArgsTests.cs.meta +3 -0
  4823. package/Tests/Runtime/Beamable/Player/Accounts.meta +3 -0
  4824. package/Tests/Runtime/Beamable/Player/Announcements/AnnouncementGiftSerialization.cs +117 -0
  4825. package/Tests/Runtime/Beamable/Player/Announcements/AnnouncementGiftSerialization.cs.meta +3 -0
  4826. package/Tests/Runtime/Beamable/Player/Announcements/MockAnnouncementsApi.cs +45 -0
  4827. package/Tests/Runtime/Beamable/Player/Announcements/MockAnnouncementsApi.cs.meta +3 -0
  4828. package/Tests/Runtime/Beamable/Player/Announcements/MockNotificationService.cs +70 -0
  4829. package/Tests/Runtime/Beamable/Player/Announcements/MockNotificationService.cs.meta +3 -0
  4830. package/Tests/Runtime/Beamable/Player/Announcements.meta +3 -0
  4831. package/Tests/Runtime/Beamable/Player/Inventory/GetItemTests.cs +485 -0
  4832. package/Tests/Runtime/Beamable/Player/Inventory/GetItemTests.cs.meta +3 -0
  4833. package/Tests/Runtime/Beamable/Player/Inventory/InventoryReflectionUtility.cs +0 -0
  4834. package/Tests/Runtime/Beamable/Player/Inventory/InventoryReflectionUtility.cs.meta +3 -0
  4835. package/Tests/Runtime/Beamable/Player/Inventory/MockInventoryApi.cs +77 -0
  4836. package/Tests/Runtime/Beamable/Player/Inventory/MockInventoryApi.cs.meta +3 -0
  4837. package/Tests/Runtime/Beamable/Player/Inventory.meta +3 -0
  4838. package/Tests/Runtime/Beamable/Player/Leaderboards/ResortTests.cs +236 -0
  4839. package/Tests/Runtime/Beamable/Player/Leaderboards/ResortTests.cs.meta +3 -0
  4840. package/Tests/Runtime/Beamable/Player/Leaderboards.meta +3 -0
  4841. package/Tests/Runtime/Beamable/Player.meta +3 -0
  4842. package/Tests/Runtime/Beamable/Pooling/StringBuilderPoolTests/SpawnTests.cs +55 -0
  4843. package/Tests/Runtime/Beamable/Pooling/StringBuilderPoolTests/SpawnTests.cs.meta +11 -0
  4844. package/Tests/Runtime/Beamable/Pooling/StringBuilderPoolTests.meta +8 -0
  4845. package/Tests/Runtime/Beamable/Pooling.meta +8 -0
  4846. package/Tests/Runtime/Beamable/Promises/PromisePlayModeTests.cs +145 -0
  4847. package/Tests/Runtime/Beamable/Promises/PromisePlayModeTests.cs.meta +11 -0
  4848. package/Tests/Runtime/Beamable/Promises/SequenceTests.cs +45 -0
  4849. package/Tests/Runtime/Beamable/Promises/SequenceTests.cs.meta +3 -0
  4850. package/Tests/Runtime/Beamable/Promises.meta +8 -0
  4851. package/Tests/Runtime/Beamable/QueryBuilder/QueryBuilderTests.cs +94 -0
  4852. package/Tests/Runtime/Beamable/QueryBuilder/QueryBuilderTests.cs.meta +3 -0
  4853. package/Tests/Runtime/Beamable/QueryBuilder.meta +3 -0
  4854. package/Tests/Runtime/Beamable.meta +8 -0
  4855. package/Tests/Runtime/Server/Runtime/MicroserviceClient/RequestTests.cs +374 -0
  4856. package/Tests/Runtime/Server/Runtime/MicroserviceClient/RequestTests.cs.meta +3 -0
  4857. package/Tests/Runtime/Server/Runtime/MicroserviceClient/TestClient.cs +78 -0
  4858. package/Tests/Runtime/Server/Runtime/MicroserviceClient/TestClient.cs.meta +11 -0
  4859. package/Tests/Runtime/Server/Runtime/MicroserviceClient.meta +8 -0
  4860. package/Tests/Runtime/Server/Runtime/TestRegistrations.cs +22 -0
  4861. package/Tests/Runtime/Server/Runtime/TestRegistrations.cs.meta +3 -0
  4862. package/Tests/Runtime/Server/Runtime/Unity.Beamable.Server.Runtime.Tests.asmdef +26 -0
  4863. package/Tests/Runtime/Server/Runtime/Unity.Beamable.Server.Runtime.Tests.asmdef.meta +7 -0
  4864. package/Tests/Runtime/Server/Runtime.meta +8 -0
  4865. package/Tests/Runtime/Server.meta +3 -0
  4866. package/Tests/Runtime/Unity.Beamable.Tests.asmdef +25 -0
  4867. package/Tests/Runtime/Unity.Beamable.Tests.asmdef.meta +7 -0
  4868. package/Tests/Runtime.meta +8 -0
  4869. package/Tests.meta +8 -0
  4870. package/package.json +86 -0
  4871. package/package.json.meta +7 -0
@@ -0,0 +1,2881 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!1 &173142051
4
+ GameObject:
5
+ m_ObjectHideFlags: 0
6
+ m_CorrespondingSourceObject: {fileID: 0}
7
+ m_PrefabInstance: {fileID: 0}
8
+ m_PrefabAsset: {fileID: 0}
9
+ serializedVersion: 6
10
+ m_Component:
11
+ - component: {fileID: 173142052}
12
+ - component: {fileID: 173142055}
13
+ - component: {fileID: 173142054}
14
+ - component: {fileID: 173142053}
15
+ m_Layer: 5
16
+ m_Name: WindowSpace
17
+ m_TagString: Untagged
18
+ m_Icon: {fileID: 0}
19
+ m_NavMeshLayer: 0
20
+ m_StaticEditorFlags: 0
21
+ m_IsActive: 1
22
+ --- !u!224 &173142052
23
+ RectTransform:
24
+ m_ObjectHideFlags: 0
25
+ m_CorrespondingSourceObject: {fileID: 0}
26
+ m_PrefabInstance: {fileID: 0}
27
+ m_PrefabAsset: {fileID: 0}
28
+ m_GameObject: {fileID: 173142051}
29
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
30
+ m_LocalPosition: {x: 0, y: 0, z: 0}
31
+ m_LocalScale: {x: 1, y: 1, z: 1}
32
+ m_Children:
33
+ - {fileID: 744986794}
34
+ - {fileID: 390508661}
35
+ m_Father: {fileID: 205848543}
36
+ m_RootOrder: 0
37
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
38
+ m_AnchorMin: {x: 0, y: 0}
39
+ m_AnchorMax: {x: 1, y: 1}
40
+ m_AnchoredPosition: {x: 0, y: 0}
41
+ m_SizeDelta: {x: 0, y: 0}
42
+ m_Pivot: {x: 0.5, y: 0.5}
43
+ --- !u!114 &173142055
44
+ MonoBehaviour:
45
+ m_ObjectHideFlags: 0
46
+ m_CorrespondingSourceObject: {fileID: 0}
47
+ m_PrefabInstance: {fileID: 0}
48
+ m_PrefabAsset: {fileID: 0}
49
+ m_GameObject: {fileID: 173142051}
50
+ m_Enabled: 1
51
+ m_EditorHideFlags: 0
52
+ m_Script: {fileID: 1297475563, guid: f70555f144d8491a825f0804e09c671c, type: 3}
53
+ m_Name:
54
+ m_EditorClassIdentifier:
55
+ m_Padding:
56
+ m_Left: 0
57
+ m_Right: 0
58
+ m_Top: 0
59
+ m_Bottom: 0
60
+ m_ChildAlignment: 0
61
+ m_Spacing: 0
62
+ m_ChildForceExpandWidth: 1
63
+ m_ChildForceExpandHeight: 0
64
+ m_ChildControlWidth: 1
65
+ m_ChildControlHeight: 1
66
+ --- !u!114 &173142054
67
+ MonoBehaviour:
68
+ m_ObjectHideFlags: 0
69
+ m_CorrespondingSourceObject: {fileID: 0}
70
+ m_PrefabInstance: {fileID: 0}
71
+ m_PrefabAsset: {fileID: 0}
72
+ m_GameObject: {fileID: 173142051}
73
+ m_Enabled: 1
74
+ m_EditorHideFlags: 0
75
+ m_Script: {fileID: 11500000, guid: 731d0cea6d89742ffb51155c213fde02, type: 3}
76
+ m_Name:
77
+ m_EditorClassIdentifier:
78
+ StyledImages:
79
+ Components: []
80
+ ColorBinding:
81
+ Name:
82
+ ImageBinding:
83
+ Name:
84
+ StyledTexts:
85
+ Components: []
86
+ TextBinding:
87
+ Name:
88
+ ColorBinding:
89
+ Name:
90
+ StyledGradients:
91
+ Components: []
92
+ GradientBinding:
93
+ Name:
94
+ StyledLayouts:
95
+ Components: []
96
+ LayoutBinding:
97
+ Name:
98
+ StyledSelectables:
99
+ Components: []
100
+ SelectableBinding:
101
+ Name:
102
+ StyledButtons:
103
+ Components: []
104
+ Button:
105
+ Name:
106
+ StyledTransforms:
107
+ Components: []
108
+ Transform:
109
+ Name:
110
+ StyledWindow:
111
+ Components:
112
+ - {fileID: 173142053}
113
+ Window:
114
+ Name: fullscreen
115
+ StyledSounds:
116
+ Components: []
117
+ Sound:
118
+ Name:
119
+ StyledStrings:
120
+ Components: []
121
+ Binding:
122
+ Name:
123
+ --- !u!114 &173142053
124
+ MonoBehaviour:
125
+ m_ObjectHideFlags: 0
126
+ m_CorrespondingSourceObject: {fileID: 0}
127
+ m_PrefabInstance: {fileID: 0}
128
+ m_PrefabAsset: {fileID: 0}
129
+ m_GameObject: {fileID: 173142051}
130
+ m_Enabled: 1
131
+ m_EditorHideFlags: 0
132
+ m_Script: {fileID: 11500000, guid: e4bc78e40697d4df19571d36477ba8ec, type: 3}
133
+ m_Name:
134
+ m_EditorClassIdentifier:
135
+ HeaderImage: {fileID: 1822022080}
136
+ HeaderGradient: {fileID: 1822022079}
137
+ HeaderElement: {fileID: 744986795}
138
+ WindowTransform: {fileID: 173142052}
139
+ --- !u!1 &205848542
140
+ GameObject:
141
+ m_ObjectHideFlags: 0
142
+ m_CorrespondingSourceObject: {fileID: 0}
143
+ m_PrefabInstance: {fileID: 0}
144
+ m_PrefabAsset: {fileID: 0}
145
+ serializedVersion: 6
146
+ m_Component:
147
+ - component: {fileID: 205848543}
148
+ - component: {fileID: 205848544}
149
+ - component: {fileID: 205848546}
150
+ - component: {fileID: 205848545}
151
+ m_Layer: 5
152
+ m_Name: Canvas
153
+ m_TagString: Untagged
154
+ m_Icon: {fileID: 0}
155
+ m_NavMeshLayer: 0
156
+ m_StaticEditorFlags: 0
157
+ m_IsActive: 1
158
+ --- !u!224 &205848543
159
+ RectTransform:
160
+ m_ObjectHideFlags: 0
161
+ m_CorrespondingSourceObject: {fileID: 0}
162
+ m_PrefabInstance: {fileID: 0}
163
+ m_PrefabAsset: {fileID: 0}
164
+ m_GameObject: {fileID: 205848542}
165
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
166
+ m_LocalPosition: {x: 0, y: 0, z: 0}
167
+ m_LocalScale: {x: 0, y: 0, z: 0}
168
+ m_Children:
169
+ - {fileID: 173142052}
170
+ m_Father: {fileID: 6688616863844461831}
171
+ m_RootOrder: 2
172
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
173
+ m_AnchorMin: {x: 0, y: 0}
174
+ m_AnchorMax: {x: 0, y: 0}
175
+ m_AnchoredPosition: {x: 0, y: 0}
176
+ m_SizeDelta: {x: 0, y: 0}
177
+ m_Pivot: {x: 0, y: 0}
178
+ --- !u!223 &205848544
179
+ Canvas:
180
+ m_ObjectHideFlags: 0
181
+ m_CorrespondingSourceObject: {fileID: 0}
182
+ m_PrefabInstance: {fileID: 0}
183
+ m_PrefabAsset: {fileID: 0}
184
+ m_GameObject: {fileID: 205848542}
185
+ m_Enabled: 1
186
+ serializedVersion: 3
187
+ m_RenderMode: 0
188
+ m_Camera: {fileID: 0}
189
+ m_PlaneDistance: 100
190
+ m_PixelPerfect: 0
191
+ m_ReceivesEvents: 1
192
+ m_OverrideSorting: 0
193
+ m_OverridePixelPerfect: 0
194
+ m_SortingBucketNormalizedSize: 0
195
+ m_AdditionalShaderChannelsFlag: 25
196
+ m_SortingLayerID: 0
197
+ m_SortingOrder: 2
198
+ m_TargetDisplay: 0
199
+ --- !u!114 &205848546
200
+ MonoBehaviour:
201
+ m_ObjectHideFlags: 0
202
+ m_CorrespondingSourceObject: {fileID: 0}
203
+ m_PrefabInstance: {fileID: 0}
204
+ m_PrefabAsset: {fileID: 0}
205
+ m_GameObject: {fileID: 205848542}
206
+ m_Enabled: 1
207
+ m_EditorHideFlags: 0
208
+ m_Script: {fileID: 1980459831, guid: f70555f144d8491a825f0804e09c671c, type: 3}
209
+ m_Name:
210
+ m_EditorClassIdentifier:
211
+ m_UiScaleMode: 1
212
+ m_ReferencePixelsPerUnit: 100
213
+ m_ScaleFactor: 1
214
+ m_ReferenceResolution: {x: 375, y: 812}
215
+ m_ScreenMatchMode: 0
216
+ m_MatchWidthOrHeight: 0.5
217
+ m_PhysicalUnit: 3
218
+ m_FallbackScreenDPI: 96
219
+ m_DefaultSpriteDPI: 96
220
+ m_DynamicPixelsPerUnit: 1
221
+ --- !u!114 &205848545
222
+ MonoBehaviour:
223
+ m_ObjectHideFlags: 0
224
+ m_CorrespondingSourceObject: {fileID: 0}
225
+ m_PrefabInstance: {fileID: 0}
226
+ m_PrefabAsset: {fileID: 0}
227
+ m_GameObject: {fileID: 205848542}
228
+ m_Enabled: 1
229
+ m_EditorHideFlags: 0
230
+ m_Script: {fileID: 1301386320, guid: f70555f144d8491a825f0804e09c671c, type: 3}
231
+ m_Name:
232
+ m_EditorClassIdentifier:
233
+ m_IgnoreReversedGraphics: 1
234
+ m_BlockingObjects: 0
235
+ m_BlockingMask:
236
+ serializedVersion: 2
237
+ m_Bits: 4294967295
238
+ --- !u!1 &208922703
239
+ GameObject:
240
+ m_ObjectHideFlags: 0
241
+ m_CorrespondingSourceObject: {fileID: 0}
242
+ m_PrefabInstance: {fileID: 0}
243
+ m_PrefabAsset: {fileID: 0}
244
+ serializedVersion: 6
245
+ m_Component:
246
+ - component: {fileID: 208922704}
247
+ - component: {fileID: 208922705}
248
+ m_Layer: 5
249
+ m_Name: Content
250
+ m_TagString: Untagged
251
+ m_Icon: {fileID: 0}
252
+ m_NavMeshLayer: 0
253
+ m_StaticEditorFlags: 0
254
+ m_IsActive: 1
255
+ --- !u!224 &208922704
256
+ RectTransform:
257
+ m_ObjectHideFlags: 0
258
+ m_CorrespondingSourceObject: {fileID: 0}
259
+ m_PrefabInstance: {fileID: 0}
260
+ m_PrefabAsset: {fileID: 0}
261
+ m_GameObject: {fileID: 208922703}
262
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
263
+ m_LocalPosition: {x: 0, y: 0, z: 0}
264
+ m_LocalScale: {x: 1, y: 1, z: 1}
265
+ m_Children:
266
+ - {fileID: 8303094792839375017}
267
+ - {fileID: 7484708147884350023}
268
+ - {fileID: 6146535673865262568}
269
+ m_Father: {fileID: 744986794}
270
+ m_RootOrder: 1
271
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
272
+ m_AnchorMin: {x: 0, y: 0}
273
+ m_AnchorMax: {x: 1, y: 1}
274
+ m_AnchoredPosition: {x: 0, y: 0}
275
+ m_SizeDelta: {x: 0, y: -30}
276
+ m_Pivot: {x: 0.5, y: 0.5}
277
+ --- !u!114 &208922705
278
+ MonoBehaviour:
279
+ m_ObjectHideFlags: 0
280
+ m_CorrespondingSourceObject: {fileID: 0}
281
+ m_PrefabInstance: {fileID: 0}
282
+ m_PrefabAsset: {fileID: 0}
283
+ m_GameObject: {fileID: 208922703}
284
+ m_Enabled: 1
285
+ m_EditorHideFlags: 0
286
+ m_Script: {fileID: -405508275, guid: f70555f144d8491a825f0804e09c671c, type: 3}
287
+ m_Name:
288
+ m_EditorClassIdentifier:
289
+ m_Padding:
290
+ m_Left: 0
291
+ m_Right: 0
292
+ m_Top: 0
293
+ m_Bottom: 0
294
+ m_ChildAlignment: 4
295
+ m_Spacing: 0
296
+ m_ChildForceExpandWidth: 0
297
+ m_ChildForceExpandHeight: 0
298
+ m_ChildControlWidth: 1
299
+ m_ChildControlHeight: 1
300
+ --- !u!1 &390508660
301
+ GameObject:
302
+ m_ObjectHideFlags: 0
303
+ m_CorrespondingSourceObject: {fileID: 0}
304
+ m_PrefabInstance: {fileID: 0}
305
+ m_PrefabAsset: {fileID: 0}
306
+ serializedVersion: 6
307
+ m_Component:
308
+ - component: {fileID: 390508661}
309
+ - component: {fileID: 390508663}
310
+ - component: {fileID: 390508662}
311
+ m_Layer: 5
312
+ m_Name: Body
313
+ m_TagString: Untagged
314
+ m_Icon: {fileID: 0}
315
+ m_NavMeshLayer: 0
316
+ m_StaticEditorFlags: 0
317
+ m_IsActive: 1
318
+ --- !u!224 &390508661
319
+ RectTransform:
320
+ m_ObjectHideFlags: 0
321
+ m_CorrespondingSourceObject: {fileID: 0}
322
+ m_PrefabInstance: {fileID: 0}
323
+ m_PrefabAsset: {fileID: 0}
324
+ m_GameObject: {fileID: 390508660}
325
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
326
+ m_LocalPosition: {x: 0, y: 0, z: 0}
327
+ m_LocalScale: {x: 1, y: 1, z: 1}
328
+ m_Children:
329
+ - {fileID: 9027986574364932944}
330
+ - {fileID: 681750543}
331
+ m_Father: {fileID: 173142052}
332
+ m_RootOrder: 1
333
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
334
+ m_AnchorMin: {x: 0, y: 0}
335
+ m_AnchorMax: {x: 0, y: 0}
336
+ m_AnchoredPosition: {x: 0, y: 0}
337
+ m_SizeDelta: {x: 0, y: 0}
338
+ m_Pivot: {x: 0.5, y: 0.5}
339
+ --- !u!222 &390508663
340
+ CanvasRenderer:
341
+ m_ObjectHideFlags: 0
342
+ m_CorrespondingSourceObject: {fileID: 0}
343
+ m_PrefabInstance: {fileID: 0}
344
+ m_PrefabAsset: {fileID: 0}
345
+ m_GameObject: {fileID: 390508660}
346
+ m_CullTransparentMesh: 0
347
+ --- !u!114 &390508662
348
+ MonoBehaviour:
349
+ m_ObjectHideFlags: 0
350
+ m_CorrespondingSourceObject: {fileID: 0}
351
+ m_PrefabInstance: {fileID: 0}
352
+ m_PrefabAsset: {fileID: 0}
353
+ m_GameObject: {fileID: 390508660}
354
+ m_Enabled: 1
355
+ m_EditorHideFlags: 0
356
+ m_Script: {fileID: 1679637790, guid: f70555f144d8491a825f0804e09c671c, type: 3}
357
+ m_Name:
358
+ m_EditorClassIdentifier:
359
+ m_IgnoreLayout: 0
360
+ m_MinWidth: -1
361
+ m_MinHeight: -1
362
+ m_PreferredWidth: -1
363
+ m_PreferredHeight: -1
364
+ m_FlexibleWidth: -1
365
+ m_FlexibleHeight: 1
366
+ m_LayoutPriority: 1
367
+ --- !u!1 &470237998
368
+ GameObject:
369
+ m_ObjectHideFlags: 0
370
+ m_CorrespondingSourceObject: {fileID: 0}
371
+ m_PrefabInstance: {fileID: 0}
372
+ m_PrefabAsset: {fileID: 0}
373
+ serializedVersion: 6
374
+ m_Component:
375
+ - component: {fileID: 470238000}
376
+ - component: {fileID: 470237999}
377
+ m_Layer: 0
378
+ m_Name: Menus
379
+ m_TagString: Untagged
380
+ m_Icon: {fileID: 0}
381
+ m_NavMeshLayer: 0
382
+ m_StaticEditorFlags: 0
383
+ m_IsActive: 1
384
+ --- !u!4 &470238000
385
+ Transform:
386
+ m_ObjectHideFlags: 0
387
+ m_CorrespondingSourceObject: {fileID: 0}
388
+ m_PrefabInstance: {fileID: 0}
389
+ m_PrefabAsset: {fileID: 0}
390
+ m_GameObject: {fileID: 470237998}
391
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
392
+ m_LocalPosition: {x: -188.46767, y: -690.7517, z: -44469.555}
393
+ m_LocalScale: {x: 1, y: 1, z: 1}
394
+ m_Children: []
395
+ m_Father: {fileID: 6688616863844461831}
396
+ m_RootOrder: 1
397
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
398
+ --- !u!114 &470237999
399
+ MonoBehaviour:
400
+ m_ObjectHideFlags: 0
401
+ m_CorrespondingSourceObject: {fileID: 0}
402
+ m_PrefabInstance: {fileID: 0}
403
+ m_PrefabAsset: {fileID: 0}
404
+ m_GameObject: {fileID: 470237998}
405
+ m_Enabled: 1
406
+ m_EditorHideFlags: 0
407
+ m_Script: {fileID: 11500000, guid: 63af714306f69476386f212ea9ee87fa, type: 3}
408
+ m_Name:
409
+ m_EditorClassIdentifier:
410
+ Root: {fileID: 205848544}
411
+ Title: {fileID: 7484708147884350020}
412
+ BackButton: {fileID: 8303094792839375018}
413
+ StartMenu: {fileID: 0}
414
+ Menus:
415
+ - {fileID: 0}
416
+ --- !u!1 &681750542
417
+ GameObject:
418
+ m_ObjectHideFlags: 0
419
+ m_CorrespondingSourceObject: {fileID: 0}
420
+ m_PrefabInstance: {fileID: 0}
421
+ m_PrefabAsset: {fileID: 0}
422
+ serializedVersion: 6
423
+ m_Component:
424
+ - component: {fileID: 681750543}
425
+ - component: {fileID: 681750544}
426
+ m_Layer: 5
427
+ m_Name: Content
428
+ m_TagString: Untagged
429
+ m_Icon: {fileID: 0}
430
+ m_NavMeshLayer: 0
431
+ m_StaticEditorFlags: 0
432
+ m_IsActive: 1
433
+ --- !u!224 &681750543
434
+ RectTransform:
435
+ m_ObjectHideFlags: 0
436
+ m_CorrespondingSourceObject: {fileID: 0}
437
+ m_PrefabInstance: {fileID: 0}
438
+ m_PrefabAsset: {fileID: 0}
439
+ m_GameObject: {fileID: 681750542}
440
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
441
+ m_LocalPosition: {x: 0, y: 0, z: 0}
442
+ m_LocalScale: {x: 1, y: 1, z: 1}
443
+ m_Children:
444
+ - {fileID: 1608350197}
445
+ m_Father: {fileID: 390508661}
446
+ m_RootOrder: 1
447
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
448
+ m_AnchorMin: {x: 0, y: 0}
449
+ m_AnchorMax: {x: 1, y: 1}
450
+ m_AnchoredPosition: {x: 0, y: 0}
451
+ m_SizeDelta: {x: 0, y: 0}
452
+ m_Pivot: {x: 0.5, y: 0.5}
453
+ --- !u!222 &681750544
454
+ CanvasRenderer:
455
+ m_ObjectHideFlags: 0
456
+ m_CorrespondingSourceObject: {fileID: 0}
457
+ m_PrefabInstance: {fileID: 0}
458
+ m_PrefabAsset: {fileID: 0}
459
+ m_GameObject: {fileID: 681750542}
460
+ m_CullTransparentMesh: 0
461
+ --- !u!1 &744986793
462
+ GameObject:
463
+ m_ObjectHideFlags: 0
464
+ m_CorrespondingSourceObject: {fileID: 0}
465
+ m_PrefabInstance: {fileID: 0}
466
+ m_PrefabAsset: {fileID: 0}
467
+ serializedVersion: 6
468
+ m_Component:
469
+ - component: {fileID: 744986794}
470
+ - component: {fileID: 744986795}
471
+ m_Layer: 5
472
+ m_Name: Header
473
+ m_TagString: Untagged
474
+ m_Icon: {fileID: 0}
475
+ m_NavMeshLayer: 0
476
+ m_StaticEditorFlags: 0
477
+ m_IsActive: 1
478
+ --- !u!224 &744986794
479
+ RectTransform:
480
+ m_ObjectHideFlags: 0
481
+ m_CorrespondingSourceObject: {fileID: 0}
482
+ m_PrefabInstance: {fileID: 0}
483
+ m_PrefabAsset: {fileID: 0}
484
+ m_GameObject: {fileID: 744986793}
485
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
486
+ m_LocalPosition: {x: 0, y: 0, z: 0}
487
+ m_LocalScale: {x: 1, y: 1, z: 1}
488
+ m_Children:
489
+ - {fileID: 1822022078}
490
+ - {fileID: 208922704}
491
+ m_Father: {fileID: 173142052}
492
+ m_RootOrder: 0
493
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
494
+ m_AnchorMin: {x: 0, y: 0}
495
+ m_AnchorMax: {x: 0, y: 0}
496
+ m_AnchoredPosition: {x: 0, y: 0}
497
+ m_SizeDelta: {x: 0, y: 0}
498
+ m_Pivot: {x: 0.5, y: 1}
499
+ --- !u!114 &744986795
500
+ MonoBehaviour:
501
+ m_ObjectHideFlags: 0
502
+ m_CorrespondingSourceObject: {fileID: 0}
503
+ m_PrefabInstance: {fileID: 0}
504
+ m_PrefabAsset: {fileID: 0}
505
+ m_GameObject: {fileID: 744986793}
506
+ m_Enabled: 1
507
+ m_EditorHideFlags: 0
508
+ m_Script: {fileID: 1679637790, guid: f70555f144d8491a825f0804e09c671c, type: 3}
509
+ m_Name:
510
+ m_EditorClassIdentifier:
511
+ m_IgnoreLayout: 0
512
+ m_MinWidth: -1
513
+ m_MinHeight: -1
514
+ m_PreferredWidth: -1
515
+ m_PreferredHeight: 79.34
516
+ m_FlexibleWidth: -1
517
+ m_FlexibleHeight: -1
518
+ m_LayoutPriority: 1
519
+ --- !u!1 &1291305679
520
+ GameObject:
521
+ m_ObjectHideFlags: 0
522
+ m_CorrespondingSourceObject: {fileID: 0}
523
+ m_PrefabInstance: {fileID: 0}
524
+ m_PrefabAsset: {fileID: 0}
525
+ serializedVersion: 6
526
+ m_Component:
527
+ - component: {fileID: 1291305680}
528
+ m_Layer: 0
529
+ m_Name: Signals
530
+ m_TagString: Untagged
531
+ m_Icon: {fileID: 0}
532
+ m_NavMeshLayer: 0
533
+ m_StaticEditorFlags: 0
534
+ m_IsActive: 1
535
+ --- !u!4 &1291305680
536
+ Transform:
537
+ m_ObjectHideFlags: 0
538
+ m_CorrespondingSourceObject: {fileID: 0}
539
+ m_PrefabInstance: {fileID: 0}
540
+ m_PrefabAsset: {fileID: 0}
541
+ m_GameObject: {fileID: 1291305679}
542
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
543
+ m_LocalPosition: {x: -188.46767, y: -690.7517, z: -44469.555}
544
+ m_LocalScale: {x: 1, y: 1, z: 1}
545
+ m_Children: []
546
+ m_Father: {fileID: 6688616863844461831}
547
+ m_RootOrder: 0
548
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
549
+ --- !u!1 &1608350196
550
+ GameObject:
551
+ m_ObjectHideFlags: 0
552
+ m_CorrespondingSourceObject: {fileID: 0}
553
+ m_PrefabInstance: {fileID: 0}
554
+ m_PrefabAsset: {fileID: 0}
555
+ serializedVersion: 6
556
+ m_Component:
557
+ - component: {fileID: 1608350197}
558
+ - component: {fileID: 1608350199}
559
+ - component: {fileID: 1608350198}
560
+ - component: {fileID: 6094901627941336936}
561
+ m_Layer: 5
562
+ m_Name: Main
563
+ m_TagString: Untagged
564
+ m_Icon: {fileID: 0}
565
+ m_NavMeshLayer: 0
566
+ m_StaticEditorFlags: 0
567
+ m_IsActive: 1
568
+ --- !u!224 &1608350197
569
+ RectTransform:
570
+ m_ObjectHideFlags: 0
571
+ m_CorrespondingSourceObject: {fileID: 0}
572
+ m_PrefabInstance: {fileID: 0}
573
+ m_PrefabAsset: {fileID: 0}
574
+ m_GameObject: {fileID: 1608350196}
575
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
576
+ m_LocalPosition: {x: 0, y: 0, z: 0}
577
+ m_LocalScale: {x: 1, y: 1, z: 1}
578
+ m_Children:
579
+ - {fileID: 6990606019179355869}
580
+ - {fileID: 6885137629261013832}
581
+ m_Father: {fileID: 681750543}
582
+ m_RootOrder: 0
583
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
584
+ m_AnchorMin: {x: 0, y: 0}
585
+ m_AnchorMax: {x: 1, y: 1}
586
+ m_AnchoredPosition: {x: 0, y: 0}
587
+ m_SizeDelta: {x: 0, y: 0}
588
+ m_Pivot: {x: 0.5, y: 0.5}
589
+ --- !u!222 &1608350199
590
+ CanvasRenderer:
591
+ m_ObjectHideFlags: 0
592
+ m_CorrespondingSourceObject: {fileID: 0}
593
+ m_PrefabInstance: {fileID: 0}
594
+ m_PrefabAsset: {fileID: 0}
595
+ m_GameObject: {fileID: 1608350196}
596
+ m_CullTransparentMesh: 0
597
+ --- !u!225 &1608350198
598
+ CanvasGroup:
599
+ m_ObjectHideFlags: 0
600
+ m_CorrespondingSourceObject: {fileID: 0}
601
+ m_PrefabInstance: {fileID: 0}
602
+ m_PrefabAsset: {fileID: 0}
603
+ m_GameObject: {fileID: 1608350196}
604
+ m_Enabled: 1
605
+ m_Alpha: 1
606
+ m_Interactable: 1
607
+ m_BlocksRaycasts: 1
608
+ m_IgnoreParentGroups: 0
609
+ --- !u!114 &6094901627941336936
610
+ MonoBehaviour:
611
+ m_ObjectHideFlags: 0
612
+ m_CorrespondingSourceObject: {fileID: 0}
613
+ m_PrefabInstance: {fileID: 0}
614
+ m_PrefabAsset: {fileID: 0}
615
+ m_GameObject: {fileID: 1608350196}
616
+ m_Enabled: 1
617
+ m_EditorHideFlags: 0
618
+ m_Script: {fileID: 11500000, guid: 264ee8b866632455b909f2e6eaa074a6, type: 3}
619
+ m_Name:
620
+ m_EditorClassIdentifier:
621
+ Title:
622
+ Name:
623
+ Float: 0
624
+ DestoryOnLeave: 0
625
+ OnOpen:
626
+ m_PersistentCalls:
627
+ m_Calls: []
628
+ OnClosed:
629
+ m_PersistentCalls:
630
+ m_Calls: []
631
+ --- !u!1 &1822022077
632
+ GameObject:
633
+ m_ObjectHideFlags: 0
634
+ m_CorrespondingSourceObject: {fileID: 0}
635
+ m_PrefabInstance: {fileID: 0}
636
+ m_PrefabAsset: {fileID: 0}
637
+ serializedVersion: 6
638
+ m_Component:
639
+ - component: {fileID: 1822022078}
640
+ - component: {fileID: 1822022081}
641
+ - component: {fileID: 1822022080}
642
+ - component: {fileID: 1822022079}
643
+ m_Layer: 5
644
+ m_Name: Background
645
+ m_TagString: Untagged
646
+ m_Icon: {fileID: 0}
647
+ m_NavMeshLayer: 0
648
+ m_StaticEditorFlags: 0
649
+ m_IsActive: 1
650
+ --- !u!224 &1822022078
651
+ RectTransform:
652
+ m_ObjectHideFlags: 0
653
+ m_CorrespondingSourceObject: {fileID: 0}
654
+ m_PrefabInstance: {fileID: 0}
655
+ m_PrefabAsset: {fileID: 0}
656
+ m_GameObject: {fileID: 1822022077}
657
+ m_LocalRotation: {x: -0, y: -0, z: -0, w: 1}
658
+ m_LocalPosition: {x: 0, y: 0, z: 0}
659
+ m_LocalScale: {x: 1, y: 1, z: 1}
660
+ m_Children: []
661
+ m_Father: {fileID: 744986794}
662
+ m_RootOrder: 0
663
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
664
+ m_AnchorMin: {x: 0, y: 0}
665
+ m_AnchorMax: {x: 1, y: 1}
666
+ m_AnchoredPosition: {x: 0, y: 0}
667
+ m_SizeDelta: {x: 0, y: 0}
668
+ m_Pivot: {x: 0.5, y: 0.5}
669
+ --- !u!222 &1822022081
670
+ CanvasRenderer:
671
+ m_ObjectHideFlags: 0
672
+ m_CorrespondingSourceObject: {fileID: 0}
673
+ m_PrefabInstance: {fileID: 0}
674
+ m_PrefabAsset: {fileID: 0}
675
+ m_GameObject: {fileID: 1822022077}
676
+ m_CullTransparentMesh: 0
677
+ --- !u!114 &1822022080
678
+ MonoBehaviour:
679
+ m_ObjectHideFlags: 0
680
+ m_CorrespondingSourceObject: {fileID: 0}
681
+ m_PrefabInstance: {fileID: 0}
682
+ m_PrefabAsset: {fileID: 0}
683
+ m_GameObject: {fileID: 1822022077}
684
+ m_Enabled: 1
685
+ m_EditorHideFlags: 0
686
+ m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
687
+ m_Name:
688
+ m_EditorClassIdentifier:
689
+ m_Material: {fileID: 0}
690
+ m_Color: {r: 0.04705883, g: 0.07450981, b: 0.121568635, a: 1}
691
+ m_RaycastTarget: 1
692
+ m_OnCullStateChanged:
693
+ m_PersistentCalls:
694
+ m_Calls: []
695
+ m_Sprite: {fileID: 0}
696
+ m_Type: 1
697
+ m_PreserveAspect: 0
698
+ m_FillCenter: 1
699
+ m_FillMethod: 4
700
+ m_FillAmount: 1
701
+ m_FillClockwise: 1
702
+ m_FillOrigin: 0
703
+ m_UseSpriteMesh: 0
704
+ --- !u!114 &1822022079
705
+ MonoBehaviour:
706
+ m_ObjectHideFlags: 0
707
+ m_CorrespondingSourceObject: {fileID: 0}
708
+ m_PrefabInstance: {fileID: 0}
709
+ m_PrefabAsset: {fileID: 0}
710
+ m_GameObject: {fileID: 1822022077}
711
+ m_Enabled: 0
712
+ m_EditorHideFlags: 0
713
+ m_Script: {fileID: 11500000, guid: f87cf025f02df4f2da2629a041f8e428, type: 3}
714
+ m_Name:
715
+ m_EditorClassIdentifier:
716
+ _gradientMode: 1
717
+ _gradientDir: 1
718
+ _overwriteAllColor: 0
719
+ _vertex1: {r: 0, g: 0.09803922, b: 0.18039216, a: 1}
720
+ _vertex2: {r: 0.015686275, g: 0.3254902, b: 0.5294118, a: 1}
721
+ --- !u!1 &566126925953116048
722
+ GameObject:
723
+ m_ObjectHideFlags: 0
724
+ m_CorrespondingSourceObject: {fileID: 0}
725
+ m_PrefabInstance: {fileID: 0}
726
+ m_PrefabAsset: {fileID: 0}
727
+ serializedVersion: 6
728
+ m_Component:
729
+ - component: {fileID: 9072068189240016606}
730
+ - component: {fileID: 7406272115762364328}
731
+ - component: {fileID: 1195473903769631699}
732
+ m_Layer: 5
733
+ m_Name: Content
734
+ m_TagString: Untagged
735
+ m_Icon: {fileID: 0}
736
+ m_NavMeshLayer: 0
737
+ m_StaticEditorFlags: 0
738
+ m_IsActive: 1
739
+ --- !u!224 &9072068189240016606
740
+ RectTransform:
741
+ m_ObjectHideFlags: 0
742
+ m_CorrespondingSourceObject: {fileID: 0}
743
+ m_PrefabInstance: {fileID: 0}
744
+ m_PrefabAsset: {fileID: 0}
745
+ m_GameObject: {fileID: 566126925953116048}
746
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
747
+ m_LocalPosition: {x: 0, y: 0, z: 0}
748
+ m_LocalScale: {x: 1, y: 1, z: 1}
749
+ m_Children: []
750
+ m_Father: {fileID: 4879652782897644984}
751
+ m_RootOrder: 0
752
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
753
+ m_AnchorMin: {x: 0, y: 1}
754
+ m_AnchorMax: {x: 1, y: 1}
755
+ m_AnchoredPosition: {x: 0, y: -0.000043207026}
756
+ m_SizeDelta: {x: 0, y: 0}
757
+ m_Pivot: {x: 0, y: 1}
758
+ --- !u!114 &7406272115762364328
759
+ MonoBehaviour:
760
+ m_ObjectHideFlags: 0
761
+ m_CorrespondingSourceObject: {fileID: 0}
762
+ m_PrefabInstance: {fileID: 0}
763
+ m_PrefabAsset: {fileID: 0}
764
+ m_GameObject: {fileID: 566126925953116048}
765
+ m_Enabled: 1
766
+ m_EditorHideFlags: 0
767
+ m_Script: {fileID: 1297475563, guid: f70555f144d8491a825f0804e09c671c, type: 3}
768
+ m_Name:
769
+ m_EditorClassIdentifier:
770
+ m_Padding:
771
+ m_Left: 0
772
+ m_Right: 0
773
+ m_Top: 0
774
+ m_Bottom: 0
775
+ m_ChildAlignment: 0
776
+ m_Spacing: 10
777
+ m_ChildForceExpandWidth: 1
778
+ m_ChildForceExpandHeight: 1
779
+ m_ChildControlWidth: 0
780
+ m_ChildControlHeight: 0
781
+ --- !u!114 &1195473903769631699
782
+ MonoBehaviour:
783
+ m_ObjectHideFlags: 0
784
+ m_CorrespondingSourceObject: {fileID: 0}
785
+ m_PrefabInstance: {fileID: 0}
786
+ m_PrefabAsset: {fileID: 0}
787
+ m_GameObject: {fileID: 566126925953116048}
788
+ m_Enabled: 1
789
+ m_EditorHideFlags: 0
790
+ m_Script: {fileID: 1741964061, guid: f70555f144d8491a825f0804e09c671c, type: 3}
791
+ m_Name:
792
+ m_EditorClassIdentifier:
793
+ m_HorizontalFit: 0
794
+ m_VerticalFit: 2
795
+ --- !u!1 &870341194410821550
796
+ GameObject:
797
+ m_ObjectHideFlags: 0
798
+ m_CorrespondingSourceObject: {fileID: 0}
799
+ m_PrefabInstance: {fileID: 0}
800
+ m_PrefabAsset: {fileID: 0}
801
+ serializedVersion: 6
802
+ m_Component:
803
+ - component: {fileID: 6688616863844461831}
804
+ - component: {fileID: 1038429375852148309}
805
+ - component: {fileID: 902504465}
806
+ m_Layer: 0
807
+ m_Name: CalendarFlow
808
+ m_TagString: Untagged
809
+ m_Icon: {fileID: 0}
810
+ m_NavMeshLayer: 0
811
+ m_StaticEditorFlags: 0
812
+ m_IsActive: 1
813
+ --- !u!4 &6688616863844461831
814
+ Transform:
815
+ m_ObjectHideFlags: 0
816
+ m_CorrespondingSourceObject: {fileID: 0}
817
+ m_PrefabInstance: {fileID: 0}
818
+ m_PrefabAsset: {fileID: 0}
819
+ m_GameObject: {fileID: 870341194410821550}
820
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
821
+ m_LocalPosition: {x: 188.46767, y: 690.7517, z: 44469.555}
822
+ m_LocalScale: {x: 1, y: 1, z: 1}
823
+ m_Children:
824
+ - {fileID: 1291305680}
825
+ - {fileID: 470238000}
826
+ - {fileID: 205848543}
827
+ m_Father: {fileID: 0}
828
+ m_RootOrder: 0
829
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
830
+ --- !u!114 &1038429375852148309
831
+ MonoBehaviour:
832
+ m_ObjectHideFlags: 0
833
+ m_CorrespondingSourceObject: {fileID: 0}
834
+ m_PrefabInstance: {fileID: 0}
835
+ m_PrefabAsset: {fileID: 0}
836
+ m_GameObject: {fileID: 870341194410821550}
837
+ m_Enabled: 1
838
+ m_EditorHideFlags: 0
839
+ m_Script: {fileID: 11500000, guid: 88bc119c546cc47d0b2a55cfc8d3d809, type: 3}
840
+ m_Name:
841
+ m_EditorClassIdentifier:
842
+ MenuManager: {fileID: 470237999}
843
+ Calendar:
844
+ Id: calendars.test
845
+ ContentContainer: {fileID: 566126925953116048}
846
+ CalendarRewardsPrefab: {fileID: 1367563558535191572, guid: 6926e638698704e59824f294160ef134,
847
+ type: 3}
848
+ ClaimButton: {fileID: 8619226635080544896}
849
+ countdownText: {fileID: 1169390703092699469}
850
+ --- !u!114 &902504465
851
+ MonoBehaviour:
852
+ m_ObjectHideFlags: 0
853
+ m_CorrespondingSourceObject: {fileID: 0}
854
+ m_PrefabInstance: {fileID: 0}
855
+ m_PrefabAsset: {fileID: 0}
856
+ m_GameObject: {fileID: 870341194410821550}
857
+ m_Enabled: 1
858
+ m_EditorHideFlags: 0
859
+ m_Script: {fileID: 11500000, guid: cd0aab69f436a4675af3a3c2386bc32f, type: 3}
860
+ m_Name:
861
+ m_EditorClassIdentifier:
862
+ --- !u!1 &3727812434718645578
863
+ GameObject:
864
+ m_ObjectHideFlags: 0
865
+ m_CorrespondingSourceObject: {fileID: 0}
866
+ m_PrefabInstance: {fileID: 0}
867
+ m_PrefabAsset: {fileID: 0}
868
+ serializedVersion: 6
869
+ m_Component:
870
+ - component: {fileID: 6885137629261013832}
871
+ - component: {fileID: 3484897436313093773}
872
+ - component: {fileID: 1353624827980723945}
873
+ - component: {fileID: 2361176111970408274}
874
+ m_Layer: 5
875
+ m_Name: Scroll View
876
+ m_TagString: Untagged
877
+ m_Icon: {fileID: 0}
878
+ m_NavMeshLayer: 0
879
+ m_StaticEditorFlags: 0
880
+ m_IsActive: 1
881
+ --- !u!224 &6885137629261013832
882
+ RectTransform:
883
+ m_ObjectHideFlags: 0
884
+ m_CorrespondingSourceObject: {fileID: 0}
885
+ m_PrefabInstance: {fileID: 0}
886
+ m_PrefabAsset: {fileID: 0}
887
+ m_GameObject: {fileID: 3727812434718645578}
888
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
889
+ m_LocalPosition: {x: 0, y: 0, z: 0}
890
+ m_LocalScale: {x: 1, y: 1, z: 1}
891
+ m_Children:
892
+ - {fileID: 4879652782897644984}
893
+ - {fileID: 9055715403483714159}
894
+ m_Father: {fileID: 1608350197}
895
+ m_RootOrder: 1
896
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
897
+ m_AnchorMin: {x: 0, y: 0}
898
+ m_AnchorMax: {x: 1, y: 1}
899
+ m_AnchoredPosition: {x: 0, y: 50}
900
+ m_SizeDelta: {x: -20, y: -120}
901
+ m_Pivot: {x: 0.5, y: 0.5}
902
+ --- !u!114 &3484897436313093773
903
+ MonoBehaviour:
904
+ m_ObjectHideFlags: 0
905
+ m_CorrespondingSourceObject: {fileID: 0}
906
+ m_PrefabInstance: {fileID: 0}
907
+ m_PrefabAsset: {fileID: 0}
908
+ m_GameObject: {fileID: 3727812434718645578}
909
+ m_Enabled: 1
910
+ m_EditorHideFlags: 0
911
+ m_Script: {fileID: 1367256648, guid: f70555f144d8491a825f0804e09c671c, type: 3}
912
+ m_Name:
913
+ m_EditorClassIdentifier:
914
+ m_Content: {fileID: 9072068189240016606}
915
+ m_Horizontal: 0
916
+ m_Vertical: 1
917
+ m_MovementType: 1
918
+ m_Elasticity: 0.1
919
+ m_Inertia: 1
920
+ m_DecelerationRate: 0.135
921
+ m_ScrollSensitivity: 1
922
+ m_Viewport: {fileID: 4879652782897644984}
923
+ m_HorizontalScrollbar: {fileID: 0}
924
+ m_VerticalScrollbar: {fileID: 8815840445590603457}
925
+ m_HorizontalScrollbarVisibility: 2
926
+ m_VerticalScrollbarVisibility: 2
927
+ m_HorizontalScrollbarSpacing: -3
928
+ m_VerticalScrollbarSpacing: -20
929
+ m_OnValueChanged:
930
+ m_PersistentCalls:
931
+ m_Calls: []
932
+ --- !u!222 &1353624827980723945
933
+ CanvasRenderer:
934
+ m_ObjectHideFlags: 0
935
+ m_CorrespondingSourceObject: {fileID: 0}
936
+ m_PrefabInstance: {fileID: 0}
937
+ m_PrefabAsset: {fileID: 0}
938
+ m_GameObject: {fileID: 3727812434718645578}
939
+ m_CullTransparentMesh: 0
940
+ --- !u!114 &2361176111970408274
941
+ MonoBehaviour:
942
+ m_ObjectHideFlags: 0
943
+ m_CorrespondingSourceObject: {fileID: 0}
944
+ m_PrefabInstance: {fileID: 0}
945
+ m_PrefabAsset: {fileID: 0}
946
+ m_GameObject: {fileID: 3727812434718645578}
947
+ m_Enabled: 1
948
+ m_EditorHideFlags: 0
949
+ m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
950
+ m_Name:
951
+ m_EditorClassIdentifier:
952
+ m_Material: {fileID: 0}
953
+ m_Color: {r: 0.13207549, g: 0.11276256, b: 0.11276256, a: 0.392}
954
+ m_RaycastTarget: 1
955
+ m_OnCullStateChanged:
956
+ m_PersistentCalls:
957
+ m_Calls: []
958
+ m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0}
959
+ m_Type: 1
960
+ m_PreserveAspect: 0
961
+ m_FillCenter: 1
962
+ m_FillMethod: 4
963
+ m_FillAmount: 1
964
+ m_FillClockwise: 1
965
+ m_FillOrigin: 0
966
+ m_UseSpriteMesh: 0
967
+ --- !u!1 &3811459118327245396
968
+ GameObject:
969
+ m_ObjectHideFlags: 0
970
+ m_CorrespondingSourceObject: {fileID: 0}
971
+ m_PrefabInstance: {fileID: 0}
972
+ m_PrefabAsset: {fileID: 0}
973
+ serializedVersion: 6
974
+ m_Component:
975
+ - component: {fileID: 4879652782897644984}
976
+ - component: {fileID: 2561268776964385102}
977
+ - component: {fileID: 7704406542313317774}
978
+ - component: {fileID: 5699225524486881118}
979
+ m_Layer: 5
980
+ m_Name: Viewport
981
+ m_TagString: Untagged
982
+ m_Icon: {fileID: 0}
983
+ m_NavMeshLayer: 0
984
+ m_StaticEditorFlags: 0
985
+ m_IsActive: 1
986
+ --- !u!224 &4879652782897644984
987
+ RectTransform:
988
+ m_ObjectHideFlags: 0
989
+ m_CorrespondingSourceObject: {fileID: 0}
990
+ m_PrefabInstance: {fileID: 0}
991
+ m_PrefabAsset: {fileID: 0}
992
+ m_GameObject: {fileID: 3811459118327245396}
993
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
994
+ m_LocalPosition: {x: 0, y: 0, z: 0}
995
+ m_LocalScale: {x: 1, y: 1, z: 1}
996
+ m_Children:
997
+ - {fileID: 9072068189240016606}
998
+ m_Father: {fileID: 6885137629261013832}
999
+ m_RootOrder: 0
1000
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1001
+ m_AnchorMin: {x: 0, y: 0}
1002
+ m_AnchorMax: {x: 0, y: 0}
1003
+ m_AnchoredPosition: {x: 0, y: 0}
1004
+ m_SizeDelta: {x: 0, y: 0}
1005
+ m_Pivot: {x: 0, y: 1}
1006
+ --- !u!114 &2561268776964385102
1007
+ MonoBehaviour:
1008
+ m_ObjectHideFlags: 0
1009
+ m_CorrespondingSourceObject: {fileID: 0}
1010
+ m_PrefabInstance: {fileID: 0}
1011
+ m_PrefabAsset: {fileID: 0}
1012
+ m_GameObject: {fileID: 3811459118327245396}
1013
+ m_Enabled: 1
1014
+ m_EditorHideFlags: 0
1015
+ m_Script: {fileID: -1200242548, guid: f70555f144d8491a825f0804e09c671c, type: 3}
1016
+ m_Name:
1017
+ m_EditorClassIdentifier:
1018
+ m_ShowMaskGraphic: 0
1019
+ --- !u!222 &7704406542313317774
1020
+ CanvasRenderer:
1021
+ m_ObjectHideFlags: 0
1022
+ m_CorrespondingSourceObject: {fileID: 0}
1023
+ m_PrefabInstance: {fileID: 0}
1024
+ m_PrefabAsset: {fileID: 0}
1025
+ m_GameObject: {fileID: 3811459118327245396}
1026
+ m_CullTransparentMesh: 0
1027
+ --- !u!114 &5699225524486881118
1028
+ MonoBehaviour:
1029
+ m_ObjectHideFlags: 0
1030
+ m_CorrespondingSourceObject: {fileID: 0}
1031
+ m_PrefabInstance: {fileID: 0}
1032
+ m_PrefabAsset: {fileID: 0}
1033
+ m_GameObject: {fileID: 3811459118327245396}
1034
+ m_Enabled: 1
1035
+ m_EditorHideFlags: 0
1036
+ m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
1037
+ m_Name:
1038
+ m_EditorClassIdentifier:
1039
+ m_Material: {fileID: 0}
1040
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
1041
+ m_RaycastTarget: 1
1042
+ m_OnCullStateChanged:
1043
+ m_PersistentCalls:
1044
+ m_Calls: []
1045
+ m_Sprite: {fileID: 10917, guid: 0000000000000000f000000000000000, type: 0}
1046
+ m_Type: 1
1047
+ m_PreserveAspect: 0
1048
+ m_FillCenter: 1
1049
+ m_FillMethod: 4
1050
+ m_FillAmount: 1
1051
+ m_FillClockwise: 1
1052
+ m_FillOrigin: 0
1053
+ m_UseSpriteMesh: 0
1054
+ --- !u!114 &3240469534074998347
1055
+ MonoBehaviour:
1056
+ m_ObjectHideFlags: 0
1057
+ m_CorrespondingSourceObject: {fileID: 0}
1058
+ m_PrefabInstance: {fileID: 0}
1059
+ m_PrefabAsset: {fileID: 0}
1060
+ m_GameObject: {fileID: 3826033124434303277}
1061
+ m_Enabled: 1
1062
+ m_EditorHideFlags: 0
1063
+ m_Script: {fileID: 11500000, guid: 731d0cea6d89742ffb51155c213fde02, type: 3}
1064
+ m_Name:
1065
+ m_EditorClassIdentifier:
1066
+ StyledImages:
1067
+ Components: []
1068
+ ColorBinding:
1069
+ Name:
1070
+ ImageBinding:
1071
+ Name:
1072
+ StyledTexts:
1073
+ Components: []
1074
+ TextBinding:
1075
+ Name:
1076
+ ColorBinding:
1077
+ Name:
1078
+ StyledGradients:
1079
+ Components: []
1080
+ GradientBinding:
1081
+ Name:
1082
+ StyledLayouts:
1083
+ Components: []
1084
+ LayoutBinding:
1085
+ Name:
1086
+ StyledSelectables:
1087
+ Components: []
1088
+ SelectableBinding:
1089
+ Name:
1090
+ StyledButtons:
1091
+ Components:
1092
+ - {fileID: 4727596559126117210}
1093
+ Button:
1094
+ Name: primary
1095
+ StyledTransforms:
1096
+ Components: []
1097
+ Transform:
1098
+ Name:
1099
+ StyledWindow:
1100
+ Components: []
1101
+ Window:
1102
+ Name:
1103
+ StyledSounds:
1104
+ Components: []
1105
+ Sound:
1106
+ Name:
1107
+ StyledStrings:
1108
+ Components: []
1109
+ Binding:
1110
+ Name:
1111
+ --- !u!114 &4727596559126117210
1112
+ MonoBehaviour:
1113
+ m_ObjectHideFlags: 0
1114
+ m_CorrespondingSourceObject: {fileID: 0}
1115
+ m_PrefabInstance: {fileID: 0}
1116
+ m_PrefabAsset: {fileID: 0}
1117
+ m_GameObject: {fileID: 3826033124434303277}
1118
+ m_Enabled: 1
1119
+ m_EditorHideFlags: 0
1120
+ m_Script: {fileID: 11500000, guid: a3861d590e28046a39a6a418ee276391, type: 3}
1121
+ m_Name:
1122
+ m_EditorClassIdentifier:
1123
+ Button: {fileID: 8619226635080544896}
1124
+ Text: {fileID: 3423576755712142206}
1125
+ Gradient: {fileID: 0}
1126
+ SoundBehaviour: {fileID: 0}
1127
+ RequiresConnectivity: 1
1128
+ --- !u!1 &3939844038650794892
1129
+ GameObject:
1130
+ m_ObjectHideFlags: 0
1131
+ m_CorrespondingSourceObject: {fileID: 0}
1132
+ m_PrefabInstance: {fileID: 0}
1133
+ m_PrefabAsset: {fileID: 0}
1134
+ serializedVersion: 6
1135
+ m_Component:
1136
+ - component: {fileID: 5880231779306837594}
1137
+ m_Layer: 5
1138
+ m_Name: Sliding Area
1139
+ m_TagString: Untagged
1140
+ m_Icon: {fileID: 0}
1141
+ m_NavMeshLayer: 0
1142
+ m_StaticEditorFlags: 0
1143
+ m_IsActive: 1
1144
+ --- !u!224 &5880231779306837594
1145
+ RectTransform:
1146
+ m_ObjectHideFlags: 0
1147
+ m_CorrespondingSourceObject: {fileID: 0}
1148
+ m_PrefabInstance: {fileID: 0}
1149
+ m_PrefabAsset: {fileID: 0}
1150
+ m_GameObject: {fileID: 3939844038650794892}
1151
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
1152
+ m_LocalPosition: {x: 0, y: 0, z: 0}
1153
+ m_LocalScale: {x: 1, y: 1, z: 1}
1154
+ m_Children:
1155
+ - {fileID: 8380821465180823213}
1156
+ m_Father: {fileID: 9055715403483714159}
1157
+ m_RootOrder: 0
1158
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1159
+ m_AnchorMin: {x: 0, y: 0}
1160
+ m_AnchorMax: {x: 1, y: 1}
1161
+ m_AnchoredPosition: {x: 0, y: 0}
1162
+ m_SizeDelta: {x: -20, y: -20}
1163
+ m_Pivot: {x: 0.5, y: 0.5}
1164
+ --- !u!114 &1113276804
1165
+ MonoBehaviour:
1166
+ m_ObjectHideFlags: 0
1167
+ m_CorrespondingSourceObject: {fileID: 0}
1168
+ m_PrefabInstance: {fileID: 0}
1169
+ m_PrefabAsset: {fileID: 0}
1170
+ m_GameObject: {fileID: 6146535673865262569}
1171
+ m_Enabled: 1
1172
+ m_EditorHideFlags: 0
1173
+ m_Script: {fileID: 1679637790, guid: f70555f144d8491a825f0804e09c671c, type: 3}
1174
+ m_Name:
1175
+ m_EditorClassIdentifier:
1176
+ m_IgnoreLayout: 0
1177
+ m_MinWidth: -1
1178
+ m_MinHeight: -1
1179
+ m_PreferredWidth: 50
1180
+ m_PreferredHeight: 50
1181
+ m_FlexibleWidth: -1
1182
+ m_FlexibleHeight: -1
1183
+ m_LayoutPriority: 1
1184
+ --- !u!1 &6765737424987289236
1185
+ GameObject:
1186
+ m_ObjectHideFlags: 0
1187
+ m_CorrespondingSourceObject: {fileID: 0}
1188
+ m_PrefabInstance: {fileID: 0}
1189
+ m_PrefabAsset: {fileID: 0}
1190
+ serializedVersion: 6
1191
+ m_Component:
1192
+ - component: {fileID: 8380821465180823213}
1193
+ - component: {fileID: 7988374441300228387}
1194
+ - component: {fileID: 7748451557429726025}
1195
+ m_Layer: 5
1196
+ m_Name: Handle
1197
+ m_TagString: Untagged
1198
+ m_Icon: {fileID: 0}
1199
+ m_NavMeshLayer: 0
1200
+ m_StaticEditorFlags: 0
1201
+ m_IsActive: 1
1202
+ --- !u!224 &8380821465180823213
1203
+ RectTransform:
1204
+ m_ObjectHideFlags: 0
1205
+ m_CorrespondingSourceObject: {fileID: 0}
1206
+ m_PrefabInstance: {fileID: 0}
1207
+ m_PrefabAsset: {fileID: 0}
1208
+ m_GameObject: {fileID: 6765737424987289236}
1209
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
1210
+ m_LocalPosition: {x: 0, y: 0, z: 0}
1211
+ m_LocalScale: {x: 1, y: 1, z: 1}
1212
+ m_Children: []
1213
+ m_Father: {fileID: 5880231779306837594}
1214
+ m_RootOrder: 0
1215
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1216
+ m_AnchorMin: {x: 0, y: 0}
1217
+ m_AnchorMax: {x: 0, y: 0}
1218
+ m_AnchoredPosition: {x: 0, y: 0}
1219
+ m_SizeDelta: {x: 20, y: 20}
1220
+ m_Pivot: {x: 0.5, y: 0.5}
1221
+ --- !u!222 &7988374441300228387
1222
+ CanvasRenderer:
1223
+ m_ObjectHideFlags: 0
1224
+ m_CorrespondingSourceObject: {fileID: 0}
1225
+ m_PrefabInstance: {fileID: 0}
1226
+ m_PrefabAsset: {fileID: 0}
1227
+ m_GameObject: {fileID: 6765737424987289236}
1228
+ m_CullTransparentMesh: 0
1229
+ --- !u!114 &7748451557429726025
1230
+ MonoBehaviour:
1231
+ m_ObjectHideFlags: 0
1232
+ m_CorrespondingSourceObject: {fileID: 0}
1233
+ m_PrefabInstance: {fileID: 0}
1234
+ m_PrefabAsset: {fileID: 0}
1235
+ m_GameObject: {fileID: 6765737424987289236}
1236
+ m_Enabled: 0
1237
+ m_EditorHideFlags: 0
1238
+ m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
1239
+ m_Name:
1240
+ m_EditorClassIdentifier:
1241
+ m_Material: {fileID: 0}
1242
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
1243
+ m_RaycastTarget: 1
1244
+ m_OnCullStateChanged:
1245
+ m_PersistentCalls:
1246
+ m_Calls: []
1247
+ m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0}
1248
+ m_Type: 1
1249
+ m_PreserveAspect: 0
1250
+ m_FillCenter: 1
1251
+ m_FillMethod: 4
1252
+ m_FillAmount: 1
1253
+ m_FillClockwise: 1
1254
+ m_FillOrigin: 0
1255
+ m_UseSpriteMesh: 0
1256
+ --- !u!114 &1169390703092699469
1257
+ MonoBehaviour:
1258
+ m_ObjectHideFlags: 0
1259
+ m_CorrespondingSourceObject: {fileID: 0}
1260
+ m_PrefabInstance: {fileID: 0}
1261
+ m_PrefabAsset: {fileID: 0}
1262
+ m_GameObject: {fileID: 6880003925121890369}
1263
+ m_Enabled: 0
1264
+ m_EditorHideFlags: 0
1265
+ m_Script: {fileID: 11500000, guid: 1a1f318a632ab4eda893bac08741e295, type: 3}
1266
+ m_Name:
1267
+ m_EditorClassIdentifier:
1268
+ Text: {fileID: 3423576755712142206}
1269
+ Prefix: 'Next claim in: '
1270
+ Postfix:
1271
+ --- !u!114 &2040534285
1272
+ MonoBehaviour:
1273
+ m_ObjectHideFlags: 0
1274
+ m_CorrespondingSourceObject: {fileID: 0}
1275
+ m_PrefabInstance: {fileID: 0}
1276
+ m_PrefabAsset: {fileID: 0}
1277
+ m_GameObject: {fileID: 7484708147884350022}
1278
+ m_Enabled: 1
1279
+ m_EditorHideFlags: 0
1280
+ m_Script: {fileID: 1679637790, guid: f70555f144d8491a825f0804e09c671c, type: 3}
1281
+ m_Name:
1282
+ m_EditorClassIdentifier:
1283
+ m_IgnoreLayout: 0
1284
+ m_MinWidth: -1
1285
+ m_MinHeight: -1
1286
+ m_PreferredWidth: -1
1287
+ m_PreferredHeight: -1
1288
+ m_FlexibleWidth: 1
1289
+ m_FlexibleHeight: -1
1290
+ m_LayoutPriority: 1
1291
+ --- !u!1 &7933696877447808372
1292
+ GameObject:
1293
+ m_ObjectHideFlags: 0
1294
+ m_CorrespondingSourceObject: {fileID: 0}
1295
+ m_PrefabInstance: {fileID: 0}
1296
+ m_PrefabAsset: {fileID: 0}
1297
+ serializedVersion: 6
1298
+ m_Component:
1299
+ - component: {fileID: 9055715403483714159}
1300
+ - component: {fileID: 2031441513518619420}
1301
+ - component: {fileID: 4330272027827398641}
1302
+ - component: {fileID: 8815840445590603457}
1303
+ m_Layer: 5
1304
+ m_Name: Scrollbar Vertical
1305
+ m_TagString: Untagged
1306
+ m_Icon: {fileID: 0}
1307
+ m_NavMeshLayer: 0
1308
+ m_StaticEditorFlags: 0
1309
+ m_IsActive: 1
1310
+ --- !u!224 &9055715403483714159
1311
+ RectTransform:
1312
+ m_ObjectHideFlags: 0
1313
+ m_CorrespondingSourceObject: {fileID: 0}
1314
+ m_PrefabInstance: {fileID: 0}
1315
+ m_PrefabAsset: {fileID: 0}
1316
+ m_GameObject: {fileID: 7933696877447808372}
1317
+ m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
1318
+ m_LocalPosition: {x: 0, y: 0, z: 0}
1319
+ m_LocalScale: {x: 1, y: 1, z: 1}
1320
+ m_Children:
1321
+ - {fileID: 5880231779306837594}
1322
+ m_Father: {fileID: 6885137629261013832}
1323
+ m_RootOrder: 1
1324
+ m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0}
1325
+ m_AnchorMin: {x: 1, y: 0}
1326
+ m_AnchorMax: {x: 1, y: 1}
1327
+ m_AnchoredPosition: {x: 0, y: 0}
1328
+ m_SizeDelta: {x: 20, y: -17}
1329
+ m_Pivot: {x: 1, y: 1}
1330
+ --- !u!222 &2031441513518619420
1331
+ CanvasRenderer:
1332
+ m_ObjectHideFlags: 0
1333
+ m_CorrespondingSourceObject: {fileID: 0}
1334
+ m_PrefabInstance: {fileID: 0}
1335
+ m_PrefabAsset: {fileID: 0}
1336
+ m_GameObject: {fileID: 7933696877447808372}
1337
+ m_CullTransparentMesh: 0
1338
+ --- !u!114 &4330272027827398641
1339
+ MonoBehaviour:
1340
+ m_ObjectHideFlags: 0
1341
+ m_CorrespondingSourceObject: {fileID: 0}
1342
+ m_PrefabInstance: {fileID: 0}
1343
+ m_PrefabAsset: {fileID: 0}
1344
+ m_GameObject: {fileID: 7933696877447808372}
1345
+ m_Enabled: 0
1346
+ m_EditorHideFlags: 0
1347
+ m_Script: {fileID: -765806418, guid: f70555f144d8491a825f0804e09c671c, type: 3}
1348
+ m_Name:
1349
+ m_EditorClassIdentifier:
1350
+ m_Material: {fileID: 0}
1351
+ m_Color: {r: 1, g: 1, b: 1, a: 1}
1352
+ m_RaycastTarget: 1
1353
+ m_OnCullStateChanged:
1354
+ m_PersistentCalls:
1355
+ m_Calls: []
1356
+ m_Sprite: {fileID: 10907, guid: 0000000000000000f000000000000000, type: 0}
1357
+ m_Type: 1
1358
+ m_PreserveAspect: 0
1359
+ m_FillCenter: 1
1360
+ m_FillMethod: 4
1361
+ m_FillAmount: 1
1362
+ m_FillClockwise: 1
1363
+ m_FillOrigin: 0
1364
+ m_UseSpriteMesh: 0
1365
+ --- !u!114 &8815840445590603457
1366
+ MonoBehaviour:
1367
+ m_ObjectHideFlags: 0
1368
+ m_CorrespondingSourceObject: {fileID: 0}
1369
+ m_PrefabInstance: {fileID: 0}
1370
+ m_PrefabAsset: {fileID: 0}
1371
+ m_GameObject: {fileID: 7933696877447808372}
1372
+ m_Enabled: 1
1373
+ m_EditorHideFlags: 0
1374
+ m_Script: {fileID: -2061169968, guid: f70555f144d8491a825f0804e09c671c, type: 3}
1375
+ m_Name:
1376
+ m_EditorClassIdentifier:
1377
+ m_Navigation:
1378
+ m_Mode: 3
1379
+ m_SelectOnUp: {fileID: 0}
1380
+ m_SelectOnDown: {fileID: 0}
1381
+ m_SelectOnLeft: {fileID: 0}
1382
+ m_SelectOnRight: {fileID: 0}
1383
+ m_Transition: 1
1384
+ m_Colors:
1385
+ m_NormalColor: {r: 1, g: 1, b: 1, a: 1}
1386
+ m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1}
1387
+ m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1}
1388
+ m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608}
1389
+ m_ColorMultiplier: 1
1390
+ m_FadeDuration: 0.1
1391
+ m_SpriteState:
1392
+ m_HighlightedSprite: {fileID: 0}
1393
+ m_PressedSprite: {fileID: 0}
1394
+ m_DisabledSprite: {fileID: 0}
1395
+ m_AnimationTriggers:
1396
+ m_NormalTrigger: Normal
1397
+ m_HighlightedTrigger: Highlighted
1398
+ m_PressedTrigger: Pressed
1399
+ m_DisabledTrigger: Disabled
1400
+ m_Interactable: 1
1401
+ m_TargetGraphic: {fileID: 7748451557429726025}
1402
+ m_HandleRect: {fileID: 8380821465180823213}
1403
+ m_Direction: 2
1404
+ m_Value: 0
1405
+ m_Size: 1
1406
+ m_NumberOfSteps: 0
1407
+ m_OnValueChanged:
1408
+ m_PersistentCalls:
1409
+ m_Calls: []
1410
+ --- !u!114 &1694842723
1411
+ MonoBehaviour:
1412
+ m_ObjectHideFlags: 0
1413
+ m_CorrespondingSourceObject: {fileID: 0}
1414
+ m_PrefabInstance: {fileID: 0}
1415
+ m_PrefabAsset: {fileID: 0}
1416
+ m_GameObject: {fileID: 8303094792839375018}
1417
+ m_Enabled: 1
1418
+ m_EditorHideFlags: 0
1419
+ m_Script: {fileID: 1679637790, guid: f70555f144d8491a825f0804e09c671c, type: 3}
1420
+ m_Name:
1421
+ m_EditorClassIdentifier:
1422
+ m_IgnoreLayout: 0
1423
+ m_MinWidth: -1
1424
+ m_MinHeight: -1
1425
+ m_PreferredWidth: 50
1426
+ m_PreferredHeight: 50
1427
+ m_FlexibleWidth: -1
1428
+ m_FlexibleHeight: -1
1429
+ m_LayoutPriority: 1
1430
+ --- !u!1001 &1547578843531214706
1431
+ PrefabInstance:
1432
+ m_ObjectHideFlags: 0
1433
+ serializedVersion: 2
1434
+ m_Modification:
1435
+ m_TransformParent: {fileID: 1608350197}
1436
+ m_Modifications:
1437
+ - target: {fileID: 171081081497332523, guid: 4cb34ff8345a24ca4a15957afc676143,
1438
+ type: 3}
1439
+ propertyPath: m_ChildAlignment
1440
+ value: 1
1441
+ objectReference: {fileID: 0}
1442
+ - target: {fileID: 171081081497332523, guid: 4cb34ff8345a24ca4a15957afc676143,
1443
+ type: 3}
1444
+ propertyPath: m_Enabled
1445
+ value: 0
1446
+ objectReference: {fileID: 0}
1447
+ - target: {fileID: 2333662960840255071, guid: 4cb34ff8345a24ca4a15957afc676143,
1448
+ type: 3}
1449
+ propertyPath: m_Name
1450
+ value: DE_Button
1451
+ objectReference: {fileID: 0}
1452
+ - target: {fileID: 4249399314861249548, guid: 4cb34ff8345a24ca4a15957afc676143,
1453
+ type: 3}
1454
+ propertyPath: m_textInfo.characterCount
1455
+ value: 5
1456
+ objectReference: {fileID: 0}
1457
+ - target: {fileID: 4249399314861249548, guid: 4cb34ff8345a24ca4a15957afc676143,
1458
+ type: 3}
1459
+ propertyPath: m_textInfo.wordCount
1460
+ value: 1
1461
+ objectReference: {fileID: 0}
1462
+ - target: {fileID: 4249399314861249548, guid: 4cb34ff8345a24ca4a15957afc676143,
1463
+ type: 3}
1464
+ propertyPath: m_textInfo.lineCount
1465
+ value: 1
1466
+ objectReference: {fileID: 0}
1467
+ - target: {fileID: 4249399314861249548, guid: 4cb34ff8345a24ca4a15957afc676143,
1468
+ type: 3}
1469
+ propertyPath: m_textInfo.pageCount
1470
+ value: 1
1471
+ objectReference: {fileID: 0}
1472
+ - target: {fileID: 4249399314861249548, guid: 4cb34ff8345a24ca4a15957afc676143,
1473
+ type: 3}
1474
+ propertyPath: m_text
1475
+ value: Claim
1476
+ objectReference: {fileID: 0}
1477
+ - target: {fileID: 4249399314861249548, guid: 4cb34ff8345a24ca4a15957afc676143,
1478
+ type: 3}
1479
+ propertyPath: m_fontAsset
1480
+ value:
1481
+ objectReference: {fileID: 11400000, guid: 9fa6531a4de424c23a9799802ebd7567,
1482
+ type: 2}
1483
+ - target: {fileID: 4249399314861249548, guid: 4cb34ff8345a24ca4a15957afc676143,
1484
+ type: 3}
1485
+ propertyPath: m_sharedMaterial
1486
+ value:
1487
+ objectReference: {fileID: 21932485039343170, guid: 9fa6531a4de424c23a9799802ebd7567,
1488
+ type: 2}
1489
+ - target: {fileID: 4249399314861249548, guid: 4cb34ff8345a24ca4a15957afc676143,
1490
+ type: 3}
1491
+ propertyPath: m_fontColor.r
1492
+ value: 1
1493
+ objectReference: {fileID: 0}
1494
+ - target: {fileID: 4249399314861249548, guid: 4cb34ff8345a24ca4a15957afc676143,
1495
+ type: 3}
1496
+ propertyPath: m_fontColor.g
1497
+ value: 1
1498
+ objectReference: {fileID: 0}
1499
+ - target: {fileID: 4249399314861249548, guid: 4cb34ff8345a24ca4a15957afc676143,
1500
+ type: 3}
1501
+ propertyPath: m_fontColor.b
1502
+ value: 1
1503
+ objectReference: {fileID: 0}
1504
+ - target: {fileID: 4249399314861249548, guid: 4cb34ff8345a24ca4a15957afc676143,
1505
+ type: 3}
1506
+ propertyPath: m_fontSize
1507
+ value: 18
1508
+ objectReference: {fileID: 0}
1509
+ - target: {fileID: 4249399314861249548, guid: 4cb34ff8345a24ca4a15957afc676143,
1510
+ type: 3}
1511
+ propertyPath: m_fontSizeBase
1512
+ value: 18
1513
+ objectReference: {fileID: 0}
1514
+ - target: {fileID: 4249399314861249548, guid: 4cb34ff8345a24ca4a15957afc676143,
1515
+ type: 3}
1516
+ propertyPath: m_fontStyle
1517
+ value: 17
1518
+ objectReference: {fileID: 0}
1519
+ - target: {fileID: 4249399314861249548, guid: 4cb34ff8345a24ca4a15957afc676143,
1520
+ type: 3}
1521
+ propertyPath: m_fontColor32.rgba
1522
+ value: 4294967295
1523
+ objectReference: {fileID: 0}
1524
+ - target: {fileID: 5451969974762879296, guid: 4cb34ff8345a24ca4a15957afc676143,
1525
+ type: 3}
1526
+ propertyPath: OnClick.m_PersistentCalls.m_Calls.Array.size
1527
+ value: 1
1528
+ objectReference: {fileID: 0}
1529
+ - target: {fileID: 5451969974762879296, guid: 4cb34ff8345a24ca4a15957afc676143,
1530
+ type: 3}
1531
+ propertyPath: Text
1532
+ value: Claim
1533
+ objectReference: {fileID: 0}
1534
+ - target: {fileID: 5451969974762879296, guid: 4cb34ff8345a24ca4a15957afc676143,
1535
+ type: 3}
1536
+ propertyPath: OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Mode
1537
+ value: 1
1538
+ objectReference: {fileID: 0}
1539
+ - target: {fileID: 5451969974762879296, guid: 4cb34ff8345a24ca4a15957afc676143,
1540
+ type: 3}
1541
+ propertyPath: OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_CallState
1542
+ value: 2
1543
+ objectReference: {fileID: 0}
1544
+ - target: {fileID: 5451969974762879296, guid: 4cb34ff8345a24ca4a15957afc676143,
1545
+ type: 3}
1546
+ propertyPath: OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Target
1547
+ value:
1548
+ objectReference: {fileID: 1038429375852148309}
1549
+ - target: {fileID: 5451969974762879296, guid: 4cb34ff8345a24ca4a15957afc676143,
1550
+ type: 3}
1551
+ propertyPath: OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName
1552
+ value: onClaim
1553
+ objectReference: {fileID: 0}
1554
+ - target: {fileID: 5451969974762879296, guid: 4cb34ff8345a24ca4a15957afc676143,
1555
+ type: 3}
1556
+ propertyPath: OnClick.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName
1557
+ value: UnityEngine.Object, UnityEngine
1558
+ objectReference: {fileID: 0}
1559
+ - target: {fileID: 5715864076538005536, guid: 4cb34ff8345a24ca4a15957afc676143,
1560
+ type: 3}
1561
+ propertyPath: m_Enabled
1562
+ value: 1
1563
+ objectReference: {fileID: 0}
1564
+ - target: {fileID: 5715864076538005536, guid: 4cb34ff8345a24ca4a15957afc676143,
1565
+ type: 3}
1566
+ propertyPath: m_Material
1567
+ value:
1568
+ objectReference: {fileID: 2100000, guid: 3e95cd4434b784a3a9eead17c23b996b, type: 2}
1569
+ - target: {fileID: 5715864076538005536, guid: 4cb34ff8345a24ca4a15957afc676143,
1570
+ type: 3}
1571
+ propertyPath: m_Color.g
1572
+ value: 0.22114009
1573
+ objectReference: {fileID: 0}
1574
+ - target: {fileID: 5715864076538005536, guid: 4cb34ff8345a24ca4a15957afc676143,
1575
+ type: 3}
1576
+ propertyPath: m_Color.b
1577
+ value: 0
1578
+ objectReference: {fileID: 0}
1579
+ - target: {fileID: 5715864076538005536, guid: 4cb34ff8345a24ca4a15957afc676143,
1580
+ type: 3}
1581
+ propertyPath: m_Color.a
1582
+ value: 0.22745098
1583
+ objectReference: {fileID: 0}
1584
+ - target: {fileID: 5715864076538005536, guid: 4cb34ff8345a24ca4a15957afc676143,
1585
+ type: 3}
1586
+ propertyPath: m_Sprite
1587
+ value:
1588
+ objectReference: {fileID: 21300000, guid: 612399b3488504065a624fcb014eac0b,
1589
+ type: 3}
1590
+ - target: {fileID: 5715864076538005536, guid: 4cb34ff8345a24ca4a15957afc676143,
1591
+ type: 3}
1592
+ propertyPath: m_Type
1593
+ value: 2
1594
+ objectReference: {fileID: 0}
1595
+ - target: {fileID: 6632972190972599497, guid: 4cb34ff8345a24ca4a15957afc676143,
1596
+ type: 3}
1597
+ propertyPath: m_AnchorMin.y
1598
+ value: 0
1599
+ objectReference: {fileID: 0}
1600
+ - target: {fileID: 6632972190972599497, guid: 4cb34ff8345a24ca4a15957afc676143,
1601
+ type: 3}
1602
+ propertyPath: m_AnchorMax.y
1603
+ value: 1
1604
+ objectReference: {fileID: 0}
1605
+ - target: {fileID: 6632972190972599497, guid: 4cb34ff8345a24ca4a15957afc676143,
1606
+ type: 3}
1607
+ propertyPath: m_AnchoredPosition.x
1608
+ value: 0
1609
+ objectReference: {fileID: 0}
1610
+ - target: {fileID: 6632972190972599497, guid: 4cb34ff8345a24ca4a15957afc676143,
1611
+ type: 3}
1612
+ propertyPath: m_AnchoredPosition.y
1613
+ value: 0
1614
+ objectReference: {fileID: 0}
1615
+ - target: {fileID: 6632972190972599497, guid: 4cb34ff8345a24ca4a15957afc676143,
1616
+ type: 3}
1617
+ propertyPath: m_AnchorMin.x
1618
+ value: 0
1619
+ objectReference: {fileID: 0}
1620
+ - target: {fileID: 6632972190972599497, guid: 4cb34ff8345a24ca4a15957afc676143,
1621
+ type: 3}
1622
+ propertyPath: m_AnchorMax.x
1623
+ value: 1
1624
+ objectReference: {fileID: 0}
1625
+ - target: {fileID: 6632972190972599497, guid: 4cb34ff8345a24ca4a15957afc676143,
1626
+ type: 3}
1627
+ propertyPath: m_SizeDelta.x
1628
+ value: 0
1629
+ objectReference: {fileID: 0}
1630
+ - target: {fileID: 6632972190972599497, guid: 4cb34ff8345a24ca4a15957afc676143,
1631
+ type: 3}
1632
+ propertyPath: m_SizeDelta.y
1633
+ value: 0
1634
+ objectReference: {fileID: 0}
1635
+ - target: {fileID: 7126874078771269106, guid: 4cb34ff8345a24ca4a15957afc676143,
1636
+ type: 3}
1637
+ propertyPath: m_Transition
1638
+ value: 1
1639
+ objectReference: {fileID: 0}
1640
+ - target: {fileID: 7126874078771269106, guid: 4cb34ff8345a24ca4a15957afc676143,
1641
+ type: 3}
1642
+ propertyPath: m_Colors.m_HighlightedColor.r
1643
+ value: 1
1644
+ objectReference: {fileID: 0}
1645
+ - target: {fileID: 7126874078771269106, guid: 4cb34ff8345a24ca4a15957afc676143,
1646
+ type: 3}
1647
+ propertyPath: m_Colors.m_HighlightedColor.g
1648
+ value: 1
1649
+ objectReference: {fileID: 0}
1650
+ - target: {fileID: 7126874078771269106, guid: 4cb34ff8345a24ca4a15957afc676143,
1651
+ type: 3}
1652
+ propertyPath: m_Colors.m_PressedColor.r
1653
+ value: 1
1654
+ objectReference: {fileID: 0}
1655
+ - target: {fileID: 7126874078771269106, guid: 4cb34ff8345a24ca4a15957afc676143,
1656
+ type: 3}
1657
+ propertyPath: m_Colors.m_PressedColor.g
1658
+ value: 1
1659
+ objectReference: {fileID: 0}
1660
+ - target: {fileID: 7126874078771269106, guid: 4cb34ff8345a24ca4a15957afc676143,
1661
+ type: 3}
1662
+ propertyPath: m_Colors.m_PressedColor.b
1663
+ value: 1
1664
+ objectReference: {fileID: 0}
1665
+ - target: {fileID: 7126874078771269106, guid: 4cb34ff8345a24ca4a15957afc676143,
1666
+ type: 3}
1667
+ propertyPath: m_Colors.m_DisabledColor.r
1668
+ value: 1
1669
+ objectReference: {fileID: 0}
1670
+ - target: {fileID: 7126874078771269106, guid: 4cb34ff8345a24ca4a15957afc676143,
1671
+ type: 3}
1672
+ propertyPath: m_Colors.m_DisabledColor.g
1673
+ value: 1
1674
+ objectReference: {fileID: 0}
1675
+ - target: {fileID: 7126874078771269106, guid: 4cb34ff8345a24ca4a15957afc676143,
1676
+ type: 3}
1677
+ propertyPath: m_Colors.m_DisabledColor.b
1678
+ value: 1
1679
+ objectReference: {fileID: 0}
1680
+ - target: {fileID: 7126874078771269106, guid: 4cb34ff8345a24ca4a15957afc676143,
1681
+ type: 3}
1682
+ propertyPath: m_Colors.m_DisabledColor.a
1683
+ value: 1
1684
+ objectReference: {fileID: 0}
1685
+ - target: {fileID: 7126874078771269106, guid: 4cb34ff8345a24ca4a15957afc676143,
1686
+ type: 3}
1687
+ propertyPath: m_Colors.m_FadeDuration
1688
+ value: 0.3
1689
+ objectReference: {fileID: 0}
1690
+ - target: {fileID: 7126874078771269106, guid: 4cb34ff8345a24ca4a15957afc676143,
1691
+ type: 3}
1692
+ propertyPath: m_SpriteState.m_PressedSprite
1693
+ value:
1694
+ objectReference: {fileID: 0}
1695
+ - target: {fileID: 8148759153669638501, guid: 4cb34ff8345a24ca4a15957afc676143,
1696
+ type: 3}
1697
+ propertyPath: m_Enabled
1698
+ value: 0
1699
+ objectReference: {fileID: 0}
1700
+ - target: {fileID: 8392886581046993327, guid: 4cb34ff8345a24ca4a15957afc676143,
1701
+ type: 3}
1702
+ propertyPath: m_LocalPosition.x
1703
+ value: 0
1704
+ objectReference: {fileID: 0}
1705
+ - target: {fileID: 8392886581046993327, guid: 4cb34ff8345a24ca4a15957afc676143,
1706
+ type: 3}
1707
+ propertyPath: m_LocalPosition.y
1708
+ value: 0
1709
+ objectReference: {fileID: 0}
1710
+ - target: {fileID: 8392886581046993327, guid: 4cb34ff8345a24ca4a15957afc676143,
1711
+ type: 3}
1712
+ propertyPath: m_LocalPosition.z
1713
+ value: 0
1714
+ objectReference: {fileID: 0}
1715
+ - target: {fileID: 8392886581046993327, guid: 4cb34ff8345a24ca4a15957afc676143,
1716
+ type: 3}
1717
+ propertyPath: m_LocalRotation.x
1718
+ value: -0
1719
+ objectReference: {fileID: 0}
1720
+ - target: {fileID: 8392886581046993327, guid: 4cb34ff8345a24ca4a15957afc676143,
1721
+ type: 3}
1722
+ propertyPath: m_LocalRotation.y
1723
+ value: -0
1724
+ objectReference: {fileID: 0}
1725
+ - target: {fileID: 8392886581046993327, guid: 4cb34ff8345a24ca4a15957afc676143,
1726
+ type: 3}
1727
+ propertyPath: m_LocalRotation.z
1728
+ value: -0
1729
+ objectReference: {fileID: 0}
1730
+ - target: {fileID: 8392886581046993327, guid: 4cb34ff8345a24ca4a15957afc676143,
1731
+ type: 3}
1732
+ propertyPath: m_LocalRotation.w
1733
+ value: 1
1734
+ objectReference: {fileID: 0}
1735
+ - target: {fileID: 8392886581046993327, guid: 4cb34ff8345a24ca4a15957afc676143,
1736
+ type: 3}
1737
+ propertyPath: m_RootOrder
1738
+ value: 0
1739
+ objectReference: {fileID: 0}
1740
+ - target: {fileID: 8392886581046993327, guid: 4cb34ff8345a24ca4a15957afc676143,
1741
+ type: 3}
1742
+ propertyPath: m_LocalEulerAnglesHint.x
1743
+ value: 0
1744
+ objectReference: {fileID: 0}
1745
+ - target: {fileID: 8392886581046993327, guid: 4cb34ff8345a24ca4a15957afc676143,
1746
+ type: 3}
1747
+ propertyPath: m_LocalEulerAnglesHint.y
1748
+ value: 0
1749
+ objectReference: {fileID: 0}
1750
+ - target: {fileID: 8392886581046993327, guid: 4cb34ff8345a24ca4a15957afc676143,
1751
+ type: 3}
1752
+ propertyPath: m_LocalEulerAnglesHint.z
1753
+ value: 0
1754
+ objectReference: {fileID: 0}
1755
+ - target: {fileID: 8392886581046993327, guid: 4cb34ff8345a24ca4a15957afc676143,
1756
+ type: 3}
1757
+ propertyPath: m_AnchoredPosition.x
1758
+ value: 0
1759
+ objectReference: {fileID: 0}
1760
+ - target: {fileID: 8392886581046993327, guid: 4cb34ff8345a24ca4a15957afc676143,
1761
+ type: 3}
1762
+ propertyPath: m_AnchoredPosition.y
1763
+ value: 40
1764
+ objectReference: {fileID: 0}
1765
+ - target: {fileID: 8392886581046993327, guid: 4cb34ff8345a24ca4a15957afc676143,
1766
+ type: 3}
1767
+ propertyPath: m_SizeDelta.x
1768
+ value: -20
1769
+ objectReference: {fileID: 0}
1770
+ - target: {fileID: 8392886581046993327, guid: 4cb34ff8345a24ca4a15957afc676143,
1771
+ type: 3}
1772
+ propertyPath: m_SizeDelta.y
1773
+ value: 50
1774
+ objectReference: {fileID: 0}
1775
+ - target: {fileID: 8392886581046993327, guid: 4cb34ff8345a24ca4a15957afc676143,
1776
+ type: 3}
1777
+ propertyPath: m_AnchorMin.x
1778
+ value: 0
1779
+ objectReference: {fileID: 0}
1780
+ - target: {fileID: 8392886581046993327, guid: 4cb34ff8345a24ca4a15957afc676143,
1781
+ type: 3}
1782
+ propertyPath: m_AnchorMin.y
1783
+ value: 0
1784
+ objectReference: {fileID: 0}
1785
+ - target: {fileID: 8392886581046993327, guid: 4cb34ff8345a24ca4a15957afc676143,
1786
+ type: 3}
1787
+ propertyPath: m_AnchorMax.x
1788
+ value: 1
1789
+ objectReference: {fileID: 0}
1790
+ - target: {fileID: 8392886581046993327, guid: 4cb34ff8345a24ca4a15957afc676143,
1791
+ type: 3}
1792
+ propertyPath: m_AnchorMax.y
1793
+ value: 0
1794
+ objectReference: {fileID: 0}
1795
+ - target: {fileID: 8392886581046993327, guid: 4cb34ff8345a24ca4a15957afc676143,
1796
+ type: 3}
1797
+ propertyPath: m_Pivot.x
1798
+ value: 0.5
1799
+ objectReference: {fileID: 0}
1800
+ - target: {fileID: 8392886581046993327, guid: 4cb34ff8345a24ca4a15957afc676143,
1801
+ type: 3}
1802
+ propertyPath: m_Pivot.y
1803
+ value: 0
1804
+ objectReference: {fileID: 0}
1805
+ m_RemovedComponents:
1806
+ - {fileID: 171081081497332523, guid: 4cb34ff8345a24ca4a15957afc676143, type: 3}
1807
+ - {fileID: 8148759153669638501, guid: 4cb34ff8345a24ca4a15957afc676143, type: 3}
1808
+ m_SourcePrefab: {fileID: 100100000, guid: 4cb34ff8345a24ca4a15957afc676143, type: 3}
1809
+ --- !u!114 &3423576755712142206 stripped
1810
+ MonoBehaviour:
1811
+ m_CorrespondingSourceObject: {fileID: 4249399314861249548, guid: 4cb34ff8345a24ca4a15957afc676143,
1812
+ type: 3}
1813
+ m_PrefabInstance: {fileID: 1547578843531214706}
1814
+ m_PrefabAsset: {fileID: 0}
1815
+ m_GameObject: {fileID: 6880003925121890369}
1816
+ m_Enabled: 1
1817
+ m_EditorHideFlags: 0
1818
+ m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
1819
+ m_Name:
1820
+ m_EditorClassIdentifier:
1821
+ --- !u!1 &6880003925121890369 stripped
1822
+ GameObject:
1823
+ m_CorrespondingSourceObject: {fileID: 5332461915383301939, guid: 4cb34ff8345a24ca4a15957afc676143,
1824
+ type: 3}
1825
+ m_PrefabInstance: {fileID: 1547578843531214706}
1826
+ m_PrefabAsset: {fileID: 0}
1827
+ --- !u!114 &8619226635080544896 stripped
1828
+ MonoBehaviour:
1829
+ m_CorrespondingSourceObject: {fileID: 7126874078771269106, guid: 4cb34ff8345a24ca4a15957afc676143,
1830
+ type: 3}
1831
+ m_PrefabInstance: {fileID: 1547578843531214706}
1832
+ m_PrefabAsset: {fileID: 0}
1833
+ m_GameObject: {fileID: 0}
1834
+ m_Enabled: 1
1835
+ m_EditorHideFlags: 0
1836
+ m_Script: {fileID: 1392445389, guid: f70555f144d8491a825f0804e09c671c, type: 3}
1837
+ m_Name:
1838
+ m_EditorClassIdentifier:
1839
+ --- !u!224 &6990606019179355869 stripped
1840
+ RectTransform:
1841
+ m_CorrespondingSourceObject: {fileID: 8392886581046993327, guid: 4cb34ff8345a24ca4a15957afc676143,
1842
+ type: 3}
1843
+ m_PrefabInstance: {fileID: 1547578843531214706}
1844
+ m_PrefabAsset: {fileID: 0}
1845
+ --- !u!1 &3826033124434303277 stripped
1846
+ GameObject:
1847
+ m_CorrespondingSourceObject: {fileID: 2333662960840255071, guid: 4cb34ff8345a24ca4a15957afc676143,
1848
+ type: 3}
1849
+ m_PrefabInstance: {fileID: 1547578843531214706}
1850
+ m_PrefabAsset: {fileID: 0}
1851
+ --- !u!1001 &8989965063395468826
1852
+ PrefabInstance:
1853
+ m_ObjectHideFlags: 0
1854
+ serializedVersion: 2
1855
+ m_Modification:
1856
+ m_TransformParent: {fileID: 208922704}
1857
+ m_Modifications:
1858
+ - target: {fileID: 114817741724114070, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1859
+ type: 3}
1860
+ propertyPath: m_Enabled
1861
+ value: 0
1862
+ objectReference: {fileID: 0}
1863
+ - target: {fileID: 926604856627103970, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1864
+ type: 3}
1865
+ propertyPath: m_Colors.m_HighlightedColor.r
1866
+ value: 1
1867
+ objectReference: {fileID: 0}
1868
+ - target: {fileID: 926604856627103970, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1869
+ type: 3}
1870
+ propertyPath: m_Colors.m_HighlightedColor.g
1871
+ value: 1
1872
+ objectReference: {fileID: 0}
1873
+ - target: {fileID: 926604856627103970, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1874
+ type: 3}
1875
+ propertyPath: m_Colors.m_HighlightedColor.b
1876
+ value: 1
1877
+ objectReference: {fileID: 0}
1878
+ - target: {fileID: 926604856627103970, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1879
+ type: 3}
1880
+ propertyPath: m_Colors.m_PressedColor.r
1881
+ value: 1
1882
+ objectReference: {fileID: 0}
1883
+ - target: {fileID: 926604856627103970, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1884
+ type: 3}
1885
+ propertyPath: m_Colors.m_PressedColor.g
1886
+ value: 1
1887
+ objectReference: {fileID: 0}
1888
+ - target: {fileID: 926604856627103970, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1889
+ type: 3}
1890
+ propertyPath: m_Colors.m_PressedColor.b
1891
+ value: 1
1892
+ objectReference: {fileID: 0}
1893
+ - target: {fileID: 926604856627103970, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1894
+ type: 3}
1895
+ propertyPath: m_Colors.m_DisabledColor.r
1896
+ value: 1
1897
+ objectReference: {fileID: 0}
1898
+ - target: {fileID: 926604856627103970, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1899
+ type: 3}
1900
+ propertyPath: m_Colors.m_DisabledColor.g
1901
+ value: 1
1902
+ objectReference: {fileID: 0}
1903
+ - target: {fileID: 926604856627103970, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1904
+ type: 3}
1905
+ propertyPath: m_Colors.m_DisabledColor.b
1906
+ value: 1
1907
+ objectReference: {fileID: 0}
1908
+ - target: {fileID: 926604856627103970, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1909
+ type: 3}
1910
+ propertyPath: m_Colors.m_DisabledColor.a
1911
+ value: 1
1912
+ objectReference: {fileID: 0}
1913
+ - target: {fileID: 926604856627103970, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1914
+ type: 3}
1915
+ propertyPath: m_Colors.m_FadeDuration
1916
+ value: 0.3
1917
+ objectReference: {fileID: 0}
1918
+ - target: {fileID: 926604856627103970, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1919
+ type: 3}
1920
+ propertyPath: m_AnimationTriggers.m_NormalTrigger
1921
+ value: Normal
1922
+ objectReference: {fileID: 0}
1923
+ - target: {fileID: 926604856627103970, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1924
+ type: 3}
1925
+ propertyPath: m_AnimationTriggers.m_HighlightedTrigger
1926
+ value: Highlighted
1927
+ objectReference: {fileID: 0}
1928
+ - target: {fileID: 926604856627103970, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1929
+ type: 3}
1930
+ propertyPath: m_AnimationTriggers.m_PressedTrigger
1931
+ value: Pressed
1932
+ objectReference: {fileID: 0}
1933
+ - target: {fileID: 926604856627103970, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1934
+ type: 3}
1935
+ propertyPath: m_AnimationTriggers.m_DisabledTrigger
1936
+ value: Disabled
1937
+ objectReference: {fileID: 0}
1938
+ - target: {fileID: 1150741313932349104, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1939
+ type: 3}
1940
+ propertyPath: m_Name
1941
+ value: BackBtn
1942
+ objectReference: {fileID: 0}
1943
+ - target: {fileID: 1150741313932349106, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1944
+ type: 3}
1945
+ propertyPath: m_Enabled
1946
+ value: 1
1947
+ objectReference: {fileID: 0}
1948
+ - target: {fileID: 1150741313932349106, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1949
+ type: 3}
1950
+ propertyPath: m_Transition
1951
+ value: 1
1952
+ objectReference: {fileID: 0}
1953
+ - target: {fileID: 1150741313932349106, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1954
+ type: 3}
1955
+ propertyPath: m_Colors.m_DisabledColor.r
1956
+ value: 0.8490566
1957
+ objectReference: {fileID: 0}
1958
+ - target: {fileID: 1150741313932349106, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1959
+ type: 3}
1960
+ propertyPath: m_Colors.m_DisabledColor.g
1961
+ value: 0.8490566
1962
+ objectReference: {fileID: 0}
1963
+ - target: {fileID: 1150741313932349106, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1964
+ type: 3}
1965
+ propertyPath: m_Colors.m_DisabledColor.b
1966
+ value: 0.8490566
1967
+ objectReference: {fileID: 0}
1968
+ - target: {fileID: 1150741313932349106, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1969
+ type: 3}
1970
+ propertyPath: m_Colors.m_HighlightedColor.r
1971
+ value: 0.8773585
1972
+ objectReference: {fileID: 0}
1973
+ - target: {fileID: 1150741313932349106, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1974
+ type: 3}
1975
+ propertyPath: m_Colors.m_HighlightedColor.g
1976
+ value: 0.8773585
1977
+ objectReference: {fileID: 0}
1978
+ - target: {fileID: 1150741313932349106, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1979
+ type: 3}
1980
+ propertyPath: m_Colors.m_HighlightedColor.b
1981
+ value: 0.8773585
1982
+ objectReference: {fileID: 0}
1983
+ - target: {fileID: 1150741313932349106, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1984
+ type: 3}
1985
+ propertyPath: m_Colors.m_DisabledColor.a
1986
+ value: 0.8745098
1987
+ objectReference: {fileID: 0}
1988
+ - target: {fileID: 1150741313932349107, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1989
+ type: 3}
1990
+ propertyPath: m_LocalPosition.x
1991
+ value: 0
1992
+ objectReference: {fileID: 0}
1993
+ - target: {fileID: 1150741313932349107, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1994
+ type: 3}
1995
+ propertyPath: m_LocalPosition.y
1996
+ value: 0
1997
+ objectReference: {fileID: 0}
1998
+ - target: {fileID: 1150741313932349107, guid: 4b63f9bb970644cddbfce3509a7ebc50,
1999
+ type: 3}
2000
+ propertyPath: m_LocalPosition.z
2001
+ value: 0
2002
+ objectReference: {fileID: 0}
2003
+ - target: {fileID: 1150741313932349107, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2004
+ type: 3}
2005
+ propertyPath: m_LocalRotation.x
2006
+ value: -0
2007
+ objectReference: {fileID: 0}
2008
+ - target: {fileID: 1150741313932349107, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2009
+ type: 3}
2010
+ propertyPath: m_LocalRotation.y
2011
+ value: -0
2012
+ objectReference: {fileID: 0}
2013
+ - target: {fileID: 1150741313932349107, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2014
+ type: 3}
2015
+ propertyPath: m_LocalRotation.z
2016
+ value: -0
2017
+ objectReference: {fileID: 0}
2018
+ - target: {fileID: 1150741313932349107, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2019
+ type: 3}
2020
+ propertyPath: m_LocalRotation.w
2021
+ value: 1
2022
+ objectReference: {fileID: 0}
2023
+ - target: {fileID: 1150741313932349107, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2024
+ type: 3}
2025
+ propertyPath: m_RootOrder
2026
+ value: 0
2027
+ objectReference: {fileID: 0}
2028
+ - target: {fileID: 1150741313932349107, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2029
+ type: 3}
2030
+ propertyPath: m_LocalEulerAnglesHint.x
2031
+ value: 0
2032
+ objectReference: {fileID: 0}
2033
+ - target: {fileID: 1150741313932349107, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2034
+ type: 3}
2035
+ propertyPath: m_LocalEulerAnglesHint.y
2036
+ value: 0
2037
+ objectReference: {fileID: 0}
2038
+ - target: {fileID: 1150741313932349107, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2039
+ type: 3}
2040
+ propertyPath: m_LocalEulerAnglesHint.z
2041
+ value: 0
2042
+ objectReference: {fileID: 0}
2043
+ - target: {fileID: 1150741313932349107, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2044
+ type: 3}
2045
+ propertyPath: m_AnchoredPosition.x
2046
+ value: 0
2047
+ objectReference: {fileID: 0}
2048
+ - target: {fileID: 1150741313932349107, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2049
+ type: 3}
2050
+ propertyPath: m_AnchoredPosition.y
2051
+ value: 0
2052
+ objectReference: {fileID: 0}
2053
+ - target: {fileID: 1150741313932349107, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2054
+ type: 3}
2055
+ propertyPath: m_SizeDelta.x
2056
+ value: 0
2057
+ objectReference: {fileID: 0}
2058
+ - target: {fileID: 1150741313932349107, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2059
+ type: 3}
2060
+ propertyPath: m_SizeDelta.y
2061
+ value: 0
2062
+ objectReference: {fileID: 0}
2063
+ - target: {fileID: 1150741313932349107, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2064
+ type: 3}
2065
+ propertyPath: m_AnchorMin.x
2066
+ value: 0
2067
+ objectReference: {fileID: 0}
2068
+ - target: {fileID: 1150741313932349107, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2069
+ type: 3}
2070
+ propertyPath: m_AnchorMin.y
2071
+ value: 0
2072
+ objectReference: {fileID: 0}
2073
+ - target: {fileID: 1150741313932349107, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2074
+ type: 3}
2075
+ propertyPath: m_AnchorMax.x
2076
+ value: 0
2077
+ objectReference: {fileID: 0}
2078
+ - target: {fileID: 1150741313932349107, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2079
+ type: 3}
2080
+ propertyPath: m_AnchorMax.y
2081
+ value: 0
2082
+ objectReference: {fileID: 0}
2083
+ - target: {fileID: 1150741313932349107, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2084
+ type: 3}
2085
+ propertyPath: m_Pivot.x
2086
+ value: 0
2087
+ objectReference: {fileID: 0}
2088
+ - target: {fileID: 1150741313932349107, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2089
+ type: 3}
2090
+ propertyPath: m_Pivot.y
2091
+ value: 0.5
2092
+ objectReference: {fileID: 0}
2093
+ - target: {fileID: 1150741313932349109, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2094
+ type: 3}
2095
+ propertyPath: m_Enabled
2096
+ value: 0
2097
+ objectReference: {fileID: 0}
2098
+ - target: {fileID: 1150741313932349109, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2099
+ type: 3}
2100
+ propertyPath: m_Color.r
2101
+ value: 1
2102
+ objectReference: {fileID: 0}
2103
+ - target: {fileID: 1150741313932349109, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2104
+ type: 3}
2105
+ propertyPath: m_Color.g
2106
+ value: 1
2107
+ objectReference: {fileID: 0}
2108
+ - target: {fileID: 1150741313932349109, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2109
+ type: 3}
2110
+ propertyPath: m_Color.b
2111
+ value: 1
2112
+ objectReference: {fileID: 0}
2113
+ - target: {fileID: 1150741313932349109, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2114
+ type: 3}
2115
+ propertyPath: m_Sprite
2116
+ value:
2117
+ objectReference: {fileID: 21300000, guid: 4236c9a3fed474cf39e58ffe79563a73,
2118
+ type: 3}
2119
+ - target: {fileID: 1150741313932349109, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2120
+ type: 3}
2121
+ propertyPath: m_Type
2122
+ value: 0
2123
+ objectReference: {fileID: 0}
2124
+ - target: {fileID: 1363366926891129630, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2125
+ type: 3}
2126
+ propertyPath: Clip
2127
+ value:
2128
+ objectReference: {fileID: 0}
2129
+ - target: {fileID: 2007780330512198010, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2130
+ type: 3}
2131
+ propertyPath: m_AnchoredPosition.x
2132
+ value: 0
2133
+ objectReference: {fileID: 0}
2134
+ - target: {fileID: 2007780330512198010, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2135
+ type: 3}
2136
+ propertyPath: m_AnchoredPosition.y
2137
+ value: 0
2138
+ objectReference: {fileID: 0}
2139
+ - target: {fileID: 6596470727128605350, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2140
+ type: 3}
2141
+ propertyPath: Offset.x
2142
+ value: 0
2143
+ objectReference: {fileID: 0}
2144
+ - target: {fileID: 6596470727128605350, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2145
+ type: 3}
2146
+ propertyPath: Offset.y
2147
+ value: 0
2148
+ objectReference: {fileID: 0}
2149
+ - target: {fileID: 8178536616803527459, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2150
+ type: 3}
2151
+ propertyPath: MenuManager
2152
+ value:
2153
+ objectReference: {fileID: 470237999}
2154
+ m_RemovedComponents: []
2155
+ m_SourcePrefab: {fileID: 100100000, guid: 4b63f9bb970644cddbfce3509a7ebc50, type: 3}
2156
+ --- !u!1 &8303094792839375018 stripped
2157
+ GameObject:
2158
+ m_CorrespondingSourceObject: {fileID: 1150741313932349104, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2159
+ type: 3}
2160
+ m_PrefabInstance: {fileID: 8989965063395468826}
2161
+ m_PrefabAsset: {fileID: 0}
2162
+ --- !u!224 &8303094792839375017 stripped
2163
+ RectTransform:
2164
+ m_CorrespondingSourceObject: {fileID: 1150741313932349107, guid: 4b63f9bb970644cddbfce3509a7ebc50,
2165
+ type: 3}
2166
+ m_PrefabInstance: {fileID: 8989965063395468826}
2167
+ m_PrefabAsset: {fileID: 0}
2168
+ --- !u!1001 &8989965063677490328
2169
+ PrefabInstance:
2170
+ m_ObjectHideFlags: 0
2171
+ serializedVersion: 2
2172
+ m_Modification:
2173
+ m_TransformParent: {fileID: 208922704}
2174
+ m_Modifications:
2175
+ - target: {fileID: 2283706146569059666, guid: 112e55a71f90a46e0bb52e8331703ff3,
2176
+ type: 3}
2177
+ propertyPath: Root
2178
+ value:
2179
+ objectReference: {fileID: 5536497098831726557, guid: 658e52cdd751b48478d9da3300ff9c59,
2180
+ type: 3}
2181
+ - target: {fileID: 2283706146569059666, guid: 112e55a71f90a46e0bb52e8331703ff3,
2182
+ type: 3}
2183
+ propertyPath: MenuManager
2184
+ value:
2185
+ objectReference: {fileID: 5536497098840767928, guid: 658e52cdd751b48478d9da3300ff9c59,
2186
+ type: 3}
2187
+ - target: {fileID: 2889211510621519675, guid: 112e55a71f90a46e0bb52e8331703ff3,
2188
+ type: 3}
2189
+ propertyPath: MenuManager
2190
+ value:
2191
+ objectReference: {fileID: 470237999}
2192
+ - target: {fileID: 2994370629541192048, guid: 112e55a71f90a46e0bb52e8331703ff3,
2193
+ type: 3}
2194
+ propertyPath: m_LocalPosition.x
2195
+ value: 0
2196
+ objectReference: {fileID: 0}
2197
+ - target: {fileID: 2994370629541192048, guid: 112e55a71f90a46e0bb52e8331703ff3,
2198
+ type: 3}
2199
+ propertyPath: m_LocalPosition.y
2200
+ value: 0
2201
+ objectReference: {fileID: 0}
2202
+ - target: {fileID: 2994370629541192048, guid: 112e55a71f90a46e0bb52e8331703ff3,
2203
+ type: 3}
2204
+ propertyPath: m_LocalPosition.z
2205
+ value: 0
2206
+ objectReference: {fileID: 0}
2207
+ - target: {fileID: 2994370629541192048, guid: 112e55a71f90a46e0bb52e8331703ff3,
2208
+ type: 3}
2209
+ propertyPath: m_LocalRotation.x
2210
+ value: -0
2211
+ objectReference: {fileID: 0}
2212
+ - target: {fileID: 2994370629541192048, guid: 112e55a71f90a46e0bb52e8331703ff3,
2213
+ type: 3}
2214
+ propertyPath: m_LocalRotation.y
2215
+ value: -0
2216
+ objectReference: {fileID: 0}
2217
+ - target: {fileID: 2994370629541192048, guid: 112e55a71f90a46e0bb52e8331703ff3,
2218
+ type: 3}
2219
+ propertyPath: m_LocalRotation.z
2220
+ value: -0
2221
+ objectReference: {fileID: 0}
2222
+ - target: {fileID: 2994370629541192048, guid: 112e55a71f90a46e0bb52e8331703ff3,
2223
+ type: 3}
2224
+ propertyPath: m_LocalRotation.w
2225
+ value: 1
2226
+ objectReference: {fileID: 0}
2227
+ - target: {fileID: 2994370629541192048, guid: 112e55a71f90a46e0bb52e8331703ff3,
2228
+ type: 3}
2229
+ propertyPath: m_RootOrder
2230
+ value: 2
2231
+ objectReference: {fileID: 0}
2232
+ - target: {fileID: 2994370629541192048, guid: 112e55a71f90a46e0bb52e8331703ff3,
2233
+ type: 3}
2234
+ propertyPath: m_LocalEulerAnglesHint.x
2235
+ value: 0
2236
+ objectReference: {fileID: 0}
2237
+ - target: {fileID: 2994370629541192048, guid: 112e55a71f90a46e0bb52e8331703ff3,
2238
+ type: 3}
2239
+ propertyPath: m_LocalEulerAnglesHint.y
2240
+ value: 0
2241
+ objectReference: {fileID: 0}
2242
+ - target: {fileID: 2994370629541192048, guid: 112e55a71f90a46e0bb52e8331703ff3,
2243
+ type: 3}
2244
+ propertyPath: m_LocalEulerAnglesHint.z
2245
+ value: 0
2246
+ objectReference: {fileID: 0}
2247
+ - target: {fileID: 2994370629541192048, guid: 112e55a71f90a46e0bb52e8331703ff3,
2248
+ type: 3}
2249
+ propertyPath: m_AnchoredPosition.x
2250
+ value: 0
2251
+ objectReference: {fileID: 0}
2252
+ - target: {fileID: 2994370629541192048, guid: 112e55a71f90a46e0bb52e8331703ff3,
2253
+ type: 3}
2254
+ propertyPath: m_AnchoredPosition.y
2255
+ value: 0
2256
+ objectReference: {fileID: 0}
2257
+ - target: {fileID: 2994370629541192048, guid: 112e55a71f90a46e0bb52e8331703ff3,
2258
+ type: 3}
2259
+ propertyPath: m_SizeDelta.x
2260
+ value: 0
2261
+ objectReference: {fileID: 0}
2262
+ - target: {fileID: 2994370629541192048, guid: 112e55a71f90a46e0bb52e8331703ff3,
2263
+ type: 3}
2264
+ propertyPath: m_SizeDelta.y
2265
+ value: 0
2266
+ objectReference: {fileID: 0}
2267
+ - target: {fileID: 2994370629541192048, guid: 112e55a71f90a46e0bb52e8331703ff3,
2268
+ type: 3}
2269
+ propertyPath: m_AnchorMin.x
2270
+ value: 0
2271
+ objectReference: {fileID: 0}
2272
+ - target: {fileID: 2994370629541192048, guid: 112e55a71f90a46e0bb52e8331703ff3,
2273
+ type: 3}
2274
+ propertyPath: m_AnchorMin.y
2275
+ value: 0
2276
+ objectReference: {fileID: 0}
2277
+ - target: {fileID: 2994370629541192048, guid: 112e55a71f90a46e0bb52e8331703ff3,
2278
+ type: 3}
2279
+ propertyPath: m_AnchorMax.x
2280
+ value: 0
2281
+ objectReference: {fileID: 0}
2282
+ - target: {fileID: 2994370629541192048, guid: 112e55a71f90a46e0bb52e8331703ff3,
2283
+ type: 3}
2284
+ propertyPath: m_AnchorMax.y
2285
+ value: 0
2286
+ objectReference: {fileID: 0}
2287
+ - target: {fileID: 2994370629541192048, guid: 112e55a71f90a46e0bb52e8331703ff3,
2288
+ type: 3}
2289
+ propertyPath: m_Pivot.x
2290
+ value: 1
2291
+ objectReference: {fileID: 0}
2292
+ - target: {fileID: 2994370629541192048, guid: 112e55a71f90a46e0bb52e8331703ff3,
2293
+ type: 3}
2294
+ propertyPath: m_Pivot.y
2295
+ value: 0.5
2296
+ objectReference: {fileID: 0}
2297
+ - target: {fileID: 2994370629541192049, guid: 112e55a71f90a46e0bb52e8331703ff3,
2298
+ type: 3}
2299
+ propertyPath: m_Name
2300
+ value: CloseButton
2301
+ objectReference: {fileID: 0}
2302
+ - target: {fileID: 2994370629541192050, guid: 112e55a71f90a46e0bb52e8331703ff3,
2303
+ type: 3}
2304
+ propertyPath: m_Color.r
2305
+ value: 1
2306
+ objectReference: {fileID: 0}
2307
+ - target: {fileID: 2994370629541192050, guid: 112e55a71f90a46e0bb52e8331703ff3,
2308
+ type: 3}
2309
+ propertyPath: m_Color.g
2310
+ value: 1
2311
+ objectReference: {fileID: 0}
2312
+ - target: {fileID: 2994370629541192050, guid: 112e55a71f90a46e0bb52e8331703ff3,
2313
+ type: 3}
2314
+ propertyPath: m_Color.b
2315
+ value: 1
2316
+ objectReference: {fileID: 0}
2317
+ - target: {fileID: 2994370629541192050, guid: 112e55a71f90a46e0bb52e8331703ff3,
2318
+ type: 3}
2319
+ propertyPath: m_Sprite
2320
+ value:
2321
+ objectReference: {fileID: 21300000, guid: 39342746a2fc345a1ad06e8c9a6fe514,
2322
+ type: 3}
2323
+ - target: {fileID: 2994370629541192051, guid: 112e55a71f90a46e0bb52e8331703ff3,
2324
+ type: 3}
2325
+ propertyPath: m_Colors.m_HighlightedColor.r
2326
+ value: 0.8773585
2327
+ objectReference: {fileID: 0}
2328
+ - target: {fileID: 2994370629541192051, guid: 112e55a71f90a46e0bb52e8331703ff3,
2329
+ type: 3}
2330
+ propertyPath: m_Colors.m_HighlightedColor.g
2331
+ value: 0.8773585
2332
+ objectReference: {fileID: 0}
2333
+ - target: {fileID: 2994370629541192051, guid: 112e55a71f90a46e0bb52e8331703ff3,
2334
+ type: 3}
2335
+ propertyPath: m_Colors.m_HighlightedColor.b
2336
+ value: 0.8773585
2337
+ objectReference: {fileID: 0}
2338
+ - target: {fileID: 2994370629541192051, guid: 112e55a71f90a46e0bb52e8331703ff3,
2339
+ type: 3}
2340
+ propertyPath: m_Colors.m_DisabledColor.r
2341
+ value: 0.8490566
2342
+ objectReference: {fileID: 0}
2343
+ - target: {fileID: 2994370629541192051, guid: 112e55a71f90a46e0bb52e8331703ff3,
2344
+ type: 3}
2345
+ propertyPath: m_Colors.m_DisabledColor.g
2346
+ value: 0.8490566
2347
+ objectReference: {fileID: 0}
2348
+ - target: {fileID: 2994370629541192051, guid: 112e55a71f90a46e0bb52e8331703ff3,
2349
+ type: 3}
2350
+ propertyPath: m_Colors.m_DisabledColor.b
2351
+ value: 0.8490566
2352
+ objectReference: {fileID: 0}
2353
+ - target: {fileID: 2994370629541192051, guid: 112e55a71f90a46e0bb52e8331703ff3,
2354
+ type: 3}
2355
+ propertyPath: m_Colors.m_DisabledColor.a
2356
+ value: 0.8745098
2357
+ objectReference: {fileID: 0}
2358
+ - target: {fileID: 5191780387527567610, guid: 112e55a71f90a46e0bb52e8331703ff3,
2359
+ type: 3}
2360
+ propertyPath: m_Colors.m_HighlightedColor.r
2361
+ value: 0
2362
+ objectReference: {fileID: 0}
2363
+ - target: {fileID: 5191780387527567610, guid: 112e55a71f90a46e0bb52e8331703ff3,
2364
+ type: 3}
2365
+ propertyPath: m_Colors.m_HighlightedColor.g
2366
+ value: 0
2367
+ objectReference: {fileID: 0}
2368
+ - target: {fileID: 5191780387527567610, guid: 112e55a71f90a46e0bb52e8331703ff3,
2369
+ type: 3}
2370
+ propertyPath: m_Colors.m_HighlightedColor.b
2371
+ value: 0
2372
+ objectReference: {fileID: 0}
2373
+ - target: {fileID: 5191780387527567610, guid: 112e55a71f90a46e0bb52e8331703ff3,
2374
+ type: 3}
2375
+ propertyPath: m_Colors.m_PressedColor.r
2376
+ value: 1
2377
+ objectReference: {fileID: 0}
2378
+ - target: {fileID: 5191780387527567610, guid: 112e55a71f90a46e0bb52e8331703ff3,
2379
+ type: 3}
2380
+ propertyPath: m_Colors.m_PressedColor.g
2381
+ value: 1
2382
+ objectReference: {fileID: 0}
2383
+ - target: {fileID: 5191780387527567610, guid: 112e55a71f90a46e0bb52e8331703ff3,
2384
+ type: 3}
2385
+ propertyPath: m_Colors.m_PressedColor.b
2386
+ value: 1
2387
+ objectReference: {fileID: 0}
2388
+ - target: {fileID: 5191780387527567610, guid: 112e55a71f90a46e0bb52e8331703ff3,
2389
+ type: 3}
2390
+ propertyPath: m_Colors.m_DisabledColor.r
2391
+ value: 0.6603774
2392
+ objectReference: {fileID: 0}
2393
+ - target: {fileID: 5191780387527567610, guid: 112e55a71f90a46e0bb52e8331703ff3,
2394
+ type: 3}
2395
+ propertyPath: m_Colors.m_DisabledColor.g
2396
+ value: 0.6603774
2397
+ objectReference: {fileID: 0}
2398
+ - target: {fileID: 5191780387527567610, guid: 112e55a71f90a46e0bb52e8331703ff3,
2399
+ type: 3}
2400
+ propertyPath: m_Colors.m_DisabledColor.b
2401
+ value: 0.6603774
2402
+ objectReference: {fileID: 0}
2403
+ - target: {fileID: 5191780387527567610, guid: 112e55a71f90a46e0bb52e8331703ff3,
2404
+ type: 3}
2405
+ propertyPath: m_Colors.m_DisabledColor.a
2406
+ value: 0.7058824
2407
+ objectReference: {fileID: 0}
2408
+ - target: {fileID: 5191780387527567610, guid: 112e55a71f90a46e0bb52e8331703ff3,
2409
+ type: 3}
2410
+ propertyPath: m_Colors.m_FadeDuration
2411
+ value: 0.1
2412
+ objectReference: {fileID: 0}
2413
+ - target: {fileID: 5191780387527567610, guid: 112e55a71f90a46e0bb52e8331703ff3,
2414
+ type: 3}
2415
+ propertyPath: m_Colors.m_HighlightedColor.a
2416
+ value: 0
2417
+ objectReference: {fileID: 0}
2418
+ - target: {fileID: 7054917551364814842, guid: 112e55a71f90a46e0bb52e8331703ff3,
2419
+ type: 3}
2420
+ propertyPath: m_AnchoredPosition.x
2421
+ value: 0
2422
+ objectReference: {fileID: 0}
2423
+ - target: {fileID: 7054917551364814842, guid: 112e55a71f90a46e0bb52e8331703ff3,
2424
+ type: 3}
2425
+ propertyPath: m_AnchoredPosition.y
2426
+ value: 0
2427
+ objectReference: {fileID: 0}
2428
+ - target: {fileID: 7166049387304839617, guid: 112e55a71f90a46e0bb52e8331703ff3,
2429
+ type: 3}
2430
+ propertyPath: Offset.x
2431
+ value: 0
2432
+ objectReference: {fileID: 0}
2433
+ - target: {fileID: 7166049387304839617, guid: 112e55a71f90a46e0bb52e8331703ff3,
2434
+ type: 3}
2435
+ propertyPath: Offset.y
2436
+ value: 0
2437
+ objectReference: {fileID: 0}
2438
+ - target: {fileID: 8674682717509455839, guid: 112e55a71f90a46e0bb52e8331703ff3,
2439
+ type: 3}
2440
+ propertyPath: Clip
2441
+ value:
2442
+ objectReference: {fileID: 0}
2443
+ m_RemovedComponents: []
2444
+ m_SourcePrefab: {fileID: 100100000, guid: 112e55a71f90a46e0bb52e8331703ff3, type: 3}
2445
+ --- !u!1 &6146535673865262569 stripped
2446
+ GameObject:
2447
+ m_CorrespondingSourceObject: {fileID: 2994370629541192049, guid: 112e55a71f90a46e0bb52e8331703ff3,
2448
+ type: 3}
2449
+ m_PrefabInstance: {fileID: 8989965063677490328}
2450
+ m_PrefabAsset: {fileID: 0}
2451
+ --- !u!224 &6146535673865262568 stripped
2452
+ RectTransform:
2453
+ m_CorrespondingSourceObject: {fileID: 2994370629541192048, guid: 112e55a71f90a46e0bb52e8331703ff3,
2454
+ type: 3}
2455
+ m_PrefabInstance: {fileID: 8989965063677490328}
2456
+ m_PrefabAsset: {fileID: 0}
2457
+ --- !u!1001 &8989965063948006661
2458
+ PrefabInstance:
2459
+ m_ObjectHideFlags: 0
2460
+ serializedVersion: 2
2461
+ m_Modification:
2462
+ m_TransformParent: {fileID: 208922704}
2463
+ m_Modifications:
2464
+ - target: {fileID: 1953933317121552193, guid: 8fb4cbc029dc6404093cea3a309ca187,
2465
+ type: 3}
2466
+ propertyPath: m_textInfo.characterCount
2467
+ value: 13
2468
+ objectReference: {fileID: 0}
2469
+ - target: {fileID: 1953933317121552193, guid: 8fb4cbc029dc6404093cea3a309ca187,
2470
+ type: 3}
2471
+ propertyPath: m_textInfo.spaceCount
2472
+ value: 1
2473
+ objectReference: {fileID: 0}
2474
+ - target: {fileID: 1953933317121552193, guid: 8fb4cbc029dc6404093cea3a309ca187,
2475
+ type: 3}
2476
+ propertyPath: m_textInfo.wordCount
2477
+ value: 2
2478
+ objectReference: {fileID: 0}
2479
+ - target: {fileID: 1953933317121552193, guid: 8fb4cbc029dc6404093cea3a309ca187,
2480
+ type: 3}
2481
+ propertyPath: m_textInfo.lineCount
2482
+ value: 1
2483
+ objectReference: {fileID: 0}
2484
+ - target: {fileID: 1953933317121552193, guid: 8fb4cbc029dc6404093cea3a309ca187,
2485
+ type: 3}
2486
+ propertyPath: m_textInfo.pageCount
2487
+ value: 1
2488
+ objectReference: {fileID: 0}
2489
+ - target: {fileID: 1953933317121552193, guid: 8fb4cbc029dc6404093cea3a309ca187,
2490
+ type: 3}
2491
+ propertyPath: m_firstOverflowCharacterIndex
2492
+ value: -1
2493
+ objectReference: {fileID: 0}
2494
+ - target: {fileID: 1953933317121552193, guid: 8fb4cbc029dc6404093cea3a309ca187,
2495
+ type: 3}
2496
+ propertyPath: m_fontAsset
2497
+ value:
2498
+ objectReference: {fileID: 11400000, guid: dc36b3fdc14f47ebb36fd484a67e268a,
2499
+ type: 2}
2500
+ - target: {fileID: 1953933317121552193, guid: 8fb4cbc029dc6404093cea3a309ca187,
2501
+ type: 3}
2502
+ propertyPath: m_sharedMaterial
2503
+ value:
2504
+ objectReference: {fileID: 2140032, guid: dc36b3fdc14f47ebb36fd484a67e268a, type: 2}
2505
+ - target: {fileID: 1953933317121552193, guid: 8fb4cbc029dc6404093cea3a309ca187,
2506
+ type: 3}
2507
+ propertyPath: m_fontColor32.rgba
2508
+ value: 4294967295
2509
+ objectReference: {fileID: 0}
2510
+ - target: {fileID: 1953933317121552193, guid: 8fb4cbc029dc6404093cea3a309ca187,
2511
+ type: 3}
2512
+ propertyPath: m_fontColor.r
2513
+ value: 1
2514
+ objectReference: {fileID: 0}
2515
+ - target: {fileID: 1953933317121552193, guid: 8fb4cbc029dc6404093cea3a309ca187,
2516
+ type: 3}
2517
+ propertyPath: m_fontColor.b
2518
+ value: 1
2519
+ objectReference: {fileID: 0}
2520
+ - target: {fileID: 1953933317121552193, guid: 8fb4cbc029dc6404093cea3a309ca187,
2521
+ type: 3}
2522
+ propertyPath: m_fontStyle
2523
+ value: 16
2524
+ objectReference: {fileID: 0}
2525
+ - target: {fileID: 1953933317121552193, guid: 8fb4cbc029dc6404093cea3a309ca187,
2526
+ type: 3}
2527
+ propertyPath: m_text
2528
+ value: Daily Rewards
2529
+ objectReference: {fileID: 0}
2530
+ - target: {fileID: 1953933317121552193, guid: 8fb4cbc029dc6404093cea3a309ca187,
2531
+ type: 3}
2532
+ propertyPath: m_fontSize
2533
+ value: 24
2534
+ objectReference: {fileID: 0}
2535
+ - target: {fileID: 1953933317121552193, guid: 8fb4cbc029dc6404093cea3a309ca187,
2536
+ type: 3}
2537
+ propertyPath: m_fontSizeBase
2538
+ value: 24
2539
+ objectReference: {fileID: 0}
2540
+ - target: {fileID: 1953933317121552193, guid: 8fb4cbc029dc6404093cea3a309ca187,
2541
+ type: 3}
2542
+ propertyPath: m_textAlignment
2543
+ value: 258
2544
+ objectReference: {fileID: 0}
2545
+ - target: {fileID: 1953933317121552193, guid: 8fb4cbc029dc6404093cea3a309ca187,
2546
+ type: 3}
2547
+ propertyPath: m_fontColor.g
2548
+ value: 1
2549
+ objectReference: {fileID: 0}
2550
+ - target: {fileID: 1953933317121552194, guid: 8fb4cbc029dc6404093cea3a309ca187,
2551
+ type: 3}
2552
+ propertyPath: m_LocalPosition.x
2553
+ value: 0
2554
+ objectReference: {fileID: 0}
2555
+ - target: {fileID: 1953933317121552194, guid: 8fb4cbc029dc6404093cea3a309ca187,
2556
+ type: 3}
2557
+ propertyPath: m_LocalPosition.y
2558
+ value: 0
2559
+ objectReference: {fileID: 0}
2560
+ - target: {fileID: 1953933317121552194, guid: 8fb4cbc029dc6404093cea3a309ca187,
2561
+ type: 3}
2562
+ propertyPath: m_LocalPosition.z
2563
+ value: 0
2564
+ objectReference: {fileID: 0}
2565
+ - target: {fileID: 1953933317121552194, guid: 8fb4cbc029dc6404093cea3a309ca187,
2566
+ type: 3}
2567
+ propertyPath: m_LocalRotation.x
2568
+ value: -0
2569
+ objectReference: {fileID: 0}
2570
+ - target: {fileID: 1953933317121552194, guid: 8fb4cbc029dc6404093cea3a309ca187,
2571
+ type: 3}
2572
+ propertyPath: m_LocalRotation.y
2573
+ value: -0
2574
+ objectReference: {fileID: 0}
2575
+ - target: {fileID: 1953933317121552194, guid: 8fb4cbc029dc6404093cea3a309ca187,
2576
+ type: 3}
2577
+ propertyPath: m_LocalRotation.z
2578
+ value: -0
2579
+ objectReference: {fileID: 0}
2580
+ - target: {fileID: 1953933317121552194, guid: 8fb4cbc029dc6404093cea3a309ca187,
2581
+ type: 3}
2582
+ propertyPath: m_LocalRotation.w
2583
+ value: 1
2584
+ objectReference: {fileID: 0}
2585
+ - target: {fileID: 1953933317121552194, guid: 8fb4cbc029dc6404093cea3a309ca187,
2586
+ type: 3}
2587
+ propertyPath: m_RootOrder
2588
+ value: 1
2589
+ objectReference: {fileID: 0}
2590
+ - target: {fileID: 1953933317121552194, guid: 8fb4cbc029dc6404093cea3a309ca187,
2591
+ type: 3}
2592
+ propertyPath: m_LocalEulerAnglesHint.x
2593
+ value: 0
2594
+ objectReference: {fileID: 0}
2595
+ - target: {fileID: 1953933317121552194, guid: 8fb4cbc029dc6404093cea3a309ca187,
2596
+ type: 3}
2597
+ propertyPath: m_LocalEulerAnglesHint.y
2598
+ value: 0
2599
+ objectReference: {fileID: 0}
2600
+ - target: {fileID: 1953933317121552194, guid: 8fb4cbc029dc6404093cea3a309ca187,
2601
+ type: 3}
2602
+ propertyPath: m_LocalEulerAnglesHint.z
2603
+ value: 0
2604
+ objectReference: {fileID: 0}
2605
+ - target: {fileID: 1953933317121552194, guid: 8fb4cbc029dc6404093cea3a309ca187,
2606
+ type: 3}
2607
+ propertyPath: m_AnchoredPosition.x
2608
+ value: 0
2609
+ objectReference: {fileID: 0}
2610
+ - target: {fileID: 1953933317121552194, guid: 8fb4cbc029dc6404093cea3a309ca187,
2611
+ type: 3}
2612
+ propertyPath: m_AnchoredPosition.y
2613
+ value: 0
2614
+ objectReference: {fileID: 0}
2615
+ - target: {fileID: 1953933317121552194, guid: 8fb4cbc029dc6404093cea3a309ca187,
2616
+ type: 3}
2617
+ propertyPath: m_SizeDelta.x
2618
+ value: 0
2619
+ objectReference: {fileID: 0}
2620
+ - target: {fileID: 1953933317121552194, guid: 8fb4cbc029dc6404093cea3a309ca187,
2621
+ type: 3}
2622
+ propertyPath: m_SizeDelta.y
2623
+ value: 0
2624
+ objectReference: {fileID: 0}
2625
+ - target: {fileID: 1953933317121552194, guid: 8fb4cbc029dc6404093cea3a309ca187,
2626
+ type: 3}
2627
+ propertyPath: m_AnchorMin.x
2628
+ value: 0
2629
+ objectReference: {fileID: 0}
2630
+ - target: {fileID: 1953933317121552194, guid: 8fb4cbc029dc6404093cea3a309ca187,
2631
+ type: 3}
2632
+ propertyPath: m_AnchorMin.y
2633
+ value: 0
2634
+ objectReference: {fileID: 0}
2635
+ - target: {fileID: 1953933317121552194, guid: 8fb4cbc029dc6404093cea3a309ca187,
2636
+ type: 3}
2637
+ propertyPath: m_AnchorMax.x
2638
+ value: 0
2639
+ objectReference: {fileID: 0}
2640
+ - target: {fileID: 1953933317121552194, guid: 8fb4cbc029dc6404093cea3a309ca187,
2641
+ type: 3}
2642
+ propertyPath: m_AnchorMax.y
2643
+ value: 0
2644
+ objectReference: {fileID: 0}
2645
+ - target: {fileID: 1953933317121552194, guid: 8fb4cbc029dc6404093cea3a309ca187,
2646
+ type: 3}
2647
+ propertyPath: m_Pivot.x
2648
+ value: 0.5
2649
+ objectReference: {fileID: 0}
2650
+ - target: {fileID: 1953933317121552194, guid: 8fb4cbc029dc6404093cea3a309ca187,
2651
+ type: 3}
2652
+ propertyPath: m_Pivot.y
2653
+ value: 0.5
2654
+ objectReference: {fileID: 0}
2655
+ - target: {fileID: 1953933317121552195, guid: 8fb4cbc029dc6404093cea3a309ca187,
2656
+ type: 3}
2657
+ propertyPath: m_Name
2658
+ value: Header
2659
+ objectReference: {fileID: 0}
2660
+ m_RemovedComponents: []
2661
+ m_SourcePrefab: {fileID: 100100000, guid: 8fb4cbc029dc6404093cea3a309ca187, type: 3}
2662
+ --- !u!1 &7484708147884350022 stripped
2663
+ GameObject:
2664
+ m_CorrespondingSourceObject: {fileID: 1953933317121552195, guid: 8fb4cbc029dc6404093cea3a309ca187,
2665
+ type: 3}
2666
+ m_PrefabInstance: {fileID: 8989965063948006661}
2667
+ m_PrefabAsset: {fileID: 0}
2668
+ --- !u!224 &7484708147884350023 stripped
2669
+ RectTransform:
2670
+ m_CorrespondingSourceObject: {fileID: 1953933317121552194, guid: 8fb4cbc029dc6404093cea3a309ca187,
2671
+ type: 3}
2672
+ m_PrefabInstance: {fileID: 8989965063948006661}
2673
+ m_PrefabAsset: {fileID: 0}
2674
+ --- !u!114 &7484708147884350020 stripped
2675
+ MonoBehaviour:
2676
+ m_CorrespondingSourceObject: {fileID: 1953933317121552193, guid: 8fb4cbc029dc6404093cea3a309ca187,
2677
+ type: 3}
2678
+ m_PrefabInstance: {fileID: 8989965063948006661}
2679
+ m_PrefabAsset: {fileID: 0}
2680
+ m_GameObject: {fileID: 7484708147884350022}
2681
+ m_Enabled: 1
2682
+ m_EditorHideFlags: 0
2683
+ m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3}
2684
+ m_Name:
2685
+ m_EditorClassIdentifier:
2686
+ --- !u!1001 &8989965064516394429
2687
+ PrefabInstance:
2688
+ m_ObjectHideFlags: 0
2689
+ serializedVersion: 2
2690
+ m_Modification:
2691
+ m_TransformParent: {fileID: 390508661}
2692
+ m_Modifications:
2693
+ - target: {fileID: 111213872017286866, guid: 271c5c262137f48708e20c91b57e679a,
2694
+ type: 3}
2695
+ propertyPath: m_Name
2696
+ value: Background
2697
+ objectReference: {fileID: 0}
2698
+ - target: {fileID: 111213872017286892, guid: 271c5c262137f48708e20c91b57e679a,
2699
+ type: 3}
2700
+ propertyPath: m_Sprite
2701
+ value:
2702
+ objectReference: {fileID: 21300000, guid: c2105e9a12ef3e140ad72f5742eda84d,
2703
+ type: 3}
2704
+ - target: {fileID: 111213872017286892, guid: 271c5c262137f48708e20c91b57e679a,
2705
+ type: 3}
2706
+ propertyPath: m_Type
2707
+ value: 0
2708
+ objectReference: {fileID: 0}
2709
+ - target: {fileID: 111213872017286892, guid: 271c5c262137f48708e20c91b57e679a,
2710
+ type: 3}
2711
+ propertyPath: m_Material
2712
+ value:
2713
+ objectReference: {fileID: 0}
2714
+ - target: {fileID: 111213872017286893, guid: 271c5c262137f48708e20c91b57e679a,
2715
+ type: 3}
2716
+ propertyPath: m_LocalPosition.x
2717
+ value: 0
2718
+ objectReference: {fileID: 0}
2719
+ - target: {fileID: 111213872017286893, guid: 271c5c262137f48708e20c91b57e679a,
2720
+ type: 3}
2721
+ propertyPath: m_LocalPosition.y
2722
+ value: 0
2723
+ objectReference: {fileID: 0}
2724
+ - target: {fileID: 111213872017286893, guid: 271c5c262137f48708e20c91b57e679a,
2725
+ type: 3}
2726
+ propertyPath: m_LocalPosition.z
2727
+ value: 0
2728
+ objectReference: {fileID: 0}
2729
+ - target: {fileID: 111213872017286893, guid: 271c5c262137f48708e20c91b57e679a,
2730
+ type: 3}
2731
+ propertyPath: m_LocalRotation.x
2732
+ value: -0
2733
+ objectReference: {fileID: 0}
2734
+ - target: {fileID: 111213872017286893, guid: 271c5c262137f48708e20c91b57e679a,
2735
+ type: 3}
2736
+ propertyPath: m_LocalRotation.y
2737
+ value: -0
2738
+ objectReference: {fileID: 0}
2739
+ - target: {fileID: 111213872017286893, guid: 271c5c262137f48708e20c91b57e679a,
2740
+ type: 3}
2741
+ propertyPath: m_LocalRotation.z
2742
+ value: -0
2743
+ objectReference: {fileID: 0}
2744
+ - target: {fileID: 111213872017286893, guid: 271c5c262137f48708e20c91b57e679a,
2745
+ type: 3}
2746
+ propertyPath: m_LocalRotation.w
2747
+ value: 1
2748
+ objectReference: {fileID: 0}
2749
+ - target: {fileID: 111213872017286893, guid: 271c5c262137f48708e20c91b57e679a,
2750
+ type: 3}
2751
+ propertyPath: m_RootOrder
2752
+ value: 0
2753
+ objectReference: {fileID: 0}
2754
+ - target: {fileID: 111213872017286893, guid: 271c5c262137f48708e20c91b57e679a,
2755
+ type: 3}
2756
+ propertyPath: m_LocalEulerAnglesHint.x
2757
+ value: 0
2758
+ objectReference: {fileID: 0}
2759
+ - target: {fileID: 111213872017286893, guid: 271c5c262137f48708e20c91b57e679a,
2760
+ type: 3}
2761
+ propertyPath: m_LocalEulerAnglesHint.y
2762
+ value: 0
2763
+ objectReference: {fileID: 0}
2764
+ - target: {fileID: 111213872017286893, guid: 271c5c262137f48708e20c91b57e679a,
2765
+ type: 3}
2766
+ propertyPath: m_LocalEulerAnglesHint.z
2767
+ value: 0
2768
+ objectReference: {fileID: 0}
2769
+ - target: {fileID: 111213872017286893, guid: 271c5c262137f48708e20c91b57e679a,
2770
+ type: 3}
2771
+ propertyPath: m_AnchoredPosition.x
2772
+ value: 0
2773
+ objectReference: {fileID: 0}
2774
+ - target: {fileID: 111213872017286893, guid: 271c5c262137f48708e20c91b57e679a,
2775
+ type: 3}
2776
+ propertyPath: m_AnchoredPosition.y
2777
+ value: 0
2778
+ objectReference: {fileID: 0}
2779
+ - target: {fileID: 111213872017286893, guid: 271c5c262137f48708e20c91b57e679a,
2780
+ type: 3}
2781
+ propertyPath: m_SizeDelta.x
2782
+ value: 0
2783
+ objectReference: {fileID: 0}
2784
+ - target: {fileID: 111213872017286893, guid: 271c5c262137f48708e20c91b57e679a,
2785
+ type: 3}
2786
+ propertyPath: m_SizeDelta.y
2787
+ value: 0
2788
+ objectReference: {fileID: 0}
2789
+ - target: {fileID: 111213872017286893, guid: 271c5c262137f48708e20c91b57e679a,
2790
+ type: 3}
2791
+ propertyPath: m_AnchorMin.x
2792
+ value: 0
2793
+ objectReference: {fileID: 0}
2794
+ - target: {fileID: 111213872017286893, guid: 271c5c262137f48708e20c91b57e679a,
2795
+ type: 3}
2796
+ propertyPath: m_AnchorMin.y
2797
+ value: 0
2798
+ objectReference: {fileID: 0}
2799
+ - target: {fileID: 111213872017286893, guid: 271c5c262137f48708e20c91b57e679a,
2800
+ type: 3}
2801
+ propertyPath: m_AnchorMax.x
2802
+ value: 1
2803
+ objectReference: {fileID: 0}
2804
+ - target: {fileID: 111213872017286893, guid: 271c5c262137f48708e20c91b57e679a,
2805
+ type: 3}
2806
+ propertyPath: m_AnchorMax.y
2807
+ value: 1
2808
+ objectReference: {fileID: 0}
2809
+ - target: {fileID: 111213872017286893, guid: 271c5c262137f48708e20c91b57e679a,
2810
+ type: 3}
2811
+ propertyPath: m_Pivot.x
2812
+ value: 0.5
2813
+ objectReference: {fileID: 0}
2814
+ - target: {fileID: 111213872017286893, guid: 271c5c262137f48708e20c91b57e679a,
2815
+ type: 3}
2816
+ propertyPath: m_Pivot.y
2817
+ value: 0.5
2818
+ objectReference: {fileID: 0}
2819
+ - target: {fileID: 1062800555250619893, guid: 271c5c262137f48708e20c91b57e679a,
2820
+ type: 3}
2821
+ propertyPath: _gradientDir
2822
+ value: 1
2823
+ objectReference: {fileID: 0}
2824
+ - target: {fileID: 1062800555250619893, guid: 271c5c262137f48708e20c91b57e679a,
2825
+ type: 3}
2826
+ propertyPath: _overwriteAllColor
2827
+ value: 1
2828
+ objectReference: {fileID: 0}
2829
+ - target: {fileID: 1062800555250619893, guid: 271c5c262137f48708e20c91b57e679a,
2830
+ type: 3}
2831
+ propertyPath: _vertex1.r
2832
+ value: 1
2833
+ objectReference: {fileID: 0}
2834
+ - target: {fileID: 1062800555250619893, guid: 271c5c262137f48708e20c91b57e679a,
2835
+ type: 3}
2836
+ propertyPath: _vertex1.g
2837
+ value: 1
2838
+ objectReference: {fileID: 0}
2839
+ - target: {fileID: 1062800555250619893, guid: 271c5c262137f48708e20c91b57e679a,
2840
+ type: 3}
2841
+ propertyPath: _vertex1.b
2842
+ value: 1
2843
+ objectReference: {fileID: 0}
2844
+ - target: {fileID: 1062800555250619893, guid: 271c5c262137f48708e20c91b57e679a,
2845
+ type: 3}
2846
+ propertyPath: _vertex2.r
2847
+ value: 1
2848
+ objectReference: {fileID: 0}
2849
+ - target: {fileID: 1062800555250619893, guid: 271c5c262137f48708e20c91b57e679a,
2850
+ type: 3}
2851
+ propertyPath: _vertex2.g
2852
+ value: 1
2853
+ objectReference: {fileID: 0}
2854
+ - target: {fileID: 1062800555250619893, guid: 271c5c262137f48708e20c91b57e679a,
2855
+ type: 3}
2856
+ propertyPath: _vertex2.b
2857
+ value: 1
2858
+ objectReference: {fileID: 0}
2859
+ - target: {fileID: 1062800555250619893, guid: 271c5c262137f48708e20c91b57e679a,
2860
+ type: 3}
2861
+ propertyPath: _gradientMode
2862
+ value: 1
2863
+ objectReference: {fileID: 0}
2864
+ - target: {fileID: 1062800555250619893, guid: 271c5c262137f48708e20c91b57e679a,
2865
+ type: 3}
2866
+ propertyPath: _vertex1.a
2867
+ value: 1
2868
+ objectReference: {fileID: 0}
2869
+ - target: {fileID: 1062800555250619893, guid: 271c5c262137f48708e20c91b57e679a,
2870
+ type: 3}
2871
+ propertyPath: _vertex2.a
2872
+ value: 1
2873
+ objectReference: {fileID: 0}
2874
+ m_RemovedComponents: []
2875
+ m_SourcePrefab: {fileID: 100100000, guid: 271c5c262137f48708e20c91b57e679a, type: 3}
2876
+ --- !u!224 &9027986574364932944 stripped
2877
+ RectTransform:
2878
+ m_CorrespondingSourceObject: {fileID: 111213872017286893, guid: 271c5c262137f48708e20c91b57e679a,
2879
+ type: 3}
2880
+ m_PrefabInstance: {fileID: 8989965064516394429}
2881
+ m_PrefabAsset: {fileID: 0}