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,579 @@
|
|
|
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 ExternalLinkSpaceComponent
|
|
16
|
+
/// <summary>Data representation of an ExternalLinkSpaceComponent.</summary>
|
|
17
|
+
/// @note This component can be used to handle external URLs that can be opened in game from a space.
|
|
18
|
+
|
|
19
|
+
public class ExternalLinkSpaceComponent
|
|
20
|
+
: Csp.Multiplayer.ComponentBase,
|
|
21
|
+
Csp.Multiplayer.IEnableableComponent,
|
|
22
|
+
Csp.Multiplayer.IVisibleComponent,
|
|
23
|
+
IDisposable
|
|
24
|
+
{
|
|
25
|
+
internal override string _safeTypeName { get; } = "csp_multiplayer_ExternalLinkSpaceComponent";
|
|
26
|
+
|
|
27
|
+
#region P/Invoke
|
|
28
|
+
#pragma warning disable IDE1006
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
[
|
|
33
|
+
DllImport(
|
|
34
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
35
|
+
"__Internal"
|
|
36
|
+
#elif DEBUG
|
|
37
|
+
"ConnectedSpacesPlatform_D"
|
|
38
|
+
#else
|
|
39
|
+
"ConnectedSpacesPlatform"
|
|
40
|
+
#endif
|
|
41
|
+
),
|
|
42
|
+
SuppressUnmanagedCodeSecurity
|
|
43
|
+
]
|
|
44
|
+
static extern NativePointer csp_multiplayer_ExternalLinkSpaceComponent_Ctor_SpaceEntityP(IntPtr Parent);
|
|
45
|
+
|
|
46
|
+
[
|
|
47
|
+
DllImport(
|
|
48
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
49
|
+
"__Internal"
|
|
50
|
+
#elif DEBUG
|
|
51
|
+
"ConnectedSpacesPlatform_D"
|
|
52
|
+
#else
|
|
53
|
+
"ConnectedSpacesPlatform"
|
|
54
|
+
#endif
|
|
55
|
+
),
|
|
56
|
+
SuppressUnmanagedCodeSecurity
|
|
57
|
+
]
|
|
58
|
+
static extern IntPtr csp_multiplayer_ExternalLinkSpaceComponent_GetNameC_StringRC(IntPtr @class);
|
|
59
|
+
|
|
60
|
+
[
|
|
61
|
+
DllImport(
|
|
62
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
63
|
+
"__Internal"
|
|
64
|
+
#elif DEBUG
|
|
65
|
+
"ConnectedSpacesPlatform_D"
|
|
66
|
+
#else
|
|
67
|
+
"ConnectedSpacesPlatform"
|
|
68
|
+
#endif
|
|
69
|
+
),
|
|
70
|
+
SuppressUnmanagedCodeSecurity
|
|
71
|
+
]
|
|
72
|
+
static extern void csp_multiplayer_ExternalLinkSpaceComponent_SetName_void_StringRC(
|
|
73
|
+
IntPtr @class,
|
|
74
|
+
IntPtr Value
|
|
75
|
+
);
|
|
76
|
+
|
|
77
|
+
[
|
|
78
|
+
DllImport(
|
|
79
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
80
|
+
"__Internal"
|
|
81
|
+
#elif DEBUG
|
|
82
|
+
"ConnectedSpacesPlatform_D"
|
|
83
|
+
#else
|
|
84
|
+
"ConnectedSpacesPlatform"
|
|
85
|
+
#endif
|
|
86
|
+
),
|
|
87
|
+
SuppressUnmanagedCodeSecurity
|
|
88
|
+
]
|
|
89
|
+
static extern IntPtr csp_multiplayer_ExternalLinkSpaceComponent_GetLinkUrlC_StringRC(IntPtr @class);
|
|
90
|
+
|
|
91
|
+
[
|
|
92
|
+
DllImport(
|
|
93
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
94
|
+
"__Internal"
|
|
95
|
+
#elif DEBUG
|
|
96
|
+
"ConnectedSpacesPlatform_D"
|
|
97
|
+
#else
|
|
98
|
+
"ConnectedSpacesPlatform"
|
|
99
|
+
#endif
|
|
100
|
+
),
|
|
101
|
+
SuppressUnmanagedCodeSecurity
|
|
102
|
+
]
|
|
103
|
+
static extern void csp_multiplayer_ExternalLinkSpaceComponent_SetLinkUrl_void_StringRC(
|
|
104
|
+
IntPtr @class,
|
|
105
|
+
IntPtr Value
|
|
106
|
+
);
|
|
107
|
+
|
|
108
|
+
[
|
|
109
|
+
DllImport(
|
|
110
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
111
|
+
"__Internal"
|
|
112
|
+
#elif DEBUG
|
|
113
|
+
"ConnectedSpacesPlatform_D"
|
|
114
|
+
#else
|
|
115
|
+
"ConnectedSpacesPlatform"
|
|
116
|
+
#endif
|
|
117
|
+
),
|
|
118
|
+
SuppressUnmanagedCodeSecurity
|
|
119
|
+
]
|
|
120
|
+
static extern NativePointer csp_multiplayer_ExternalLinkSpaceComponent_GetPositionC_Vector3RC(IntPtr @class);
|
|
121
|
+
|
|
122
|
+
[
|
|
123
|
+
DllImport(
|
|
124
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
125
|
+
"__Internal"
|
|
126
|
+
#elif DEBUG
|
|
127
|
+
"ConnectedSpacesPlatform_D"
|
|
128
|
+
#else
|
|
129
|
+
"ConnectedSpacesPlatform"
|
|
130
|
+
#endif
|
|
131
|
+
),
|
|
132
|
+
SuppressUnmanagedCodeSecurity
|
|
133
|
+
]
|
|
134
|
+
static extern void csp_multiplayer_ExternalLinkSpaceComponent_SetPosition_void_Vector3RC(
|
|
135
|
+
IntPtr @class,
|
|
136
|
+
IntPtr Value
|
|
137
|
+
);
|
|
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 NativePointer csp_multiplayer_ExternalLinkSpaceComponent_GetRotationC_Vector4RC(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_ExternalLinkSpaceComponent_SetRotation_void_Vector4RC(
|
|
166
|
+
IntPtr @class,
|
|
167
|
+
IntPtr Value
|
|
168
|
+
);
|
|
169
|
+
|
|
170
|
+
[
|
|
171
|
+
DllImport(
|
|
172
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
173
|
+
"__Internal"
|
|
174
|
+
#elif DEBUG
|
|
175
|
+
"ConnectedSpacesPlatform_D"
|
|
176
|
+
#else
|
|
177
|
+
"ConnectedSpacesPlatform"
|
|
178
|
+
#endif
|
|
179
|
+
),
|
|
180
|
+
SuppressUnmanagedCodeSecurity
|
|
181
|
+
]
|
|
182
|
+
static extern NativePointer csp_multiplayer_ExternalLinkSpaceComponent_GetScaleC_Vector3RC(IntPtr @class);
|
|
183
|
+
|
|
184
|
+
[
|
|
185
|
+
DllImport(
|
|
186
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
187
|
+
"__Internal"
|
|
188
|
+
#elif DEBUG
|
|
189
|
+
"ConnectedSpacesPlatform_D"
|
|
190
|
+
#else
|
|
191
|
+
"ConnectedSpacesPlatform"
|
|
192
|
+
#endif
|
|
193
|
+
),
|
|
194
|
+
SuppressUnmanagedCodeSecurity
|
|
195
|
+
]
|
|
196
|
+
static extern void csp_multiplayer_ExternalLinkSpaceComponent_SetScale_void_Vector3RC(
|
|
197
|
+
IntPtr @class,
|
|
198
|
+
IntPtr Value
|
|
199
|
+
);
|
|
200
|
+
|
|
201
|
+
[
|
|
202
|
+
DllImport(
|
|
203
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
204
|
+
"__Internal"
|
|
205
|
+
#elif DEBUG
|
|
206
|
+
"ConnectedSpacesPlatform_D"
|
|
207
|
+
#else
|
|
208
|
+
"ConnectedSpacesPlatform"
|
|
209
|
+
#endif
|
|
210
|
+
),
|
|
211
|
+
SuppressUnmanagedCodeSecurity
|
|
212
|
+
]
|
|
213
|
+
static extern IntPtr csp_multiplayer_ExternalLinkSpaceComponent_GetDisplayTextC_StringRC(IntPtr @class);
|
|
214
|
+
|
|
215
|
+
[
|
|
216
|
+
DllImport(
|
|
217
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
218
|
+
"__Internal"
|
|
219
|
+
#elif DEBUG
|
|
220
|
+
"ConnectedSpacesPlatform_D"
|
|
221
|
+
#else
|
|
222
|
+
"ConnectedSpacesPlatform"
|
|
223
|
+
#endif
|
|
224
|
+
),
|
|
225
|
+
SuppressUnmanagedCodeSecurity
|
|
226
|
+
]
|
|
227
|
+
static extern void csp_multiplayer_ExternalLinkSpaceComponent_SetDisplayText_void_StringRC(
|
|
228
|
+
IntPtr @class,
|
|
229
|
+
IntPtr Value
|
|
230
|
+
);
|
|
231
|
+
|
|
232
|
+
[
|
|
233
|
+
DllImport(
|
|
234
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
235
|
+
"__Internal"
|
|
236
|
+
#elif DEBUG
|
|
237
|
+
"ConnectedSpacesPlatform_D"
|
|
238
|
+
#else
|
|
239
|
+
"ConnectedSpacesPlatform"
|
|
240
|
+
#endif
|
|
241
|
+
),
|
|
242
|
+
SuppressUnmanagedCodeSecurity
|
|
243
|
+
]
|
|
244
|
+
static extern bool csp_multiplayer_ExternalLinkSpaceComponent_GetIsEnabledC_bool(IntPtr @class);
|
|
245
|
+
|
|
246
|
+
[
|
|
247
|
+
DllImport(
|
|
248
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
249
|
+
"__Internal"
|
|
250
|
+
#elif DEBUG
|
|
251
|
+
"ConnectedSpacesPlatform_D"
|
|
252
|
+
#else
|
|
253
|
+
"ConnectedSpacesPlatform"
|
|
254
|
+
#endif
|
|
255
|
+
),
|
|
256
|
+
SuppressUnmanagedCodeSecurity
|
|
257
|
+
]
|
|
258
|
+
static extern void csp_multiplayer_ExternalLinkSpaceComponent_SetIsEnabled_void_bool(
|
|
259
|
+
IntPtr @class,
|
|
260
|
+
bool InValue
|
|
261
|
+
);
|
|
262
|
+
|
|
263
|
+
[
|
|
264
|
+
DllImport(
|
|
265
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
266
|
+
"__Internal"
|
|
267
|
+
#elif DEBUG
|
|
268
|
+
"ConnectedSpacesPlatform_D"
|
|
269
|
+
#else
|
|
270
|
+
"ConnectedSpacesPlatform"
|
|
271
|
+
#endif
|
|
272
|
+
),
|
|
273
|
+
SuppressUnmanagedCodeSecurity
|
|
274
|
+
]
|
|
275
|
+
static extern bool csp_multiplayer_ExternalLinkSpaceComponent_GetIsVisibleC_bool(IntPtr @class);
|
|
276
|
+
|
|
277
|
+
[
|
|
278
|
+
DllImport(
|
|
279
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
280
|
+
"__Internal"
|
|
281
|
+
#elif DEBUG
|
|
282
|
+
"ConnectedSpacesPlatform_D"
|
|
283
|
+
#else
|
|
284
|
+
"ConnectedSpacesPlatform"
|
|
285
|
+
#endif
|
|
286
|
+
),
|
|
287
|
+
SuppressUnmanagedCodeSecurity
|
|
288
|
+
]
|
|
289
|
+
static extern void csp_multiplayer_ExternalLinkSpaceComponent_SetIsVisible_void_bool(
|
|
290
|
+
IntPtr @class,
|
|
291
|
+
bool InValue
|
|
292
|
+
);
|
|
293
|
+
|
|
294
|
+
[
|
|
295
|
+
DllImport(
|
|
296
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
297
|
+
"__Internal"
|
|
298
|
+
#elif DEBUG
|
|
299
|
+
"ConnectedSpacesPlatform_D"
|
|
300
|
+
#else
|
|
301
|
+
"ConnectedSpacesPlatform"
|
|
302
|
+
#endif
|
|
303
|
+
),
|
|
304
|
+
SuppressUnmanagedCodeSecurity
|
|
305
|
+
]
|
|
306
|
+
static extern bool csp_multiplayer_ExternalLinkSpaceComponent_GetIsARVisibleC_bool(IntPtr @class);
|
|
307
|
+
|
|
308
|
+
[
|
|
309
|
+
DllImport(
|
|
310
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
311
|
+
"__Internal"
|
|
312
|
+
#elif DEBUG
|
|
313
|
+
"ConnectedSpacesPlatform_D"
|
|
314
|
+
#else
|
|
315
|
+
"ConnectedSpacesPlatform"
|
|
316
|
+
#endif
|
|
317
|
+
),
|
|
318
|
+
SuppressUnmanagedCodeSecurity
|
|
319
|
+
]
|
|
320
|
+
static extern void csp_multiplayer_ExternalLinkSpaceComponent_SetIsARVisible_void_bool(
|
|
321
|
+
IntPtr @class,
|
|
322
|
+
bool InValue
|
|
323
|
+
);
|
|
324
|
+
|
|
325
|
+
[
|
|
326
|
+
DllImport(
|
|
327
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
328
|
+
"__Internal"
|
|
329
|
+
#elif DEBUG
|
|
330
|
+
"ConnectedSpacesPlatform_D"
|
|
331
|
+
#else
|
|
332
|
+
"ConnectedSpacesPlatform"
|
|
333
|
+
#endif
|
|
334
|
+
),
|
|
335
|
+
SuppressUnmanagedCodeSecurity
|
|
336
|
+
]
|
|
337
|
+
static extern void csp_multiplayer_ExternalLinkSpaceComponent_Dtor(IntPtr @class);
|
|
338
|
+
|
|
339
|
+
#pragma warning restore IDE1006
|
|
340
|
+
#endregion
|
|
341
|
+
|
|
342
|
+
internal ExternalLinkSpaceComponent(NativePointer ptr) : base(ptr) { }
|
|
343
|
+
|
|
344
|
+
public ExternalLinkSpaceComponent(Csp.Multiplayer.ComponentBase baseInstance)
|
|
345
|
+
: base(new NativePointer(baseInstance._ptr, baseInstance._ownsPtr ? (byte)1 : (byte)0))
|
|
346
|
+
{
|
|
347
|
+
// Prevent previous instance from freeing underlying pointer when destroyed
|
|
348
|
+
baseInstance._ownsPtr = false;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
/// <summary>Creates an external link component that can be added to an existing space entity.</summary>
|
|
352
|
+
/// <param name="Parent">- The space entity to which this new component will belong to.</param>
|
|
353
|
+
|
|
354
|
+
public ExternalLinkSpaceComponent(Csp.Multiplayer.SpaceEntity Parent)
|
|
355
|
+
{
|
|
356
|
+
var np = csp_multiplayer_ExternalLinkSpaceComponent_Ctor_SpaceEntityP(Parent._ptr);
|
|
357
|
+
_ptr = np.Pointer;
|
|
358
|
+
_ownsPtr = np.OwnsOwnData;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
/// <summary>Gets the name of this external link component.</summary>
|
|
362
|
+
|
|
363
|
+
|
|
364
|
+
public string GetName()
|
|
365
|
+
{
|
|
366
|
+
var _result = csp_multiplayer_ExternalLinkSpaceComponent_GetNameC_StringRC(_ptr);
|
|
367
|
+
|
|
368
|
+
var _resultString = WrapperHelper.NativeUTF8ToString(_result);
|
|
369
|
+
Global.Free(_result);
|
|
370
|
+
|
|
371
|
+
return _resultString;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
/// <summary>Sets the name for this external link component.</summary>
|
|
375
|
+
/// <param name="Value">- The new name to assign to this external link componenent.</param>
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
public void SetName(string Value)
|
|
379
|
+
{
|
|
380
|
+
csp_multiplayer_ExternalLinkSpaceComponent_SetName_void_StringRC(
|
|
381
|
+
_ptr,
|
|
382
|
+
WrapperHelper.StringToNativeUTF8(Value)
|
|
383
|
+
);
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
/// <summary>Gets the URL address to which this external link component redirects the user on trigger.</summary>
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
public string GetLinkUrl()
|
|
390
|
+
{
|
|
391
|
+
var _result = csp_multiplayer_ExternalLinkSpaceComponent_GetLinkUrlC_StringRC(_ptr);
|
|
392
|
+
|
|
393
|
+
var _resultString = WrapperHelper.NativeUTF8ToString(_result);
|
|
394
|
+
Global.Free(_result);
|
|
395
|
+
|
|
396
|
+
return _resultString;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
/// <summary>Sets the URL address to which this external link component redirects the user to on trigger.</summary>
|
|
400
|
+
/// <param name="Value">- The URL to be assigned to this external link component.</param>
|
|
401
|
+
|
|
402
|
+
|
|
403
|
+
public void SetLinkUrl(string Value)
|
|
404
|
+
{
|
|
405
|
+
csp_multiplayer_ExternalLinkSpaceComponent_SetLinkUrl_void_StringRC(
|
|
406
|
+
_ptr,
|
|
407
|
+
WrapperHelper.StringToNativeUTF8(Value)
|
|
408
|
+
);
|
|
409
|
+
}
|
|
410
|
+
|
|
411
|
+
/// <summary>Gets the 3D position in world coordinates where the origin of this component is located.</summary>
|
|
412
|
+
|
|
413
|
+
|
|
414
|
+
public Csp.Common.Vector3 GetPosition()
|
|
415
|
+
{
|
|
416
|
+
var _result = new Csp.Common.Vector3(
|
|
417
|
+
csp_multiplayer_ExternalLinkSpaceComponent_GetPositionC_Vector3RC(_ptr)
|
|
418
|
+
);
|
|
419
|
+
|
|
420
|
+
return _result;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
/// <summary>Sets the 3D position in world coordinates where the origin of this component will be located.</summary>
|
|
424
|
+
/// <param name="Value">- The new 3D position assigned to the origin of this component.</param>
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
public void SetPosition(Csp.Common.Vector3 Value)
|
|
428
|
+
{
|
|
429
|
+
csp_multiplayer_ExternalLinkSpaceComponent_SetPosition_void_Vector3RC(_ptr, Value._ptr);
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
/// <summary>Gets the quaternion of the rotation of the origin of this component.</summary>
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
public Csp.Common.Vector4 GetRotation()
|
|
436
|
+
{
|
|
437
|
+
var _result = new Csp.Common.Vector4(
|
|
438
|
+
csp_multiplayer_ExternalLinkSpaceComponent_GetRotationC_Vector4RC(_ptr)
|
|
439
|
+
);
|
|
440
|
+
|
|
441
|
+
return _result;
|
|
442
|
+
}
|
|
443
|
+
|
|
444
|
+
/// <summary>Sets the quaternion of the rotation of the origin of this component.</summary>
|
|
445
|
+
/// <param name="Value">- The new rotation assigned to the origin of this component.</param>
|
|
446
|
+
|
|
447
|
+
|
|
448
|
+
public void SetRotation(Csp.Common.Vector4 Value)
|
|
449
|
+
{
|
|
450
|
+
csp_multiplayer_ExternalLinkSpaceComponent_SetRotation_void_Vector4RC(_ptr, Value._ptr);
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
/// <summary>Gets the 3D scale of this component.</summary>
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
public Csp.Common.Vector3 GetScale()
|
|
457
|
+
{
|
|
458
|
+
var _result = new Csp.Common.Vector3(csp_multiplayer_ExternalLinkSpaceComponent_GetScaleC_Vector3RC(_ptr));
|
|
459
|
+
|
|
460
|
+
return _result;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
/// <summary>Sets the 3D scale of this component.</summary>
|
|
464
|
+
/// <param name="Value">- The new 3D scale assigned to this component.</param>
|
|
465
|
+
|
|
466
|
+
|
|
467
|
+
public void SetScale(Csp.Common.Vector3 Value)
|
|
468
|
+
{
|
|
469
|
+
csp_multiplayer_ExternalLinkSpaceComponent_SetScale_void_Vector3RC(_ptr, Value._ptr);
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
/// <summary>Gets the text that will be displayed by the component as hyperlink to the URL it redirects to.</summary>
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
public string GetDisplayText()
|
|
476
|
+
{
|
|
477
|
+
var _result = csp_multiplayer_ExternalLinkSpaceComponent_GetDisplayTextC_StringRC(_ptr);
|
|
478
|
+
|
|
479
|
+
var _resultString = WrapperHelper.NativeUTF8ToString(_result);
|
|
480
|
+
Global.Free(_result);
|
|
481
|
+
|
|
482
|
+
return _resultString;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
/// <summary>Sets the text that will be displayed by the component as hyperlink to the URL it redirects to.</summary>
|
|
486
|
+
/// <param name="Value">- The new text to be displayed as hyperlink.</param>
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
public void SetDisplayText(string Value)
|
|
490
|
+
{
|
|
491
|
+
csp_multiplayer_ExternalLinkSpaceComponent_SetDisplayText_void_StringRC(
|
|
492
|
+
_ptr,
|
|
493
|
+
WrapperHelper.StringToNativeUTF8(Value)
|
|
494
|
+
);
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
/// <remarks>\addtogroup IEnableableComponent</remarks>
|
|
498
|
+
/// @{
|
|
499
|
+
/// @copydoc IEnableableComponent::GetIsEnabled()
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
public bool GetIsEnabled()
|
|
503
|
+
{
|
|
504
|
+
var _result = csp_multiplayer_ExternalLinkSpaceComponent_GetIsEnabledC_bool(_ptr);
|
|
505
|
+
|
|
506
|
+
return _result;
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
/// @copydoc IEnableableComponent::SetIsEnabled()
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
public void SetIsEnabled(bool InValue)
|
|
513
|
+
{
|
|
514
|
+
csp_multiplayer_ExternalLinkSpaceComponent_SetIsEnabled_void_bool(_ptr, InValue);
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
/// @}
|
|
518
|
+
/// <remarks>\addtogroup IVisibleComponent</remarks>
|
|
519
|
+
/// @{
|
|
520
|
+
/// @copydoc IVisibleComponent::GetIsVisible()
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
public virtual bool GetIsVisible()
|
|
524
|
+
{
|
|
525
|
+
var _result = csp_multiplayer_ExternalLinkSpaceComponent_GetIsVisibleC_bool(_ptr);
|
|
526
|
+
|
|
527
|
+
return _result;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
/// @copydoc IVisibleComponent::SetIsVisible()
|
|
531
|
+
|
|
532
|
+
|
|
533
|
+
public virtual void SetIsVisible(bool InValue)
|
|
534
|
+
{
|
|
535
|
+
csp_multiplayer_ExternalLinkSpaceComponent_SetIsVisible_void_bool(_ptr, InValue);
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
/// @copydoc IVisibleComponent::GetIsARVisible()
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
public virtual bool GetIsARVisible()
|
|
542
|
+
{
|
|
543
|
+
var _result = csp_multiplayer_ExternalLinkSpaceComponent_GetIsARVisibleC_bool(_ptr);
|
|
544
|
+
|
|
545
|
+
return _result;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
/// @copydoc IVisibleComponent::SetIsARVisible()
|
|
549
|
+
|
|
550
|
+
|
|
551
|
+
public virtual void SetIsARVisible(bool InValue)
|
|
552
|
+
{
|
|
553
|
+
csp_multiplayer_ExternalLinkSpaceComponent_SetIsARVisible_void_bool(_ptr, InValue);
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
~ExternalLinkSpaceComponent()
|
|
557
|
+
{
|
|
558
|
+
//RealDispose();
|
|
559
|
+
}
|
|
560
|
+
|
|
561
|
+
void RealDispose()
|
|
562
|
+
{
|
|
563
|
+
if (_ownsPtr && !_disposed)
|
|
564
|
+
{
|
|
565
|
+
csp_multiplayer_ExternalLinkSpaceComponent_Dtor(_ptr);
|
|
566
|
+
_disposed = true;
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
_disposed = true;
|
|
570
|
+
}
|
|
571
|
+
|
|
572
|
+
new public void Dispose()
|
|
573
|
+
{
|
|
574
|
+
RealDispose();
|
|
575
|
+
GC.SuppressFinalize(this);
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 396930556046494da44b9e04341886ef
|
|
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
|
|
@@ -0,0 +1,30 @@
|
|
|
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
|
+
/// <summary>Enumerates the list of properties that can be replicated for a fiducial marker space component.</summary>
|
|
16
|
+
|
|
17
|
+
public enum FiducialMarkerPropertyKeys
|
|
18
|
+
{
|
|
19
|
+
Name,
|
|
20
|
+
MarkerAssetId,
|
|
21
|
+
AssetCollectionId,
|
|
22
|
+
Position,
|
|
23
|
+
Rotation,
|
|
24
|
+
Scale,
|
|
25
|
+
IsVisible,
|
|
26
|
+
IsARVisible,
|
|
27
|
+
Num,
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 7847a65072744801ba3c60df9256b21f
|
|
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
|