connected-spaces-platform.unity.core 5.0.1 → 5.2.0

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 (546) hide show
  1. package/Editor/NativePluginBuildProcessor.cs.meta +1 -1
  2. package/Editor.meta +1 -1
  3. package/README.md +181 -2
  4. package/README.md.meta +1 -1
  5. package/Source/CSPFoundation.cs +26 -156
  6. package/Source/CSPFoundation.cs.meta +1 -1
  7. package/Source/ClientUserAgent.cs +28 -168
  8. package/Source/ClientUserAgent.cs.meta +1 -1
  9. package/Source/Common/Array.cs.meta +1 -1
  10. package/Source/Common/CancellationToken.cs +10 -60
  11. package/Source/Common/CancellationToken.cs.meta +1 -1
  12. package/Source/Common/FileExtensions.cs +1794 -10764
  13. package/Source/Common/FileExtensions.cs.meta +1 -1
  14. package/Source/Common/List.cs.meta +1 -1
  15. package/Source/Common/Map.cs.meta +1 -1
  16. package/Source/Common/MimeTypeHelper.cs +14 -84
  17. package/Source/Common/MimeTypeHelper.cs.meta +1 -1
  18. package/Source/Common/MimeTypes.cs +1226 -7356
  19. package/Source/Common/MimeTypes.cs.meta +1 -1
  20. package/Source/Common/Variant.cs +44 -264
  21. package/Source/Common/Variant.cs.meta +1 -1
  22. package/Source/Common/VariantType.cs.meta +1 -1
  23. package/Source/Common/Vector2.cs +164 -0
  24. package/Source/Common/Vector2.cs.meta +11 -0
  25. package/Source/Common/Vector3.cs +43 -132
  26. package/Source/Common/Vector3.cs.meta +1 -1
  27. package/Source/Common/Vector4.cs +49 -168
  28. package/Source/Common/Vector4.cs.meta +1 -1
  29. package/Source/Common.meta +1 -1
  30. package/Source/Constants.cs +13 -0
  31. package/Source/Constants.cs.meta +11 -0
  32. package/Source/Csp.cs +6 -36
  33. package/Source/Csp.cs.meta +1 -1
  34. package/Source/EThirdPartyPlatform.cs.meta +1 -1
  35. package/Source/EndpointURIs.cs +32 -192
  36. package/Source/EndpointURIs.cs.meta +1 -1
  37. package/Source/Il2cppPreserver.cs.meta +1 -1
  38. package/Source/Multiplayer/AssetDetailBlobParams.cs +24 -144
  39. package/Source/Multiplayer/AssetDetailBlobParams.cs.meta +1 -1
  40. package/Source/Multiplayer/ComponentBase.cs +20 -120
  41. package/Source/Multiplayer/ComponentBase.cs.meta +1 -1
  42. package/Source/Multiplayer/ComponentType.cs +1 -0
  43. package/Source/Multiplayer/ComponentType.cs.meta +1 -1
  44. package/Source/Multiplayer/ComponentUpdateInfo.cs +12 -72
  45. package/Source/Multiplayer/ComponentUpdateInfo.cs.meta +1 -1
  46. package/Source/Multiplayer/ComponentUpdateType.cs.meta +1 -1
  47. package/Source/Multiplayer/Components/AnimatedModelActions.cs.meta +1 -1
  48. package/Source/Multiplayer/Components/AnimatedModelPropertyKeys.cs.meta +1 -1
  49. package/Source/Multiplayer/Components/AnimatedModelSpaceComponent.cs +56 -336
  50. package/Source/Multiplayer/Components/AnimatedModelSpaceComponent.cs.meta +1 -1
  51. package/Source/Multiplayer/Components/AudioPlaybackState.cs.meta +1 -1
  52. package/Source/Multiplayer/Components/AudioPropertyKeys.cs.meta +1 -1
  53. package/Source/Multiplayer/Components/AudioSpaceComponent.cs +48 -288
  54. package/Source/Multiplayer/Components/AudioSpaceComponent.cs.meta +1 -1
  55. package/Source/Multiplayer/Components/AudioType.cs.meta +1 -1
  56. package/Source/Multiplayer/Components/AvatarComponentPropertyKeys.cs.meta +1 -1
  57. package/Source/Multiplayer/Components/AvatarPlayMode.cs.meta +1 -1
  58. package/Source/Multiplayer/Components/AvatarSpaceComponent.cs +64 -384
  59. package/Source/Multiplayer/Components/AvatarSpaceComponent.cs.meta +1 -1
  60. package/Source/Multiplayer/Components/AvatarState.cs.meta +1 -1
  61. package/Source/Multiplayer/Components/BillboardMode.cs.meta +1 -1
  62. package/Source/Multiplayer/Components/ButtonPropertyKeys.cs.meta +1 -1
  63. package/Source/Multiplayer/Components/ButtonSpaceComponent.cs +44 -264
  64. package/Source/Multiplayer/Components/ButtonSpaceComponent.cs.meta +1 -1
  65. package/Source/Multiplayer/Components/CinematicCameraPropertyKeys.cs +35 -0
  66. package/Source/Multiplayer/Components/CinematicCameraPropertyKeys.cs.meta +11 -0
  67. package/Source/Multiplayer/Components/CinematicCameraSpaceComponent.cs +532 -0
  68. package/Source/Multiplayer/Components/CinematicCameraSpaceComponent.cs.meta +11 -0
  69. package/Source/Multiplayer/Components/CollisionMode.cs.meta +1 -1
  70. package/Source/Multiplayer/Components/CollisionPropertyKeys.cs.meta +1 -1
  71. package/Source/Multiplayer/Components/CollisionShape.cs.meta +1 -1
  72. package/Source/Multiplayer/Components/CollisionSpaceComponent.cs +54 -324
  73. package/Source/Multiplayer/Components/CollisionSpaceComponent.cs.meta +1 -1
  74. package/Source/Multiplayer/Components/ConversationPropertyKeys.cs.meta +1 -1
  75. package/Source/Multiplayer/Components/ConversationSpaceComponent.cs +54 -324
  76. package/Source/Multiplayer/Components/ConversationSpaceComponent.cs.meta +1 -1
  77. package/Source/Multiplayer/Components/CustomComponentPropertyKeys.cs.meta +1 -1
  78. package/Source/Multiplayer/Components/CustomSpaceComponent.cs +22 -132
  79. package/Source/Multiplayer/Components/CustomSpaceComponent.cs.meta +1 -1
  80. package/Source/Multiplayer/Components/DisplayMode.cs.meta +1 -1
  81. package/Source/Multiplayer/Components/ECommercePropertyKeys.cs.meta +1 -1
  82. package/Source/Multiplayer/Components/ECommerceSpaceComponent.cs +12 -72
  83. package/Source/Multiplayer/Components/ECommerceSpaceComponent.cs.meta +1 -1
  84. package/Source/Multiplayer/Components/ExternalLinkActions.cs.meta +1 -1
  85. package/Source/Multiplayer/Components/ExternalLinkPropertyKeys.cs.meta +1 -1
  86. package/Source/Multiplayer/Components/ExternalLinkSpaceComponent.cs +44 -264
  87. package/Source/Multiplayer/Components/ExternalLinkSpaceComponent.cs.meta +1 -1
  88. package/Source/Multiplayer/Components/FiducialMarkerPropertyKeys.cs.meta +1 -1
  89. package/Source/Multiplayer/Components/FiducialMarkerSpaceComponent.cs +40 -240
  90. package/Source/Multiplayer/Components/FiducialMarkerSpaceComponent.cs.meta +1 -1
  91. package/Source/Multiplayer/Components/FogMode.cs.meta +1 -1
  92. package/Source/Multiplayer/Components/FogPropertyKeys.cs.meta +1 -1
  93. package/Source/Multiplayer/Components/FogSpaceComponent.cs +64 -384
  94. package/Source/Multiplayer/Components/FogSpaceComponent.cs.meta +1 -1
  95. package/Source/Multiplayer/Components/GaussianSplatPropertyKeys.cs.meta +1 -1
  96. package/Source/Multiplayer/Components/GaussianSplatSpaceComponent.cs +44 -264
  97. package/Source/Multiplayer/Components/GaussianSplatSpaceComponent.cs.meta +1 -1
  98. package/Source/Multiplayer/Components/HotspotPropertyKeys.cs.meta +1 -1
  99. package/Source/Multiplayer/Components/HotspotSpaceComponent.cs +34 -204
  100. package/Source/Multiplayer/Components/HotspotSpaceComponent.cs.meta +1 -1
  101. package/Source/Multiplayer/Components/ImagePropertyKeys.cs.meta +1 -1
  102. package/Source/Multiplayer/Components/ImageSpaceComponent.cs +52 -312
  103. package/Source/Multiplayer/Components/ImageSpaceComponent.cs.meta +1 -1
  104. package/Source/Multiplayer/Components/Interfaces/IEnableableComponent.cs.meta +1 -1
  105. package/Source/Multiplayer/Components/Interfaces/IExternalResourceComponent.cs.meta +1 -1
  106. package/Source/Multiplayer/Components/Interfaces/IPositionComponent.cs.meta +1 -1
  107. package/Source/Multiplayer/Components/Interfaces/IRotationComponent.cs.meta +1 -1
  108. package/Source/Multiplayer/Components/Interfaces/IScaleComponent.cs.meta +1 -1
  109. package/Source/Multiplayer/Components/Interfaces/IShadowCasterComponent.cs.meta +1 -1
  110. package/Source/Multiplayer/Components/Interfaces/IThirdPartyComponentRef.cs.meta +1 -1
  111. package/Source/Multiplayer/Components/Interfaces/ITransformComponent.cs.meta +1 -1
  112. package/Source/Multiplayer/Components/Interfaces/IVisibleComponent.cs.meta +1 -1
  113. package/Source/Multiplayer/Components/Interfaces.meta +1 -1
  114. package/Source/Multiplayer/Components/LightCookieType.cs.meta +1 -1
  115. package/Source/Multiplayer/Components/LightPropertyKeys.cs.meta +1 -1
  116. package/Source/Multiplayer/Components/LightShadowType.cs.meta +1 -1
  117. package/Source/Multiplayer/Components/LightSpaceComponent.cs +64 -384
  118. package/Source/Multiplayer/Components/LightSpaceComponent.cs.meta +1 -1
  119. package/Source/Multiplayer/Components/LightType.cs.meta +1 -1
  120. package/Source/Multiplayer/Components/LocomotionModel.cs.meta +1 -1
  121. package/Source/Multiplayer/Components/PortalPropertyKeys.cs.meta +1 -1
  122. package/Source/Multiplayer/Components/PortalSpaceComponent.cs +22 -132
  123. package/Source/Multiplayer/Components/PortalSpaceComponent.cs.meta +1 -1
  124. package/Source/Multiplayer/Components/ReflectionPropertyKeys.cs.meta +1 -1
  125. package/Source/Multiplayer/Components/ReflectionShape.cs.meta +1 -1
  126. package/Source/Multiplayer/Components/ReflectionSpaceComponent.cs +32 -192
  127. package/Source/Multiplayer/Components/ReflectionSpaceComponent.cs.meta +1 -1
  128. package/Source/Multiplayer/Components/ScriptComponentPropertyKeys.cs.meta +1 -1
  129. package/Source/Multiplayer/Components/ScriptScope.cs.meta +1 -1
  130. package/Source/Multiplayer/Components/ScriptSpaceComponent.cs +16 -96
  131. package/Source/Multiplayer/Components/ScriptSpaceComponent.cs.meta +1 -1
  132. package/Source/Multiplayer/Components/SplinePropertyKeys.cs.meta +1 -1
  133. package/Source/Multiplayer/Components/SplineSpaceComponent.cs +10 -60
  134. package/Source/Multiplayer/Components/SplineSpaceComponent.cs.meta +1 -1
  135. package/Source/Multiplayer/Components/StaticModelPropertyKeys.cs.meta +1 -1
  136. package/Source/Multiplayer/Components/StaticModelSpaceComponent.cs +44 -264
  137. package/Source/Multiplayer/Components/StaticModelSpaceComponent.cs.meta +1 -1
  138. package/Source/Multiplayer/Components/TextPropertyKeys.cs.meta +1 -1
  139. package/Source/Multiplayer/Components/TextSpaceComponent.cs +56 -336
  140. package/Source/Multiplayer/Components/TextSpaceComponent.cs.meta +1 -1
  141. package/Source/Multiplayer/Components/VideoPlayerActions.cs.meta +1 -1
  142. package/Source/Multiplayer/Components/VideoPlayerPlaybackState.cs.meta +1 -1
  143. package/Source/Multiplayer/Components/VideoPlayerPropertyKeys.cs.meta +1 -1
  144. package/Source/Multiplayer/Components/VideoPlayerSourceType.cs.meta +1 -1
  145. package/Source/Multiplayer/Components/VideoPlayerSpaceComponent.cs +88 -528
  146. package/Source/Multiplayer/Components/VideoPlayerSpaceComponent.cs.meta +1 -1
  147. package/Source/Multiplayer/Components.meta +1 -1
  148. package/Source/Multiplayer/ConnectionState.cs.meta +1 -1
  149. package/Source/Multiplayer/Conversation/BaseMessageInfo.cs +28 -168
  150. package/Source/Multiplayer/Conversation/BaseMessageInfo.cs.meta +1 -1
  151. package/Source/Multiplayer/Conversation/ConversationInfo.cs +16 -96
  152. package/Source/Multiplayer/Conversation/ConversationInfo.cs.meta +1 -1
  153. package/Source/Multiplayer/Conversation/ConversationMessageType.cs.meta +1 -1
  154. package/Source/Multiplayer/Conversation/ConversationResult.cs +4 -24
  155. package/Source/Multiplayer/Conversation/ConversationResult.cs.meta +1 -1
  156. package/Source/Multiplayer/Conversation/ConversationSystem.cs +24 -144
  157. package/Source/Multiplayer/Conversation/ConversationSystem.cs.meta +1 -1
  158. package/Source/Multiplayer/Conversation/MessageCollectionResult.cs +6 -36
  159. package/Source/Multiplayer/Conversation/MessageCollectionResult.cs.meta +1 -1
  160. package/Source/Multiplayer/Conversation/MessageInfo.cs +12 -72
  161. package/Source/Multiplayer/Conversation/MessageInfo.cs.meta +1 -1
  162. package/Source/Multiplayer/Conversation/MessageResult.cs +4 -24
  163. package/Source/Multiplayer/Conversation/MessageResult.cs.meta +1 -1
  164. package/Source/Multiplayer/Conversation.meta +1 -1
  165. package/Source/Multiplayer/ConversationSystemParams.cs +12 -72
  166. package/Source/Multiplayer/ConversationSystemParams.cs.meta +1 -1
  167. package/Source/Multiplayer/EAssetChangeType.cs.meta +1 -1
  168. package/Source/Multiplayer/EPermissionChangeType.cs.meta +1 -1
  169. package/Source/Multiplayer/ESequenceUpdateType.cs +1 -0
  170. package/Source/Multiplayer/ESequenceUpdateType.cs.meta +1 -1
  171. package/Source/Multiplayer/ErrorCode.cs.meta +1 -1
  172. package/Source/Multiplayer/IEntityDeserialiser.cs +4 -0
  173. package/Source/Multiplayer/IEntityDeserialiser.cs.meta +1 -1
  174. package/Source/Multiplayer/IEntitySerialiser.cs +2 -0
  175. package/Source/Multiplayer/IEntitySerialiser.cs.meta +1 -1
  176. package/Source/Multiplayer/MultiplayerConnection.cs +32 -192
  177. package/Source/Multiplayer/MultiplayerConnection.cs.meta +1 -1
  178. package/Source/Multiplayer/ReplicatedValue.cs +86 -264
  179. package/Source/Multiplayer/ReplicatedValue.cs.meta +1 -1
  180. package/Source/Multiplayer/ReplicatedValueType.cs +1 -0
  181. package/Source/Multiplayer/ReplicatedValueType.cs.meta +1 -1
  182. package/Source/Multiplayer/Script/EntityScript.cs +32 -192
  183. package/Source/Multiplayer/Script/EntityScript.cs.meta +1 -1
  184. package/Source/Multiplayer/Script.meta +1 -1
  185. package/Source/Multiplayer/SequenceChangedParams.cs +16 -96
  186. package/Source/Multiplayer/SequenceChangedParams.cs.meta +1 -1
  187. package/Source/Multiplayer/SequenceHierarchy.cs +109 -0
  188. package/Source/Multiplayer/SequenceHierarchy.cs.meta +11 -0
  189. package/Source/Multiplayer/SequenceHierarchyChangedParams.cs +119 -0
  190. package/Source/Multiplayer/SequenceHierarchyChangedParams.cs.meta +11 -0
  191. package/Source/Multiplayer/SequenceHierarchyCollectionResult.cs +84 -0
  192. package/Source/Multiplayer/SequenceHierarchyCollectionResult.cs.meta +11 -0
  193. package/Source/Multiplayer/SequenceHierarchyResult.cs +84 -0
  194. package/Source/Multiplayer/SequenceHierarchyResult.cs.meta +11 -0
  195. package/Source/Multiplayer/SpaceEntity.cs +257 -480
  196. package/Source/Multiplayer/SpaceEntity.cs.meta +1 -1
  197. package/Source/Multiplayer/SpaceEntitySystem.cs +459 -444
  198. package/Source/Multiplayer/SpaceEntitySystem.cs.meta +1 -1
  199. package/Source/Multiplayer/SpaceEntityType.cs.meta +1 -1
  200. package/Source/Multiplayer/SpaceEntityUpdateFlags.cs +1 -0
  201. package/Source/Multiplayer/SpaceEntityUpdateFlags.cs.meta +1 -1
  202. package/Source/Multiplayer/SpaceTransform.cs +28 -108
  203. package/Source/Multiplayer/SpaceTransform.cs.meta +1 -1
  204. package/Source/Multiplayer/UserPermissionsParams.cs +20 -120
  205. package/Source/Multiplayer/UserPermissionsParams.cs.meta +1 -1
  206. package/Source/Multiplayer.meta +1 -1
  207. package/Source/NativeClassWrapper.cs.meta +1 -1
  208. package/Source/ProgressEventArgs.cs.meta +1 -1
  209. package/Source/Ref.cs.meta +1 -1
  210. package/Source/Systems/Analytics/AnalyticsEvent.cs +20 -120
  211. package/Source/Systems/Analytics/AnalyticsEvent.cs.meta +1 -1
  212. package/Source/Systems/Analytics/AnalyticsEventInitialiser.cs +4 -24
  213. package/Source/Systems/Analytics/AnalyticsEventInitialiser.cs.meta +1 -1
  214. package/Source/Systems/Analytics/AnalyticsSystem.cs +2 -12
  215. package/Source/Systems/Analytics/AnalyticsSystem.cs.meta +1 -1
  216. package/Source/Systems/Analytics/IAnalyticsProvider.cs +2 -12
  217. package/Source/Systems/Analytics/IAnalyticsProvider.cs.meta +1 -1
  218. package/Source/Systems/Analytics.meta +1 -1
  219. package/Source/Systems/Assets/Asset.cs +70 -420
  220. package/Source/Systems/Assets/Asset.cs.meta +1 -1
  221. package/Source/Systems/Assets/AssetCollection.cs +66 -396
  222. package/Source/Systems/Assets/AssetCollection.cs.meta +1 -1
  223. package/Source/Systems/Assets/AssetCollectionResult.cs +4 -24
  224. package/Source/Systems/Assets/AssetCollectionResult.cs.meta +1 -1
  225. package/Source/Systems/Assets/AssetCollectionsResult.cs +6 -36
  226. package/Source/Systems/Assets/AssetCollectionsResult.cs.meta +1 -1
  227. package/Source/Systems/Assets/AssetDataResult.cs +8 -48
  228. package/Source/Systems/Assets/AssetDataResult.cs.meta +1 -1
  229. package/Source/Systems/Assets/AssetDataSource.cs.meta +1 -1
  230. package/Source/Systems/Assets/AssetResult.cs +4 -24
  231. package/Source/Systems/Assets/AssetResult.cs.meta +1 -1
  232. package/Source/Systems/Assets/AssetSystem.cs +42 -252
  233. package/Source/Systems/Assets/AssetSystem.cs.meta +1 -1
  234. package/Source/Systems/Assets/AssetsResult.cs +4 -24
  235. package/Source/Systems/Assets/AssetsResult.cs.meta +1 -1
  236. package/Source/Systems/Assets/BufferAssetDataSource.cs +16 -96
  237. package/Source/Systems/Assets/BufferAssetDataSource.cs.meta +1 -1
  238. package/Source/Systems/Assets/EAssetCollectionType.cs.meta +1 -1
  239. package/Source/Systems/Assets/EAssetPlatform.cs.meta +1 -1
  240. package/Source/Systems/Assets/EAssetType.cs.meta +1 -1
  241. package/Source/Systems/Assets/FileAssetDataSource.cs +12 -72
  242. package/Source/Systems/Assets/FileAssetDataSource.cs.meta +1 -1
  243. package/Source/Systems/Assets/LODAsset.cs +12 -72
  244. package/Source/Systems/Assets/LODAsset.cs.meta +1 -1
  245. package/Source/Systems/Assets/LODChain.cs +12 -72
  246. package/Source/Systems/Assets/LODChain.cs.meta +1 -1
  247. package/Source/Systems/Assets/LODChainResult.cs +4 -24
  248. package/Source/Systems/Assets/LODChainResult.cs.meta +1 -1
  249. package/Source/Systems/Assets/UriResult.cs +6 -36
  250. package/Source/Systems/Assets/UriResult.cs.meta +1 -1
  251. package/Source/Systems/Assets.meta +1 -1
  252. package/Source/Systems/BooleanResult.cs +4 -24
  253. package/Source/Systems/BooleanResult.cs.meta +1 -1
  254. package/Source/Systems/ECommerce/AddShopifyStoreResult.cs +4 -24
  255. package/Source/Systems/ECommerce/AddShopifyStoreResult.cs.meta +1 -1
  256. package/Source/Systems/ECommerce/CartInfo.cs +20 -120
  257. package/Source/Systems/ECommerce/CartInfo.cs.meta +1 -1
  258. package/Source/Systems/ECommerce/CartInfoResult.cs +4 -24
  259. package/Source/Systems/ECommerce/CartInfoResult.cs.meta +1 -1
  260. package/Source/Systems/ECommerce/CartLine.cs +16 -96
  261. package/Source/Systems/ECommerce/CartLine.cs.meta +1 -1
  262. package/Source/Systems/ECommerce/CheckoutInfo.cs +12 -72
  263. package/Source/Systems/ECommerce/CheckoutInfo.cs.meta +1 -1
  264. package/Source/Systems/ECommerce/CheckoutInfoResult.cs +4 -24
  265. package/Source/Systems/ECommerce/CheckoutInfoResult.cs.meta +1 -1
  266. package/Source/Systems/ECommerce/CurrencyInfo.cs +12 -72
  267. package/Source/Systems/ECommerce/CurrencyInfo.cs.meta +1 -1
  268. package/Source/Systems/ECommerce/ECommerceSystem.cs +20 -120
  269. package/Source/Systems/ECommerce/ECommerceSystem.cs.meta +1 -1
  270. package/Source/Systems/ECommerce/GetShopifyStoresResult.cs +4 -24
  271. package/Source/Systems/ECommerce/GetShopifyStoresResult.cs.meta +1 -1
  272. package/Source/Systems/ECommerce/ProductInfo.cs +32 -192
  273. package/Source/Systems/ECommerce/ProductInfo.cs.meta +1 -1
  274. package/Source/Systems/ECommerce/ProductInfoCollectionResult.cs +4 -24
  275. package/Source/Systems/ECommerce/ProductInfoCollectionResult.cs.meta +1 -1
  276. package/Source/Systems/ECommerce/ProductInfoResult.cs +4 -24
  277. package/Source/Systems/ECommerce/ProductInfoResult.cs.meta +1 -1
  278. package/Source/Systems/ECommerce/ProductMediaInfo.cs +24 -144
  279. package/Source/Systems/ECommerce/ProductMediaInfo.cs.meta +1 -1
  280. package/Source/Systems/ECommerce/ProductVariantInfo.cs +36 -216
  281. package/Source/Systems/ECommerce/ProductVariantInfo.cs.meta +1 -1
  282. package/Source/Systems/ECommerce/ShopifyStoreInfo.cs +24 -144
  283. package/Source/Systems/ECommerce/ShopifyStoreInfo.cs.meta +1 -1
  284. package/Source/Systems/ECommerce/ValidateShopifyStoreResult.cs +6 -36
  285. package/Source/Systems/ECommerce/ValidateShopifyStoreResult.cs.meta +1 -1
  286. package/Source/Systems/ECommerce/VariantOptionInfo.cs +12 -72
  287. package/Source/Systems/ECommerce/VariantOptionInfo.cs.meta +1 -1
  288. package/Source/Systems/ECommerce.meta +1 -1
  289. package/Source/Systems/ERequestFailureReason.cs +1 -0
  290. package/Source/Systems/ERequestFailureReason.cs.meta +1 -1
  291. package/Source/Systems/EResultCode.cs.meta +1 -1
  292. package/Source/Systems/EventTicketing/EventTicket.cs +36 -216
  293. package/Source/Systems/EventTicketing/EventTicket.cs.meta +1 -1
  294. package/Source/Systems/EventTicketing/EventTicketResult.cs +4 -24
  295. package/Source/Systems/EventTicketing/EventTicketResult.cs.meta +1 -1
  296. package/Source/Systems/EventTicketing/EventTicketingSystem.cs +12 -72
  297. package/Source/Systems/EventTicketing/EventTicketingSystem.cs.meta +1 -1
  298. package/Source/Systems/EventTicketing/EventTicketingVendor.cs.meta +1 -1
  299. package/Source/Systems/EventTicketing/SpaceIsTicketedResult.cs +4 -24
  300. package/Source/Systems/EventTicketing/SpaceIsTicketedResult.cs.meta +1 -1
  301. package/Source/Systems/EventTicketing/TicketStatus.cs.meta +1 -1
  302. package/Source/Systems/EventTicketing/TicketedEvent.cs +28 -168
  303. package/Source/Systems/EventTicketing/TicketedEvent.cs.meta +1 -1
  304. package/Source/Systems/EventTicketing/TicketedEventCollectionResult.cs +4 -24
  305. package/Source/Systems/EventTicketing/TicketedEventCollectionResult.cs.meta +1 -1
  306. package/Source/Systems/EventTicketing/TicketedEventResult.cs +4 -24
  307. package/Source/Systems/EventTicketing/TicketedEventResult.cs.meta +1 -1
  308. package/Source/Systems/EventTicketing/TicketedEventVendorAuthInfo.cs +20 -120
  309. package/Source/Systems/EventTicketing/TicketedEventVendorAuthInfo.cs.meta +1 -1
  310. package/Source/Systems/EventTicketing/TicketedEventVendorAuthInfoResult.cs +4 -24
  311. package/Source/Systems/EventTicketing/TicketedEventVendorAuthInfoResult.cs.meta +1 -1
  312. package/Source/Systems/EventTicketing.meta +1 -1
  313. package/Source/Systems/GraphQL/GraphQLResult.cs +8 -48
  314. package/Source/Systems/GraphQL/GraphQLResult.cs.meta +1 -1
  315. package/Source/Systems/GraphQL/GraphQLSystem.cs +4 -24
  316. package/Source/Systems/GraphQL/GraphQLSystem.cs.meta +1 -1
  317. package/Source/Systems/GraphQL.meta +1 -1
  318. package/Source/Systems/HTTPHeadersResult.cs +4 -24
  319. package/Source/Systems/HTTPHeadersResult.cs.meta +1 -1
  320. package/Source/Systems/HotspotSequence/HotspotGroup.cs +12 -72
  321. package/Source/Systems/HotspotSequence/HotspotGroup.cs.meta +1 -1
  322. package/Source/Systems/HotspotSequence/HotspotGroupResult.cs +4 -24
  323. package/Source/Systems/HotspotSequence/HotspotGroupResult.cs.meta +1 -1
  324. package/Source/Systems/HotspotSequence/HotspotGroupsResult.cs +4 -24
  325. package/Source/Systems/HotspotSequence/HotspotGroupsResult.cs.meta +1 -1
  326. package/Source/Systems/HotspotSequence/HotspotSequenceSystem.cs +22 -100
  327. package/Source/Systems/HotspotSequence/HotspotSequenceSystem.cs.meta +1 -1
  328. package/Source/Systems/HotspotSequence.meta +1 -1
  329. package/Source/Systems/Log/LogLevel.cs.meta +1 -1
  330. package/Source/Systems/Log/LogSystem.cs +24 -144
  331. package/Source/Systems/Log/LogSystem.cs.meta +1 -1
  332. package/Source/Systems/Log.meta +1 -1
  333. package/Source/Systems/Maintenance/MaintenanceInfo.cs +18 -108
  334. package/Source/Systems/Maintenance/MaintenanceInfo.cs.meta +1 -1
  335. package/Source/Systems/Maintenance/MaintenanceInfoResult.cs +10 -60
  336. package/Source/Systems/Maintenance/MaintenanceInfoResult.cs.meta +1 -1
  337. package/Source/Systems/Maintenance/MaintenanceSystem.cs +2 -12
  338. package/Source/Systems/Maintenance/MaintenanceSystem.cs.meta +1 -1
  339. package/Source/Systems/Maintenance.meta +1 -1
  340. package/Source/Systems/NullResult.cs +2 -12
  341. package/Source/Systems/NullResult.cs.meta +1 -1
  342. package/Source/Systems/Organizations/EOrganizationRole.cs.meta +1 -1
  343. package/Source/Systems/Organizations/InviteOrganizationRoleCollection.cs +16 -96
  344. package/Source/Systems/Organizations/InviteOrganizationRoleCollection.cs.meta +1 -1
  345. package/Source/Systems/Organizations/InviteOrganizationRoleInfo.cs +12 -72
  346. package/Source/Systems/Organizations/InviteOrganizationRoleInfo.cs.meta +1 -1
  347. package/Source/Systems/Organizations/Organization.cs +34 -204
  348. package/Source/Systems/Organizations/Organization.cs.meta +1 -1
  349. package/Source/Systems/Organizations/OrganizationResult.cs +4 -24
  350. package/Source/Systems/Organizations/OrganizationResult.cs.meta +1 -1
  351. package/Source/Systems/Organizations/OrganizationRoleInfo.cs +12 -72
  352. package/Source/Systems/Organizations/OrganizationRoleInfo.cs.meta +1 -1
  353. package/Source/Systems/Organizations/OrganizationRolesResult.cs +4 -24
  354. package/Source/Systems/Organizations/OrganizationRolesResult.cs.meta +1 -1
  355. package/Source/Systems/Organizations/OrganizationSystem.cs +22 -132
  356. package/Source/Systems/Organizations/OrganizationSystem.cs.meta +1 -1
  357. package/Source/Systems/Organizations.meta +1 -1
  358. package/Source/Systems/Quota/FeatureLimitInfo.cs +16 -96
  359. package/Source/Systems/Quota/FeatureLimitInfo.cs.meta +1 -1
  360. package/Source/Systems/Quota/FeatureLimitResult.cs +4 -24
  361. package/Source/Systems/Quota/FeatureLimitResult.cs.meta +1 -1
  362. package/Source/Systems/Quota/FeatureQuotaInfo.cs +20 -120
  363. package/Source/Systems/Quota/FeatureQuotaInfo.cs.meta +1 -1
  364. package/Source/Systems/Quota/FeatureQuotaResult.cs +4 -24
  365. package/Source/Systems/Quota/FeatureQuotaResult.cs.meta +1 -1
  366. package/Source/Systems/Quota/FeaturesLimitResult.cs +4 -24
  367. package/Source/Systems/Quota/FeaturesLimitResult.cs.meta +1 -1
  368. package/Source/Systems/Quota/FeaturesQuotaResult.cs +4 -24
  369. package/Source/Systems/Quota/FeaturesQuotaResult.cs.meta +1 -1
  370. package/Source/Systems/Quota/PeriodEnum.cs.meta +1 -1
  371. package/Source/Systems/Quota/QuotaSystem.cs +16 -96
  372. package/Source/Systems/Quota/QuotaSystem.cs.meta +1 -1
  373. package/Source/Systems/Quota/TierFeatures.cs.meta +1 -1
  374. package/Source/Systems/Quota/TierNames.cs.meta +1 -1
  375. package/Source/Systems/Quota/UserTierInfo.cs +16 -96
  376. package/Source/Systems/Quota/UserTierInfo.cs.meta +1 -1
  377. package/Source/Systems/Quota/UserTierResult.cs +4 -24
  378. package/Source/Systems/Quota/UserTierResult.cs.meta +1 -1
  379. package/Source/Systems/Quota.meta +1 -1
  380. package/Source/Systems/ResultBase.cs +16 -96
  381. package/Source/Systems/ResultBase.cs.meta +1 -1
  382. package/Source/Systems/Script/ScriptSystem.cs +8 -48
  383. package/Source/Systems/Script/ScriptSystem.cs.meta +1 -1
  384. package/Source/Systems/Script.meta +1 -1
  385. package/Source/Systems/Sequence/Sequence.cs +24 -144
  386. package/Source/Systems/Sequence/Sequence.cs.meta +1 -1
  387. package/Source/Systems/Sequence/SequenceResult.cs +4 -24
  388. package/Source/Systems/Sequence/SequenceResult.cs.meta +1 -1
  389. package/Source/Systems/Sequence/SequenceSystem.cs +19 -72
  390. package/Source/Systems/Sequence/SequenceSystem.cs.meta +1 -1
  391. package/Source/Systems/Sequence/SequencesResult.cs +4 -24
  392. package/Source/Systems/Sequence/SequencesResult.cs.meta +1 -1
  393. package/Source/Systems/Sequence.meta +1 -1
  394. package/Source/Systems/Settings/AvatarInfoResult.cs +6 -36
  395. package/Source/Systems/Settings/AvatarInfoResult.cs.meta +1 -1
  396. package/Source/Systems/Settings/AvatarType.cs.meta +1 -1
  397. package/Source/Systems/Settings/SettingsCollection.cs +16 -96
  398. package/Source/Systems/Settings/SettingsCollection.cs.meta +1 -1
  399. package/Source/Systems/Settings/SettingsCollectionResult.cs +4 -24
  400. package/Source/Systems/Settings/SettingsCollectionResult.cs.meta +1 -1
  401. package/Source/Systems/Settings/SettingsSystem.cs +32 -192
  402. package/Source/Systems/Settings/SettingsSystem.cs.meta +1 -1
  403. package/Source/Systems/Settings.meta +1 -1
  404. package/Source/Systems/Spaces/BasicSpace.cs +20 -120
  405. package/Source/Systems/Spaces/BasicSpace.cs.meta +1 -1
  406. package/Source/Systems/Spaces/BasicSpaceResult.cs +4 -24
  407. package/Source/Systems/Spaces/BasicSpaceResult.cs.meta +1 -1
  408. package/Source/Systems/Spaces/BasicSpacesResult.cs +6 -36
  409. package/Source/Systems/Spaces/BasicSpacesResult.cs.meta +1 -1
  410. package/Source/Systems/Spaces/InviteUserRoleInfo.cs +14 -84
  411. package/Source/Systems/Spaces/InviteUserRoleInfo.cs.meta +1 -1
  412. package/Source/Systems/Spaces/InviteUserRoleInfoCollection.cs +18 -108
  413. package/Source/Systems/Spaces/InviteUserRoleInfoCollection.cs.meta +1 -1
  414. package/Source/Systems/Spaces/PendingInvitesResult.cs +4 -24
  415. package/Source/Systems/Spaces/PendingInvitesResult.cs.meta +1 -1
  416. package/Source/Systems/Spaces/Site.cs +24 -144
  417. package/Source/Systems/Spaces/Site.cs.meta +1 -1
  418. package/Source/Systems/Spaces/SiteResult.cs +4 -24
  419. package/Source/Systems/Spaces/SiteResult.cs.meta +1 -1
  420. package/Source/Systems/Spaces/SitesCollectionResult.cs +4 -24
  421. package/Source/Systems/Spaces/SitesCollectionResult.cs.meta +1 -1
  422. package/Source/Systems/Spaces/Space.cs +34 -204
  423. package/Source/Systems/Spaces/Space.cs.meta +1 -1
  424. package/Source/Systems/Spaces/SpaceAttributes.cs.meta +1 -1
  425. package/Source/Systems/Spaces/SpaceGeoLocation.cs +20 -120
  426. package/Source/Systems/Spaces/SpaceGeoLocation.cs.meta +1 -1
  427. package/Source/Systems/Spaces/SpaceGeoLocationResult.cs +6 -36
  428. package/Source/Systems/Spaces/SpaceGeoLocationResult.cs.meta +1 -1
  429. package/Source/Systems/Spaces/SpaceMetadataResult.cs +4 -24
  430. package/Source/Systems/Spaces/SpaceMetadataResult.cs.meta +1 -1
  431. package/Source/Systems/Spaces/SpaceResult.cs +6 -36
  432. package/Source/Systems/Spaces/SpaceResult.cs.meta +1 -1
  433. package/Source/Systems/Spaces/SpaceSystem.cs +139 -408
  434. package/Source/Systems/Spaces/SpaceSystem.cs.meta +1 -1
  435. package/Source/Systems/Spaces/SpaceUserRole.cs.meta +1 -1
  436. package/Source/Systems/Spaces/SpacesMetadataResult.cs +4 -24
  437. package/Source/Systems/Spaces/SpacesMetadataResult.cs.meta +1 -1
  438. package/Source/Systems/Spaces/SpacesResult.cs +4 -24
  439. package/Source/Systems/Spaces/SpacesResult.cs.meta +1 -1
  440. package/Source/Systems/Spaces/UserRoleCollectionResult.cs +4 -24
  441. package/Source/Systems/Spaces/UserRoleCollectionResult.cs.meta +1 -1
  442. package/Source/Systems/Spaces/UserRoleInfo.cs +14 -84
  443. package/Source/Systems/Spaces/UserRoleInfo.cs.meta +1 -1
  444. package/Source/Systems/Spaces.meta +1 -1
  445. package/Source/Systems/Spatial/Anchor.cs +56 -336
  446. package/Source/Systems/Spatial/Anchor.cs.meta +1 -1
  447. package/Source/Systems/Spatial/AnchorCollectionResult.cs +4 -24
  448. package/Source/Systems/Spatial/AnchorCollectionResult.cs.meta +1 -1
  449. package/Source/Systems/Spatial/AnchorProvider.cs.meta +1 -1
  450. package/Source/Systems/Spatial/AnchorResolution.cs +28 -168
  451. package/Source/Systems/Spatial/AnchorResolution.cs.meta +1 -1
  452. package/Source/Systems/Spatial/AnchorResolutionCollectionResult.cs +4 -24
  453. package/Source/Systems/Spatial/AnchorResolutionCollectionResult.cs.meta +1 -1
  454. package/Source/Systems/Spatial/AnchorResolutionResult.cs +4 -24
  455. package/Source/Systems/Spatial/AnchorResolutionResult.cs.meta +1 -1
  456. package/Source/Systems/Spatial/AnchorResult.cs +4 -24
  457. package/Source/Systems/Spatial/AnchorResult.cs.meta +1 -1
  458. package/Source/Systems/Spatial/AnchorSystem.cs +14 -84
  459. package/Source/Systems/Spatial/AnchorSystem.cs.meta +1 -1
  460. package/Source/Systems/Spatial/EPointOfInterestType.cs.meta +1 -1
  461. package/Source/Systems/Spatial/GeoLocation.cs +16 -96
  462. package/Source/Systems/Spatial/GeoLocation.cs.meta +1 -1
  463. package/Source/Systems/Spatial/OlyAnchorPosition.cs +18 -108
  464. package/Source/Systems/Spatial/OlyAnchorPosition.cs.meta +1 -1
  465. package/Source/Systems/Spatial/OlyRotation.cs +22 -132
  466. package/Source/Systems/Spatial/OlyRotation.cs.meta +1 -1
  467. package/Source/Systems/Spatial/POICollectionResult.cs +4 -24
  468. package/Source/Systems/Spatial/POICollectionResult.cs.meta +1 -1
  469. package/Source/Systems/Spatial/POIResult.cs +4 -24
  470. package/Source/Systems/Spatial/POIResult.cs.meta +1 -1
  471. package/Source/Systems/Spatial/PointOfInterest.cs +52 -312
  472. package/Source/Systems/Spatial/PointOfInterest.cs.meta +1 -1
  473. package/Source/Systems/Spatial/PointOfInterestSystem.cs +6 -36
  474. package/Source/Systems/Spatial/PointOfInterestSystem.cs.meta +1 -1
  475. package/Source/Systems/Spatial.meta +1 -1
  476. package/Source/Systems/StringArrayResult.cs +4 -24
  477. package/Source/Systems/StringArrayResult.cs.meta +1 -1
  478. package/Source/Systems/StringResult.cs +4 -24
  479. package/Source/Systems/StringResult.cs.meta +1 -1
  480. package/Source/Systems/SystemBase.cs +2 -12
  481. package/Source/Systems/SystemBase.cs.meta +1 -1
  482. package/Source/Systems/SystemsManager.cs +42 -252
  483. package/Source/Systems/SystemsManager.cs.meta +1 -1
  484. package/Source/Systems/UInt64Result.cs +4 -24
  485. package/Source/Systems/UInt64Result.cs.meta +1 -1
  486. package/Source/Systems/Users/AgoraUserTokenParams.cs +65 -193
  487. package/Source/Systems/Users/AgoraUserTokenParams.cs.meta +1 -1
  488. package/Source/Systems/Users/BasicProfile.cs +24 -144
  489. package/Source/Systems/Users/BasicProfile.cs.meta +1 -1
  490. package/Source/Systems/Users/BasicProfilesResult.cs +4 -24
  491. package/Source/Systems/Users/BasicProfilesResult.cs.meta +1 -1
  492. package/Source/Systems/Users/ELoginState.cs.meta +1 -1
  493. package/Source/Systems/Users/EThirdPartyAuthenticationProviders.cs.meta +1 -1
  494. package/Source/Systems/Users/LoginState.cs +32 -192
  495. package/Source/Systems/Users/LoginState.cs.meta +1 -1
  496. package/Source/Systems/Users/LoginStateResult.cs +4 -24
  497. package/Source/Systems/Users/LoginStateResult.cs.meta +1 -1
  498. package/Source/Systems/Users/LoginTokenInfo.cs +20 -120
  499. package/Source/Systems/Users/LoginTokenInfo.cs.meta +1 -1
  500. package/Source/Systems/Users/LoginTokenInfoResult.cs +4 -24
  501. package/Source/Systems/Users/LoginTokenInfoResult.cs.meta +1 -1
  502. package/Source/Systems/Users/Profile.cs +36 -216
  503. package/Source/Systems/Users/Profile.cs.meta +1 -1
  504. package/Source/Systems/Users/ProfileResult.cs +4 -24
  505. package/Source/Systems/Users/ProfileResult.cs.meta +1 -1
  506. package/Source/Systems/Users/ProviderDetailsResult.cs +8 -48
  507. package/Source/Systems/Users/ProviderDetailsResult.cs.meta +1 -1
  508. package/Source/Systems/Users/ThirdPartyProviderDetails.cs +20 -120
  509. package/Source/Systems/Users/ThirdPartyProviderDetails.cs.meta +1 -1
  510. package/Source/Systems/Users/UserSystem.cs +48 -288
  511. package/Source/Systems/Users/UserSystem.cs.meta +1 -1
  512. package/Source/Systems/Users.meta +1 -1
  513. package/Source/Systems/Voip/VoipSystem.cs +4 -24
  514. package/Source/Systems/Voip/VoipSystem.cs.meta +1 -1
  515. package/Source/Systems/Voip.meta +1 -1
  516. package/Source/Systems.meta +1 -1
  517. package/Source/Web/EResponseCodes.cs.meta +1 -1
  518. package/Source/Web.meta +1 -1
  519. package/Source/WrapperHelper.cs.meta +1 -1
  520. package/Source.meta +1 -1
  521. package/android64/libConnectedSpacesPlatform.so +0 -0
  522. package/android64/libConnectedSpacesPlatform.so.meta +1 -1
  523. package/android64/libConnectedSpacesPlatform_D.so +0 -0
  524. package/android64/libConnectedSpacesPlatform_D.so.meta +1 -1
  525. package/android64.meta +1 -1
  526. package/ios/libConnectedSpacesPlatform.a +0 -0
  527. package/ios/libConnectedSpacesPlatform.a.meta +1 -1
  528. package/ios/libcrypto.a +0 -0
  529. package/ios/libcrypto.a.meta +1 -1
  530. package/ios/libssl.a.meta +1 -1
  531. package/ios.meta +1 -1
  532. package/macosx/libConnectedSpacesPlatform.dylib +0 -0
  533. package/macosx/libConnectedSpacesPlatform.dylib.meta +1 -1
  534. package/macosx.meta +1 -1
  535. package/package.json +1 -1
  536. package/package.json.meta +1 -1
  537. package/visionos/libConnectedSpacesPlatform.a +0 -0
  538. package/visionos/libConnectedSpacesPlatform.a.meta +1 -1
  539. package/visionos/libcrypto.a.meta +1 -1
  540. package/visionos/libssl.a.meta +1 -1
  541. package/visionos.meta +1 -1
  542. package/windows/ConnectedSpacesPlatform.dll +0 -0
  543. package/windows/ConnectedSpacesPlatform.dll.meta +1 -1
  544. package/windows/ConnectedSpacesPlatform_D.dll +0 -0
  545. package/windows/ConnectedSpacesPlatform_D.dll.meta +1 -1
  546. package/windows.meta +1 -1
@@ -29,683 +29,243 @@ namespace Csp.Multiplayer
29
29
 
30
30
 
31
31
 
32
- [
33
- DllImport(
34
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
35
- "__Internal"
36
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
37
- "ConnectedSpacesPlatform_D"
38
- #else
39
- "ConnectedSpacesPlatform"
40
- #endif
41
- ),
42
- SuppressUnmanagedCodeSecurity
43
- ]
32
+ [DllImport(Csp.Constants.DllName)]
33
+ [SuppressUnmanagedCodeSecurity]
44
34
  static extern NativePointer csp_multiplayer_VideoPlayerSpaceComponent_Ctor_SpaceEntityP(IntPtr Parent);
45
35
 
46
- [
47
- DllImport(
48
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
49
- "__Internal"
50
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
51
- "ConnectedSpacesPlatform_D"
52
- #else
53
- "ConnectedSpacesPlatform"
54
- #endif
55
- ),
56
- SuppressUnmanagedCodeSecurity
57
- ]
36
+ [DllImport(Csp.Constants.DllName)]
37
+ [SuppressUnmanagedCodeSecurity]
58
38
  static extern IntPtr csp_multiplayer_VideoPlayerSpaceComponent_GetNameC_StringRC(IntPtr @class);
59
39
 
60
- [
61
- DllImport(
62
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
63
- "__Internal"
64
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
65
- "ConnectedSpacesPlatform_D"
66
- #else
67
- "ConnectedSpacesPlatform"
68
- #endif
69
- ),
70
- SuppressUnmanagedCodeSecurity
71
- ]
40
+ [DllImport(Csp.Constants.DllName)]
41
+ [SuppressUnmanagedCodeSecurity]
72
42
  static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetName_void_StringRC(IntPtr @class, IntPtr Value);
73
43
 
74
- [
75
- DllImport(
76
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
77
- "__Internal"
78
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
79
- "ConnectedSpacesPlatform_D"
80
- #else
81
- "ConnectedSpacesPlatform"
82
- #endif
83
- ),
84
- SuppressUnmanagedCodeSecurity
85
- ]
44
+ [DllImport(Csp.Constants.DllName)]
45
+ [SuppressUnmanagedCodeSecurity]
86
46
  static extern IntPtr csp_multiplayer_VideoPlayerSpaceComponent_GetVideoAssetIdC_StringRC(IntPtr @class);
87
47
 
88
- [
89
- DllImport(
90
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
91
- "__Internal"
92
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
93
- "ConnectedSpacesPlatform_D"
94
- #else
95
- "ConnectedSpacesPlatform"
96
- #endif
97
- ),
98
- SuppressUnmanagedCodeSecurity
99
- ]
48
+ [DllImport(Csp.Constants.DllName)]
49
+ [SuppressUnmanagedCodeSecurity]
100
50
  static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetVideoAssetId_void_StringRC(
101
51
  IntPtr @class,
102
52
  IntPtr Value
103
53
  );
104
54
 
105
- [
106
- DllImport(
107
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
108
- "__Internal"
109
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
110
- "ConnectedSpacesPlatform_D"
111
- #else
112
- "ConnectedSpacesPlatform"
113
- #endif
114
- ),
115
- SuppressUnmanagedCodeSecurity
116
- ]
55
+ [DllImport(Csp.Constants.DllName)]
56
+ [SuppressUnmanagedCodeSecurity]
117
57
  static extern IntPtr csp_multiplayer_VideoPlayerSpaceComponent_GetVideoAssetURLC_StringRC(IntPtr @class);
118
58
 
119
- [
120
- DllImport(
121
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
122
- "__Internal"
123
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
124
- "ConnectedSpacesPlatform_D"
125
- #else
126
- "ConnectedSpacesPlatform"
127
- #endif
128
- ),
129
- SuppressUnmanagedCodeSecurity
130
- ]
59
+ [DllImport(Csp.Constants.DllName)]
60
+ [SuppressUnmanagedCodeSecurity]
131
61
  static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetVideoAssetURL_void_StringRC(
132
62
  IntPtr @class,
133
63
  IntPtr Value
134
64
  );
135
65
 
136
- [
137
- DllImport(
138
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
139
- "__Internal"
140
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
141
- "ConnectedSpacesPlatform_D"
142
- #else
143
- "ConnectedSpacesPlatform"
144
- #endif
145
- ),
146
- SuppressUnmanagedCodeSecurity
147
- ]
66
+ [DllImport(Csp.Constants.DllName)]
67
+ [SuppressUnmanagedCodeSecurity]
148
68
  static extern IntPtr csp_multiplayer_VideoPlayerSpaceComponent_GetAssetCollectionIdC_StringRC(IntPtr @class);
149
69
 
150
- [
151
- DllImport(
152
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
153
- "__Internal"
154
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
155
- "ConnectedSpacesPlatform_D"
156
- #else
157
- "ConnectedSpacesPlatform"
158
- #endif
159
- ),
160
- SuppressUnmanagedCodeSecurity
161
- ]
70
+ [DllImport(Csp.Constants.DllName)]
71
+ [SuppressUnmanagedCodeSecurity]
162
72
  static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetAssetCollectionId_void_StringRC(
163
73
  IntPtr @class,
164
74
  IntPtr Value
165
75
  );
166
76
 
167
- [
168
- DllImport(
169
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
170
- "__Internal"
171
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
172
- "ConnectedSpacesPlatform_D"
173
- #else
174
- "ConnectedSpacesPlatform"
175
- #endif
176
- ),
177
- SuppressUnmanagedCodeSecurity
178
- ]
77
+ [DllImport(Csp.Constants.DllName)]
78
+ [SuppressUnmanagedCodeSecurity]
179
79
  static extern NativePointer csp_multiplayer_VideoPlayerSpaceComponent_GetPositionC_Vector3RC(IntPtr @class);
180
80
 
181
- [
182
- DllImport(
183
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
184
- "__Internal"
185
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
186
- "ConnectedSpacesPlatform_D"
187
- #else
188
- "ConnectedSpacesPlatform"
189
- #endif
190
- ),
191
- SuppressUnmanagedCodeSecurity
192
- ]
81
+ [DllImport(Csp.Constants.DllName)]
82
+ [SuppressUnmanagedCodeSecurity]
193
83
  static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetPosition_void_Vector3RC(
194
84
  IntPtr @class,
195
85
  IntPtr InValue
196
86
  );
197
87
 
198
- [
199
- DllImport(
200
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
201
- "__Internal"
202
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
203
- "ConnectedSpacesPlatform_D"
204
- #else
205
- "ConnectedSpacesPlatform"
206
- #endif
207
- ),
208
- SuppressUnmanagedCodeSecurity
209
- ]
88
+ [DllImport(Csp.Constants.DllName)]
89
+ [SuppressUnmanagedCodeSecurity]
210
90
  static extern NativePointer csp_multiplayer_VideoPlayerSpaceComponent_GetRotationC_Vector4RC(IntPtr @class);
211
91
 
212
- [
213
- DllImport(
214
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
215
- "__Internal"
216
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
217
- "ConnectedSpacesPlatform_D"
218
- #else
219
- "ConnectedSpacesPlatform"
220
- #endif
221
- ),
222
- SuppressUnmanagedCodeSecurity
223
- ]
92
+ [DllImport(Csp.Constants.DllName)]
93
+ [SuppressUnmanagedCodeSecurity]
224
94
  static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetRotation_void_Vector4RC(
225
95
  IntPtr @class,
226
96
  IntPtr InValue
227
97
  );
228
98
 
229
- [
230
- DllImport(
231
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
232
- "__Internal"
233
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
234
- "ConnectedSpacesPlatform_D"
235
- #else
236
- "ConnectedSpacesPlatform"
237
- #endif
238
- ),
239
- SuppressUnmanagedCodeSecurity
240
- ]
99
+ [DllImport(Csp.Constants.DllName)]
100
+ [SuppressUnmanagedCodeSecurity]
241
101
  static extern NativePointer csp_multiplayer_VideoPlayerSpaceComponent_GetScaleC_Vector3RC(IntPtr @class);
242
102
 
243
- [
244
- DllImport(
245
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
246
- "__Internal"
247
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
248
- "ConnectedSpacesPlatform_D"
249
- #else
250
- "ConnectedSpacesPlatform"
251
- #endif
252
- ),
253
- SuppressUnmanagedCodeSecurity
254
- ]
103
+ [DllImport(Csp.Constants.DllName)]
104
+ [SuppressUnmanagedCodeSecurity]
255
105
  static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetScale_void_Vector3RC(
256
106
  IntPtr @class,
257
107
  IntPtr InValue
258
108
  );
259
109
 
260
- [
261
- DllImport(
262
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
263
- "__Internal"
264
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
265
- "ConnectedSpacesPlatform_D"
266
- #else
267
- "ConnectedSpacesPlatform"
268
- #endif
269
- ),
270
- SuppressUnmanagedCodeSecurity
271
- ]
110
+ [DllImport(Csp.Constants.DllName)]
111
+ [SuppressUnmanagedCodeSecurity]
272
112
  static extern NativePointer csp_multiplayer_VideoPlayerSpaceComponent_GetTransformC_SpaceTransform(
273
113
  IntPtr @class
274
114
  );
275
115
 
276
- [
277
- DllImport(
278
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
279
- "__Internal"
280
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
281
- "ConnectedSpacesPlatform_D"
282
- #else
283
- "ConnectedSpacesPlatform"
284
- #endif
285
- ),
286
- SuppressUnmanagedCodeSecurity
287
- ]
116
+ [DllImport(Csp.Constants.DllName)]
117
+ [SuppressUnmanagedCodeSecurity]
288
118
  static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetTransform_void_SpaceTransformRC(
289
119
  IntPtr @class,
290
120
  IntPtr InValue
291
121
  );
292
122
 
293
- [
294
- DllImport(
295
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
296
- "__Internal"
297
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
298
- "ConnectedSpacesPlatform_D"
299
- #else
300
- "ConnectedSpacesPlatform"
301
- #endif
302
- ),
303
- SuppressUnmanagedCodeSecurity
304
- ]
123
+ [DllImport(Csp.Constants.DllName)]
124
+ [SuppressUnmanagedCodeSecurity]
305
125
  static extern bool csp_multiplayer_VideoPlayerSpaceComponent_GetIsStateSharedC_bool(IntPtr @class);
306
126
 
307
- [
308
- DllImport(
309
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
310
- "__Internal"
311
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
312
- "ConnectedSpacesPlatform_D"
313
- #else
314
- "ConnectedSpacesPlatform"
315
- #endif
316
- ),
317
- SuppressUnmanagedCodeSecurity
318
- ]
127
+ [DllImport(Csp.Constants.DllName)]
128
+ [SuppressUnmanagedCodeSecurity]
319
129
  static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetIsStateShared_void_bool(
320
130
  IntPtr @class,
321
131
  bool Value
322
132
  );
323
133
 
324
- [
325
- DllImport(
326
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
327
- "__Internal"
328
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
329
- "ConnectedSpacesPlatform_D"
330
- #else
331
- "ConnectedSpacesPlatform"
332
- #endif
333
- ),
334
- SuppressUnmanagedCodeSecurity
335
- ]
134
+ [DllImport(Csp.Constants.DllName)]
135
+ [SuppressUnmanagedCodeSecurity]
336
136
  static extern bool csp_multiplayer_VideoPlayerSpaceComponent_GetIsAutoPlayC_bool(IntPtr @class);
337
137
 
338
- [
339
- DllImport(
340
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
341
- "__Internal"
342
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
343
- "ConnectedSpacesPlatform_D"
344
- #else
345
- "ConnectedSpacesPlatform"
346
- #endif
347
- ),
348
- SuppressUnmanagedCodeSecurity
349
- ]
138
+ [DllImport(Csp.Constants.DllName)]
139
+ [SuppressUnmanagedCodeSecurity]
350
140
  static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetIsAutoPlay_void_bool(IntPtr @class, bool Value);
351
141
 
352
- [
353
- DllImport(
354
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
355
- "__Internal"
356
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
357
- "ConnectedSpacesPlatform_D"
358
- #else
359
- "ConnectedSpacesPlatform"
360
- #endif
361
- ),
362
- SuppressUnmanagedCodeSecurity
363
- ]
142
+ [DllImport(Csp.Constants.DllName)]
143
+ [SuppressUnmanagedCodeSecurity]
364
144
  static extern bool csp_multiplayer_VideoPlayerSpaceComponent_GetIsLoopPlaybackC_bool(IntPtr @class);
365
145
 
366
- [
367
- DllImport(
368
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
369
- "__Internal"
370
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
371
- "ConnectedSpacesPlatform_D"
372
- #else
373
- "ConnectedSpacesPlatform"
374
- #endif
375
- ),
376
- SuppressUnmanagedCodeSecurity
377
- ]
146
+ [DllImport(Csp.Constants.DllName)]
147
+ [SuppressUnmanagedCodeSecurity]
378
148
  static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetIsLoopPlayback_void_bool(
379
149
  IntPtr @class,
380
150
  bool Value
381
151
  );
382
152
 
383
- [
384
- DllImport(
385
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
386
- "__Internal"
387
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
388
- "ConnectedSpacesPlatform_D"
389
- #else
390
- "ConnectedSpacesPlatform"
391
- #endif
392
- ),
393
- SuppressUnmanagedCodeSecurity
394
- ]
153
+ [DllImport(Csp.Constants.DllName)]
154
+ [SuppressUnmanagedCodeSecurity]
395
155
  static extern bool csp_multiplayer_VideoPlayerSpaceComponent_GetIsAutoResizeC_bool(IntPtr @class);
396
156
 
397
- [
398
- DllImport(
399
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
400
- "__Internal"
401
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
402
- "ConnectedSpacesPlatform_D"
403
- #else
404
- "ConnectedSpacesPlatform"
405
- #endif
406
- ),
407
- SuppressUnmanagedCodeSecurity
408
- ]
157
+ [DllImport(Csp.Constants.DllName)]
158
+ [SuppressUnmanagedCodeSecurity]
409
159
  static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetIsAutoResize_void_bool(
410
160
  IntPtr @class,
411
161
  bool Value
412
162
  );
413
163
 
414
- [
415
- DllImport(
416
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
417
- "__Internal"
418
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
419
- "ConnectedSpacesPlatform_D"
420
- #else
421
- "ConnectedSpacesPlatform"
422
- #endif
423
- ),
424
- SuppressUnmanagedCodeSecurity
425
- ]
164
+ [DllImport(Csp.Constants.DllName)]
165
+ [SuppressUnmanagedCodeSecurity]
426
166
  static extern float csp_multiplayer_VideoPlayerSpaceComponent_GetAttenuationRadiusC_float(IntPtr @class);
427
167
 
428
- [
429
- DllImport(
430
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
431
- "__Internal"
432
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
433
- "ConnectedSpacesPlatform_D"
434
- #else
435
- "ConnectedSpacesPlatform"
436
- #endif
437
- ),
438
- SuppressUnmanagedCodeSecurity
439
- ]
168
+ [DllImport(Csp.Constants.DllName)]
169
+ [SuppressUnmanagedCodeSecurity]
440
170
  static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetAttenuationRadius_void_float(
441
171
  IntPtr @class,
442
172
  float Value
443
173
  );
444
174
 
445
- [
446
- DllImport(
447
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
448
- "__Internal"
449
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
450
- "ConnectedSpacesPlatform_D"
451
- #else
452
- "ConnectedSpacesPlatform"
453
- #endif
454
- ),
455
- SuppressUnmanagedCodeSecurity
456
- ]
175
+ [DllImport(Csp.Constants.DllName)]
176
+ [SuppressUnmanagedCodeSecurity]
457
177
  static extern Csp.Multiplayer.VideoPlayerPlaybackState csp_multiplayer_VideoPlayerSpaceComponent_GetPlaybackStateC_VideoPlayerPlaybackState(
458
178
  IntPtr @class
459
179
  );
460
180
 
461
- [
462
- DllImport(
463
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
464
- "__Internal"
465
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
466
- "ConnectedSpacesPlatform_D"
467
- #else
468
- "ConnectedSpacesPlatform"
469
- #endif
470
- ),
471
- SuppressUnmanagedCodeSecurity
472
- ]
181
+ [DllImport(Csp.Constants.DllName)]
182
+ [SuppressUnmanagedCodeSecurity]
473
183
  static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetPlaybackState_void_VideoPlayerPlaybackState(
474
184
  IntPtr @class,
475
185
  Csp.Multiplayer.VideoPlayerPlaybackState Value
476
186
  );
477
187
 
478
- [
479
- DllImport(
480
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
481
- "__Internal"
482
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
483
- "ConnectedSpacesPlatform_D"
484
- #else
485
- "ConnectedSpacesPlatform"
486
- #endif
487
- ),
488
- SuppressUnmanagedCodeSecurity
489
- ]
188
+ [DllImport(Csp.Constants.DllName)]
189
+ [SuppressUnmanagedCodeSecurity]
490
190
  static extern float csp_multiplayer_VideoPlayerSpaceComponent_GetCurrentPlayheadPositionC_float(IntPtr @class);
491
191
 
492
- [
493
- DllImport(
494
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
495
- "__Internal"
496
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
497
- "ConnectedSpacesPlatform_D"
498
- #else
499
- "ConnectedSpacesPlatform"
500
- #endif
501
- ),
502
- SuppressUnmanagedCodeSecurity
503
- ]
192
+ [DllImport(Csp.Constants.DllName)]
193
+ [SuppressUnmanagedCodeSecurity]
504
194
  static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetCurrentPlayheadPosition_void_float(
505
195
  IntPtr @class,
506
196
  float Value
507
197
  );
508
198
 
509
- [
510
- DllImport(
511
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
512
- "__Internal"
513
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
514
- "ConnectedSpacesPlatform_D"
515
- #else
516
- "ConnectedSpacesPlatform"
517
- #endif
518
- ),
519
- SuppressUnmanagedCodeSecurity
520
- ]
199
+ [DllImport(Csp.Constants.DllName)]
200
+ [SuppressUnmanagedCodeSecurity]
521
201
  static extern float csp_multiplayer_VideoPlayerSpaceComponent_GetTimeSincePlayC_float(IntPtr @class);
522
202
 
523
- [
524
- DllImport(
525
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
526
- "__Internal"
527
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
528
- "ConnectedSpacesPlatform_D"
529
- #else
530
- "ConnectedSpacesPlatform"
531
- #endif
532
- ),
533
- SuppressUnmanagedCodeSecurity
534
- ]
203
+ [DllImport(Csp.Constants.DllName)]
204
+ [SuppressUnmanagedCodeSecurity]
535
205
  static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetTimeSincePlay_void_float(
536
206
  IntPtr @class,
537
207
  float Value
538
208
  );
539
209
 
540
- [
541
- DllImport(
542
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
543
- "__Internal"
544
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
545
- "ConnectedSpacesPlatform_D"
546
- #else
547
- "ConnectedSpacesPlatform"
548
- #endif
549
- ),
550
- SuppressUnmanagedCodeSecurity
551
- ]
210
+ [DllImport(Csp.Constants.DllName)]
211
+ [SuppressUnmanagedCodeSecurity]
552
212
  static extern Csp.Multiplayer.VideoPlayerSourceType csp_multiplayer_VideoPlayerSpaceComponent_GetVideoPlayerSourceTypeC_VideoPlayerSourceType(
553
213
  IntPtr @class
554
214
  );
555
215
 
556
- [
557
- DllImport(
558
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
559
- "__Internal"
560
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
561
- "ConnectedSpacesPlatform_D"
562
- #else
563
- "ConnectedSpacesPlatform"
564
- #endif
565
- ),
566
- SuppressUnmanagedCodeSecurity
567
- ]
216
+ [DllImport(Csp.Constants.DllName)]
217
+ [SuppressUnmanagedCodeSecurity]
568
218
  static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetVideoPlayerSourceType_void_VideoPlayerSourceType(
569
219
  IntPtr @class,
570
220
  Csp.Multiplayer.VideoPlayerSourceType Value
571
221
  );
572
222
 
573
- [
574
- DllImport(
575
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
576
- "__Internal"
577
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
578
- "ConnectedSpacesPlatform_D"
579
- #else
580
- "ConnectedSpacesPlatform"
581
- #endif
582
- ),
583
- SuppressUnmanagedCodeSecurity
584
- ]
223
+ [DllImport(Csp.Constants.DllName)]
224
+ [SuppressUnmanagedCodeSecurity]
585
225
  static extern ushort csp_multiplayer_VideoPlayerSpaceComponent_GetMeshComponentIdC_uint16_t(IntPtr @class);
586
226
 
587
- [
588
- DllImport(
589
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
590
- "__Internal"
591
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
592
- "ConnectedSpacesPlatform_D"
593
- #else
594
- "ConnectedSpacesPlatform"
595
- #endif
596
- ),
597
- SuppressUnmanagedCodeSecurity
598
- ]
227
+ [DllImport(Csp.Constants.DllName)]
228
+ [SuppressUnmanagedCodeSecurity]
599
229
  static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetMeshComponentId_void_uint16_t(
600
230
  IntPtr @class,
601
231
  ushort Id
602
232
  );
603
233
 
604
- [
605
- DllImport(
606
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
607
- "__Internal"
608
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
609
- "ConnectedSpacesPlatform_D"
610
- #else
611
- "ConnectedSpacesPlatform"
612
- #endif
613
- ),
614
- SuppressUnmanagedCodeSecurity
615
- ]
234
+ [DllImport(Csp.Constants.DllName)]
235
+ [SuppressUnmanagedCodeSecurity]
616
236
  static extern bool csp_multiplayer_VideoPlayerSpaceComponent_GetIsVisibleC_bool(IntPtr @class);
617
237
 
618
- [
619
- DllImport(
620
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
621
- "__Internal"
622
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
623
- "ConnectedSpacesPlatform_D"
624
- #else
625
- "ConnectedSpacesPlatform"
626
- #endif
627
- ),
628
- SuppressUnmanagedCodeSecurity
629
- ]
238
+ [DllImport(Csp.Constants.DllName)]
239
+ [SuppressUnmanagedCodeSecurity]
630
240
  static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetIsVisible_void_bool(
631
241
  IntPtr @class,
632
242
  bool InValue
633
243
  );
634
244
 
635
- [
636
- DllImport(
637
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
638
- "__Internal"
639
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
640
- "ConnectedSpacesPlatform_D"
641
- #else
642
- "ConnectedSpacesPlatform"
643
- #endif
644
- ),
645
- SuppressUnmanagedCodeSecurity
646
- ]
245
+ [DllImport(Csp.Constants.DllName)]
246
+ [SuppressUnmanagedCodeSecurity]
647
247
  static extern bool csp_multiplayer_VideoPlayerSpaceComponent_GetIsARVisibleC_bool(IntPtr @class);
648
248
 
649
- [
650
- DllImport(
651
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
652
- "__Internal"
653
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
654
- "ConnectedSpacesPlatform_D"
655
- #else
656
- "ConnectedSpacesPlatform"
657
- #endif
658
- ),
659
- SuppressUnmanagedCodeSecurity
660
- ]
249
+ [DllImport(Csp.Constants.DllName)]
250
+ [SuppressUnmanagedCodeSecurity]
661
251
  static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetIsARVisible_void_bool(
662
252
  IntPtr @class,
663
253
  bool InValue
664
254
  );
665
255
 
666
- [
667
- DllImport(
668
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
669
- "__Internal"
670
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
671
- "ConnectedSpacesPlatform_D"
672
- #else
673
- "ConnectedSpacesPlatform"
674
- #endif
675
- ),
676
- SuppressUnmanagedCodeSecurity
677
- ]
256
+ [DllImport(Csp.Constants.DllName)]
257
+ [SuppressUnmanagedCodeSecurity]
678
258
  static extern bool csp_multiplayer_VideoPlayerSpaceComponent_GetIsEnabledC_bool(IntPtr @class);
679
259
 
680
- [
681
- DllImport(
682
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
683
- "__Internal"
684
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
685
- "ConnectedSpacesPlatform_D"
686
- #else
687
- "ConnectedSpacesPlatform"
688
- #endif
689
- ),
690
- SuppressUnmanagedCodeSecurity
691
- ]
260
+ [DllImport(Csp.Constants.DllName)]
261
+ [SuppressUnmanagedCodeSecurity]
692
262
  static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetIsEnabled_void_bool(
693
263
  IntPtr @class,
694
264
  bool InValue
695
265
  );
696
266
 
697
- [
698
- DllImport(
699
- #if !UNITY_EDITOR && (UNITY_IOS || UNITY_VISIONOS)
700
- "__Internal"
701
- #elif DEBUG && !UNITY_EDITOR_OSX && !UNITY_STANDALONE_OSX
702
- "ConnectedSpacesPlatform_D"
703
- #else
704
- "ConnectedSpacesPlatform"
705
- #endif
706
- ),
707
- SuppressUnmanagedCodeSecurity
708
- ]
267
+ [DllImport(Csp.Constants.DllName)]
268
+ [SuppressUnmanagedCodeSecurity]
709
269
  static extern void csp_multiplayer_VideoPlayerSpaceComponent_Dtor(IntPtr @class);
710
270
 
711
271
  #pragma warning restore IDE1006