connected-spaces-platform.unity.core 4.10.0-prerelease3

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 (524) hide show
  1. package/Editor/NativePluginBuildProcessor.asmdef +16 -0
  2. package/Editor/NativePluginBuildProcessor.asmdef.meta +7 -0
  3. package/Editor/NativePluginBuildProcessor.cs +41 -0
  4. package/Editor/NativePluginBuildProcessor.cs.meta +11 -0
  5. package/Editor.meta +7 -0
  6. package/Source/CSPFoundation.cs +417 -0
  7. package/Source/CSPFoundation.cs.meta +11 -0
  8. package/Source/ClientUserAgent.cs +292 -0
  9. package/Source/ClientUserAgent.cs.meta +11 -0
  10. package/Source/Common/Array.cs +201 -0
  11. package/Source/Common/Array.cs.meta +11 -0
  12. package/Source/Common/CancellationToken.cs +175 -0
  13. package/Source/Common/CancellationToken.cs.meta +11 -0
  14. package/Source/Common/FileExtensions.cs +15317 -0
  15. package/Source/Common/FileExtensions.cs.meta +11 -0
  16. package/Source/Common/List.cs +275 -0
  17. package/Source/Common/List.cs.meta +11 -0
  18. package/Source/Common/Map.cs +283 -0
  19. package/Source/Common/Map.cs.meta +11 -0
  20. package/Source/Common/MimeTypeHelper.cs +210 -0
  21. package/Source/Common/MimeTypeHelper.cs.meta +11 -0
  22. package/Source/Common/MimeTypes.cs +10565 -0
  23. package/Source/Common/MimeTypes.cs.meta +11 -0
  24. package/Source/Common/Variant.cs +573 -0
  25. package/Source/Common/Variant.cs.meta +11 -0
  26. package/Source/Common/VariantType.cs +28 -0
  27. package/Source/Common/VariantType.cs.meta +11 -0
  28. package/Source/Common/Vector3.cs +268 -0
  29. package/Source/Common/Vector3.cs.meta +11 -0
  30. package/Source/Common/Vector4.cs +328 -0
  31. package/Source/Common/Vector4.cs.meta +11 -0
  32. package/Source/Common.meta +7 -0
  33. package/Source/ConnectedSpacesPlatform.Unity.Core.asmdef +14 -0
  34. package/Source/ConnectedSpacesPlatform.Unity.Core.asmdef.meta +7 -0
  35. package/Source/Csp.cs +83 -0
  36. package/Source/Csp.cs.meta +11 -0
  37. package/Source/EThirdPartyPlatform.cs +26 -0
  38. package/Source/EThirdPartyPlatform.cs.meta +11 -0
  39. package/Source/EndpointURIs.cs +258 -0
  40. package/Source/EndpointURIs.cs.meta +11 -0
  41. package/Source/Il2cppPreserver.cs +29 -0
  42. package/Source/Il2cppPreserver.cs.meta +11 -0
  43. package/Source/Multiplayer/AssetDetailBlobParams.cs +270 -0
  44. package/Source/Multiplayer/AssetDetailBlobParams.cs.meta +11 -0
  45. package/Source/Multiplayer/ComponentBase.cs +339 -0
  46. package/Source/Multiplayer/ComponentBase.cs.meta +11 -0
  47. package/Source/Multiplayer/ComponentType.cs +46 -0
  48. package/Source/Multiplayer/ComponentType.cs.meta +11 -0
  49. package/Source/Multiplayer/ComponentUpdateInfo.cs +161 -0
  50. package/Source/Multiplayer/ComponentUpdateInfo.cs.meta +11 -0
  51. package/Source/Multiplayer/ComponentUpdateType.cs +24 -0
  52. package/Source/Multiplayer/ComponentUpdateType.cs.meta +11 -0
  53. package/Source/Multiplayer/Components/AnimatedModelActions.cs +25 -0
  54. package/Source/Multiplayer/Components/AnimatedModelActions.cs.meta +11 -0
  55. package/Source/Multiplayer/Components/AnimatedModelPropertyKeys.cs +36 -0
  56. package/Source/Multiplayer/Components/AnimatedModelPropertyKeys.cs.meta +11 -0
  57. package/Source/Multiplayer/Components/AnimatedModelSpaceComponent.cs +793 -0
  58. package/Source/Multiplayer/Components/AnimatedModelSpaceComponent.cs.meta +11 -0
  59. package/Source/Multiplayer/Components/AudioPlaybackState.cs +25 -0
  60. package/Source/Multiplayer/Components/AudioPlaybackState.cs.meta +11 -0
  61. package/Source/Multiplayer/Components/AudioPropertyKeys.cs +33 -0
  62. package/Source/Multiplayer/Components/AudioPropertyKeys.cs.meta +11 -0
  63. package/Source/Multiplayer/Components/AudioSpaceComponent.cs +693 -0
  64. package/Source/Multiplayer/Components/AudioSpaceComponent.cs.meta +11 -0
  65. package/Source/Multiplayer/Components/AudioType.cs +24 -0
  66. package/Source/Multiplayer/Components/AudioType.cs.meta +11 -0
  67. package/Source/Multiplayer/Components/AvatarComponentPropertyKeys.cs +37 -0
  68. package/Source/Multiplayer/Components/AvatarComponentPropertyKeys.cs.meta +11 -0
  69. package/Source/Multiplayer/Components/AvatarPlayMode.cs +26 -0
  70. package/Source/Multiplayer/Components/AvatarPlayMode.cs.meta +11 -0
  71. package/Source/Multiplayer/Components/AvatarSpaceComponent.cs +946 -0
  72. package/Source/Multiplayer/Components/AvatarSpaceComponent.cs.meta +11 -0
  73. package/Source/Multiplayer/Components/AvatarState.cs +29 -0
  74. package/Source/Multiplayer/Components/AvatarState.cs.meta +11 -0
  75. package/Source/Multiplayer/Components/BillboardMode.cs +24 -0
  76. package/Source/Multiplayer/Components/BillboardMode.cs.meta +11 -0
  77. package/Source/Multiplayer/Components/ButtonPropertyKeys.cs +32 -0
  78. package/Source/Multiplayer/Components/ButtonPropertyKeys.cs.meta +11 -0
  79. package/Source/Multiplayer/Components/ButtonSpaceComponent.cs +597 -0
  80. package/Source/Multiplayer/Components/ButtonSpaceComponent.cs.meta +11 -0
  81. package/Source/Multiplayer/Components/CollisionMode.cs +23 -0
  82. package/Source/Multiplayer/Components/CollisionMode.cs.meta +11 -0
  83. package/Source/Multiplayer/Components/CollisionPropertyKeys.cs +30 -0
  84. package/Source/Multiplayer/Components/CollisionPropertyKeys.cs.meta +11 -0
  85. package/Source/Multiplayer/Components/CollisionShape.cs +25 -0
  86. package/Source/Multiplayer/Components/CollisionShape.cs.meta +11 -0
  87. package/Source/Multiplayer/Components/CollisionSpaceComponent.cs +757 -0
  88. package/Source/Multiplayer/Components/CollisionSpaceComponent.cs.meta +11 -0
  89. package/Source/Multiplayer/Components/ConversationPropertyKeys.cs +30 -0
  90. package/Source/Multiplayer/Components/ConversationPropertyKeys.cs.meta +11 -0
  91. package/Source/Multiplayer/Components/ConversationSpaceComponent.cs +1105 -0
  92. package/Source/Multiplayer/Components/ConversationSpaceComponent.cs.meta +11 -0
  93. package/Source/Multiplayer/Components/CustomComponentPropertyKeys.cs +24 -0
  94. package/Source/Multiplayer/Components/CustomComponentPropertyKeys.cs.meta +11 -0
  95. package/Source/Multiplayer/Components/CustomSpaceComponent.cs +370 -0
  96. package/Source/Multiplayer/Components/CustomSpaceComponent.cs.meta +11 -0
  97. package/Source/Multiplayer/Components/DisplayMode.cs +24 -0
  98. package/Source/Multiplayer/Components/DisplayMode.cs.meta +11 -0
  99. package/Source/Multiplayer/Components/ECommercePropertyKeys.cs +24 -0
  100. package/Source/Multiplayer/Components/ECommercePropertyKeys.cs.meta +11 -0
  101. package/Source/Multiplayer/Components/ECommerceSpaceComponent.cs +216 -0
  102. package/Source/Multiplayer/Components/ECommerceSpaceComponent.cs.meta +11 -0
  103. package/Source/Multiplayer/Components/ExternalLinkActions.cs +23 -0
  104. package/Source/Multiplayer/Components/ExternalLinkActions.cs.meta +11 -0
  105. package/Source/Multiplayer/Components/ExternalLinkPropertyKeys.cs +31 -0
  106. package/Source/Multiplayer/Components/ExternalLinkPropertyKeys.cs.meta +11 -0
  107. package/Source/Multiplayer/Components/ExternalLinkSpaceComponent.cs +579 -0
  108. package/Source/Multiplayer/Components/ExternalLinkSpaceComponent.cs.meta +11 -0
  109. package/Source/Multiplayer/Components/FiducialMarkerPropertyKeys.cs +30 -0
  110. package/Source/Multiplayer/Components/FiducialMarkerPropertyKeys.cs.meta +11 -0
  111. package/Source/Multiplayer/Components/FiducialMarkerSpaceComponent.cs +569 -0
  112. package/Source/Multiplayer/Components/FiducialMarkerSpaceComponent.cs.meta +11 -0
  113. package/Source/Multiplayer/Components/FogMode.cs +24 -0
  114. package/Source/Multiplayer/Components/FogMode.cs.meta +11 -0
  115. package/Source/Multiplayer/Components/FogPropertyKeys.cs +36 -0
  116. package/Source/Multiplayer/Components/FogPropertyKeys.cs.meta +11 -0
  117. package/Source/Multiplayer/Components/FogSpaceComponent.cs +836 -0
  118. package/Source/Multiplayer/Components/FogSpaceComponent.cs.meta +11 -0
  119. package/Source/Multiplayer/Components/ImagePropertyKeys.cs +33 -0
  120. package/Source/Multiplayer/Components/ImagePropertyKeys.cs.meta +11 -0
  121. package/Source/Multiplayer/Components/ImageSpaceComponent.cs +693 -0
  122. package/Source/Multiplayer/Components/ImageSpaceComponent.cs.meta +11 -0
  123. package/Source/Multiplayer/Components/Interfaces/IEnableableComponent.cs +24 -0
  124. package/Source/Multiplayer/Components/Interfaces/IEnableableComponent.cs.meta +11 -0
  125. package/Source/Multiplayer/Components/Interfaces/IExternalResourceComponent.cs +28 -0
  126. package/Source/Multiplayer/Components/Interfaces/IExternalResourceComponent.cs.meta +11 -0
  127. package/Source/Multiplayer/Components/Interfaces/IPositionComponent.cs +24 -0
  128. package/Source/Multiplayer/Components/Interfaces/IPositionComponent.cs.meta +11 -0
  129. package/Source/Multiplayer/Components/Interfaces/IRotationComponent.cs +24 -0
  130. package/Source/Multiplayer/Components/Interfaces/IRotationComponent.cs.meta +11 -0
  131. package/Source/Multiplayer/Components/Interfaces/IScaleComponent.cs +24 -0
  132. package/Source/Multiplayer/Components/Interfaces/IScaleComponent.cs.meta +11 -0
  133. package/Source/Multiplayer/Components/Interfaces/IShadowCasterComponent.cs +24 -0
  134. package/Source/Multiplayer/Components/Interfaces/IShadowCasterComponent.cs.meta +11 -0
  135. package/Source/Multiplayer/Components/Interfaces/IThirdPartyComponentRef.cs +27 -0
  136. package/Source/Multiplayer/Components/Interfaces/IThirdPartyComponentRef.cs.meta +11 -0
  137. package/Source/Multiplayer/Components/Interfaces/ITransformComponent.cs +27 -0
  138. package/Source/Multiplayer/Components/Interfaces/ITransformComponent.cs.meta +11 -0
  139. package/Source/Multiplayer/Components/Interfaces/IVisibleComponent.cs +28 -0
  140. package/Source/Multiplayer/Components/Interfaces/IVisibleComponent.cs.meta +11 -0
  141. package/Source/Multiplayer/Components/Interfaces.meta +7 -0
  142. package/Source/Multiplayer/Components/LightCookieType.cs +24 -0
  143. package/Source/Multiplayer/Components/LightCookieType.cs.meta +11 -0
  144. package/Source/Multiplayer/Components/LightPropertyKeys.cs +38 -0
  145. package/Source/Multiplayer/Components/LightPropertyKeys.cs.meta +11 -0
  146. package/Source/Multiplayer/Components/LightShadowType.cs +25 -0
  147. package/Source/Multiplayer/Components/LightShadowType.cs.meta +11 -0
  148. package/Source/Multiplayer/Components/LightSpaceComponent.cs +891 -0
  149. package/Source/Multiplayer/Components/LightSpaceComponent.cs.meta +11 -0
  150. package/Source/Multiplayer/Components/LightType.cs +25 -0
  151. package/Source/Multiplayer/Components/LightType.cs.meta +11 -0
  152. package/Source/Multiplayer/Components/LocomotionModel.cs +24 -0
  153. package/Source/Multiplayer/Components/LocomotionModel.cs.meta +11 -0
  154. package/Source/Multiplayer/Components/PortalPropertyKeys.cs +30 -0
  155. package/Source/Multiplayer/Components/PortalPropertyKeys.cs.meta +11 -0
  156. package/Source/Multiplayer/Components/PortalSpaceComponent.cs +371 -0
  157. package/Source/Multiplayer/Components/PortalSpaceComponent.cs.meta +11 -0
  158. package/Source/Multiplayer/Components/ReflectionPropertyKeys.cs +30 -0
  159. package/Source/Multiplayer/Components/ReflectionPropertyKeys.cs.meta +11 -0
  160. package/Source/Multiplayer/Components/ReflectionShape.cs +23 -0
  161. package/Source/Multiplayer/Components/ReflectionShape.cs.meta +11 -0
  162. package/Source/Multiplayer/Components/ReflectionSpaceComponent.cs +515 -0
  163. package/Source/Multiplayer/Components/ReflectionSpaceComponent.cs.meta +11 -0
  164. package/Source/Multiplayer/Components/ScriptComponentPropertyKeys.cs +25 -0
  165. package/Source/Multiplayer/Components/ScriptComponentPropertyKeys.cs.meta +11 -0
  166. package/Source/Multiplayer/Components/ScriptScope.cs +24 -0
  167. package/Source/Multiplayer/Components/ScriptScope.cs.meta +11 -0
  168. package/Source/Multiplayer/Components/ScriptSpaceComponent.cs +258 -0
  169. package/Source/Multiplayer/Components/ScriptSpaceComponent.cs.meta +11 -0
  170. package/Source/Multiplayer/Components/SplinePropertyKeys.cs +23 -0
  171. package/Source/Multiplayer/Components/SplinePropertyKeys.cs.meta +11 -0
  172. package/Source/Multiplayer/Components/SplineSpaceComponent.cs +184 -0
  173. package/Source/Multiplayer/Components/SplineSpaceComponent.cs.meta +11 -0
  174. package/Source/Multiplayer/Components/StaticModelPropertyKeys.cs +32 -0
  175. package/Source/Multiplayer/Components/StaticModelPropertyKeys.cs.meta +11 -0
  176. package/Source/Multiplayer/Components/StaticModelSpaceComponent.cs +640 -0
  177. package/Source/Multiplayer/Components/StaticModelSpaceComponent.cs.meta +11 -0
  178. package/Source/Multiplayer/Components/VideoPlayerActions.cs +24 -0
  179. package/Source/Multiplayer/Components/VideoPlayerActions.cs.meta +11 -0
  180. package/Source/Multiplayer/Components/VideoPlayerPlaybackState.cs +25 -0
  181. package/Source/Multiplayer/Components/VideoPlayerPlaybackState.cs.meta +11 -0
  182. package/Source/Multiplayer/Components/VideoPlayerPropertyKeys.cs +42 -0
  183. package/Source/Multiplayer/Components/VideoPlayerPropertyKeys.cs.meta +11 -0
  184. package/Source/Multiplayer/Components/VideoPlayerSourceType.cs +25 -0
  185. package/Source/Multiplayer/Components/VideoPlayerSourceType.cs.meta +11 -0
  186. package/Source/Multiplayer/Components/VideoPlayerSpaceComponent.cs +1187 -0
  187. package/Source/Multiplayer/Components/VideoPlayerSpaceComponent.cs.meta +11 -0
  188. package/Source/Multiplayer/Components.meta +7 -0
  189. package/Source/Multiplayer/ConnectionState.cs +25 -0
  190. package/Source/Multiplayer/ConnectionState.cs.meta +11 -0
  191. package/Source/Multiplayer/Conversation/BaseMessageInfo.cs +293 -0
  192. package/Source/Multiplayer/Conversation/BaseMessageInfo.cs.meta +11 -0
  193. package/Source/Multiplayer/Conversation/ConversationInfo.cs +205 -0
  194. package/Source/Multiplayer/Conversation/ConversationInfo.cs.meta +11 -0
  195. package/Source/Multiplayer/Conversation/ConversationMessageType.cs +26 -0
  196. package/Source/Multiplayer/Conversation/ConversationMessageType.cs.meta +11 -0
  197. package/Source/Multiplayer/Conversation/ConversationResult.cs +152 -0
  198. package/Source/Multiplayer/Conversation/ConversationResult.cs.meta +11 -0
  199. package/Source/Multiplayer/Conversation/ConversationSystem.cs +784 -0
  200. package/Source/Multiplayer/Conversation/ConversationSystem.cs.meta +11 -0
  201. package/Source/Multiplayer/Conversation/MessageCollectionResult.cs +175 -0
  202. package/Source/Multiplayer/Conversation/MessageCollectionResult.cs.meta +11 -0
  203. package/Source/Multiplayer/Conversation/MessageInfo.cs +172 -0
  204. package/Source/Multiplayer/Conversation/MessageInfo.cs.meta +11 -0
  205. package/Source/Multiplayer/Conversation/MessageResult.cs +150 -0
  206. package/Source/Multiplayer/Conversation/MessageResult.cs.meta +11 -0
  207. package/Source/Multiplayer/Conversation.meta +7 -0
  208. package/Source/Multiplayer/ConversationSystemParams.cs +165 -0
  209. package/Source/Multiplayer/ConversationSystemParams.cs.meta +11 -0
  210. package/Source/Multiplayer/EAssetChangeType.cs +27 -0
  211. package/Source/Multiplayer/EAssetChangeType.cs.meta +11 -0
  212. package/Source/Multiplayer/IEntityDeserialiser.cs +70 -0
  213. package/Source/Multiplayer/IEntityDeserialiser.cs.meta +11 -0
  214. package/Source/Multiplayer/IEntitySerialiser.cs +63 -0
  215. package/Source/Multiplayer/IEntitySerialiser.cs.meta +11 -0
  216. package/Source/Multiplayer/MultiplayerConnection.cs +964 -0
  217. package/Source/Multiplayer/MultiplayerConnection.cs.meta +11 -0
  218. package/Source/Multiplayer/PropertyUpdateInfo.cs +159 -0
  219. package/Source/Multiplayer/PropertyUpdateInfo.cs.meta +11 -0
  220. package/Source/Multiplayer/ReplicatedValue.cs +593 -0
  221. package/Source/Multiplayer/ReplicatedValue.cs.meta +11 -0
  222. package/Source/Multiplayer/ReplicatedValueType.cs +28 -0
  223. package/Source/Multiplayer/ReplicatedValueType.cs.meta +11 -0
  224. package/Source/Multiplayer/Script/EntityScript.cs +479 -0
  225. package/Source/Multiplayer/Script/EntityScript.cs.meta +11 -0
  226. package/Source/Multiplayer/Script.meta +7 -0
  227. package/Source/Multiplayer/SpaceEntity.cs +1202 -0
  228. package/Source/Multiplayer/SpaceEntity.cs.meta +11 -0
  229. package/Source/Multiplayer/SpaceEntitySystem.cs +1304 -0
  230. package/Source/Multiplayer/SpaceEntitySystem.cs.meta +11 -0
  231. package/Source/Multiplayer/SpaceEntityType.cs +25 -0
  232. package/Source/Multiplayer/SpaceEntityType.cs.meta +11 -0
  233. package/Source/Multiplayer/SpaceEntityUpdateFlags.cs +27 -0
  234. package/Source/Multiplayer/SpaceEntityUpdateFlags.cs.meta +11 -0
  235. package/Source/Multiplayer/SpaceTransform.cs +232 -0
  236. package/Source/Multiplayer/SpaceTransform.cs.meta +11 -0
  237. package/Source/Multiplayer.meta +7 -0
  238. package/Source/NativeClassWrapper.cs +42 -0
  239. package/Source/NativeClassWrapper.cs.meta +11 -0
  240. package/Source/ProgressEventArgs.cs +15 -0
  241. package/Source/ProgressEventArgs.cs.meta +11 -0
  242. package/Source/Ref.cs +28 -0
  243. package/Source/Ref.cs.meta +11 -0
  244. package/Source/Services/EResultCode.cs +26 -0
  245. package/Source/Services/EResultCode.cs.meta +11 -0
  246. package/Source/Services/ResultBase.cs +237 -0
  247. package/Source/Services/ResultBase.cs.meta +11 -0
  248. package/Source/Services/WebService.cs +91 -0
  249. package/Source/Services/WebService.cs.meta +11 -0
  250. package/Source/Services.meta +7 -0
  251. package/Source/Systems/Analytics/AnalyticsEvent.cs +288 -0
  252. package/Source/Systems/Analytics/AnalyticsEvent.cs.meta +11 -0
  253. package/Source/Systems/Analytics/AnalyticsEventInitialiser.cs +78 -0
  254. package/Source/Systems/Analytics/AnalyticsEventInitialiser.cs.meta +11 -0
  255. package/Source/Systems/Analytics/AnalyticsSystem.cs +116 -0
  256. package/Source/Systems/Analytics/AnalyticsSystem.cs.meta +11 -0
  257. package/Source/Systems/Analytics/IAnalyticsProvider.cs +85 -0
  258. package/Source/Systems/Analytics/IAnalyticsProvider.cs.meta +11 -0
  259. package/Source/Systems/Analytics.meta +7 -0
  260. package/Source/Systems/Assets/Asset.cs +698 -0
  261. package/Source/Systems/Assets/Asset.cs.meta +11 -0
  262. package/Source/Systems/Assets/AssetCollection.cs +605 -0
  263. package/Source/Systems/Assets/AssetCollection.cs.meta +11 -0
  264. package/Source/Systems/Assets/AssetCollectionResult.cs +119 -0
  265. package/Source/Systems/Assets/AssetCollectionResult.cs.meta +11 -0
  266. package/Source/Systems/Assets/AssetCollectionsResult.cs +161 -0
  267. package/Source/Systems/Assets/AssetCollectionsResult.cs.meta +11 -0
  268. package/Source/Systems/Assets/AssetDataResult.cs +175 -0
  269. package/Source/Systems/Assets/AssetDataResult.cs.meta +11 -0
  270. package/Source/Systems/Assets/AssetDataSource.cs +24 -0
  271. package/Source/Systems/Assets/AssetDataSource.cs.meta +11 -0
  272. package/Source/Systems/Assets/AssetResult.cs +131 -0
  273. package/Source/Systems/Assets/AssetResult.cs.meta +11 -0
  274. package/Source/Systems/Assets/AssetSystem.cs +1601 -0
  275. package/Source/Systems/Assets/AssetSystem.cs.meta +11 -0
  276. package/Source/Systems/Assets/AssetsResult.cs +148 -0
  277. package/Source/Systems/Assets/AssetsResult.cs.meta +11 -0
  278. package/Source/Systems/Assets/BufferAssetDataSource.cs +214 -0
  279. package/Source/Systems/Assets/BufferAssetDataSource.cs.meta +11 -0
  280. package/Source/Systems/Assets/EAssetCollectionType.cs +24 -0
  281. package/Source/Systems/Assets/EAssetCollectionType.cs.meta +11 -0
  282. package/Source/Systems/Assets/EAssetPlatform.cs +20 -0
  283. package/Source/Systems/Assets/EAssetPlatform.cs.meta +11 -0
  284. package/Source/Systems/Assets/EAssetType.cs +30 -0
  285. package/Source/Systems/Assets/EAssetType.cs.meta +11 -0
  286. package/Source/Systems/Assets/FileAssetDataSource.cs +177 -0
  287. package/Source/Systems/Assets/FileAssetDataSource.cs.meta +11 -0
  288. package/Source/Systems/Assets/LODAsset.cs +157 -0
  289. package/Source/Systems/Assets/LODAsset.cs.meta +11 -0
  290. package/Source/Systems/Assets/LODChain.cs +158 -0
  291. package/Source/Systems/Assets/LODChain.cs.meta +11 -0
  292. package/Source/Systems/Assets/LODChainResult.cs +131 -0
  293. package/Source/Systems/Assets/LODChainResult.cs.meta +11 -0
  294. package/Source/Systems/Assets/UriResult.cs +193 -0
  295. package/Source/Systems/Assets/UriResult.cs.meta +11 -0
  296. package/Source/Systems/Assets.meta +7 -0
  297. package/Source/Systems/BooleanResult.cs +146 -0
  298. package/Source/Systems/BooleanResult.cs.meta +11 -0
  299. package/Source/Systems/ECommerce/AddShopifyStoreResult.cs +112 -0
  300. package/Source/Systems/ECommerce/AddShopifyStoreResult.cs.meta +11 -0
  301. package/Source/Systems/ECommerce/CartInfo.cs +233 -0
  302. package/Source/Systems/ECommerce/CartInfo.cs.meta +11 -0
  303. package/Source/Systems/ECommerce/CartInfoResult.cs +132 -0
  304. package/Source/Systems/ECommerce/CartInfoResult.cs.meta +11 -0
  305. package/Source/Systems/ECommerce/CartLine.cs +197 -0
  306. package/Source/Systems/ECommerce/CartLine.cs.meta +11 -0
  307. package/Source/Systems/ECommerce/CheckoutInfo.cs +161 -0
  308. package/Source/Systems/ECommerce/CheckoutInfo.cs.meta +11 -0
  309. package/Source/Systems/ECommerce/CheckoutInfoResult.cs +117 -0
  310. package/Source/Systems/ECommerce/CheckoutInfoResult.cs.meta +11 -0
  311. package/Source/Systems/ECommerce/CurrencyInfo.cs +161 -0
  312. package/Source/Systems/ECommerce/CurrencyInfo.cs.meta +11 -0
  313. package/Source/Systems/ECommerce/ECommerceSystem.cs +564 -0
  314. package/Source/Systems/ECommerce/ECommerceSystem.cs.meta +11 -0
  315. package/Source/Systems/ECommerce/ProductInfo.cs +341 -0
  316. package/Source/Systems/ECommerce/ProductInfo.cs.meta +11 -0
  317. package/Source/Systems/ECommerce/ProductInfoResult.cs +117 -0
  318. package/Source/Systems/ECommerce/ProductInfoResult.cs.meta +11 -0
  319. package/Source/Systems/ECommerce/ProductMediaInfo.cs +269 -0
  320. package/Source/Systems/ECommerce/ProductMediaInfo.cs.meta +11 -0
  321. package/Source/Systems/ECommerce/ProductVariantInfo.cs +342 -0
  322. package/Source/Systems/ECommerce/ProductVariantInfo.cs.meta +11 -0
  323. package/Source/Systems/ECommerce/ShopifyStoreInfo.cs +269 -0
  324. package/Source/Systems/ECommerce/ShopifyStoreInfo.cs.meta +11 -0
  325. package/Source/Systems/ECommerce/ValidateShopifyStoreResult.cs +120 -0
  326. package/Source/Systems/ECommerce/ValidateShopifyStoreResult.cs.meta +11 -0
  327. package/Source/Systems/ECommerce/VariantOptionInfo.cs +161 -0
  328. package/Source/Systems/ECommerce/VariantOptionInfo.cs.meta +11 -0
  329. package/Source/Systems/ECommerce.meta +7 -0
  330. package/Source/Systems/EventTicketing/EventTicket.cs +378 -0
  331. package/Source/Systems/EventTicketing/EventTicket.cs.meta +11 -0
  332. package/Source/Systems/EventTicketing/EventTicketResult.cs +115 -0
  333. package/Source/Systems/EventTicketing/EventTicketResult.cs.meta +11 -0
  334. package/Source/Systems/EventTicketing/EventTicketingSystem.cs +563 -0
  335. package/Source/Systems/EventTicketing/EventTicketingSystem.cs.meta +11 -0
  336. package/Source/Systems/EventTicketing/EventTicketingVendor.cs +24 -0
  337. package/Source/Systems/EventTicketing/EventTicketingVendor.cs.meta +11 -0
  338. package/Source/Systems/EventTicketing/SpaceIsTicketedResult.cs +115 -0
  339. package/Source/Systems/EventTicketing/SpaceIsTicketedResult.cs.meta +11 -0
  340. package/Source/Systems/EventTicketing/TicketStatus.cs +26 -0
  341. package/Source/Systems/EventTicketing/TicketStatus.cs.meta +11 -0
  342. package/Source/Systems/EventTicketing/TicketedEvent.cs +305 -0
  343. package/Source/Systems/EventTicketing/TicketedEvent.cs.meta +11 -0
  344. package/Source/Systems/EventTicketing/TicketedEventCollectionResult.cs +117 -0
  345. package/Source/Systems/EventTicketing/TicketedEventCollectionResult.cs.meta +11 -0
  346. package/Source/Systems/EventTicketing/TicketedEventResult.cs +117 -0
  347. package/Source/Systems/EventTicketing/TicketedEventResult.cs.meta +11 -0
  348. package/Source/Systems/EventTicketing/TicketedEventVendorAuthInfo.cs +248 -0
  349. package/Source/Systems/EventTicketing/TicketedEventVendorAuthInfo.cs.meta +11 -0
  350. package/Source/Systems/EventTicketing/TicketedEventVendorAuthInfoResult.cs +115 -0
  351. package/Source/Systems/EventTicketing/TicketedEventVendorAuthInfoResult.cs.meta +11 -0
  352. package/Source/Systems/EventTicketing.meta +7 -0
  353. package/Source/Systems/GraphQL/GraphQLResult.cs +146 -0
  354. package/Source/Systems/GraphQL/GraphQLResult.cs.meta +11 -0
  355. package/Source/Systems/GraphQL/GraphQLSystem.cs +221 -0
  356. package/Source/Systems/GraphQL/GraphQLSystem.cs.meta +11 -0
  357. package/Source/Systems/GraphQL.meta +7 -0
  358. package/Source/Systems/HTTPHeadersResult.cs +147 -0
  359. package/Source/Systems/HTTPHeadersResult.cs.meta +11 -0
  360. package/Source/Systems/Log/LogLevel.cs +28 -0
  361. package/Source/Systems/Log/LogLevel.cs.meta +11 -0
  362. package/Source/Systems/Log/LogSystem.cs +331 -0
  363. package/Source/Systems/Log/LogSystem.cs.meta +11 -0
  364. package/Source/Systems/Log.meta +7 -0
  365. package/Source/Systems/Maintenance/MaintenanceInfo.cs +211 -0
  366. package/Source/Systems/Maintenance/MaintenanceInfo.cs.meta +11 -0
  367. package/Source/Systems/Maintenance/MaintenanceInfoResult.cs +252 -0
  368. package/Source/Systems/Maintenance/MaintenanceInfoResult.cs.meta +11 -0
  369. package/Source/Systems/Maintenance/MaintenanceSystem.cs +154 -0
  370. package/Source/Systems/Maintenance/MaintenanceSystem.cs.meta +11 -0
  371. package/Source/Systems/Maintenance.meta +7 -0
  372. package/Source/Systems/NullResult.cs +122 -0
  373. package/Source/Systems/NullResult.cs.meta +11 -0
  374. package/Source/Systems/Script/ScriptSystem.cs +198 -0
  375. package/Source/Systems/Script/ScriptSystem.cs.meta +11 -0
  376. package/Source/Systems/Script.meta +7 -0
  377. package/Source/Systems/Settings/SettingsCollection.cs +191 -0
  378. package/Source/Systems/Settings/SettingsCollection.cs.meta +11 -0
  379. package/Source/Systems/Settings/SettingsCollectionResult.cs +119 -0
  380. package/Source/Systems/Settings/SettingsCollectionResult.cs.meta +11 -0
  381. package/Source/Systems/Settings/SettingsSystem.cs +999 -0
  382. package/Source/Systems/Settings/SettingsSystem.cs.meta +11 -0
  383. package/Source/Systems/Settings.meta +7 -0
  384. package/Source/Systems/Spaces/BasicSpace.cs +225 -0
  385. package/Source/Systems/Spaces/BasicSpace.cs.meta +11 -0
  386. package/Source/Systems/Spaces/BasicSpaceResult.cs +111 -0
  387. package/Source/Systems/Spaces/BasicSpaceResult.cs.meta +11 -0
  388. package/Source/Systems/Spaces/BasicSpacesResult.cs +144 -0
  389. package/Source/Systems/Spaces/BasicSpacesResult.cs.meta +11 -0
  390. package/Source/Systems/Spaces/InviteUserRoleInfo.cs +178 -0
  391. package/Source/Systems/Spaces/InviteUserRoleInfo.cs.meta +11 -0
  392. package/Source/Systems/Spaces/PendingInvitesResult.cs +117 -0
  393. package/Source/Systems/Spaces/PendingInvitesResult.cs.meta +11 -0
  394. package/Source/Systems/Spaces/Site.cs +259 -0
  395. package/Source/Systems/Spaces/Site.cs.meta +11 -0
  396. package/Source/Systems/Spaces/SiteResult.cs +114 -0
  397. package/Source/Systems/Spaces/SiteResult.cs.meta +11 -0
  398. package/Source/Systems/Spaces/SitesCollectionResult.cs +117 -0
  399. package/Source/Systems/Spaces/SitesCollectionResult.cs.meta +11 -0
  400. package/Source/Systems/Spaces/Space.cs +321 -0
  401. package/Source/Systems/Spaces/Space.cs.meta +11 -0
  402. package/Source/Systems/Spaces/SpaceAttributes.cs +27 -0
  403. package/Source/Systems/Spaces/SpaceAttributes.cs.meta +11 -0
  404. package/Source/Systems/Spaces/SpaceGeoLocation.cs +225 -0
  405. package/Source/Systems/Spaces/SpaceGeoLocation.cs.meta +11 -0
  406. package/Source/Systems/Spaces/SpaceGeoLocationResult.cs +162 -0
  407. package/Source/Systems/Spaces/SpaceGeoLocationResult.cs.meta +11 -0
  408. package/Source/Systems/Spaces/SpaceMetadataResult.cs +144 -0
  409. package/Source/Systems/Spaces/SpaceMetadataResult.cs.meta +11 -0
  410. package/Source/Systems/Spaces/SpaceResult.cs +160 -0
  411. package/Source/Systems/Spaces/SpaceResult.cs.meta +11 -0
  412. package/Source/Systems/Spaces/SpaceSystem.cs +2322 -0
  413. package/Source/Systems/Spaces/SpaceSystem.cs.meta +11 -0
  414. package/Source/Systems/Spaces/SpaceUserRole.cs +22 -0
  415. package/Source/Systems/Spaces/SpaceUserRole.cs.meta +11 -0
  416. package/Source/Systems/Spaces/SpacesMetadataResult.cs +146 -0
  417. package/Source/Systems/Spaces/SpacesMetadataResult.cs.meta +11 -0
  418. package/Source/Systems/Spaces/SpacesResult.cs +132 -0
  419. package/Source/Systems/Spaces/SpacesResult.cs.meta +11 -0
  420. package/Source/Systems/Spaces/UserRoleCollectionResult.cs +146 -0
  421. package/Source/Systems/Spaces/UserRoleCollectionResult.cs.meta +11 -0
  422. package/Source/Systems/Spaces/UserRoleInfo.cs +178 -0
  423. package/Source/Systems/Spaces/UserRoleInfo.cs.meta +11 -0
  424. package/Source/Systems/Spaces.meta +7 -0
  425. package/Source/Systems/Spatial/Anchor.cs +534 -0
  426. package/Source/Systems/Spatial/Anchor.cs.meta +11 -0
  427. package/Source/Systems/Spatial/AnchorCollectionResult.cs +117 -0
  428. package/Source/Systems/Spatial/AnchorCollectionResult.cs.meta +11 -0
  429. package/Source/Systems/Spatial/AnchorProvider.cs +20 -0
  430. package/Source/Systems/Spatial/AnchorProvider.cs.meta +11 -0
  431. package/Source/Systems/Spatial/AnchorResolution.cs +293 -0
  432. package/Source/Systems/Spatial/AnchorResolution.cs.meta +11 -0
  433. package/Source/Systems/Spatial/AnchorResolutionCollectionResult.cs +119 -0
  434. package/Source/Systems/Spatial/AnchorResolutionCollectionResult.cs.meta +11 -0
  435. package/Source/Systems/Spatial/AnchorResolutionResult.cs +119 -0
  436. package/Source/Systems/Spatial/AnchorResolutionResult.cs.meta +11 -0
  437. package/Source/Systems/Spatial/AnchorResult.cs +111 -0
  438. package/Source/Systems/Spatial/AnchorResult.cs.meta +11 -0
  439. package/Source/Systems/Spatial/AnchorSystem.cs +738 -0
  440. package/Source/Systems/Spatial/AnchorSystem.cs.meta +11 -0
  441. package/Source/Systems/Spatial/EPointOfInterestType.cs +20 -0
  442. package/Source/Systems/Spatial/EPointOfInterestType.cs.meta +11 -0
  443. package/Source/Systems/Spatial/GeoLocation.cs +202 -0
  444. package/Source/Systems/Spatial/GeoLocation.cs.meta +11 -0
  445. package/Source/Systems/Spatial/OlyAnchorPosition.cs +216 -0
  446. package/Source/Systems/Spatial/OlyAnchorPosition.cs.meta +11 -0
  447. package/Source/Systems/Spatial/OlyRotation.cs +250 -0
  448. package/Source/Systems/Spatial/OlyRotation.cs.meta +11 -0
  449. package/Source/Systems/Spatial/POICollectionResult.cs +117 -0
  450. package/Source/Systems/Spatial/POICollectionResult.cs.meta +11 -0
  451. package/Source/Systems/Spatial/POIResult.cs +113 -0
  452. package/Source/Systems/Spatial/POIResult.cs.meta +11 -0
  453. package/Source/Systems/Spatial/PointOfInterest.cs +463 -0
  454. package/Source/Systems/Spatial/PointOfInterest.cs.meta +11 -0
  455. package/Source/Systems/Spatial/PointOfInterestSystem.cs +314 -0
  456. package/Source/Systems/Spatial/PointOfInterestSystem.cs.meta +11 -0
  457. package/Source/Systems/Spatial.meta +7 -0
  458. package/Source/Systems/StringArrayResult.cs +146 -0
  459. package/Source/Systems/StringArrayResult.cs.meta +11 -0
  460. package/Source/Systems/StringResult.cs +149 -0
  461. package/Source/Systems/StringResult.cs.meta +11 -0
  462. package/Source/Systems/SystemBase.cs +84 -0
  463. package/Source/Systems/SystemBase.cs.meta +11 -0
  464. package/Source/Systems/SystemsManager.cs +474 -0
  465. package/Source/Systems/SystemsManager.cs.meta +11 -0
  466. package/Source/Systems/UInt64Result.cs +146 -0
  467. package/Source/Systems/UInt64Result.cs.meta +11 -0
  468. package/Source/Systems/Users/AgoraUserTokenParams.cs +326 -0
  469. package/Source/Systems/Users/AgoraUserTokenParams.cs.meta +11 -0
  470. package/Source/Systems/Users/AgoraUserTokenResult.cs +130 -0
  471. package/Source/Systems/Users/AgoraUserTokenResult.cs.meta +11 -0
  472. package/Source/Systems/Users/BasicProfile.cs +259 -0
  473. package/Source/Systems/Users/BasicProfile.cs.meta +11 -0
  474. package/Source/Systems/Users/BasicProfilesResult.cs +112 -0
  475. package/Source/Systems/Users/BasicProfilesResult.cs.meta +11 -0
  476. package/Source/Systems/Users/ELoginState.cs +25 -0
  477. package/Source/Systems/Users/ELoginState.cs.meta +11 -0
  478. package/Source/Systems/Users/EThirdPartyAuthenticationProviders.cs +28 -0
  479. package/Source/Systems/Users/EThirdPartyAuthenticationProviders.cs.meta +11 -0
  480. package/Source/Systems/Users/LoginState.cs +304 -0
  481. package/Source/Systems/Users/LoginState.cs.meta +11 -0
  482. package/Source/Systems/Users/LoginStateResult.cs +126 -0
  483. package/Source/Systems/Users/LoginStateResult.cs.meta +11 -0
  484. package/Source/Systems/Users/LoginTokenInfo.cs +224 -0
  485. package/Source/Systems/Users/LoginTokenInfo.cs.meta +11 -0
  486. package/Source/Systems/Users/LoginTokenReceived.cs +129 -0
  487. package/Source/Systems/Users/LoginTokenReceived.cs.meta +11 -0
  488. package/Source/Systems/Users/LogoutResult.cs +105 -0
  489. package/Source/Systems/Users/LogoutResult.cs.meta +11 -0
  490. package/Source/Systems/Users/PingResponseReceived.cs +106 -0
  491. package/Source/Systems/Users/PingResponseReceived.cs.meta +11 -0
  492. package/Source/Systems/Users/Profile.cs +367 -0
  493. package/Source/Systems/Users/Profile.cs.meta +11 -0
  494. package/Source/Systems/Users/ProfileResult.cs +110 -0
  495. package/Source/Systems/Users/ProfileResult.cs.meta +11 -0
  496. package/Source/Systems/Users/ProviderDetailsResult.cs +142 -0
  497. package/Source/Systems/Users/ProviderDetailsResult.cs.meta +11 -0
  498. package/Source/Systems/Users/ThirdPartyProviderDetails.cs +231 -0
  499. package/Source/Systems/Users/ThirdPartyProviderDetails.cs.meta +11 -0
  500. package/Source/Systems/Users/UserSystem.cs +1468 -0
  501. package/Source/Systems/Users/UserSystem.cs.meta +11 -0
  502. package/Source/Systems/Users.meta +7 -0
  503. package/Source/Systems/Voip/VoipSystem.cs +132 -0
  504. package/Source/Systems/Voip/VoipSystem.cs.meta +11 -0
  505. package/Source/Systems/Voip.meta +7 -0
  506. package/Source/Systems.meta +7 -0
  507. package/Source/Web/EResponseCodes.cs +83 -0
  508. package/Source/Web/EResponseCodes.cs.meta +11 -0
  509. package/Source/Web.meta +7 -0
  510. package/Source/WrapperHelper.cs +96 -0
  511. package/Source/WrapperHelper.cs.meta +11 -0
  512. package/Source.meta +7 -0
  513. package/android64/libConnectedSpacesPlatform.so +0 -0
  514. package/android64/libConnectedSpacesPlatform.so.meta +79 -0
  515. package/android64/libConnectedSpacesPlatform_D.so +0 -0
  516. package/android64/libConnectedSpacesPlatform_D.so.meta +79 -0
  517. package/android64.meta +7 -0
  518. package/package.json +13 -0
  519. package/package.json.meta +7 -0
  520. package/windows/ConnectedSpacesPlatform.dll +0 -0
  521. package/windows/ConnectedSpacesPlatform.dll.meta +79 -0
  522. package/windows/ConnectedSpacesPlatform_D.dll +0 -0
  523. package/windows/ConnectedSpacesPlatform_D.dll.meta +79 -0
  524. package/windows.meta +7 -0
@@ -0,0 +1,891 @@
1
+ // WARNING: DO NOT EDIT THIS FILE! IT IS A GENERATED FILE AND
2
+ // ANY CHANGES YOU MAKE WILL BE OVERWRITTEN ON THE NEXT BUILD
3
+
4
+ #nullable enable annotations
5
+
6
+ using System;
7
+ using System.Collections.Generic;
8
+ using System.Reflection;
9
+ using System.Runtime.InteropServices;
10
+ using System.Security;
11
+ using System.Threading.Tasks;
12
+
13
+ namespace Csp.Multiplayer
14
+ {
15
+ /// @ingroup LightSpaceComponent
16
+ /// <summary>Data representation of an LightSpaceComponent.</summary>
17
+
18
+ public class LightSpaceComponent
19
+ : Csp.Multiplayer.ComponentBase,
20
+ Csp.Multiplayer.IVisibleComponent,
21
+ Csp.Multiplayer.IThirdPartyComponentRef,
22
+ IDisposable
23
+ {
24
+ internal override string _safeTypeName { get; } = "csp_multiplayer_LightSpaceComponent";
25
+
26
+ #region P/Invoke
27
+ #pragma warning disable IDE1006
28
+
29
+
30
+
31
+ [
32
+ DllImport(
33
+ #if !UNITY_EDITOR && UNITY_IOS
34
+ "__Internal"
35
+ #elif DEBUG
36
+ "ConnectedSpacesPlatform_D"
37
+ #else
38
+ "ConnectedSpacesPlatform"
39
+ #endif
40
+ ),
41
+ SuppressUnmanagedCodeSecurity
42
+ ]
43
+ static extern NativePointer csp_multiplayer_LightSpaceComponent_Ctor_SpaceEntityP(IntPtr Parent);
44
+
45
+ [
46
+ DllImport(
47
+ #if !UNITY_EDITOR && UNITY_IOS
48
+ "__Internal"
49
+ #elif DEBUG
50
+ "ConnectedSpacesPlatform_D"
51
+ #else
52
+ "ConnectedSpacesPlatform"
53
+ #endif
54
+ ),
55
+ SuppressUnmanagedCodeSecurity
56
+ ]
57
+ static extern Csp.Multiplayer.LightType csp_multiplayer_LightSpaceComponent_GetLightTypeC_LightType(
58
+ IntPtr @class
59
+ );
60
+
61
+ [
62
+ DllImport(
63
+ #if !UNITY_EDITOR && UNITY_IOS
64
+ "__Internal"
65
+ #elif DEBUG
66
+ "ConnectedSpacesPlatform_D"
67
+ #else
68
+ "ConnectedSpacesPlatform"
69
+ #endif
70
+ ),
71
+ SuppressUnmanagedCodeSecurity
72
+ ]
73
+ static extern void csp_multiplayer_LightSpaceComponent_SetLightType_void_LightType(
74
+ IntPtr @class,
75
+ Csp.Multiplayer.LightType Value
76
+ );
77
+
78
+ [
79
+ DllImport(
80
+ #if !UNITY_EDITOR && UNITY_IOS
81
+ "__Internal"
82
+ #elif DEBUG
83
+ "ConnectedSpacesPlatform_D"
84
+ #else
85
+ "ConnectedSpacesPlatform"
86
+ #endif
87
+ ),
88
+ SuppressUnmanagedCodeSecurity
89
+ ]
90
+ static extern Csp.Multiplayer.LightShadowType csp_multiplayer_LightSpaceComponent_GetLightShadowTypeC_LightShadowType(
91
+ IntPtr @class
92
+ );
93
+
94
+ [
95
+ DllImport(
96
+ #if !UNITY_EDITOR && UNITY_IOS
97
+ "__Internal"
98
+ #elif DEBUG
99
+ "ConnectedSpacesPlatform_D"
100
+ #else
101
+ "ConnectedSpacesPlatform"
102
+ #endif
103
+ ),
104
+ SuppressUnmanagedCodeSecurity
105
+ ]
106
+ static extern void csp_multiplayer_LightSpaceComponent_SetLightShadowType_void_LightShadowType(
107
+ IntPtr @class,
108
+ Csp.Multiplayer.LightShadowType Value
109
+ );
110
+
111
+ [
112
+ DllImport(
113
+ #if !UNITY_EDITOR && UNITY_IOS
114
+ "__Internal"
115
+ #elif DEBUG
116
+ "ConnectedSpacesPlatform_D"
117
+ #else
118
+ "ConnectedSpacesPlatform"
119
+ #endif
120
+ ),
121
+ SuppressUnmanagedCodeSecurity
122
+ ]
123
+ static extern NativePointer csp_multiplayer_LightSpaceComponent_GetColorC_Vector3RC(IntPtr @class);
124
+
125
+ [
126
+ DllImport(
127
+ #if !UNITY_EDITOR && UNITY_IOS
128
+ "__Internal"
129
+ #elif DEBUG
130
+ "ConnectedSpacesPlatform_D"
131
+ #else
132
+ "ConnectedSpacesPlatform"
133
+ #endif
134
+ ),
135
+ SuppressUnmanagedCodeSecurity
136
+ ]
137
+ static extern void csp_multiplayer_LightSpaceComponent_SetColor_void_Vector3RC(IntPtr @class, IntPtr Value);
138
+
139
+ [
140
+ DllImport(
141
+ #if !UNITY_EDITOR && UNITY_IOS
142
+ "__Internal"
143
+ #elif DEBUG
144
+ "ConnectedSpacesPlatform_D"
145
+ #else
146
+ "ConnectedSpacesPlatform"
147
+ #endif
148
+ ),
149
+ SuppressUnmanagedCodeSecurity
150
+ ]
151
+ static extern float csp_multiplayer_LightSpaceComponent_GetIntensityC_float(IntPtr @class);
152
+
153
+ [
154
+ DllImport(
155
+ #if !UNITY_EDITOR && UNITY_IOS
156
+ "__Internal"
157
+ #elif DEBUG
158
+ "ConnectedSpacesPlatform_D"
159
+ #else
160
+ "ConnectedSpacesPlatform"
161
+ #endif
162
+ ),
163
+ SuppressUnmanagedCodeSecurity
164
+ ]
165
+ static extern void csp_multiplayer_LightSpaceComponent_SetIntensity_void_float(IntPtr @class, float Value);
166
+
167
+ [
168
+ DllImport(
169
+ #if !UNITY_EDITOR && UNITY_IOS
170
+ "__Internal"
171
+ #elif DEBUG
172
+ "ConnectedSpacesPlatform_D"
173
+ #else
174
+ "ConnectedSpacesPlatform"
175
+ #endif
176
+ ),
177
+ SuppressUnmanagedCodeSecurity
178
+ ]
179
+ static extern float csp_multiplayer_LightSpaceComponent_GetRangeC_float(IntPtr @class);
180
+
181
+ [
182
+ DllImport(
183
+ #if !UNITY_EDITOR && UNITY_IOS
184
+ "__Internal"
185
+ #elif DEBUG
186
+ "ConnectedSpacesPlatform_D"
187
+ #else
188
+ "ConnectedSpacesPlatform"
189
+ #endif
190
+ ),
191
+ SuppressUnmanagedCodeSecurity
192
+ ]
193
+ static extern void csp_multiplayer_LightSpaceComponent_SetRange_void_float(IntPtr @class, float Value);
194
+
195
+ [
196
+ DllImport(
197
+ #if !UNITY_EDITOR && UNITY_IOS
198
+ "__Internal"
199
+ #elif DEBUG
200
+ "ConnectedSpacesPlatform_D"
201
+ #else
202
+ "ConnectedSpacesPlatform"
203
+ #endif
204
+ ),
205
+ SuppressUnmanagedCodeSecurity
206
+ ]
207
+ static extern float csp_multiplayer_LightSpaceComponent_GetInnerConeAngleC_float(IntPtr @class);
208
+
209
+ [
210
+ DllImport(
211
+ #if !UNITY_EDITOR && UNITY_IOS
212
+ "__Internal"
213
+ #elif DEBUG
214
+ "ConnectedSpacesPlatform_D"
215
+ #else
216
+ "ConnectedSpacesPlatform"
217
+ #endif
218
+ ),
219
+ SuppressUnmanagedCodeSecurity
220
+ ]
221
+ static extern void csp_multiplayer_LightSpaceComponent_SetInnerConeAngle_void_float(IntPtr @class, float Value);
222
+
223
+ [
224
+ DllImport(
225
+ #if !UNITY_EDITOR && UNITY_IOS
226
+ "__Internal"
227
+ #elif DEBUG
228
+ "ConnectedSpacesPlatform_D"
229
+ #else
230
+ "ConnectedSpacesPlatform"
231
+ #endif
232
+ ),
233
+ SuppressUnmanagedCodeSecurity
234
+ ]
235
+ static extern float csp_multiplayer_LightSpaceComponent_GetOuterConeAngleC_float(IntPtr @class);
236
+
237
+ [
238
+ DllImport(
239
+ #if !UNITY_EDITOR && UNITY_IOS
240
+ "__Internal"
241
+ #elif DEBUG
242
+ "ConnectedSpacesPlatform_D"
243
+ #else
244
+ "ConnectedSpacesPlatform"
245
+ #endif
246
+ ),
247
+ SuppressUnmanagedCodeSecurity
248
+ ]
249
+ static extern void csp_multiplayer_LightSpaceComponent_SetOuterConeAngle_void_float(IntPtr @class, float Value);
250
+
251
+ [
252
+ DllImport(
253
+ #if !UNITY_EDITOR && UNITY_IOS
254
+ "__Internal"
255
+ #elif DEBUG
256
+ "ConnectedSpacesPlatform_D"
257
+ #else
258
+ "ConnectedSpacesPlatform"
259
+ #endif
260
+ ),
261
+ SuppressUnmanagedCodeSecurity
262
+ ]
263
+ static extern NativePointer csp_multiplayer_LightSpaceComponent_GetPositionC_Vector3RC(IntPtr @class);
264
+
265
+ [
266
+ DllImport(
267
+ #if !UNITY_EDITOR && UNITY_IOS
268
+ "__Internal"
269
+ #elif DEBUG
270
+ "ConnectedSpacesPlatform_D"
271
+ #else
272
+ "ConnectedSpacesPlatform"
273
+ #endif
274
+ ),
275
+ SuppressUnmanagedCodeSecurity
276
+ ]
277
+ static extern void csp_multiplayer_LightSpaceComponent_SetPosition_void_Vector3RC(IntPtr @class, IntPtr Value);
278
+
279
+ [
280
+ DllImport(
281
+ #if !UNITY_EDITOR && UNITY_IOS
282
+ "__Internal"
283
+ #elif DEBUG
284
+ "ConnectedSpacesPlatform_D"
285
+ #else
286
+ "ConnectedSpacesPlatform"
287
+ #endif
288
+ ),
289
+ SuppressUnmanagedCodeSecurity
290
+ ]
291
+ static extern NativePointer csp_multiplayer_LightSpaceComponent_GetRotationC_Vector4RC(IntPtr @class);
292
+
293
+ [
294
+ DllImport(
295
+ #if !UNITY_EDITOR && UNITY_IOS
296
+ "__Internal"
297
+ #elif DEBUG
298
+ "ConnectedSpacesPlatform_D"
299
+ #else
300
+ "ConnectedSpacesPlatform"
301
+ #endif
302
+ ),
303
+ SuppressUnmanagedCodeSecurity
304
+ ]
305
+ static extern void csp_multiplayer_LightSpaceComponent_SetRotation_void_Vector4RC(IntPtr @class, IntPtr Value);
306
+
307
+ [
308
+ DllImport(
309
+ #if !UNITY_EDITOR && UNITY_IOS
310
+ "__Internal"
311
+ #elif DEBUG
312
+ "ConnectedSpacesPlatform_D"
313
+ #else
314
+ "ConnectedSpacesPlatform"
315
+ #endif
316
+ ),
317
+ SuppressUnmanagedCodeSecurity
318
+ ]
319
+ static extern IntPtr csp_multiplayer_LightSpaceComponent_GetLightCookieAssetIdC_StringRC(IntPtr @class);
320
+
321
+ [
322
+ DllImport(
323
+ #if !UNITY_EDITOR && UNITY_IOS
324
+ "__Internal"
325
+ #elif DEBUG
326
+ "ConnectedSpacesPlatform_D"
327
+ #else
328
+ "ConnectedSpacesPlatform"
329
+ #endif
330
+ ),
331
+ SuppressUnmanagedCodeSecurity
332
+ ]
333
+ static extern void csp_multiplayer_LightSpaceComponent_SetLightCookieAssetId_void_StringRC(
334
+ IntPtr @class,
335
+ IntPtr Value
336
+ );
337
+
338
+ [
339
+ DllImport(
340
+ #if !UNITY_EDITOR && UNITY_IOS
341
+ "__Internal"
342
+ #elif DEBUG
343
+ "ConnectedSpacesPlatform_D"
344
+ #else
345
+ "ConnectedSpacesPlatform"
346
+ #endif
347
+ ),
348
+ SuppressUnmanagedCodeSecurity
349
+ ]
350
+ static extern IntPtr csp_multiplayer_LightSpaceComponent_GetLightCookieAssetCollectionIdC_StringRC(
351
+ IntPtr @class
352
+ );
353
+
354
+ [
355
+ DllImport(
356
+ #if !UNITY_EDITOR && UNITY_IOS
357
+ "__Internal"
358
+ #elif DEBUG
359
+ "ConnectedSpacesPlatform_D"
360
+ #else
361
+ "ConnectedSpacesPlatform"
362
+ #endif
363
+ ),
364
+ SuppressUnmanagedCodeSecurity
365
+ ]
366
+ static extern void csp_multiplayer_LightSpaceComponent_SetLightCookieAssetCollectionId_void_StringRC(
367
+ IntPtr @class,
368
+ IntPtr Value
369
+ );
370
+
371
+ [
372
+ DllImport(
373
+ #if !UNITY_EDITOR && UNITY_IOS
374
+ "__Internal"
375
+ #elif DEBUG
376
+ "ConnectedSpacesPlatform_D"
377
+ #else
378
+ "ConnectedSpacesPlatform"
379
+ #endif
380
+ ),
381
+ SuppressUnmanagedCodeSecurity
382
+ ]
383
+ static extern Csp.Multiplayer.LightCookieType csp_multiplayer_LightSpaceComponent_GetLightCookieTypeC_LightCookieType(
384
+ IntPtr @class
385
+ );
386
+
387
+ [
388
+ DllImport(
389
+ #if !UNITY_EDITOR && UNITY_IOS
390
+ "__Internal"
391
+ #elif DEBUG
392
+ "ConnectedSpacesPlatform_D"
393
+ #else
394
+ "ConnectedSpacesPlatform"
395
+ #endif
396
+ ),
397
+ SuppressUnmanagedCodeSecurity
398
+ ]
399
+ static extern void csp_multiplayer_LightSpaceComponent_SetLightCookieType_void_LightCookieType(
400
+ IntPtr @class,
401
+ Csp.Multiplayer.LightCookieType Value
402
+ );
403
+
404
+ [
405
+ DllImport(
406
+ #if !UNITY_EDITOR && UNITY_IOS
407
+ "__Internal"
408
+ #elif DEBUG
409
+ "ConnectedSpacesPlatform_D"
410
+ #else
411
+ "ConnectedSpacesPlatform"
412
+ #endif
413
+ ),
414
+ SuppressUnmanagedCodeSecurity
415
+ ]
416
+ static extern bool csp_multiplayer_LightSpaceComponent_GetIsVisibleC_bool(IntPtr @class);
417
+
418
+ [
419
+ DllImport(
420
+ #if !UNITY_EDITOR && UNITY_IOS
421
+ "__Internal"
422
+ #elif DEBUG
423
+ "ConnectedSpacesPlatform_D"
424
+ #else
425
+ "ConnectedSpacesPlatform"
426
+ #endif
427
+ ),
428
+ SuppressUnmanagedCodeSecurity
429
+ ]
430
+ static extern void csp_multiplayer_LightSpaceComponent_SetIsVisible_void_bool(IntPtr @class, bool InValue);
431
+
432
+ [
433
+ DllImport(
434
+ #if !UNITY_EDITOR && UNITY_IOS
435
+ "__Internal"
436
+ #elif DEBUG
437
+ "ConnectedSpacesPlatform_D"
438
+ #else
439
+ "ConnectedSpacesPlatform"
440
+ #endif
441
+ ),
442
+ SuppressUnmanagedCodeSecurity
443
+ ]
444
+ static extern bool csp_multiplayer_LightSpaceComponent_GetIsARVisibleC_bool(IntPtr @class);
445
+
446
+ [
447
+ DllImport(
448
+ #if !UNITY_EDITOR && UNITY_IOS
449
+ "__Internal"
450
+ #elif DEBUG
451
+ "ConnectedSpacesPlatform_D"
452
+ #else
453
+ "ConnectedSpacesPlatform"
454
+ #endif
455
+ ),
456
+ SuppressUnmanagedCodeSecurity
457
+ ]
458
+ static extern void csp_multiplayer_LightSpaceComponent_SetIsARVisible_void_bool(IntPtr @class, bool InValue);
459
+
460
+ [
461
+ DllImport(
462
+ #if !UNITY_EDITOR && UNITY_IOS
463
+ "__Internal"
464
+ #elif DEBUG
465
+ "ConnectedSpacesPlatform_D"
466
+ #else
467
+ "ConnectedSpacesPlatform"
468
+ #endif
469
+ ),
470
+ SuppressUnmanagedCodeSecurity
471
+ ]
472
+ static extern IntPtr csp_multiplayer_LightSpaceComponent_GetThirdPartyComponentRefC_StringRC(IntPtr @class);
473
+
474
+ [
475
+ DllImport(
476
+ #if !UNITY_EDITOR && UNITY_IOS
477
+ "__Internal"
478
+ #elif DEBUG
479
+ "ConnectedSpacesPlatform_D"
480
+ #else
481
+ "ConnectedSpacesPlatform"
482
+ #endif
483
+ ),
484
+ SuppressUnmanagedCodeSecurity
485
+ ]
486
+ static extern void csp_multiplayer_LightSpaceComponent_SetThirdPartyComponentRef_void_StringRC(
487
+ IntPtr @class,
488
+ IntPtr InValue
489
+ );
490
+
491
+ [
492
+ DllImport(
493
+ #if !UNITY_EDITOR && UNITY_IOS
494
+ "__Internal"
495
+ #elif DEBUG
496
+ "ConnectedSpacesPlatform_D"
497
+ #else
498
+ "ConnectedSpacesPlatform"
499
+ #endif
500
+ ),
501
+ SuppressUnmanagedCodeSecurity
502
+ ]
503
+ static extern void csp_multiplayer_LightSpaceComponent_Dtor(IntPtr @class);
504
+
505
+ #pragma warning restore IDE1006
506
+ #endregion
507
+
508
+ internal LightSpaceComponent(NativePointer ptr) : base(ptr) { }
509
+
510
+ public LightSpaceComponent(Csp.Multiplayer.ComponentBase baseInstance)
511
+ : base(new NativePointer(baseInstance._ptr, baseInstance._ownsPtr ? (byte)1 : (byte)0))
512
+ {
513
+ // Prevent previous instance from freeing underlying pointer when destroyed
514
+ baseInstance._ownsPtr = false;
515
+ }
516
+
517
+ /// <summary>Constructs the light space component, and associates it with the specified Parent space entity.</summary>
518
+ /// <param name="Parent">The Space entity that owns this component.</param>
519
+
520
+ public LightSpaceComponent(Csp.Multiplayer.SpaceEntity Parent)
521
+ {
522
+ var np = csp_multiplayer_LightSpaceComponent_Ctor_SpaceEntityP(Parent._ptr);
523
+ _ptr = np.Pointer;
524
+ _ownsPtr = np.OwnsOwnData;
525
+ }
526
+
527
+ /// <summary>Gets the type of light of this light component.</summary>
528
+ /// <returns>The type of light of this light component.</returns>
529
+
530
+
531
+ public Csp.Multiplayer.LightType GetLightType()
532
+ {
533
+ var _result = csp_multiplayer_LightSpaceComponent_GetLightTypeC_LightType(_ptr);
534
+
535
+ return _result;
536
+ }
537
+
538
+ /// <summary>Sets the type of light of this light component.</summary>
539
+ /// <param name="Value">The type of light of this light component.</param>
540
+
541
+
542
+ public void SetLightType(Csp.Multiplayer.LightType Value)
543
+ {
544
+ csp_multiplayer_LightSpaceComponent_SetLightType_void_LightType(_ptr, Value);
545
+ }
546
+
547
+ /// <summary>Gets the type of light shadow of this light component.</summary>
548
+ /// <returns>The type of light shadow of this light component.</returns>
549
+
550
+
551
+ public Csp.Multiplayer.LightShadowType GetLightShadowType()
552
+ {
553
+ var _result = csp_multiplayer_LightSpaceComponent_GetLightShadowTypeC_LightShadowType(_ptr);
554
+
555
+ return _result;
556
+ }
557
+
558
+ /// <summary>Sets the type of light shadow of this light component.</summary>
559
+ /// <param name="Value">The type of light shadow of this light component.</param>
560
+
561
+
562
+ public void SetLightShadowType(Csp.Multiplayer.LightShadowType Value)
563
+ {
564
+ csp_multiplayer_LightSpaceComponent_SetLightShadowType_void_LightShadowType(_ptr, Value);
565
+ }
566
+
567
+ /// <summary>Gets the color of the light of this component.</summary>
568
+ /// <returns>The color of the light of this component.</returns>
569
+
570
+
571
+ public Csp.Common.Vector3 GetColor()
572
+ {
573
+ var _result = new Csp.Common.Vector3(csp_multiplayer_LightSpaceComponent_GetColorC_Vector3RC(_ptr));
574
+
575
+ return _result;
576
+ }
577
+
578
+ /// <summary>Sets the color of the light of this component.</summary>
579
+ /// <param name="Value">The color of the light of this component.</param>
580
+
581
+
582
+ public void SetColor(Csp.Common.Vector3 Value)
583
+ {
584
+ csp_multiplayer_LightSpaceComponent_SetColor_void_Vector3RC(_ptr, Value._ptr);
585
+ }
586
+
587
+ /// <summary>Gets the intensity of the light of this component.</summary>
588
+ /// <returns>The intensity of the light of this component.</returns>
589
+
590
+
591
+ public float GetIntensity()
592
+ {
593
+ var _result = csp_multiplayer_LightSpaceComponent_GetIntensityC_float(_ptr);
594
+
595
+ return _result;
596
+ }
597
+
598
+ /// <summary>Sets the intensity of the light of this component.</summary>
599
+ /// <param name="Value">The intensity of the light of this component.</param>
600
+
601
+
602
+ public void SetIntensity(float Value)
603
+ {
604
+ csp_multiplayer_LightSpaceComponent_SetIntensity_void_float(_ptr, Value);
605
+ }
606
+
607
+ /// <summary>Gets the range within which the light of this component affects the surrounding 3D scene.</summary>
608
+ /// <returns>The range within which the light of this component affects the surrounding 3D scene.</returns>
609
+
610
+
611
+ public float GetRange()
612
+ {
613
+ var _result = csp_multiplayer_LightSpaceComponent_GetRangeC_float(_ptr);
614
+
615
+ return _result;
616
+ }
617
+
618
+ /// <summary>Sets the range within which the light of this component affects the surrounding 3D scene.</summary>
619
+ /// <param name="Value">The range within which the light of this component affects the surrounding 3D scene.</param>
620
+
621
+
622
+ public void SetRange(float Value)
623
+ {
624
+ csp_multiplayer_LightSpaceComponent_SetRange_void_float(_ptr, Value);
625
+ }
626
+
627
+ /// <summary>Gets the angle of the inner cone in a spotlight.</summary>
628
+ /// <returns>The angle of the inner cone in a spotlight.</returns>
629
+
630
+
631
+ public float GetInnerConeAngle()
632
+ {
633
+ var _result = csp_multiplayer_LightSpaceComponent_GetInnerConeAngleC_float(_ptr);
634
+
635
+ return _result;
636
+ }
637
+
638
+ /// <summary>Sets the angle of the inner cone in a spotlight.</summary>
639
+ /// <param name="Value">The angle of the inner cone in a spotlight.</param>
640
+
641
+
642
+ public void SetInnerConeAngle(float Value)
643
+ {
644
+ csp_multiplayer_LightSpaceComponent_SetInnerConeAngle_void_float(_ptr, Value);
645
+ }
646
+
647
+ /// <summary>Gets the angle of the outer cone in a spotlight.</summary>
648
+ /// <returns>The angle of the outer cone in a spotlight.</returns>
649
+
650
+
651
+ public float GetOuterConeAngle()
652
+ {
653
+ var _result = csp_multiplayer_LightSpaceComponent_GetOuterConeAngleC_float(_ptr);
654
+
655
+ return _result;
656
+ }
657
+
658
+ /// <summary>Sets the angle of the outer cone in a spotlight.</summary>
659
+ /// <param name="Value">The angle of the outer cone in a spotlight.</param>
660
+
661
+
662
+ public void SetOuterConeAngle(float Value)
663
+ {
664
+ csp_multiplayer_LightSpaceComponent_SetOuterConeAngle_void_float(_ptr, Value);
665
+ }
666
+
667
+ /// <summary>Gets the position of the origin of this component in world space.</summary>
668
+ /// @note The coordinate system used follows the glTF 2.0 specification, in meters.
669
+ /// <remarks>- Right handed coordinate system</remarks>
670
+ /// <remarks>- +Y is UP</remarks>
671
+ /// <remarks>- +X is left (facing forward)</remarks>
672
+ /// <remarks>- +Z is forward</remarks>
673
+ /// <returns>The 3D position as vector (left, up, forward) in meters.</returns>
674
+
675
+
676
+ public Csp.Common.Vector3 GetPosition()
677
+ {
678
+ var _result = new Csp.Common.Vector3(csp_multiplayer_LightSpaceComponent_GetPositionC_Vector3RC(_ptr));
679
+
680
+ return _result;
681
+ }
682
+
683
+ /// <summary>Sets the position of the origin of this component in world space.</summary>
684
+ /// @note The coordinate system used follows the glTF 2.0 specification, in meters.
685
+ /// <remarks>- Right handed coordinate system</remarks>
686
+ /// <remarks>- +Y is UP</remarks>
687
+ /// <remarks>- +X is left (facing forward)</remarks>
688
+ /// <remarks>- +Z is forward</remarks>
689
+
690
+
691
+ public void SetPosition(Csp.Common.Vector3 Value)
692
+ {
693
+ csp_multiplayer_LightSpaceComponent_SetPosition_void_Vector3RC(_ptr, Value._ptr);
694
+ }
695
+
696
+ /// <summary>Gets a quaternion representing the rotation of the origin of this component, expressed in radians.</summary>
697
+ /// @note The coordinate system respects the following conventions:
698
+ /// <remarks>- Right handed coordinate system</remarks>
699
+ /// <remarks>- Positive rotation is counterclockwise</remarks>
700
+ /// <remarks>- The geographic North is along the positive Z axis (+Z) at an orientation of 0 degrees.</remarks>
701
+ /// <remarks>- North: +Z</remarks>
702
+ /// <remarks>- East: -X</remarks>
703
+ /// <remarks>- South: -Z</remarks>
704
+ /// <remarks>- West: +X</remarks>
705
+
706
+
707
+ public Csp.Common.Vector4 GetRotation()
708
+ {
709
+ var _result = new Csp.Common.Vector4(csp_multiplayer_LightSpaceComponent_GetRotationC_Vector4RC(_ptr));
710
+
711
+ return _result;
712
+ }
713
+
714
+ /// <summary>Sets the rotation of the origin of this component according to the specified quaternion "Value", expressed in radians.</summary>
715
+ /// @note The coordinate system respects the following conventions:
716
+ /// <remarks>- Right handed coordinate system</remarks>
717
+ /// <remarks>- Positive rotation is counterclockwise</remarks>
718
+ /// <remarks>- The geographic North is along the positive Z axis (+Z) at an orientation of 0 degrees.</remarks>
719
+ /// <remarks>- North: +Z</remarks>
720
+ /// <remarks>- East: -X</remarks>
721
+ /// <remarks>- South: -Z</remarks>
722
+ /// <remarks>- West: +X</remarks>
723
+ /// <param name="Value">The quaternion in radians to use as new rotation of this component.</param>
724
+
725
+
726
+ public void SetRotation(Csp.Common.Vector4 Value)
727
+ {
728
+ csp_multiplayer_LightSpaceComponent_SetRotation_void_Vector4RC(_ptr, Value._ptr);
729
+ }
730
+
731
+ /// <summary>Gets the ID of the asset used for the light cookie of this light component.</summary>
732
+ /// <returns>The ID of the asset used for the light cookie of this light component.</returns>
733
+
734
+
735
+ public string GetLightCookieAssetId()
736
+ {
737
+ var _result = csp_multiplayer_LightSpaceComponent_GetLightCookieAssetIdC_StringRC(_ptr);
738
+
739
+ var _resultString = WrapperHelper.NativeUTF8ToString(_result);
740
+ Global.Free(_result);
741
+
742
+ return _resultString;
743
+ }
744
+
745
+ /// <summary>Sets the ID of the asset used for the light cookie of this light component.</summary>
746
+ /// <param name="Value">The ID of the asset used for the light cookie of this light component.</param>
747
+
748
+
749
+ public void SetLightCookieAssetId(string Value)
750
+ {
751
+ csp_multiplayer_LightSpaceComponent_SetLightCookieAssetId_void_StringRC(
752
+ _ptr,
753
+ WrapperHelper.StringToNativeUTF8(Value)
754
+ );
755
+ }
756
+
757
+ /// <summary>Gets the ID of the asset collection used for the light cookie of this light component.</summary>
758
+ /// <returns>The ID of the asset collection used for the light cookie of this light component.</returns>
759
+
760
+
761
+ public string GetLightCookieAssetCollectionId()
762
+ {
763
+ var _result = csp_multiplayer_LightSpaceComponent_GetLightCookieAssetCollectionIdC_StringRC(_ptr);
764
+
765
+ var _resultString = WrapperHelper.NativeUTF8ToString(_result);
766
+ Global.Free(_result);
767
+
768
+ return _resultString;
769
+ }
770
+
771
+ /// <summary>Sets the ID of the asset collection used for the light cookie of this light component.</summary>
772
+ /// <param name="Value">The ID of the asset collection used for the light cookie of this light component.</param>
773
+
774
+
775
+ public void SetLightCookieAssetCollectionId(string Value)
776
+ {
777
+ csp_multiplayer_LightSpaceComponent_SetLightCookieAssetCollectionId_void_StringRC(
778
+ _ptr,
779
+ WrapperHelper.StringToNativeUTF8(Value)
780
+ );
781
+ }
782
+
783
+ /// <summary>Gets the type of the light cookie used by this light component.</summary>
784
+ /// <returns>The type of the light cookie used by this light component.</returns>
785
+
786
+
787
+ public Csp.Multiplayer.LightCookieType GetLightCookieType()
788
+ {
789
+ var _result = csp_multiplayer_LightSpaceComponent_GetLightCookieTypeC_LightCookieType(_ptr);
790
+
791
+ return _result;
792
+ }
793
+
794
+ /// <summary>Sets the type of the light cookie used by this light component.</summary>
795
+ /// <param name="Value">The type of the light cookie used by this light component.</param>
796
+
797
+
798
+ public void SetLightCookieType(Csp.Multiplayer.LightCookieType Value)
799
+ {
800
+ csp_multiplayer_LightSpaceComponent_SetLightCookieType_void_LightCookieType(_ptr, Value);
801
+ }
802
+
803
+ /// <remarks>\addtogroup IVisibleComponent</remarks>
804
+ /// @{
805
+ /// @copydoc IVisibleComponent::GetIsVisible()
806
+
807
+
808
+ public bool GetIsVisible()
809
+ {
810
+ var _result = csp_multiplayer_LightSpaceComponent_GetIsVisibleC_bool(_ptr);
811
+
812
+ return _result;
813
+ }
814
+
815
+ /// @copydoc IVisibleComponent::SetIsVisible()
816
+
817
+
818
+ public void SetIsVisible(bool InValue)
819
+ {
820
+ csp_multiplayer_LightSpaceComponent_SetIsVisible_void_bool(_ptr, InValue);
821
+ }
822
+
823
+ /// @copydoc IVisibleComponent::GetIsARVisible()
824
+
825
+
826
+ public bool GetIsARVisible()
827
+ {
828
+ var _result = csp_multiplayer_LightSpaceComponent_GetIsARVisibleC_bool(_ptr);
829
+
830
+ return _result;
831
+ }
832
+
833
+ /// @copydoc IVisibleComponent::SetIsARVisible()
834
+
835
+
836
+ public void SetIsARVisible(bool InValue)
837
+ {
838
+ csp_multiplayer_LightSpaceComponent_SetIsARVisible_void_bool(_ptr, InValue);
839
+ }
840
+
841
+ /// @}
842
+ /// <remarks>\addtogroup IThirdPartyComponentRef</remarks>
843
+ /// @{
844
+ /// @copydoc IThirdPartyComponentRef::GetThirdPartyComponentRef()
845
+
846
+
847
+ public string GetThirdPartyComponentRef()
848
+ {
849
+ var _result = csp_multiplayer_LightSpaceComponent_GetThirdPartyComponentRefC_StringRC(_ptr);
850
+
851
+ var _resultString = WrapperHelper.NativeUTF8ToString(_result);
852
+ Global.Free(_result);
853
+
854
+ return _resultString;
855
+ }
856
+
857
+ /// @copydoc IThirdPartyComponentRef::SetThirdPartyComponentRef()
858
+
859
+
860
+ public void SetThirdPartyComponentRef(string InValue)
861
+ {
862
+ csp_multiplayer_LightSpaceComponent_SetThirdPartyComponentRef_void_StringRC(
863
+ _ptr,
864
+ WrapperHelper.StringToNativeUTF8(InValue)
865
+ );
866
+ }
867
+
868
+ ~LightSpaceComponent()
869
+ {
870
+ //RealDispose();
871
+ }
872
+
873
+ void RealDispose()
874
+ {
875
+ if (_ownsPtr && !_disposed)
876
+ {
877
+ csp_multiplayer_LightSpaceComponent_Dtor(_ptr);
878
+ _disposed = true;
879
+ }
880
+
881
+ _disposed = true;
882
+ }
883
+
884
+ new public void Dispose()
885
+ {
886
+ RealDispose();
887
+ GC.SuppressFinalize(this);
888
+ }
889
+ }
890
+ }
891
+