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.
- package/Editor/NativePluginBuildProcessor.asmdef +16 -0
- package/Editor/NativePluginBuildProcessor.asmdef.meta +7 -0
- package/Editor/NativePluginBuildProcessor.cs +41 -0
- package/Editor/NativePluginBuildProcessor.cs.meta +11 -0
- package/Editor.meta +7 -0
- package/Source/CSPFoundation.cs +417 -0
- package/Source/CSPFoundation.cs.meta +11 -0
- package/Source/ClientUserAgent.cs +292 -0
- package/Source/ClientUserAgent.cs.meta +11 -0
- package/Source/Common/Array.cs +201 -0
- package/Source/Common/Array.cs.meta +11 -0
- package/Source/Common/CancellationToken.cs +175 -0
- package/Source/Common/CancellationToken.cs.meta +11 -0
- package/Source/Common/FileExtensions.cs +15317 -0
- package/Source/Common/FileExtensions.cs.meta +11 -0
- package/Source/Common/List.cs +275 -0
- package/Source/Common/List.cs.meta +11 -0
- package/Source/Common/Map.cs +283 -0
- package/Source/Common/Map.cs.meta +11 -0
- package/Source/Common/MimeTypeHelper.cs +210 -0
- package/Source/Common/MimeTypeHelper.cs.meta +11 -0
- package/Source/Common/MimeTypes.cs +10565 -0
- package/Source/Common/MimeTypes.cs.meta +11 -0
- package/Source/Common/Variant.cs +573 -0
- package/Source/Common/Variant.cs.meta +11 -0
- package/Source/Common/VariantType.cs +28 -0
- package/Source/Common/VariantType.cs.meta +11 -0
- package/Source/Common/Vector3.cs +268 -0
- package/Source/Common/Vector3.cs.meta +11 -0
- package/Source/Common/Vector4.cs +328 -0
- package/Source/Common/Vector4.cs.meta +11 -0
- package/Source/Common.meta +7 -0
- package/Source/ConnectedSpacesPlatform.Unity.Core.asmdef +14 -0
- package/Source/ConnectedSpacesPlatform.Unity.Core.asmdef.meta +7 -0
- package/Source/Csp.cs +83 -0
- package/Source/Csp.cs.meta +11 -0
- package/Source/EThirdPartyPlatform.cs +26 -0
- package/Source/EThirdPartyPlatform.cs.meta +11 -0
- package/Source/EndpointURIs.cs +258 -0
- package/Source/EndpointURIs.cs.meta +11 -0
- package/Source/Il2cppPreserver.cs +29 -0
- package/Source/Il2cppPreserver.cs.meta +11 -0
- package/Source/Multiplayer/AssetDetailBlobParams.cs +270 -0
- package/Source/Multiplayer/AssetDetailBlobParams.cs.meta +11 -0
- package/Source/Multiplayer/ComponentBase.cs +339 -0
- package/Source/Multiplayer/ComponentBase.cs.meta +11 -0
- package/Source/Multiplayer/ComponentType.cs +46 -0
- package/Source/Multiplayer/ComponentType.cs.meta +11 -0
- package/Source/Multiplayer/ComponentUpdateInfo.cs +161 -0
- package/Source/Multiplayer/ComponentUpdateInfo.cs.meta +11 -0
- package/Source/Multiplayer/ComponentUpdateType.cs +24 -0
- package/Source/Multiplayer/ComponentUpdateType.cs.meta +11 -0
- package/Source/Multiplayer/Components/AnimatedModelActions.cs +25 -0
- package/Source/Multiplayer/Components/AnimatedModelActions.cs.meta +11 -0
- package/Source/Multiplayer/Components/AnimatedModelPropertyKeys.cs +36 -0
- package/Source/Multiplayer/Components/AnimatedModelPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/AnimatedModelSpaceComponent.cs +793 -0
- package/Source/Multiplayer/Components/AnimatedModelSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/AudioPlaybackState.cs +25 -0
- package/Source/Multiplayer/Components/AudioPlaybackState.cs.meta +11 -0
- package/Source/Multiplayer/Components/AudioPropertyKeys.cs +33 -0
- package/Source/Multiplayer/Components/AudioPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/AudioSpaceComponent.cs +693 -0
- package/Source/Multiplayer/Components/AudioSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/AudioType.cs +24 -0
- package/Source/Multiplayer/Components/AudioType.cs.meta +11 -0
- package/Source/Multiplayer/Components/AvatarComponentPropertyKeys.cs +37 -0
- package/Source/Multiplayer/Components/AvatarComponentPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/AvatarPlayMode.cs +26 -0
- package/Source/Multiplayer/Components/AvatarPlayMode.cs.meta +11 -0
- package/Source/Multiplayer/Components/AvatarSpaceComponent.cs +946 -0
- package/Source/Multiplayer/Components/AvatarSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/AvatarState.cs +29 -0
- package/Source/Multiplayer/Components/AvatarState.cs.meta +11 -0
- package/Source/Multiplayer/Components/BillboardMode.cs +24 -0
- package/Source/Multiplayer/Components/BillboardMode.cs.meta +11 -0
- package/Source/Multiplayer/Components/ButtonPropertyKeys.cs +32 -0
- package/Source/Multiplayer/Components/ButtonPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/ButtonSpaceComponent.cs +597 -0
- package/Source/Multiplayer/Components/ButtonSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/CollisionMode.cs +23 -0
- package/Source/Multiplayer/Components/CollisionMode.cs.meta +11 -0
- package/Source/Multiplayer/Components/CollisionPropertyKeys.cs +30 -0
- package/Source/Multiplayer/Components/CollisionPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/CollisionShape.cs +25 -0
- package/Source/Multiplayer/Components/CollisionShape.cs.meta +11 -0
- package/Source/Multiplayer/Components/CollisionSpaceComponent.cs +757 -0
- package/Source/Multiplayer/Components/CollisionSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/ConversationPropertyKeys.cs +30 -0
- package/Source/Multiplayer/Components/ConversationPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/ConversationSpaceComponent.cs +1105 -0
- package/Source/Multiplayer/Components/ConversationSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/CustomComponentPropertyKeys.cs +24 -0
- package/Source/Multiplayer/Components/CustomComponentPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/CustomSpaceComponent.cs +370 -0
- package/Source/Multiplayer/Components/CustomSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/DisplayMode.cs +24 -0
- package/Source/Multiplayer/Components/DisplayMode.cs.meta +11 -0
- package/Source/Multiplayer/Components/ECommercePropertyKeys.cs +24 -0
- package/Source/Multiplayer/Components/ECommercePropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/ECommerceSpaceComponent.cs +216 -0
- package/Source/Multiplayer/Components/ECommerceSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/ExternalLinkActions.cs +23 -0
- package/Source/Multiplayer/Components/ExternalLinkActions.cs.meta +11 -0
- package/Source/Multiplayer/Components/ExternalLinkPropertyKeys.cs +31 -0
- package/Source/Multiplayer/Components/ExternalLinkPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/ExternalLinkSpaceComponent.cs +579 -0
- package/Source/Multiplayer/Components/ExternalLinkSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/FiducialMarkerPropertyKeys.cs +30 -0
- package/Source/Multiplayer/Components/FiducialMarkerPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/FiducialMarkerSpaceComponent.cs +569 -0
- package/Source/Multiplayer/Components/FiducialMarkerSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/FogMode.cs +24 -0
- package/Source/Multiplayer/Components/FogMode.cs.meta +11 -0
- package/Source/Multiplayer/Components/FogPropertyKeys.cs +36 -0
- package/Source/Multiplayer/Components/FogPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/FogSpaceComponent.cs +836 -0
- package/Source/Multiplayer/Components/FogSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/ImagePropertyKeys.cs +33 -0
- package/Source/Multiplayer/Components/ImagePropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/ImageSpaceComponent.cs +693 -0
- package/Source/Multiplayer/Components/ImageSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IEnableableComponent.cs +24 -0
- package/Source/Multiplayer/Components/Interfaces/IEnableableComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IExternalResourceComponent.cs +28 -0
- package/Source/Multiplayer/Components/Interfaces/IExternalResourceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IPositionComponent.cs +24 -0
- package/Source/Multiplayer/Components/Interfaces/IPositionComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IRotationComponent.cs +24 -0
- package/Source/Multiplayer/Components/Interfaces/IRotationComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IScaleComponent.cs +24 -0
- package/Source/Multiplayer/Components/Interfaces/IScaleComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IShadowCasterComponent.cs +24 -0
- package/Source/Multiplayer/Components/Interfaces/IShadowCasterComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IThirdPartyComponentRef.cs +27 -0
- package/Source/Multiplayer/Components/Interfaces/IThirdPartyComponentRef.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/ITransformComponent.cs +27 -0
- package/Source/Multiplayer/Components/Interfaces/ITransformComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces/IVisibleComponent.cs +28 -0
- package/Source/Multiplayer/Components/Interfaces/IVisibleComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/Interfaces.meta +7 -0
- package/Source/Multiplayer/Components/LightCookieType.cs +24 -0
- package/Source/Multiplayer/Components/LightCookieType.cs.meta +11 -0
- package/Source/Multiplayer/Components/LightPropertyKeys.cs +38 -0
- package/Source/Multiplayer/Components/LightPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/LightShadowType.cs +25 -0
- package/Source/Multiplayer/Components/LightShadowType.cs.meta +11 -0
- package/Source/Multiplayer/Components/LightSpaceComponent.cs +891 -0
- package/Source/Multiplayer/Components/LightSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/LightType.cs +25 -0
- package/Source/Multiplayer/Components/LightType.cs.meta +11 -0
- package/Source/Multiplayer/Components/LocomotionModel.cs +24 -0
- package/Source/Multiplayer/Components/LocomotionModel.cs.meta +11 -0
- package/Source/Multiplayer/Components/PortalPropertyKeys.cs +30 -0
- package/Source/Multiplayer/Components/PortalPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/PortalSpaceComponent.cs +371 -0
- package/Source/Multiplayer/Components/PortalSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/ReflectionPropertyKeys.cs +30 -0
- package/Source/Multiplayer/Components/ReflectionPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/ReflectionShape.cs +23 -0
- package/Source/Multiplayer/Components/ReflectionShape.cs.meta +11 -0
- package/Source/Multiplayer/Components/ReflectionSpaceComponent.cs +515 -0
- package/Source/Multiplayer/Components/ReflectionSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/ScriptComponentPropertyKeys.cs +25 -0
- package/Source/Multiplayer/Components/ScriptComponentPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/ScriptScope.cs +24 -0
- package/Source/Multiplayer/Components/ScriptScope.cs.meta +11 -0
- package/Source/Multiplayer/Components/ScriptSpaceComponent.cs +258 -0
- package/Source/Multiplayer/Components/ScriptSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/SplinePropertyKeys.cs +23 -0
- package/Source/Multiplayer/Components/SplinePropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/SplineSpaceComponent.cs +184 -0
- package/Source/Multiplayer/Components/SplineSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/StaticModelPropertyKeys.cs +32 -0
- package/Source/Multiplayer/Components/StaticModelPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/StaticModelSpaceComponent.cs +640 -0
- package/Source/Multiplayer/Components/StaticModelSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components/VideoPlayerActions.cs +24 -0
- package/Source/Multiplayer/Components/VideoPlayerActions.cs.meta +11 -0
- package/Source/Multiplayer/Components/VideoPlayerPlaybackState.cs +25 -0
- package/Source/Multiplayer/Components/VideoPlayerPlaybackState.cs.meta +11 -0
- package/Source/Multiplayer/Components/VideoPlayerPropertyKeys.cs +42 -0
- package/Source/Multiplayer/Components/VideoPlayerPropertyKeys.cs.meta +11 -0
- package/Source/Multiplayer/Components/VideoPlayerSourceType.cs +25 -0
- package/Source/Multiplayer/Components/VideoPlayerSourceType.cs.meta +11 -0
- package/Source/Multiplayer/Components/VideoPlayerSpaceComponent.cs +1187 -0
- package/Source/Multiplayer/Components/VideoPlayerSpaceComponent.cs.meta +11 -0
- package/Source/Multiplayer/Components.meta +7 -0
- package/Source/Multiplayer/ConnectionState.cs +25 -0
- package/Source/Multiplayer/ConnectionState.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/BaseMessageInfo.cs +293 -0
- package/Source/Multiplayer/Conversation/BaseMessageInfo.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/ConversationInfo.cs +205 -0
- package/Source/Multiplayer/Conversation/ConversationInfo.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/ConversationMessageType.cs +26 -0
- package/Source/Multiplayer/Conversation/ConversationMessageType.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/ConversationResult.cs +152 -0
- package/Source/Multiplayer/Conversation/ConversationResult.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/ConversationSystem.cs +784 -0
- package/Source/Multiplayer/Conversation/ConversationSystem.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/MessageCollectionResult.cs +175 -0
- package/Source/Multiplayer/Conversation/MessageCollectionResult.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/MessageInfo.cs +172 -0
- package/Source/Multiplayer/Conversation/MessageInfo.cs.meta +11 -0
- package/Source/Multiplayer/Conversation/MessageResult.cs +150 -0
- package/Source/Multiplayer/Conversation/MessageResult.cs.meta +11 -0
- package/Source/Multiplayer/Conversation.meta +7 -0
- package/Source/Multiplayer/ConversationSystemParams.cs +165 -0
- package/Source/Multiplayer/ConversationSystemParams.cs.meta +11 -0
- package/Source/Multiplayer/EAssetChangeType.cs +27 -0
- package/Source/Multiplayer/EAssetChangeType.cs.meta +11 -0
- package/Source/Multiplayer/IEntityDeserialiser.cs +70 -0
- package/Source/Multiplayer/IEntityDeserialiser.cs.meta +11 -0
- package/Source/Multiplayer/IEntitySerialiser.cs +63 -0
- package/Source/Multiplayer/IEntitySerialiser.cs.meta +11 -0
- package/Source/Multiplayer/MultiplayerConnection.cs +964 -0
- package/Source/Multiplayer/MultiplayerConnection.cs.meta +11 -0
- package/Source/Multiplayer/PropertyUpdateInfo.cs +159 -0
- package/Source/Multiplayer/PropertyUpdateInfo.cs.meta +11 -0
- package/Source/Multiplayer/ReplicatedValue.cs +593 -0
- package/Source/Multiplayer/ReplicatedValue.cs.meta +11 -0
- package/Source/Multiplayer/ReplicatedValueType.cs +28 -0
- package/Source/Multiplayer/ReplicatedValueType.cs.meta +11 -0
- package/Source/Multiplayer/Script/EntityScript.cs +479 -0
- package/Source/Multiplayer/Script/EntityScript.cs.meta +11 -0
- package/Source/Multiplayer/Script.meta +7 -0
- package/Source/Multiplayer/SpaceEntity.cs +1202 -0
- package/Source/Multiplayer/SpaceEntity.cs.meta +11 -0
- package/Source/Multiplayer/SpaceEntitySystem.cs +1304 -0
- package/Source/Multiplayer/SpaceEntitySystem.cs.meta +11 -0
- package/Source/Multiplayer/SpaceEntityType.cs +25 -0
- package/Source/Multiplayer/SpaceEntityType.cs.meta +11 -0
- package/Source/Multiplayer/SpaceEntityUpdateFlags.cs +27 -0
- package/Source/Multiplayer/SpaceEntityUpdateFlags.cs.meta +11 -0
- package/Source/Multiplayer/SpaceTransform.cs +232 -0
- package/Source/Multiplayer/SpaceTransform.cs.meta +11 -0
- package/Source/Multiplayer.meta +7 -0
- package/Source/NativeClassWrapper.cs +42 -0
- package/Source/NativeClassWrapper.cs.meta +11 -0
- package/Source/ProgressEventArgs.cs +15 -0
- package/Source/ProgressEventArgs.cs.meta +11 -0
- package/Source/Ref.cs +28 -0
- package/Source/Ref.cs.meta +11 -0
- package/Source/Services/EResultCode.cs +26 -0
- package/Source/Services/EResultCode.cs.meta +11 -0
- package/Source/Services/ResultBase.cs +237 -0
- package/Source/Services/ResultBase.cs.meta +11 -0
- package/Source/Services/WebService.cs +91 -0
- package/Source/Services/WebService.cs.meta +11 -0
- package/Source/Services.meta +7 -0
- package/Source/Systems/Analytics/AnalyticsEvent.cs +288 -0
- package/Source/Systems/Analytics/AnalyticsEvent.cs.meta +11 -0
- package/Source/Systems/Analytics/AnalyticsEventInitialiser.cs +78 -0
- package/Source/Systems/Analytics/AnalyticsEventInitialiser.cs.meta +11 -0
- package/Source/Systems/Analytics/AnalyticsSystem.cs +116 -0
- package/Source/Systems/Analytics/AnalyticsSystem.cs.meta +11 -0
- package/Source/Systems/Analytics/IAnalyticsProvider.cs +85 -0
- package/Source/Systems/Analytics/IAnalyticsProvider.cs.meta +11 -0
- package/Source/Systems/Analytics.meta +7 -0
- package/Source/Systems/Assets/Asset.cs +698 -0
- package/Source/Systems/Assets/Asset.cs.meta +11 -0
- package/Source/Systems/Assets/AssetCollection.cs +605 -0
- package/Source/Systems/Assets/AssetCollection.cs.meta +11 -0
- package/Source/Systems/Assets/AssetCollectionResult.cs +119 -0
- package/Source/Systems/Assets/AssetCollectionResult.cs.meta +11 -0
- package/Source/Systems/Assets/AssetCollectionsResult.cs +161 -0
- package/Source/Systems/Assets/AssetCollectionsResult.cs.meta +11 -0
- package/Source/Systems/Assets/AssetDataResult.cs +175 -0
- package/Source/Systems/Assets/AssetDataResult.cs.meta +11 -0
- package/Source/Systems/Assets/AssetDataSource.cs +24 -0
- package/Source/Systems/Assets/AssetDataSource.cs.meta +11 -0
- package/Source/Systems/Assets/AssetResult.cs +131 -0
- package/Source/Systems/Assets/AssetResult.cs.meta +11 -0
- package/Source/Systems/Assets/AssetSystem.cs +1601 -0
- package/Source/Systems/Assets/AssetSystem.cs.meta +11 -0
- package/Source/Systems/Assets/AssetsResult.cs +148 -0
- package/Source/Systems/Assets/AssetsResult.cs.meta +11 -0
- package/Source/Systems/Assets/BufferAssetDataSource.cs +214 -0
- package/Source/Systems/Assets/BufferAssetDataSource.cs.meta +11 -0
- package/Source/Systems/Assets/EAssetCollectionType.cs +24 -0
- package/Source/Systems/Assets/EAssetCollectionType.cs.meta +11 -0
- package/Source/Systems/Assets/EAssetPlatform.cs +20 -0
- package/Source/Systems/Assets/EAssetPlatform.cs.meta +11 -0
- package/Source/Systems/Assets/EAssetType.cs +30 -0
- package/Source/Systems/Assets/EAssetType.cs.meta +11 -0
- package/Source/Systems/Assets/FileAssetDataSource.cs +177 -0
- package/Source/Systems/Assets/FileAssetDataSource.cs.meta +11 -0
- package/Source/Systems/Assets/LODAsset.cs +157 -0
- package/Source/Systems/Assets/LODAsset.cs.meta +11 -0
- package/Source/Systems/Assets/LODChain.cs +158 -0
- package/Source/Systems/Assets/LODChain.cs.meta +11 -0
- package/Source/Systems/Assets/LODChainResult.cs +131 -0
- package/Source/Systems/Assets/LODChainResult.cs.meta +11 -0
- package/Source/Systems/Assets/UriResult.cs +193 -0
- package/Source/Systems/Assets/UriResult.cs.meta +11 -0
- package/Source/Systems/Assets.meta +7 -0
- package/Source/Systems/BooleanResult.cs +146 -0
- package/Source/Systems/BooleanResult.cs.meta +11 -0
- package/Source/Systems/ECommerce/AddShopifyStoreResult.cs +112 -0
- package/Source/Systems/ECommerce/AddShopifyStoreResult.cs.meta +11 -0
- package/Source/Systems/ECommerce/CartInfo.cs +233 -0
- package/Source/Systems/ECommerce/CartInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce/CartInfoResult.cs +132 -0
- package/Source/Systems/ECommerce/CartInfoResult.cs.meta +11 -0
- package/Source/Systems/ECommerce/CartLine.cs +197 -0
- package/Source/Systems/ECommerce/CartLine.cs.meta +11 -0
- package/Source/Systems/ECommerce/CheckoutInfo.cs +161 -0
- package/Source/Systems/ECommerce/CheckoutInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce/CheckoutInfoResult.cs +117 -0
- package/Source/Systems/ECommerce/CheckoutInfoResult.cs.meta +11 -0
- package/Source/Systems/ECommerce/CurrencyInfo.cs +161 -0
- package/Source/Systems/ECommerce/CurrencyInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce/ECommerceSystem.cs +564 -0
- package/Source/Systems/ECommerce/ECommerceSystem.cs.meta +11 -0
- package/Source/Systems/ECommerce/ProductInfo.cs +341 -0
- package/Source/Systems/ECommerce/ProductInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce/ProductInfoResult.cs +117 -0
- package/Source/Systems/ECommerce/ProductInfoResult.cs.meta +11 -0
- package/Source/Systems/ECommerce/ProductMediaInfo.cs +269 -0
- package/Source/Systems/ECommerce/ProductMediaInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce/ProductVariantInfo.cs +342 -0
- package/Source/Systems/ECommerce/ProductVariantInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce/ShopifyStoreInfo.cs +269 -0
- package/Source/Systems/ECommerce/ShopifyStoreInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce/ValidateShopifyStoreResult.cs +120 -0
- package/Source/Systems/ECommerce/ValidateShopifyStoreResult.cs.meta +11 -0
- package/Source/Systems/ECommerce/VariantOptionInfo.cs +161 -0
- package/Source/Systems/ECommerce/VariantOptionInfo.cs.meta +11 -0
- package/Source/Systems/ECommerce.meta +7 -0
- package/Source/Systems/EventTicketing/EventTicket.cs +378 -0
- package/Source/Systems/EventTicketing/EventTicket.cs.meta +11 -0
- package/Source/Systems/EventTicketing/EventTicketResult.cs +115 -0
- package/Source/Systems/EventTicketing/EventTicketResult.cs.meta +11 -0
- package/Source/Systems/EventTicketing/EventTicketingSystem.cs +563 -0
- package/Source/Systems/EventTicketing/EventTicketingSystem.cs.meta +11 -0
- package/Source/Systems/EventTicketing/EventTicketingVendor.cs +24 -0
- package/Source/Systems/EventTicketing/EventTicketingVendor.cs.meta +11 -0
- package/Source/Systems/EventTicketing/SpaceIsTicketedResult.cs +115 -0
- package/Source/Systems/EventTicketing/SpaceIsTicketedResult.cs.meta +11 -0
- package/Source/Systems/EventTicketing/TicketStatus.cs +26 -0
- package/Source/Systems/EventTicketing/TicketStatus.cs.meta +11 -0
- package/Source/Systems/EventTicketing/TicketedEvent.cs +305 -0
- package/Source/Systems/EventTicketing/TicketedEvent.cs.meta +11 -0
- package/Source/Systems/EventTicketing/TicketedEventCollectionResult.cs +117 -0
- package/Source/Systems/EventTicketing/TicketedEventCollectionResult.cs.meta +11 -0
- package/Source/Systems/EventTicketing/TicketedEventResult.cs +117 -0
- package/Source/Systems/EventTicketing/TicketedEventResult.cs.meta +11 -0
- package/Source/Systems/EventTicketing/TicketedEventVendorAuthInfo.cs +248 -0
- package/Source/Systems/EventTicketing/TicketedEventVendorAuthInfo.cs.meta +11 -0
- package/Source/Systems/EventTicketing/TicketedEventVendorAuthInfoResult.cs +115 -0
- package/Source/Systems/EventTicketing/TicketedEventVendorAuthInfoResult.cs.meta +11 -0
- package/Source/Systems/EventTicketing.meta +7 -0
- package/Source/Systems/GraphQL/GraphQLResult.cs +146 -0
- package/Source/Systems/GraphQL/GraphQLResult.cs.meta +11 -0
- package/Source/Systems/GraphQL/GraphQLSystem.cs +221 -0
- package/Source/Systems/GraphQL/GraphQLSystem.cs.meta +11 -0
- package/Source/Systems/GraphQL.meta +7 -0
- package/Source/Systems/HTTPHeadersResult.cs +147 -0
- package/Source/Systems/HTTPHeadersResult.cs.meta +11 -0
- package/Source/Systems/Log/LogLevel.cs +28 -0
- package/Source/Systems/Log/LogLevel.cs.meta +11 -0
- package/Source/Systems/Log/LogSystem.cs +331 -0
- package/Source/Systems/Log/LogSystem.cs.meta +11 -0
- package/Source/Systems/Log.meta +7 -0
- package/Source/Systems/Maintenance/MaintenanceInfo.cs +211 -0
- package/Source/Systems/Maintenance/MaintenanceInfo.cs.meta +11 -0
- package/Source/Systems/Maintenance/MaintenanceInfoResult.cs +252 -0
- package/Source/Systems/Maintenance/MaintenanceInfoResult.cs.meta +11 -0
- package/Source/Systems/Maintenance/MaintenanceSystem.cs +154 -0
- package/Source/Systems/Maintenance/MaintenanceSystem.cs.meta +11 -0
- package/Source/Systems/Maintenance.meta +7 -0
- package/Source/Systems/NullResult.cs +122 -0
- package/Source/Systems/NullResult.cs.meta +11 -0
- package/Source/Systems/Script/ScriptSystem.cs +198 -0
- package/Source/Systems/Script/ScriptSystem.cs.meta +11 -0
- package/Source/Systems/Script.meta +7 -0
- package/Source/Systems/Settings/SettingsCollection.cs +191 -0
- package/Source/Systems/Settings/SettingsCollection.cs.meta +11 -0
- package/Source/Systems/Settings/SettingsCollectionResult.cs +119 -0
- package/Source/Systems/Settings/SettingsCollectionResult.cs.meta +11 -0
- package/Source/Systems/Settings/SettingsSystem.cs +999 -0
- package/Source/Systems/Settings/SettingsSystem.cs.meta +11 -0
- package/Source/Systems/Settings.meta +7 -0
- package/Source/Systems/Spaces/BasicSpace.cs +225 -0
- package/Source/Systems/Spaces/BasicSpace.cs.meta +11 -0
- package/Source/Systems/Spaces/BasicSpaceResult.cs +111 -0
- package/Source/Systems/Spaces/BasicSpaceResult.cs.meta +11 -0
- package/Source/Systems/Spaces/BasicSpacesResult.cs +144 -0
- package/Source/Systems/Spaces/BasicSpacesResult.cs.meta +11 -0
- package/Source/Systems/Spaces/InviteUserRoleInfo.cs +178 -0
- package/Source/Systems/Spaces/InviteUserRoleInfo.cs.meta +11 -0
- package/Source/Systems/Spaces/PendingInvitesResult.cs +117 -0
- package/Source/Systems/Spaces/PendingInvitesResult.cs.meta +11 -0
- package/Source/Systems/Spaces/Site.cs +259 -0
- package/Source/Systems/Spaces/Site.cs.meta +11 -0
- package/Source/Systems/Spaces/SiteResult.cs +114 -0
- package/Source/Systems/Spaces/SiteResult.cs.meta +11 -0
- package/Source/Systems/Spaces/SitesCollectionResult.cs +117 -0
- package/Source/Systems/Spaces/SitesCollectionResult.cs.meta +11 -0
- package/Source/Systems/Spaces/Space.cs +321 -0
- package/Source/Systems/Spaces/Space.cs.meta +11 -0
- package/Source/Systems/Spaces/SpaceAttributes.cs +27 -0
- package/Source/Systems/Spaces/SpaceAttributes.cs.meta +11 -0
- package/Source/Systems/Spaces/SpaceGeoLocation.cs +225 -0
- package/Source/Systems/Spaces/SpaceGeoLocation.cs.meta +11 -0
- package/Source/Systems/Spaces/SpaceGeoLocationResult.cs +162 -0
- package/Source/Systems/Spaces/SpaceGeoLocationResult.cs.meta +11 -0
- package/Source/Systems/Spaces/SpaceMetadataResult.cs +144 -0
- package/Source/Systems/Spaces/SpaceMetadataResult.cs.meta +11 -0
- package/Source/Systems/Spaces/SpaceResult.cs +160 -0
- package/Source/Systems/Spaces/SpaceResult.cs.meta +11 -0
- package/Source/Systems/Spaces/SpaceSystem.cs +2322 -0
- package/Source/Systems/Spaces/SpaceSystem.cs.meta +11 -0
- package/Source/Systems/Spaces/SpaceUserRole.cs +22 -0
- package/Source/Systems/Spaces/SpaceUserRole.cs.meta +11 -0
- package/Source/Systems/Spaces/SpacesMetadataResult.cs +146 -0
- package/Source/Systems/Spaces/SpacesMetadataResult.cs.meta +11 -0
- package/Source/Systems/Spaces/SpacesResult.cs +132 -0
- package/Source/Systems/Spaces/SpacesResult.cs.meta +11 -0
- package/Source/Systems/Spaces/UserRoleCollectionResult.cs +146 -0
- package/Source/Systems/Spaces/UserRoleCollectionResult.cs.meta +11 -0
- package/Source/Systems/Spaces/UserRoleInfo.cs +178 -0
- package/Source/Systems/Spaces/UserRoleInfo.cs.meta +11 -0
- package/Source/Systems/Spaces.meta +7 -0
- package/Source/Systems/Spatial/Anchor.cs +534 -0
- package/Source/Systems/Spatial/Anchor.cs.meta +11 -0
- package/Source/Systems/Spatial/AnchorCollectionResult.cs +117 -0
- package/Source/Systems/Spatial/AnchorCollectionResult.cs.meta +11 -0
- package/Source/Systems/Spatial/AnchorProvider.cs +20 -0
- package/Source/Systems/Spatial/AnchorProvider.cs.meta +11 -0
- package/Source/Systems/Spatial/AnchorResolution.cs +293 -0
- package/Source/Systems/Spatial/AnchorResolution.cs.meta +11 -0
- package/Source/Systems/Spatial/AnchorResolutionCollectionResult.cs +119 -0
- package/Source/Systems/Spatial/AnchorResolutionCollectionResult.cs.meta +11 -0
- package/Source/Systems/Spatial/AnchorResolutionResult.cs +119 -0
- package/Source/Systems/Spatial/AnchorResolutionResult.cs.meta +11 -0
- package/Source/Systems/Spatial/AnchorResult.cs +111 -0
- package/Source/Systems/Spatial/AnchorResult.cs.meta +11 -0
- package/Source/Systems/Spatial/AnchorSystem.cs +738 -0
- package/Source/Systems/Spatial/AnchorSystem.cs.meta +11 -0
- package/Source/Systems/Spatial/EPointOfInterestType.cs +20 -0
- package/Source/Systems/Spatial/EPointOfInterestType.cs.meta +11 -0
- package/Source/Systems/Spatial/GeoLocation.cs +202 -0
- package/Source/Systems/Spatial/GeoLocation.cs.meta +11 -0
- package/Source/Systems/Spatial/OlyAnchorPosition.cs +216 -0
- package/Source/Systems/Spatial/OlyAnchorPosition.cs.meta +11 -0
- package/Source/Systems/Spatial/OlyRotation.cs +250 -0
- package/Source/Systems/Spatial/OlyRotation.cs.meta +11 -0
- package/Source/Systems/Spatial/POICollectionResult.cs +117 -0
- package/Source/Systems/Spatial/POICollectionResult.cs.meta +11 -0
- package/Source/Systems/Spatial/POIResult.cs +113 -0
- package/Source/Systems/Spatial/POIResult.cs.meta +11 -0
- package/Source/Systems/Spatial/PointOfInterest.cs +463 -0
- package/Source/Systems/Spatial/PointOfInterest.cs.meta +11 -0
- package/Source/Systems/Spatial/PointOfInterestSystem.cs +314 -0
- package/Source/Systems/Spatial/PointOfInterestSystem.cs.meta +11 -0
- package/Source/Systems/Spatial.meta +7 -0
- package/Source/Systems/StringArrayResult.cs +146 -0
- package/Source/Systems/StringArrayResult.cs.meta +11 -0
- package/Source/Systems/StringResult.cs +149 -0
- package/Source/Systems/StringResult.cs.meta +11 -0
- package/Source/Systems/SystemBase.cs +84 -0
- package/Source/Systems/SystemBase.cs.meta +11 -0
- package/Source/Systems/SystemsManager.cs +474 -0
- package/Source/Systems/SystemsManager.cs.meta +11 -0
- package/Source/Systems/UInt64Result.cs +146 -0
- package/Source/Systems/UInt64Result.cs.meta +11 -0
- package/Source/Systems/Users/AgoraUserTokenParams.cs +326 -0
- package/Source/Systems/Users/AgoraUserTokenParams.cs.meta +11 -0
- package/Source/Systems/Users/AgoraUserTokenResult.cs +130 -0
- package/Source/Systems/Users/AgoraUserTokenResult.cs.meta +11 -0
- package/Source/Systems/Users/BasicProfile.cs +259 -0
- package/Source/Systems/Users/BasicProfile.cs.meta +11 -0
- package/Source/Systems/Users/BasicProfilesResult.cs +112 -0
- package/Source/Systems/Users/BasicProfilesResult.cs.meta +11 -0
- package/Source/Systems/Users/ELoginState.cs +25 -0
- package/Source/Systems/Users/ELoginState.cs.meta +11 -0
- package/Source/Systems/Users/EThirdPartyAuthenticationProviders.cs +28 -0
- package/Source/Systems/Users/EThirdPartyAuthenticationProviders.cs.meta +11 -0
- package/Source/Systems/Users/LoginState.cs +304 -0
- package/Source/Systems/Users/LoginState.cs.meta +11 -0
- package/Source/Systems/Users/LoginStateResult.cs +126 -0
- package/Source/Systems/Users/LoginStateResult.cs.meta +11 -0
- package/Source/Systems/Users/LoginTokenInfo.cs +224 -0
- package/Source/Systems/Users/LoginTokenInfo.cs.meta +11 -0
- package/Source/Systems/Users/LoginTokenReceived.cs +129 -0
- package/Source/Systems/Users/LoginTokenReceived.cs.meta +11 -0
- package/Source/Systems/Users/LogoutResult.cs +105 -0
- package/Source/Systems/Users/LogoutResult.cs.meta +11 -0
- package/Source/Systems/Users/PingResponseReceived.cs +106 -0
- package/Source/Systems/Users/PingResponseReceived.cs.meta +11 -0
- package/Source/Systems/Users/Profile.cs +367 -0
- package/Source/Systems/Users/Profile.cs.meta +11 -0
- package/Source/Systems/Users/ProfileResult.cs +110 -0
- package/Source/Systems/Users/ProfileResult.cs.meta +11 -0
- package/Source/Systems/Users/ProviderDetailsResult.cs +142 -0
- package/Source/Systems/Users/ProviderDetailsResult.cs.meta +11 -0
- package/Source/Systems/Users/ThirdPartyProviderDetails.cs +231 -0
- package/Source/Systems/Users/ThirdPartyProviderDetails.cs.meta +11 -0
- package/Source/Systems/Users/UserSystem.cs +1468 -0
- package/Source/Systems/Users/UserSystem.cs.meta +11 -0
- package/Source/Systems/Users.meta +7 -0
- package/Source/Systems/Voip/VoipSystem.cs +132 -0
- package/Source/Systems/Voip/VoipSystem.cs.meta +11 -0
- package/Source/Systems/Voip.meta +7 -0
- package/Source/Systems.meta +7 -0
- package/Source/Web/EResponseCodes.cs +83 -0
- package/Source/Web/EResponseCodes.cs.meta +11 -0
- package/Source/Web.meta +7 -0
- package/Source/WrapperHelper.cs +96 -0
- package/Source/WrapperHelper.cs.meta +11 -0
- package/Source.meta +7 -0
- package/android64/libConnectedSpacesPlatform.so +0 -0
- package/android64/libConnectedSpacesPlatform.so.meta +79 -0
- package/android64/libConnectedSpacesPlatform_D.so +0 -0
- package/android64/libConnectedSpacesPlatform_D.so.meta +79 -0
- package/android64.meta +7 -0
- package/package.json +13 -0
- package/package.json.meta +7 -0
- package/windows/ConnectedSpacesPlatform.dll +0 -0
- package/windows/ConnectedSpacesPlatform.dll.meta +79 -0
- package/windows/ConnectedSpacesPlatform_D.dll +0 -0
- package/windows/ConnectedSpacesPlatform_D.dll.meta +79 -0
- package/windows.meta +7 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "NativePluginBuildProcessor",
|
|
3
|
+
"rootNamespace": "",
|
|
4
|
+
"references": [],
|
|
5
|
+
"includePlatforms": [
|
|
6
|
+
"Editor"
|
|
7
|
+
],
|
|
8
|
+
"excludePlatforms": [],
|
|
9
|
+
"allowUnsafeCode": false,
|
|
10
|
+
"overrideReferences": false,
|
|
11
|
+
"precompiledReferences": [],
|
|
12
|
+
"autoReferenced": false,
|
|
13
|
+
"defineConstraints": [],
|
|
14
|
+
"versionDefines": [],
|
|
15
|
+
"noEngineReferences": false
|
|
16
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
#if UNITY_EDITOR
|
|
2
|
+
|
|
3
|
+
using System.IO;
|
|
4
|
+
|
|
5
|
+
using UnityEditor;
|
|
6
|
+
using UnityEditor.Build;
|
|
7
|
+
using UnityEditor.Build.Reporting;
|
|
8
|
+
using UnityEngine;
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
public class NativePluginBuildProcessor : IPreprocessBuildWithReport
|
|
12
|
+
{
|
|
13
|
+
public int callbackOrder => 0;
|
|
14
|
+
|
|
15
|
+
public void OnPreprocessBuild(BuildReport report)
|
|
16
|
+
{
|
|
17
|
+
Debug.Log($"NativePluginBuildProcessor: Filtering CSP binaries for platform {report.summary.platform}.");
|
|
18
|
+
|
|
19
|
+
var importers = PluginImporter.GetImporters(report.summary.platform);
|
|
20
|
+
|
|
21
|
+
foreach (var importer in importers)
|
|
22
|
+
{
|
|
23
|
+
if (!importer.isNativePlugin)
|
|
24
|
+
continue;
|
|
25
|
+
|
|
26
|
+
if (!importer.assetPath.Contains("ConnectedSpacesPlatform"))
|
|
27
|
+
continue;
|
|
28
|
+
|
|
29
|
+
var ext = Path.GetExtension(importer.assetPath);
|
|
30
|
+
|
|
31
|
+
if (report.summary.options.HasFlag(BuildOptions.Development) && !importer.assetPath.EndsWith($"_D{ext}"))
|
|
32
|
+
importer.SetIncludeInBuildDelegate((_) => false);
|
|
33
|
+
else if ((!report.summary.options.HasFlag(BuildOptions.Development)) && importer.assetPath.EndsWith($"_D{ext}"))
|
|
34
|
+
importer.SetIncludeInBuildDelegate((_) => false);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
Debug.Log($"NativePluginBuildProcesser: Done {report.summary.platform}.");
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
#endif
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: fff8d8dd565645d09514f691f39f26f2
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {instanceID: 0}
|
|
9
|
+
userData: null
|
|
10
|
+
assetBundleName: null
|
|
11
|
+
assetBundleVariant: null
|
package/Editor.meta
ADDED
|
@@ -0,0 +1,417 @@
|
|
|
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
|
|
14
|
+
{
|
|
15
|
+
/// <summary>Main entry point for interacting with Foundation.</summary>
|
|
16
|
+
/// <remarks>Provides functionality for initialising, shutting down and managing essential information for the Foundation instance to run.</remarks>
|
|
17
|
+
|
|
18
|
+
public static class CSPFoundation
|
|
19
|
+
{
|
|
20
|
+
#region P/Invoke
|
|
21
|
+
#pragma warning disable IDE1006
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
[
|
|
26
|
+
DllImport(
|
|
27
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
28
|
+
"__Internal"
|
|
29
|
+
#elif DEBUG
|
|
30
|
+
"ConnectedSpacesPlatform_D"
|
|
31
|
+
#else
|
|
32
|
+
"ConnectedSpacesPlatform"
|
|
33
|
+
#endif
|
|
34
|
+
),
|
|
35
|
+
SuppressUnmanagedCodeSecurity
|
|
36
|
+
]
|
|
37
|
+
static extern bool csp_CSPFoundation_Initialise_bool_StringRC_StringRC(IntPtr EndpointRootURI, IntPtr Tenant);
|
|
38
|
+
|
|
39
|
+
[
|
|
40
|
+
DllImport(
|
|
41
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
42
|
+
"__Internal"
|
|
43
|
+
#elif DEBUG
|
|
44
|
+
"ConnectedSpacesPlatform_D"
|
|
45
|
+
#else
|
|
46
|
+
"ConnectedSpacesPlatform"
|
|
47
|
+
#endif
|
|
48
|
+
),
|
|
49
|
+
SuppressUnmanagedCodeSecurity
|
|
50
|
+
]
|
|
51
|
+
static extern bool csp_CSPFoundation_Shutdown_bool();
|
|
52
|
+
|
|
53
|
+
[
|
|
54
|
+
DllImport(
|
|
55
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
56
|
+
"__Internal"
|
|
57
|
+
#elif DEBUG
|
|
58
|
+
"ConnectedSpacesPlatform_D"
|
|
59
|
+
#else
|
|
60
|
+
"ConnectedSpacesPlatform"
|
|
61
|
+
#endif
|
|
62
|
+
),
|
|
63
|
+
SuppressUnmanagedCodeSecurity
|
|
64
|
+
]
|
|
65
|
+
static extern void csp_CSPFoundation_Tick_void();
|
|
66
|
+
|
|
67
|
+
[
|
|
68
|
+
DllImport(
|
|
69
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
70
|
+
"__Internal"
|
|
71
|
+
#elif DEBUG
|
|
72
|
+
"ConnectedSpacesPlatform_D"
|
|
73
|
+
#else
|
|
74
|
+
"ConnectedSpacesPlatform"
|
|
75
|
+
#endif
|
|
76
|
+
),
|
|
77
|
+
SuppressUnmanagedCodeSecurity
|
|
78
|
+
]
|
|
79
|
+
static extern IntPtr csp_CSPFoundation_GetVersion_StringRC();
|
|
80
|
+
|
|
81
|
+
[
|
|
82
|
+
DllImport(
|
|
83
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
84
|
+
"__Internal"
|
|
85
|
+
#elif DEBUG
|
|
86
|
+
"ConnectedSpacesPlatform_D"
|
|
87
|
+
#else
|
|
88
|
+
"ConnectedSpacesPlatform"
|
|
89
|
+
#endif
|
|
90
|
+
),
|
|
91
|
+
SuppressUnmanagedCodeSecurity
|
|
92
|
+
]
|
|
93
|
+
static extern IntPtr csp_CSPFoundation_GetBuildType_StringRC();
|
|
94
|
+
|
|
95
|
+
[
|
|
96
|
+
DllImport(
|
|
97
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
98
|
+
"__Internal"
|
|
99
|
+
#elif DEBUG
|
|
100
|
+
"ConnectedSpacesPlatform_D"
|
|
101
|
+
#else
|
|
102
|
+
"ConnectedSpacesPlatform"
|
|
103
|
+
#endif
|
|
104
|
+
),
|
|
105
|
+
SuppressUnmanagedCodeSecurity
|
|
106
|
+
]
|
|
107
|
+
static extern IntPtr csp_CSPFoundation_GetBuildID_StringRC();
|
|
108
|
+
|
|
109
|
+
[
|
|
110
|
+
DllImport(
|
|
111
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
112
|
+
"__Internal"
|
|
113
|
+
#elif DEBUG
|
|
114
|
+
"ConnectedSpacesPlatform_D"
|
|
115
|
+
#else
|
|
116
|
+
"ConnectedSpacesPlatform"
|
|
117
|
+
#endif
|
|
118
|
+
),
|
|
119
|
+
SuppressUnmanagedCodeSecurity
|
|
120
|
+
]
|
|
121
|
+
static extern int csp_CSPFoundation_GetEntitySystemVersion_int32_t();
|
|
122
|
+
|
|
123
|
+
[
|
|
124
|
+
DllImport(
|
|
125
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
126
|
+
"__Internal"
|
|
127
|
+
#elif DEBUG
|
|
128
|
+
"ConnectedSpacesPlatform_D"
|
|
129
|
+
#else
|
|
130
|
+
"ConnectedSpacesPlatform"
|
|
131
|
+
#endif
|
|
132
|
+
),
|
|
133
|
+
SuppressUnmanagedCodeSecurity
|
|
134
|
+
]
|
|
135
|
+
static extern IntPtr csp_CSPFoundation_GetDeviceId_StringRC();
|
|
136
|
+
|
|
137
|
+
[
|
|
138
|
+
DllImport(
|
|
139
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
140
|
+
"__Internal"
|
|
141
|
+
#elif DEBUG
|
|
142
|
+
"ConnectedSpacesPlatform_D"
|
|
143
|
+
#else
|
|
144
|
+
"ConnectedSpacesPlatform"
|
|
145
|
+
#endif
|
|
146
|
+
),
|
|
147
|
+
SuppressUnmanagedCodeSecurity
|
|
148
|
+
]
|
|
149
|
+
static extern bool csp_CSPFoundation_GetIsInitialised_bool();
|
|
150
|
+
|
|
151
|
+
[
|
|
152
|
+
DllImport(
|
|
153
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
154
|
+
"__Internal"
|
|
155
|
+
#elif DEBUG
|
|
156
|
+
"ConnectedSpacesPlatform_D"
|
|
157
|
+
#else
|
|
158
|
+
"ConnectedSpacesPlatform"
|
|
159
|
+
#endif
|
|
160
|
+
),
|
|
161
|
+
SuppressUnmanagedCodeSecurity
|
|
162
|
+
]
|
|
163
|
+
static extern NativePointer csp_CSPFoundation_GetEndpoints_EndpointURIsRC();
|
|
164
|
+
|
|
165
|
+
[
|
|
166
|
+
DllImport(
|
|
167
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
168
|
+
"__Internal"
|
|
169
|
+
#elif DEBUG
|
|
170
|
+
"ConnectedSpacesPlatform_D"
|
|
171
|
+
#else
|
|
172
|
+
"ConnectedSpacesPlatform"
|
|
173
|
+
#endif
|
|
174
|
+
),
|
|
175
|
+
SuppressUnmanagedCodeSecurity
|
|
176
|
+
]
|
|
177
|
+
static extern void csp_CSPFoundation_SetClientUserAgentInfo_void_ClientUserAgentRC(
|
|
178
|
+
IntPtr ClientUserAgentHeader
|
|
179
|
+
);
|
|
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 NativePointer csp_CSPFoundation_GetClientUserAgentInfo_ClientUserAgentRC();
|
|
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 IntPtr csp_CSPFoundation_GetClientUserAgentString_StringRC();
|
|
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 IntPtr csp_CSPFoundation_GetTenant_StringRC();
|
|
222
|
+
|
|
223
|
+
#pragma warning restore IDE1006
|
|
224
|
+
#endregion
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
/// <summary>Sets the endpoints for the various services needed for foundation, passes over the client header information and initialises the</summary>
|
|
231
|
+
/// <remarks>systems required for foundation to operate.</remarks>
|
|
232
|
+
/// <param name="EndpointRootUR">EndpointRootURI</param>
|
|
233
|
+
/// <param name="Tenant">Tenant for Magnopus Services. Data is not shared between tenants so clients using separate tenants cannot</param>
|
|
234
|
+
/// <remarks>interact with each other.</remarks>
|
|
235
|
+
/// <returns>True for successful initialisation.</returns>
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
public static bool Initialise(string EndpointRootURI, string Tenant)
|
|
239
|
+
{
|
|
240
|
+
var _result = csp_CSPFoundation_Initialise_bool_StringRC_StringRC(
|
|
241
|
+
WrapperHelper.StringToNativeUTF8(EndpointRootURI),
|
|
242
|
+
WrapperHelper.StringToNativeUTF8(Tenant)
|
|
243
|
+
);
|
|
244
|
+
|
|
245
|
+
return _result;
|
|
246
|
+
}
|
|
247
|
+
|
|
248
|
+
/// <summary>This should been used at the end of the of the application lifescyle.</summary>
|
|
249
|
+
/// <remarks>Clears event queues and destroys foundation systems.</remarks>
|
|
250
|
+
/// <remarks>After shutdown, no other Foundation functions should be called until Initialise is called again.</remarks>
|
|
251
|
+
/// <returns>True for successful shutdown</returns>
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
public static bool Shutdown()
|
|
255
|
+
{
|
|
256
|
+
var _result = csp_CSPFoundation_Shutdown_bool();
|
|
257
|
+
|
|
258
|
+
return _result;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
/// <summary>Ticks the event processing of foundation.</summary>
|
|
262
|
+
/// <remarks>This should only be called once per frame from the client application.</remarks>
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
public static void Tick()
|
|
266
|
+
{
|
|
267
|
+
csp_CSPFoundation_Tick_void();
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
/// <summary>Gets the foundation version in use.</summary>
|
|
271
|
+
/// <returns>Returns the commit hash for the foundation build</returns>
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
public static string GetVersion()
|
|
275
|
+
{
|
|
276
|
+
var _result = csp_CSPFoundation_GetVersion_StringRC();
|
|
277
|
+
|
|
278
|
+
var _resultString = WrapperHelper.NativeUTF8ToString(_result);
|
|
279
|
+
Global.Free(_result);
|
|
280
|
+
|
|
281
|
+
return _resultString;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
/// <summary>Gets the foundation build type in use.</summary>
|
|
285
|
+
/// <returns>Returns the build type for the foundation build (DEV or REL)</returns>
|
|
286
|
+
|
|
287
|
+
|
|
288
|
+
public static string GetBuildType()
|
|
289
|
+
{
|
|
290
|
+
var _result = csp_CSPFoundation_GetBuildType_StringRC();
|
|
291
|
+
|
|
292
|
+
var _resultString = WrapperHelper.NativeUTF8ToString(_result);
|
|
293
|
+
Global.Free(_result);
|
|
294
|
+
|
|
295
|
+
return _resultString;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
/// <summary>Gets the full foundation build ID in use.</summary>
|
|
299
|
+
/// <remarks>Generated at project generation time using the lastest commit timestamp and hash.</remarks>
|
|
300
|
+
/// <returns>Returns the build ID for the foundation build</returns>
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
public static string GetBuildID()
|
|
304
|
+
{
|
|
305
|
+
var _result = csp_CSPFoundation_GetBuildID_StringRC();
|
|
306
|
+
|
|
307
|
+
var _resultString = WrapperHelper.NativeUTF8ToString(_result);
|
|
308
|
+
Global.Free(_result);
|
|
309
|
+
|
|
310
|
+
return _resultString;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
/// <summary>Gets the EntitySystemVersion number.</summary>
|
|
314
|
+
/// <remarks>This represents the system used to parse data for Entities,</remarks>
|
|
315
|
+
/// <remarks>and is used to prevent conflicting entity data versions from being used together where we cannot parse both.</remarks>
|
|
316
|
+
/// <remarks>This is currently unused.</remarks>
|
|
317
|
+
/// <returns>The system version number, a manually incremented counter that changes when significant breaking changes occur in the entity</returns>
|
|
318
|
+
/// <remarks>parsing systems</remarks>
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
public static int GetEntitySystemVersion()
|
|
322
|
+
{
|
|
323
|
+
var _result = csp_CSPFoundation_GetEntitySystemVersion_int32_t();
|
|
324
|
+
|
|
325
|
+
return _result;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
/// <summary>Unique identifier for the current device.</summary>
|
|
329
|
+
/// <remarks>Used internally by certain user authentication endpoints.</remarks>
|
|
330
|
+
/// <returns>A string representing the current device</returns>
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
public static string GetDeviceId()
|
|
334
|
+
{
|
|
335
|
+
var _result = csp_CSPFoundation_GetDeviceId_StringRC();
|
|
336
|
+
|
|
337
|
+
var _resultString = WrapperHelper.NativeUTF8ToString(_result);
|
|
338
|
+
Global.Free(_result);
|
|
339
|
+
|
|
340
|
+
return _resultString;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
/// <summary>Is this instance of Foundation initialised.</summary>
|
|
344
|
+
/// <returns>Returns false before Initialise and after Shutdown</returns>
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
public static bool GetIsInitialised()
|
|
348
|
+
{
|
|
349
|
+
var _result = csp_CSPFoundation_GetIsInitialised_bool();
|
|
350
|
+
|
|
351
|
+
return _result;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
/// <summary>Gets endpoints used for all Magnopus service.</summary>
|
|
355
|
+
/// <remarks>Used internally to setup all System classes.</remarks>
|
|
356
|
+
/// <returns>The EndpointURIs class with current endpoint data</returns>
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
public static Csp.EndpointURIs GetEndpoints()
|
|
360
|
+
{
|
|
361
|
+
var _result = new Csp.EndpointURIs(csp_CSPFoundation_GetEndpoints_EndpointURIsRC());
|
|
362
|
+
|
|
363
|
+
return _result;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
/// <summary>Sets a class containing all relevant Client info currently set for Foundation.</summary>
|
|
367
|
+
/// <remarks>Used internally to generate ClientUserAgentString.</remarks>
|
|
368
|
+
/// <param name="The">Client Info class with current Client Info data</param>
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
public static void SetClientUserAgentInfo(Csp.ClientUserAgent ClientUserAgentHeader)
|
|
372
|
+
{
|
|
373
|
+
csp_CSPFoundation_SetClientUserAgentInfo_void_ClientUserAgentRC(ClientUserAgentHeader._ptr);
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
/// <summary>Gets a class containing all relevant Client info currently set for Foundation.</summary>
|
|
377
|
+
/// <returns>The Client Info class with current Client Info data</returns>
|
|
378
|
+
|
|
379
|
+
|
|
380
|
+
public static Csp.ClientUserAgent GetClientUserAgentInfo()
|
|
381
|
+
{
|
|
382
|
+
var _result = new Csp.ClientUserAgent(csp_CSPFoundation_GetClientUserAgentInfo_ClientUserAgentRC());
|
|
383
|
+
|
|
384
|
+
return _result;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
/// <summary>Gets a string containing the Client UserAgent header information.</summary>
|
|
388
|
+
/// <remarks>Used internally in headers for all Magnopus Service requests.</remarks>
|
|
389
|
+
/// <returns>Returns Client UserAgent header</returns>
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
public static string GetClientUserAgentString()
|
|
393
|
+
{
|
|
394
|
+
var _result = csp_CSPFoundation_GetClientUserAgentString_StringRC();
|
|
395
|
+
|
|
396
|
+
var _resultString = WrapperHelper.NativeUTF8ToString(_result);
|
|
397
|
+
Global.Free(_result);
|
|
398
|
+
|
|
399
|
+
return _resultString;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
/// <summary>Gets the tenant that foundation is currently using, based on what was provided during initialisation.</summary>
|
|
403
|
+
/// <returns>Csp::common::string&</returns>
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
public static string GetTenant()
|
|
407
|
+
{
|
|
408
|
+
var _result = csp_CSPFoundation_GetTenant_StringRC();
|
|
409
|
+
|
|
410
|
+
var _resultString = WrapperHelper.NativeUTF8ToString(_result);
|
|
411
|
+
Global.Free(_result);
|
|
412
|
+
|
|
413
|
+
return _resultString;
|
|
414
|
+
}
|
|
415
|
+
}
|
|
416
|
+
}
|
|
417
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 0f698f6b0bc54a458c1ac6996718d923
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {instanceID: 0}
|
|
9
|
+
userData: null
|
|
10
|
+
assetBundleName: null
|
|
11
|
+
assetBundleVariant: null
|