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,1187 @@
|
|
|
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 VideoPlayerSpaceComponent
|
|
16
|
+
/// <summary>Data representation of an VideoPlayerSpaceComponent.</summary>
|
|
17
|
+
|
|
18
|
+
public class VideoPlayerSpaceComponent
|
|
19
|
+
: Csp.Multiplayer.ComponentBase,
|
|
20
|
+
Csp.Multiplayer.IVisibleComponent,
|
|
21
|
+
Csp.Multiplayer.IEnableableComponent,
|
|
22
|
+
IDisposable
|
|
23
|
+
{
|
|
24
|
+
internal override string _safeTypeName { get; } = "csp_multiplayer_VideoPlayerSpaceComponent";
|
|
25
|
+
|
|
26
|
+
#region P/Invoke
|
|
27
|
+
#pragma warning disable IDE1006
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
[
|
|
32
|
+
DllImport(
|
|
33
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
34
|
+
"__Internal"
|
|
35
|
+
#elif DEBUG
|
|
36
|
+
"ConnectedSpacesPlatform_D"
|
|
37
|
+
#else
|
|
38
|
+
"ConnectedSpacesPlatform"
|
|
39
|
+
#endif
|
|
40
|
+
),
|
|
41
|
+
SuppressUnmanagedCodeSecurity
|
|
42
|
+
]
|
|
43
|
+
static extern NativePointer csp_multiplayer_VideoPlayerSpaceComponent_Ctor_SpaceEntityP(IntPtr Parent);
|
|
44
|
+
|
|
45
|
+
[
|
|
46
|
+
DllImport(
|
|
47
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
48
|
+
"__Internal"
|
|
49
|
+
#elif DEBUG
|
|
50
|
+
"ConnectedSpacesPlatform_D"
|
|
51
|
+
#else
|
|
52
|
+
"ConnectedSpacesPlatform"
|
|
53
|
+
#endif
|
|
54
|
+
),
|
|
55
|
+
SuppressUnmanagedCodeSecurity
|
|
56
|
+
]
|
|
57
|
+
static extern IntPtr csp_multiplayer_VideoPlayerSpaceComponent_GetNameC_StringRC(IntPtr @class);
|
|
58
|
+
|
|
59
|
+
[
|
|
60
|
+
DllImport(
|
|
61
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
62
|
+
"__Internal"
|
|
63
|
+
#elif DEBUG
|
|
64
|
+
"ConnectedSpacesPlatform_D"
|
|
65
|
+
#else
|
|
66
|
+
"ConnectedSpacesPlatform"
|
|
67
|
+
#endif
|
|
68
|
+
),
|
|
69
|
+
SuppressUnmanagedCodeSecurity
|
|
70
|
+
]
|
|
71
|
+
static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetName_void_StringRC(IntPtr @class, IntPtr Value);
|
|
72
|
+
|
|
73
|
+
[
|
|
74
|
+
DllImport(
|
|
75
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
76
|
+
"__Internal"
|
|
77
|
+
#elif DEBUG
|
|
78
|
+
"ConnectedSpacesPlatform_D"
|
|
79
|
+
#else
|
|
80
|
+
"ConnectedSpacesPlatform"
|
|
81
|
+
#endif
|
|
82
|
+
),
|
|
83
|
+
SuppressUnmanagedCodeSecurity
|
|
84
|
+
]
|
|
85
|
+
static extern IntPtr csp_multiplayer_VideoPlayerSpaceComponent_GetVideoAssetIdC_StringRC(IntPtr @class);
|
|
86
|
+
|
|
87
|
+
[
|
|
88
|
+
DllImport(
|
|
89
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
90
|
+
"__Internal"
|
|
91
|
+
#elif DEBUG
|
|
92
|
+
"ConnectedSpacesPlatform_D"
|
|
93
|
+
#else
|
|
94
|
+
"ConnectedSpacesPlatform"
|
|
95
|
+
#endif
|
|
96
|
+
),
|
|
97
|
+
SuppressUnmanagedCodeSecurity
|
|
98
|
+
]
|
|
99
|
+
static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetVideoAssetId_void_StringRC(
|
|
100
|
+
IntPtr @class,
|
|
101
|
+
IntPtr Value
|
|
102
|
+
);
|
|
103
|
+
|
|
104
|
+
[
|
|
105
|
+
DllImport(
|
|
106
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
107
|
+
"__Internal"
|
|
108
|
+
#elif DEBUG
|
|
109
|
+
"ConnectedSpacesPlatform_D"
|
|
110
|
+
#else
|
|
111
|
+
"ConnectedSpacesPlatform"
|
|
112
|
+
#endif
|
|
113
|
+
),
|
|
114
|
+
SuppressUnmanagedCodeSecurity
|
|
115
|
+
]
|
|
116
|
+
static extern IntPtr csp_multiplayer_VideoPlayerSpaceComponent_GetVideoAssetURLC_StringRC(IntPtr @class);
|
|
117
|
+
|
|
118
|
+
[
|
|
119
|
+
DllImport(
|
|
120
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
121
|
+
"__Internal"
|
|
122
|
+
#elif DEBUG
|
|
123
|
+
"ConnectedSpacesPlatform_D"
|
|
124
|
+
#else
|
|
125
|
+
"ConnectedSpacesPlatform"
|
|
126
|
+
#endif
|
|
127
|
+
),
|
|
128
|
+
SuppressUnmanagedCodeSecurity
|
|
129
|
+
]
|
|
130
|
+
static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetVideoAssetURL_void_StringRC(
|
|
131
|
+
IntPtr @class,
|
|
132
|
+
IntPtr Value
|
|
133
|
+
);
|
|
134
|
+
|
|
135
|
+
[
|
|
136
|
+
DllImport(
|
|
137
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
138
|
+
"__Internal"
|
|
139
|
+
#elif DEBUG
|
|
140
|
+
"ConnectedSpacesPlatform_D"
|
|
141
|
+
#else
|
|
142
|
+
"ConnectedSpacesPlatform"
|
|
143
|
+
#endif
|
|
144
|
+
),
|
|
145
|
+
SuppressUnmanagedCodeSecurity
|
|
146
|
+
]
|
|
147
|
+
static extern IntPtr csp_multiplayer_VideoPlayerSpaceComponent_GetAssetCollectionIdC_StringRC(IntPtr @class);
|
|
148
|
+
|
|
149
|
+
[
|
|
150
|
+
DllImport(
|
|
151
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
152
|
+
"__Internal"
|
|
153
|
+
#elif DEBUG
|
|
154
|
+
"ConnectedSpacesPlatform_D"
|
|
155
|
+
#else
|
|
156
|
+
"ConnectedSpacesPlatform"
|
|
157
|
+
#endif
|
|
158
|
+
),
|
|
159
|
+
SuppressUnmanagedCodeSecurity
|
|
160
|
+
]
|
|
161
|
+
static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetAssetCollectionId_void_StringRC(
|
|
162
|
+
IntPtr @class,
|
|
163
|
+
IntPtr Value
|
|
164
|
+
);
|
|
165
|
+
|
|
166
|
+
[
|
|
167
|
+
DllImport(
|
|
168
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
169
|
+
"__Internal"
|
|
170
|
+
#elif DEBUG
|
|
171
|
+
"ConnectedSpacesPlatform_D"
|
|
172
|
+
#else
|
|
173
|
+
"ConnectedSpacesPlatform"
|
|
174
|
+
#endif
|
|
175
|
+
),
|
|
176
|
+
SuppressUnmanagedCodeSecurity
|
|
177
|
+
]
|
|
178
|
+
static extern NativePointer csp_multiplayer_VideoPlayerSpaceComponent_GetPositionC_Vector3RC(IntPtr @class);
|
|
179
|
+
|
|
180
|
+
[
|
|
181
|
+
DllImport(
|
|
182
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
183
|
+
"__Internal"
|
|
184
|
+
#elif DEBUG
|
|
185
|
+
"ConnectedSpacesPlatform_D"
|
|
186
|
+
#else
|
|
187
|
+
"ConnectedSpacesPlatform"
|
|
188
|
+
#endif
|
|
189
|
+
),
|
|
190
|
+
SuppressUnmanagedCodeSecurity
|
|
191
|
+
]
|
|
192
|
+
static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetPosition_void_Vector3RC(
|
|
193
|
+
IntPtr @class,
|
|
194
|
+
IntPtr Value
|
|
195
|
+
);
|
|
196
|
+
|
|
197
|
+
[
|
|
198
|
+
DllImport(
|
|
199
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
200
|
+
"__Internal"
|
|
201
|
+
#elif DEBUG
|
|
202
|
+
"ConnectedSpacesPlatform_D"
|
|
203
|
+
#else
|
|
204
|
+
"ConnectedSpacesPlatform"
|
|
205
|
+
#endif
|
|
206
|
+
),
|
|
207
|
+
SuppressUnmanagedCodeSecurity
|
|
208
|
+
]
|
|
209
|
+
static extern NativePointer csp_multiplayer_VideoPlayerSpaceComponent_GetRotationC_Vector4RC(IntPtr @class);
|
|
210
|
+
|
|
211
|
+
[
|
|
212
|
+
DllImport(
|
|
213
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
214
|
+
"__Internal"
|
|
215
|
+
#elif DEBUG
|
|
216
|
+
"ConnectedSpacesPlatform_D"
|
|
217
|
+
#else
|
|
218
|
+
"ConnectedSpacesPlatform"
|
|
219
|
+
#endif
|
|
220
|
+
),
|
|
221
|
+
SuppressUnmanagedCodeSecurity
|
|
222
|
+
]
|
|
223
|
+
static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetRotation_void_Vector4RC(
|
|
224
|
+
IntPtr @class,
|
|
225
|
+
IntPtr Value
|
|
226
|
+
);
|
|
227
|
+
|
|
228
|
+
[
|
|
229
|
+
DllImport(
|
|
230
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
231
|
+
"__Internal"
|
|
232
|
+
#elif DEBUG
|
|
233
|
+
"ConnectedSpacesPlatform_D"
|
|
234
|
+
#else
|
|
235
|
+
"ConnectedSpacesPlatform"
|
|
236
|
+
#endif
|
|
237
|
+
),
|
|
238
|
+
SuppressUnmanagedCodeSecurity
|
|
239
|
+
]
|
|
240
|
+
static extern NativePointer csp_multiplayer_VideoPlayerSpaceComponent_GetScaleC_Vector3RC(IntPtr @class);
|
|
241
|
+
|
|
242
|
+
[
|
|
243
|
+
DllImport(
|
|
244
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
245
|
+
"__Internal"
|
|
246
|
+
#elif DEBUG
|
|
247
|
+
"ConnectedSpacesPlatform_D"
|
|
248
|
+
#else
|
|
249
|
+
"ConnectedSpacesPlatform"
|
|
250
|
+
#endif
|
|
251
|
+
),
|
|
252
|
+
SuppressUnmanagedCodeSecurity
|
|
253
|
+
]
|
|
254
|
+
static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetScale_void_Vector3RC(
|
|
255
|
+
IntPtr @class,
|
|
256
|
+
IntPtr Value
|
|
257
|
+
);
|
|
258
|
+
|
|
259
|
+
[
|
|
260
|
+
DllImport(
|
|
261
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
262
|
+
"__Internal"
|
|
263
|
+
#elif DEBUG
|
|
264
|
+
"ConnectedSpacesPlatform_D"
|
|
265
|
+
#else
|
|
266
|
+
"ConnectedSpacesPlatform"
|
|
267
|
+
#endif
|
|
268
|
+
),
|
|
269
|
+
SuppressUnmanagedCodeSecurity
|
|
270
|
+
]
|
|
271
|
+
static extern bool csp_multiplayer_VideoPlayerSpaceComponent_GetIsStateSharedC_bool(IntPtr @class);
|
|
272
|
+
|
|
273
|
+
[
|
|
274
|
+
DllImport(
|
|
275
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
276
|
+
"__Internal"
|
|
277
|
+
#elif DEBUG
|
|
278
|
+
"ConnectedSpacesPlatform_D"
|
|
279
|
+
#else
|
|
280
|
+
"ConnectedSpacesPlatform"
|
|
281
|
+
#endif
|
|
282
|
+
),
|
|
283
|
+
SuppressUnmanagedCodeSecurity
|
|
284
|
+
]
|
|
285
|
+
static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetIsStateShared_void_bool(
|
|
286
|
+
IntPtr @class,
|
|
287
|
+
bool Value
|
|
288
|
+
);
|
|
289
|
+
|
|
290
|
+
[
|
|
291
|
+
DllImport(
|
|
292
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
293
|
+
"__Internal"
|
|
294
|
+
#elif DEBUG
|
|
295
|
+
"ConnectedSpacesPlatform_D"
|
|
296
|
+
#else
|
|
297
|
+
"ConnectedSpacesPlatform"
|
|
298
|
+
#endif
|
|
299
|
+
),
|
|
300
|
+
SuppressUnmanagedCodeSecurity
|
|
301
|
+
]
|
|
302
|
+
static extern bool csp_multiplayer_VideoPlayerSpaceComponent_GetIsAutoPlayC_bool(IntPtr @class);
|
|
303
|
+
|
|
304
|
+
[
|
|
305
|
+
DllImport(
|
|
306
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
307
|
+
"__Internal"
|
|
308
|
+
#elif DEBUG
|
|
309
|
+
"ConnectedSpacesPlatform_D"
|
|
310
|
+
#else
|
|
311
|
+
"ConnectedSpacesPlatform"
|
|
312
|
+
#endif
|
|
313
|
+
),
|
|
314
|
+
SuppressUnmanagedCodeSecurity
|
|
315
|
+
]
|
|
316
|
+
static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetIsAutoPlay_void_bool(IntPtr @class, bool Value);
|
|
317
|
+
|
|
318
|
+
[
|
|
319
|
+
DllImport(
|
|
320
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
321
|
+
"__Internal"
|
|
322
|
+
#elif DEBUG
|
|
323
|
+
"ConnectedSpacesPlatform_D"
|
|
324
|
+
#else
|
|
325
|
+
"ConnectedSpacesPlatform"
|
|
326
|
+
#endif
|
|
327
|
+
),
|
|
328
|
+
SuppressUnmanagedCodeSecurity
|
|
329
|
+
]
|
|
330
|
+
static extern bool csp_multiplayer_VideoPlayerSpaceComponent_GetIsLoopPlaybackC_bool(IntPtr @class);
|
|
331
|
+
|
|
332
|
+
[
|
|
333
|
+
DllImport(
|
|
334
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
335
|
+
"__Internal"
|
|
336
|
+
#elif DEBUG
|
|
337
|
+
"ConnectedSpacesPlatform_D"
|
|
338
|
+
#else
|
|
339
|
+
"ConnectedSpacesPlatform"
|
|
340
|
+
#endif
|
|
341
|
+
),
|
|
342
|
+
SuppressUnmanagedCodeSecurity
|
|
343
|
+
]
|
|
344
|
+
static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetIsLoopPlayback_void_bool(
|
|
345
|
+
IntPtr @class,
|
|
346
|
+
bool Value
|
|
347
|
+
);
|
|
348
|
+
|
|
349
|
+
[
|
|
350
|
+
DllImport(
|
|
351
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
352
|
+
"__Internal"
|
|
353
|
+
#elif DEBUG
|
|
354
|
+
"ConnectedSpacesPlatform_D"
|
|
355
|
+
#else
|
|
356
|
+
"ConnectedSpacesPlatform"
|
|
357
|
+
#endif
|
|
358
|
+
),
|
|
359
|
+
SuppressUnmanagedCodeSecurity
|
|
360
|
+
]
|
|
361
|
+
static extern bool csp_multiplayer_VideoPlayerSpaceComponent_GetIsAutoResizeC_bool(IntPtr @class);
|
|
362
|
+
|
|
363
|
+
[
|
|
364
|
+
DllImport(
|
|
365
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
366
|
+
"__Internal"
|
|
367
|
+
#elif DEBUG
|
|
368
|
+
"ConnectedSpacesPlatform_D"
|
|
369
|
+
#else
|
|
370
|
+
"ConnectedSpacesPlatform"
|
|
371
|
+
#endif
|
|
372
|
+
),
|
|
373
|
+
SuppressUnmanagedCodeSecurity
|
|
374
|
+
]
|
|
375
|
+
static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetIsAutoResize_void_bool(
|
|
376
|
+
IntPtr @class,
|
|
377
|
+
bool Value
|
|
378
|
+
);
|
|
379
|
+
|
|
380
|
+
[
|
|
381
|
+
DllImport(
|
|
382
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
383
|
+
"__Internal"
|
|
384
|
+
#elif DEBUG
|
|
385
|
+
"ConnectedSpacesPlatform_D"
|
|
386
|
+
#else
|
|
387
|
+
"ConnectedSpacesPlatform"
|
|
388
|
+
#endif
|
|
389
|
+
),
|
|
390
|
+
SuppressUnmanagedCodeSecurity
|
|
391
|
+
]
|
|
392
|
+
static extern float csp_multiplayer_VideoPlayerSpaceComponent_GetAttenuationRadiusC_float(IntPtr @class);
|
|
393
|
+
|
|
394
|
+
[
|
|
395
|
+
DllImport(
|
|
396
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
397
|
+
"__Internal"
|
|
398
|
+
#elif DEBUG
|
|
399
|
+
"ConnectedSpacesPlatform_D"
|
|
400
|
+
#else
|
|
401
|
+
"ConnectedSpacesPlatform"
|
|
402
|
+
#endif
|
|
403
|
+
),
|
|
404
|
+
SuppressUnmanagedCodeSecurity
|
|
405
|
+
]
|
|
406
|
+
static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetAttenuationRadius_void_float(
|
|
407
|
+
IntPtr @class,
|
|
408
|
+
float Value
|
|
409
|
+
);
|
|
410
|
+
|
|
411
|
+
[
|
|
412
|
+
DllImport(
|
|
413
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
414
|
+
"__Internal"
|
|
415
|
+
#elif DEBUG
|
|
416
|
+
"ConnectedSpacesPlatform_D"
|
|
417
|
+
#else
|
|
418
|
+
"ConnectedSpacesPlatform"
|
|
419
|
+
#endif
|
|
420
|
+
),
|
|
421
|
+
SuppressUnmanagedCodeSecurity
|
|
422
|
+
]
|
|
423
|
+
static extern Csp.Multiplayer.VideoPlayerPlaybackState csp_multiplayer_VideoPlayerSpaceComponent_GetPlaybackStateC_VideoPlayerPlaybackState(
|
|
424
|
+
IntPtr @class
|
|
425
|
+
);
|
|
426
|
+
|
|
427
|
+
[
|
|
428
|
+
DllImport(
|
|
429
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
430
|
+
"__Internal"
|
|
431
|
+
#elif DEBUG
|
|
432
|
+
"ConnectedSpacesPlatform_D"
|
|
433
|
+
#else
|
|
434
|
+
"ConnectedSpacesPlatform"
|
|
435
|
+
#endif
|
|
436
|
+
),
|
|
437
|
+
SuppressUnmanagedCodeSecurity
|
|
438
|
+
]
|
|
439
|
+
static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetPlaybackState_void_VideoPlayerPlaybackState(
|
|
440
|
+
IntPtr @class,
|
|
441
|
+
Csp.Multiplayer.VideoPlayerPlaybackState Value
|
|
442
|
+
);
|
|
443
|
+
|
|
444
|
+
[
|
|
445
|
+
DllImport(
|
|
446
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
447
|
+
"__Internal"
|
|
448
|
+
#elif DEBUG
|
|
449
|
+
"ConnectedSpacesPlatform_D"
|
|
450
|
+
#else
|
|
451
|
+
"ConnectedSpacesPlatform"
|
|
452
|
+
#endif
|
|
453
|
+
),
|
|
454
|
+
SuppressUnmanagedCodeSecurity
|
|
455
|
+
]
|
|
456
|
+
static extern float csp_multiplayer_VideoPlayerSpaceComponent_GetCurrentPlayheadPositionC_float(IntPtr @class);
|
|
457
|
+
|
|
458
|
+
[
|
|
459
|
+
DllImport(
|
|
460
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
461
|
+
"__Internal"
|
|
462
|
+
#elif DEBUG
|
|
463
|
+
"ConnectedSpacesPlatform_D"
|
|
464
|
+
#else
|
|
465
|
+
"ConnectedSpacesPlatform"
|
|
466
|
+
#endif
|
|
467
|
+
),
|
|
468
|
+
SuppressUnmanagedCodeSecurity
|
|
469
|
+
]
|
|
470
|
+
static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetCurrentPlayheadPosition_void_float(
|
|
471
|
+
IntPtr @class,
|
|
472
|
+
float Value
|
|
473
|
+
);
|
|
474
|
+
|
|
475
|
+
[
|
|
476
|
+
DllImport(
|
|
477
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
478
|
+
"__Internal"
|
|
479
|
+
#elif DEBUG
|
|
480
|
+
"ConnectedSpacesPlatform_D"
|
|
481
|
+
#else
|
|
482
|
+
"ConnectedSpacesPlatform"
|
|
483
|
+
#endif
|
|
484
|
+
),
|
|
485
|
+
SuppressUnmanagedCodeSecurity
|
|
486
|
+
]
|
|
487
|
+
static extern float csp_multiplayer_VideoPlayerSpaceComponent_GetTimeSincePlayC_float(IntPtr @class);
|
|
488
|
+
|
|
489
|
+
[
|
|
490
|
+
DllImport(
|
|
491
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
492
|
+
"__Internal"
|
|
493
|
+
#elif DEBUG
|
|
494
|
+
"ConnectedSpacesPlatform_D"
|
|
495
|
+
#else
|
|
496
|
+
"ConnectedSpacesPlatform"
|
|
497
|
+
#endif
|
|
498
|
+
),
|
|
499
|
+
SuppressUnmanagedCodeSecurity
|
|
500
|
+
]
|
|
501
|
+
static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetTimeSincePlay_void_float(
|
|
502
|
+
IntPtr @class,
|
|
503
|
+
float Value
|
|
504
|
+
);
|
|
505
|
+
|
|
506
|
+
[
|
|
507
|
+
DllImport(
|
|
508
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
509
|
+
"__Internal"
|
|
510
|
+
#elif DEBUG
|
|
511
|
+
"ConnectedSpacesPlatform_D"
|
|
512
|
+
#else
|
|
513
|
+
"ConnectedSpacesPlatform"
|
|
514
|
+
#endif
|
|
515
|
+
),
|
|
516
|
+
SuppressUnmanagedCodeSecurity
|
|
517
|
+
]
|
|
518
|
+
static extern Csp.Multiplayer.VideoPlayerSourceType csp_multiplayer_VideoPlayerSpaceComponent_GetVideoPlayerSourceTypeC_VideoPlayerSourceType(
|
|
519
|
+
IntPtr @class
|
|
520
|
+
);
|
|
521
|
+
|
|
522
|
+
[
|
|
523
|
+
DllImport(
|
|
524
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
525
|
+
"__Internal"
|
|
526
|
+
#elif DEBUG
|
|
527
|
+
"ConnectedSpacesPlatform_D"
|
|
528
|
+
#else
|
|
529
|
+
"ConnectedSpacesPlatform"
|
|
530
|
+
#endif
|
|
531
|
+
),
|
|
532
|
+
SuppressUnmanagedCodeSecurity
|
|
533
|
+
]
|
|
534
|
+
static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetVideoPlayerSourceType_void_VideoPlayerSourceType(
|
|
535
|
+
IntPtr @class,
|
|
536
|
+
Csp.Multiplayer.VideoPlayerSourceType Value
|
|
537
|
+
);
|
|
538
|
+
|
|
539
|
+
[
|
|
540
|
+
DllImport(
|
|
541
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
542
|
+
"__Internal"
|
|
543
|
+
#elif DEBUG
|
|
544
|
+
"ConnectedSpacesPlatform_D"
|
|
545
|
+
#else
|
|
546
|
+
"ConnectedSpacesPlatform"
|
|
547
|
+
#endif
|
|
548
|
+
),
|
|
549
|
+
SuppressUnmanagedCodeSecurity
|
|
550
|
+
]
|
|
551
|
+
static extern ushort csp_multiplayer_VideoPlayerSpaceComponent_GetMeshComponentIdC_uint16_t(IntPtr @class);
|
|
552
|
+
|
|
553
|
+
[
|
|
554
|
+
DllImport(
|
|
555
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
556
|
+
"__Internal"
|
|
557
|
+
#elif DEBUG
|
|
558
|
+
"ConnectedSpacesPlatform_D"
|
|
559
|
+
#else
|
|
560
|
+
"ConnectedSpacesPlatform"
|
|
561
|
+
#endif
|
|
562
|
+
),
|
|
563
|
+
SuppressUnmanagedCodeSecurity
|
|
564
|
+
]
|
|
565
|
+
static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetMeshComponentId_void_uint16_t(
|
|
566
|
+
IntPtr @class,
|
|
567
|
+
ushort Id
|
|
568
|
+
);
|
|
569
|
+
|
|
570
|
+
[
|
|
571
|
+
DllImport(
|
|
572
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
573
|
+
"__Internal"
|
|
574
|
+
#elif DEBUG
|
|
575
|
+
"ConnectedSpacesPlatform_D"
|
|
576
|
+
#else
|
|
577
|
+
"ConnectedSpacesPlatform"
|
|
578
|
+
#endif
|
|
579
|
+
),
|
|
580
|
+
SuppressUnmanagedCodeSecurity
|
|
581
|
+
]
|
|
582
|
+
static extern bool csp_multiplayer_VideoPlayerSpaceComponent_GetIsVisibleC_bool(IntPtr @class);
|
|
583
|
+
|
|
584
|
+
[
|
|
585
|
+
DllImport(
|
|
586
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
587
|
+
"__Internal"
|
|
588
|
+
#elif DEBUG
|
|
589
|
+
"ConnectedSpacesPlatform_D"
|
|
590
|
+
#else
|
|
591
|
+
"ConnectedSpacesPlatform"
|
|
592
|
+
#endif
|
|
593
|
+
),
|
|
594
|
+
SuppressUnmanagedCodeSecurity
|
|
595
|
+
]
|
|
596
|
+
static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetIsVisible_void_bool(
|
|
597
|
+
IntPtr @class,
|
|
598
|
+
bool InValue
|
|
599
|
+
);
|
|
600
|
+
|
|
601
|
+
[
|
|
602
|
+
DllImport(
|
|
603
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
604
|
+
"__Internal"
|
|
605
|
+
#elif DEBUG
|
|
606
|
+
"ConnectedSpacesPlatform_D"
|
|
607
|
+
#else
|
|
608
|
+
"ConnectedSpacesPlatform"
|
|
609
|
+
#endif
|
|
610
|
+
),
|
|
611
|
+
SuppressUnmanagedCodeSecurity
|
|
612
|
+
]
|
|
613
|
+
static extern bool csp_multiplayer_VideoPlayerSpaceComponent_GetIsARVisibleC_bool(IntPtr @class);
|
|
614
|
+
|
|
615
|
+
[
|
|
616
|
+
DllImport(
|
|
617
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
618
|
+
"__Internal"
|
|
619
|
+
#elif DEBUG
|
|
620
|
+
"ConnectedSpacesPlatform_D"
|
|
621
|
+
#else
|
|
622
|
+
"ConnectedSpacesPlatform"
|
|
623
|
+
#endif
|
|
624
|
+
),
|
|
625
|
+
SuppressUnmanagedCodeSecurity
|
|
626
|
+
]
|
|
627
|
+
static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetIsARVisible_void_bool(
|
|
628
|
+
IntPtr @class,
|
|
629
|
+
bool InValue
|
|
630
|
+
);
|
|
631
|
+
|
|
632
|
+
[
|
|
633
|
+
DllImport(
|
|
634
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
635
|
+
"__Internal"
|
|
636
|
+
#elif DEBUG
|
|
637
|
+
"ConnectedSpacesPlatform_D"
|
|
638
|
+
#else
|
|
639
|
+
"ConnectedSpacesPlatform"
|
|
640
|
+
#endif
|
|
641
|
+
),
|
|
642
|
+
SuppressUnmanagedCodeSecurity
|
|
643
|
+
]
|
|
644
|
+
static extern bool csp_multiplayer_VideoPlayerSpaceComponent_GetIsEnabledC_bool(IntPtr @class);
|
|
645
|
+
|
|
646
|
+
[
|
|
647
|
+
DllImport(
|
|
648
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
649
|
+
"__Internal"
|
|
650
|
+
#elif DEBUG
|
|
651
|
+
"ConnectedSpacesPlatform_D"
|
|
652
|
+
#else
|
|
653
|
+
"ConnectedSpacesPlatform"
|
|
654
|
+
#endif
|
|
655
|
+
),
|
|
656
|
+
SuppressUnmanagedCodeSecurity
|
|
657
|
+
]
|
|
658
|
+
static extern void csp_multiplayer_VideoPlayerSpaceComponent_SetIsEnabled_void_bool(
|
|
659
|
+
IntPtr @class,
|
|
660
|
+
bool InValue
|
|
661
|
+
);
|
|
662
|
+
|
|
663
|
+
[
|
|
664
|
+
DllImport(
|
|
665
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
666
|
+
"__Internal"
|
|
667
|
+
#elif DEBUG
|
|
668
|
+
"ConnectedSpacesPlatform_D"
|
|
669
|
+
#else
|
|
670
|
+
"ConnectedSpacesPlatform"
|
|
671
|
+
#endif
|
|
672
|
+
),
|
|
673
|
+
SuppressUnmanagedCodeSecurity
|
|
674
|
+
]
|
|
675
|
+
static extern void csp_multiplayer_VideoPlayerSpaceComponent_Dtor(IntPtr @class);
|
|
676
|
+
|
|
677
|
+
#pragma warning restore IDE1006
|
|
678
|
+
#endregion
|
|
679
|
+
|
|
680
|
+
internal VideoPlayerSpaceComponent(NativePointer ptr) : base(ptr) { }
|
|
681
|
+
|
|
682
|
+
public VideoPlayerSpaceComponent(Csp.Multiplayer.ComponentBase baseInstance)
|
|
683
|
+
: base(new NativePointer(baseInstance._ptr, baseInstance._ownsPtr ? (byte)1 : (byte)0))
|
|
684
|
+
{
|
|
685
|
+
// Prevent previous instance from freeing underlying pointer when destroyed
|
|
686
|
+
baseInstance._ownsPtr = false;
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
/// <summary>Constructs the video player component, and associates it with the specified Parent space entity.</summary>
|
|
690
|
+
/// <param name="Parent">The Space entity that owns this component.</param>
|
|
691
|
+
|
|
692
|
+
public VideoPlayerSpaceComponent(Csp.Multiplayer.SpaceEntity Parent)
|
|
693
|
+
{
|
|
694
|
+
var np = csp_multiplayer_VideoPlayerSpaceComponent_Ctor_SpaceEntityP(Parent._ptr);
|
|
695
|
+
_ptr = np.Pointer;
|
|
696
|
+
_ownsPtr = np.OwnsOwnData;
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
/// <summary>Gets the name of this video player.</summary>
|
|
700
|
+
/// <returns>The name of this video player.</returns>
|
|
701
|
+
|
|
702
|
+
|
|
703
|
+
public string GetName()
|
|
704
|
+
{
|
|
705
|
+
var _result = csp_multiplayer_VideoPlayerSpaceComponent_GetNameC_StringRC(_ptr);
|
|
706
|
+
|
|
707
|
+
var _resultString = WrapperHelper.NativeUTF8ToString(_result);
|
|
708
|
+
Global.Free(_result);
|
|
709
|
+
|
|
710
|
+
return _resultString;
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
/// <summary>Sets the name of this video player.</summary>
|
|
714
|
+
/// <param name="Value">The name of this video player.</param>
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
public void SetName(string Value)
|
|
718
|
+
{
|
|
719
|
+
csp_multiplayer_VideoPlayerSpaceComponent_SetName_void_StringRC(
|
|
720
|
+
_ptr,
|
|
721
|
+
WrapperHelper.StringToNativeUTF8(Value)
|
|
722
|
+
);
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
/// <summary>Gets the ID of the video asset associated with this video player.</summary>
|
|
726
|
+
/// <returns>The ID of the video asset assicuated with this video player.</returns>
|
|
727
|
+
|
|
728
|
+
|
|
729
|
+
public string GetVideoAssetId()
|
|
730
|
+
{
|
|
731
|
+
var _result = csp_multiplayer_VideoPlayerSpaceComponent_GetVideoAssetIdC_StringRC(_ptr);
|
|
732
|
+
|
|
733
|
+
var _resultString = WrapperHelper.NativeUTF8ToString(_result);
|
|
734
|
+
Global.Free(_result);
|
|
735
|
+
|
|
736
|
+
return _resultString;
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
/// <summary>Sets the ID of the video asset associated with this video player.</summary>
|
|
740
|
+
/// <param name="Value">The ID of the video asset assicuated with this video player.</param>
|
|
741
|
+
|
|
742
|
+
|
|
743
|
+
public void SetVideoAssetId(string Value)
|
|
744
|
+
{
|
|
745
|
+
csp_multiplayer_VideoPlayerSpaceComponent_SetVideoAssetId_void_StringRC(
|
|
746
|
+
_ptr,
|
|
747
|
+
WrapperHelper.StringToNativeUTF8(Value)
|
|
748
|
+
);
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
/// <summary>Gets the URL of the video asset associated with this video player.</summary>
|
|
752
|
+
/// <returns>The URL of the video asset associated with this video player.</returns>
|
|
753
|
+
|
|
754
|
+
|
|
755
|
+
public string GetVideoAssetURL()
|
|
756
|
+
{
|
|
757
|
+
var _result = csp_multiplayer_VideoPlayerSpaceComponent_GetVideoAssetURLC_StringRC(_ptr);
|
|
758
|
+
|
|
759
|
+
var _resultString = WrapperHelper.NativeUTF8ToString(_result);
|
|
760
|
+
Global.Free(_result);
|
|
761
|
+
|
|
762
|
+
return _resultString;
|
|
763
|
+
}
|
|
764
|
+
|
|
765
|
+
/// <summary>Sets the URL of the video asset associated with this video player.</summary>
|
|
766
|
+
/// <param name="Value">The URL of the video asset associated with this video player.</param>
|
|
767
|
+
|
|
768
|
+
|
|
769
|
+
public void SetVideoAssetURL(string Value)
|
|
770
|
+
{
|
|
771
|
+
csp_multiplayer_VideoPlayerSpaceComponent_SetVideoAssetURL_void_StringRC(
|
|
772
|
+
_ptr,
|
|
773
|
+
WrapperHelper.StringToNativeUTF8(Value)
|
|
774
|
+
);
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
/// <summary>Gets the ID of the asset collection associated with this component.</summary>
|
|
778
|
+
/// @note To retrieve this component's video asset, both the Asset ID and the Asset Collection ID are required.
|
|
779
|
+
/// <returns>The ID of the asset collection associated with this component.</returns>
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
public string GetAssetCollectionId()
|
|
783
|
+
{
|
|
784
|
+
var _result = csp_multiplayer_VideoPlayerSpaceComponent_GetAssetCollectionIdC_StringRC(_ptr);
|
|
785
|
+
|
|
786
|
+
var _resultString = WrapperHelper.NativeUTF8ToString(_result);
|
|
787
|
+
Global.Free(_result);
|
|
788
|
+
|
|
789
|
+
return _resultString;
|
|
790
|
+
}
|
|
791
|
+
|
|
792
|
+
/// <summary>Sets the ID of the asset collection associated with this component.</summary>
|
|
793
|
+
/// @note To retrieve this component's video asset, both the Asset ID and the Asset Collection ID are required.
|
|
794
|
+
/// <param name="Value">The ID of the asset collection associated with this component.</param>
|
|
795
|
+
|
|
796
|
+
|
|
797
|
+
public void SetAssetCollectionId(string Value)
|
|
798
|
+
{
|
|
799
|
+
csp_multiplayer_VideoPlayerSpaceComponent_SetAssetCollectionId_void_StringRC(
|
|
800
|
+
_ptr,
|
|
801
|
+
WrapperHelper.StringToNativeUTF8(Value)
|
|
802
|
+
);
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
/// <summary>Gets the position of the origin of this component in world space.</summary>
|
|
806
|
+
/// @note The coordinate system used follows the glTF 2.0 specification, in meters.
|
|
807
|
+
/// <remarks>- Right handed coordinate system</remarks>
|
|
808
|
+
/// <remarks>- +Y is UP</remarks>
|
|
809
|
+
/// <remarks>- +X is left (facing forward)</remarks>
|
|
810
|
+
/// <remarks>- +Z is forward</remarks>
|
|
811
|
+
/// <returns>The 3D position as vector (left, up, forward) in meters.</returns>
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
public Csp.Common.Vector3 GetPosition()
|
|
815
|
+
{
|
|
816
|
+
var _result = new Csp.Common.Vector3(
|
|
817
|
+
csp_multiplayer_VideoPlayerSpaceComponent_GetPositionC_Vector3RC(_ptr)
|
|
818
|
+
);
|
|
819
|
+
|
|
820
|
+
return _result;
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
/// <summary>Sets the position of the origin of this component in world space.</summary>
|
|
824
|
+
/// @note The coordinate system used follows the glTF 2.0 specification, in meters.
|
|
825
|
+
/// <remarks>- Right handed coordinate system</remarks>
|
|
826
|
+
/// <remarks>- +Y is UP</remarks>
|
|
827
|
+
/// <remarks>- +X is left (facing forward)</remarks>
|
|
828
|
+
/// <remarks>- +Z is forward</remarks>
|
|
829
|
+
|
|
830
|
+
|
|
831
|
+
public void SetPosition(Csp.Common.Vector3 Value)
|
|
832
|
+
{
|
|
833
|
+
csp_multiplayer_VideoPlayerSpaceComponent_SetPosition_void_Vector3RC(_ptr, Value._ptr);
|
|
834
|
+
}
|
|
835
|
+
|
|
836
|
+
/// <summary>Gets a quaternion representing the rotation of the origin of this component, expressed in radians.</summary>
|
|
837
|
+
/// @note The coordinate system respects the following conventions:
|
|
838
|
+
/// <remarks>- Right handed coordinate system</remarks>
|
|
839
|
+
/// <remarks>- Positive rotation is counterclockwise</remarks>
|
|
840
|
+
/// <remarks>- The geographic North is along the positive Z axis (+Z) at an orientation of 0 degrees.</remarks>
|
|
841
|
+
/// <remarks>- North: +Z</remarks>
|
|
842
|
+
/// <remarks>- East: -X</remarks>
|
|
843
|
+
/// <remarks>- South: -Z</remarks>
|
|
844
|
+
/// <remarks>- West: +X</remarks>
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
public Csp.Common.Vector4 GetRotation()
|
|
848
|
+
{
|
|
849
|
+
var _result = new Csp.Common.Vector4(
|
|
850
|
+
csp_multiplayer_VideoPlayerSpaceComponent_GetRotationC_Vector4RC(_ptr)
|
|
851
|
+
);
|
|
852
|
+
|
|
853
|
+
return _result;
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
/// <summary>Sets the rotation of the origin of this component according to the specified quaternion "Value", expressed in radians.</summary>
|
|
857
|
+
/// @note The coordinate system respects the following conventions:
|
|
858
|
+
/// <remarks>- Right handed coordinate system</remarks>
|
|
859
|
+
/// <remarks>- Positive rotation is counterclockwise</remarks>
|
|
860
|
+
/// <remarks>- The geographic North is along the positive Z axis (+Z) at an orientation of 0 degrees.</remarks>
|
|
861
|
+
/// <remarks>- North: +Z</remarks>
|
|
862
|
+
/// <remarks>- East: -X</remarks>
|
|
863
|
+
/// <remarks>- South: -Z</remarks>
|
|
864
|
+
/// <remarks>- West: +X</remarks>
|
|
865
|
+
/// <param name="Value">The quaternion in radians to use as new rotation of this component.</param>
|
|
866
|
+
|
|
867
|
+
|
|
868
|
+
public void SetRotation(Csp.Common.Vector4 Value)
|
|
869
|
+
{
|
|
870
|
+
csp_multiplayer_VideoPlayerSpaceComponent_SetRotation_void_Vector4RC(_ptr, Value._ptr);
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
/// <summary>Gets the scale of the origin of this component in world space.</summary>
|
|
874
|
+
/// @note The coordinate system used follows the glTF 2.0 specification.
|
|
875
|
+
/// <remarks>- Right handed coordinate system</remarks>
|
|
876
|
+
/// <remarks>- +Y is UP</remarks>
|
|
877
|
+
/// <remarks>- +X is left (facing forward)</remarks>
|
|
878
|
+
/// <remarks>- +Z is forward</remarks>
|
|
879
|
+
/// <returns>The 3D scale as vector (left, up, forward).</returns>
|
|
880
|
+
|
|
881
|
+
|
|
882
|
+
public Csp.Common.Vector3 GetScale()
|
|
883
|
+
{
|
|
884
|
+
var _result = new Csp.Common.Vector3(csp_multiplayer_VideoPlayerSpaceComponent_GetScaleC_Vector3RC(_ptr));
|
|
885
|
+
|
|
886
|
+
return _result;
|
|
887
|
+
}
|
|
888
|
+
|
|
889
|
+
/// <summary>Sets the scale of the origin of this component in world space to the specified "Value".</summary>
|
|
890
|
+
/// <param name="Value">The new value expressed as vector (left, up, forward).</param>
|
|
891
|
+
/// @note The coordinate system used follows the glTF 2.0 specification.
|
|
892
|
+
/// <remarks>- Right handed coordinate system</remarks>
|
|
893
|
+
/// <remarks>- +Y is UP</remarks>
|
|
894
|
+
/// <remarks>- +X is left (facing forward)</remarks>
|
|
895
|
+
/// <remarks>- +Z is forward</remarks>
|
|
896
|
+
|
|
897
|
+
|
|
898
|
+
public void SetScale(Csp.Common.Vector3 Value)
|
|
899
|
+
{
|
|
900
|
+
csp_multiplayer_VideoPlayerSpaceComponent_SetScale_void_Vector3RC(_ptr, Value._ptr);
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
/// <summary>Checks if the playback state of this video player needs to be shared with other users through replication.</summary>
|
|
904
|
+
/// <returns>True if the playback state of the video needs to be shared among all users, false otherwise.</returns>
|
|
905
|
+
|
|
906
|
+
|
|
907
|
+
public bool GetIsStateShared()
|
|
908
|
+
{
|
|
909
|
+
var _result = csp_multiplayer_VideoPlayerSpaceComponent_GetIsStateSharedC_bool(_ptr);
|
|
910
|
+
|
|
911
|
+
return _result;
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
/// <summary>Establishes if the playback state of this video player needs to be shared with other users through replication.</summary>
|
|
915
|
+
/// <param name="Value">True if the playback state of the video needs to be shared among all users, false otherwise.</param>
|
|
916
|
+
|
|
917
|
+
|
|
918
|
+
public void SetIsStateShared(bool Value)
|
|
919
|
+
{
|
|
920
|
+
csp_multiplayer_VideoPlayerSpaceComponent_SetIsStateShared_void_bool(_ptr, Value);
|
|
921
|
+
}
|
|
922
|
+
|
|
923
|
+
/// <summary>Checks if the video plays automatically on load.</summary>
|
|
924
|
+
/// <returns>True if the video auto-plays on load, false otherwise.</returns>
|
|
925
|
+
|
|
926
|
+
|
|
927
|
+
public bool GetIsAutoPlay()
|
|
928
|
+
{
|
|
929
|
+
var _result = csp_multiplayer_VideoPlayerSpaceComponent_GetIsAutoPlayC_bool(_ptr);
|
|
930
|
+
|
|
931
|
+
return _result;
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
/// <summary>Establishes if the video plays automatically on load.</summary>
|
|
935
|
+
/// <param name="Value">True if the video auto-plays on load, false otherwise.</param>
|
|
936
|
+
|
|
937
|
+
|
|
938
|
+
public void SetIsAutoPlay(bool Value)
|
|
939
|
+
{
|
|
940
|
+
csp_multiplayer_VideoPlayerSpaceComponent_SetIsAutoPlay_void_bool(_ptr, Value);
|
|
941
|
+
}
|
|
942
|
+
|
|
943
|
+
/// <summary>Checks if the video loops (i.e. starts over on end).</summary>
|
|
944
|
+
/// <returns>True if the video loops, false otherwise.</returns>
|
|
945
|
+
|
|
946
|
+
|
|
947
|
+
public bool GetIsLoopPlayback()
|
|
948
|
+
{
|
|
949
|
+
var _result = csp_multiplayer_VideoPlayerSpaceComponent_GetIsLoopPlaybackC_bool(_ptr);
|
|
950
|
+
|
|
951
|
+
return _result;
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
/// <summary>Establishes if the video loops (i.e. starts over on end).</summary>
|
|
955
|
+
/// <param name="Value">True if the video loops, false otherwise.</param>
|
|
956
|
+
|
|
957
|
+
|
|
958
|
+
public void SetIsLoopPlayback(bool Value)
|
|
959
|
+
{
|
|
960
|
+
csp_multiplayer_VideoPlayerSpaceComponent_SetIsLoopPlayback_void_bool(_ptr, Value);
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
/// <summary>Checks if the video auto-resizes if its frame has different dimensions.</summary>
|
|
964
|
+
/// <returns>True if the video will resize automatically, false otherwise.</returns>
|
|
965
|
+
|
|
966
|
+
|
|
967
|
+
public bool GetIsAutoResize()
|
|
968
|
+
{
|
|
969
|
+
var _result = csp_multiplayer_VideoPlayerSpaceComponent_GetIsAutoResizeC_bool(_ptr);
|
|
970
|
+
|
|
971
|
+
return _result;
|
|
972
|
+
}
|
|
973
|
+
|
|
974
|
+
/// <summary>Establishes if the video auto-resizes if its frame has different dimensions.</summary>
|
|
975
|
+
/// <param name="Value">True if the video will resize automatically, false otherwise.</param>
|
|
976
|
+
|
|
977
|
+
|
|
978
|
+
public void SetIsAutoResize(bool Value)
|
|
979
|
+
{
|
|
980
|
+
csp_multiplayer_VideoPlayerSpaceComponent_SetIsAutoResize_void_bool(_ptr, Value);
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
/// <summary>Gets the radius from this component origin within which the audio of this video can be heard by the user.</summary>
|
|
984
|
+
/// @note Only when the user position is within this radius the audio of the video should be heard.
|
|
985
|
+
/// <returns>The radius within which the audio of the video can be heard by the user.</returns>
|
|
986
|
+
|
|
987
|
+
|
|
988
|
+
public float GetAttenuationRadius()
|
|
989
|
+
{
|
|
990
|
+
var _result = csp_multiplayer_VideoPlayerSpaceComponent_GetAttenuationRadiusC_float(_ptr);
|
|
991
|
+
|
|
992
|
+
return _result;
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
/// <summary>Sets the radius from this component origin within which the audio of this video can be heard by the user.</summary>
|
|
996
|
+
/// @note Only when the user position is within this radius the audio of the video should be heard.
|
|
997
|
+
/// <param name="Value">The radius within which the audio of the video can be heard by the user.</param>
|
|
998
|
+
|
|
999
|
+
|
|
1000
|
+
public void SetAttenuationRadius(float Value)
|
|
1001
|
+
{
|
|
1002
|
+
csp_multiplayer_VideoPlayerSpaceComponent_SetAttenuationRadius_void_float(_ptr, Value);
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
/// <summary>Retrieves the playback state of the video of this component.</summary>
|
|
1006
|
+
/// <returns>The playback state of the video.</returns>
|
|
1007
|
+
|
|
1008
|
+
|
|
1009
|
+
public Csp.Multiplayer.VideoPlayerPlaybackState GetPlaybackState()
|
|
1010
|
+
{
|
|
1011
|
+
var _result = csp_multiplayer_VideoPlayerSpaceComponent_GetPlaybackStateC_VideoPlayerPlaybackState(_ptr);
|
|
1012
|
+
|
|
1013
|
+
return _result;
|
|
1014
|
+
}
|
|
1015
|
+
|
|
1016
|
+
/// <summary>Sets the playback state of the video of this component.</summary>
|
|
1017
|
+
/// <param name="Value">The playback state of the video.</param>
|
|
1018
|
+
|
|
1019
|
+
|
|
1020
|
+
public void SetPlaybackState(Csp.Multiplayer.VideoPlayerPlaybackState Value)
|
|
1021
|
+
{
|
|
1022
|
+
csp_multiplayer_VideoPlayerSpaceComponent_SetPlaybackState_void_VideoPlayerPlaybackState(_ptr, Value);
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
/// <summary>Gets the current playhead position of the played video.</summary>
|
|
1026
|
+
/// <returns>The current playhead position of the played video.</returns>
|
|
1027
|
+
|
|
1028
|
+
|
|
1029
|
+
public float GetCurrentPlayheadPosition()
|
|
1030
|
+
{
|
|
1031
|
+
var _result = csp_multiplayer_VideoPlayerSpaceComponent_GetCurrentPlayheadPositionC_float(_ptr);
|
|
1032
|
+
|
|
1033
|
+
return _result;
|
|
1034
|
+
}
|
|
1035
|
+
|
|
1036
|
+
/// <summary>Sets the current playhead position of the played video.</summary>
|
|
1037
|
+
/// <param name="Value">The current playhead position of the played video.</param>
|
|
1038
|
+
|
|
1039
|
+
|
|
1040
|
+
public void SetCurrentPlayheadPosition(float Value)
|
|
1041
|
+
{
|
|
1042
|
+
csp_multiplayer_VideoPlayerSpaceComponent_SetCurrentPlayheadPosition_void_float(_ptr, Value);
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1045
|
+
/// <summary>Gets the time in Unix timestamp format that identifies the moment when the video started to play.</summary>
|
|
1046
|
+
/// <returns>The time in Unix timestamp format when the video started to play.</returns>
|
|
1047
|
+
|
|
1048
|
+
|
|
1049
|
+
public float GetTimeSincePlay()
|
|
1050
|
+
{
|
|
1051
|
+
var _result = csp_multiplayer_VideoPlayerSpaceComponent_GetTimeSincePlayC_float(_ptr);
|
|
1052
|
+
|
|
1053
|
+
return _result;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
/// <summary>Sets the time in Unix timestamp format that identifies the moment when the video started to play.</summary>
|
|
1057
|
+
/// <param name="Value">The time in Unix timestamp format when the video started to play.</param>
|
|
1058
|
+
|
|
1059
|
+
|
|
1060
|
+
public void SetTimeSincePlay(float Value)
|
|
1061
|
+
{
|
|
1062
|
+
csp_multiplayer_VideoPlayerSpaceComponent_SetTimeSincePlay_void_float(_ptr, Value);
|
|
1063
|
+
}
|
|
1064
|
+
|
|
1065
|
+
/// <summary>Gets the type of source the video of this component uses.</summary>
|
|
1066
|
+
/// <returns>The type of video source used by this component.</returns>
|
|
1067
|
+
|
|
1068
|
+
|
|
1069
|
+
public Csp.Multiplayer.VideoPlayerSourceType GetVideoPlayerSourceType()
|
|
1070
|
+
{
|
|
1071
|
+
var _result = csp_multiplayer_VideoPlayerSpaceComponent_GetVideoPlayerSourceTypeC_VideoPlayerSourceType(
|
|
1072
|
+
_ptr
|
|
1073
|
+
);
|
|
1074
|
+
|
|
1075
|
+
return _result;
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
/// <summary>Sets the type of source the video of this component uses.</summary>
|
|
1079
|
+
/// <param name="Value">The type of video source used by this component.</param>
|
|
1080
|
+
|
|
1081
|
+
|
|
1082
|
+
public void SetVideoPlayerSourceType(Csp.Multiplayer.VideoPlayerSourceType Value)
|
|
1083
|
+
{
|
|
1084
|
+
csp_multiplayer_VideoPlayerSpaceComponent_SetVideoPlayerSourceType_void_VideoPlayerSourceType(_ptr, Value);
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
/// <summary>Gets the Id of the mesh component that the video should be rendered to</summary>
|
|
1088
|
+
|
|
1089
|
+
|
|
1090
|
+
public ushort GetMeshComponentId()
|
|
1091
|
+
{
|
|
1092
|
+
var _result = csp_multiplayer_VideoPlayerSpaceComponent_GetMeshComponentIdC_uint16_t(_ptr);
|
|
1093
|
+
|
|
1094
|
+
return _result;
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
/// <summary>Sets the Id of the mesh component that the video should be rendered to</summary>
|
|
1098
|
+
|
|
1099
|
+
|
|
1100
|
+
public void SetMeshComponentId(ushort Id)
|
|
1101
|
+
{
|
|
1102
|
+
csp_multiplayer_VideoPlayerSpaceComponent_SetMeshComponentId_void_uint16_t(_ptr, Id);
|
|
1103
|
+
}
|
|
1104
|
+
|
|
1105
|
+
/// <remarks>\addtogroup IVisibleComponent</remarks>
|
|
1106
|
+
/// @{
|
|
1107
|
+
/// @copydoc IVisibleComponent::GetIsVisible()
|
|
1108
|
+
|
|
1109
|
+
|
|
1110
|
+
public bool GetIsVisible()
|
|
1111
|
+
{
|
|
1112
|
+
var _result = csp_multiplayer_VideoPlayerSpaceComponent_GetIsVisibleC_bool(_ptr);
|
|
1113
|
+
|
|
1114
|
+
return _result;
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
/// @copydoc IVisibleComponent::SetIsVisible()
|
|
1118
|
+
|
|
1119
|
+
|
|
1120
|
+
public void SetIsVisible(bool InValue)
|
|
1121
|
+
{
|
|
1122
|
+
csp_multiplayer_VideoPlayerSpaceComponent_SetIsVisible_void_bool(_ptr, InValue);
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1125
|
+
/// @copydoc IVisibleComponent::GetIsARVisible()
|
|
1126
|
+
|
|
1127
|
+
|
|
1128
|
+
public bool GetIsARVisible()
|
|
1129
|
+
{
|
|
1130
|
+
var _result = csp_multiplayer_VideoPlayerSpaceComponent_GetIsARVisibleC_bool(_ptr);
|
|
1131
|
+
|
|
1132
|
+
return _result;
|
|
1133
|
+
}
|
|
1134
|
+
|
|
1135
|
+
/// @copydoc IVisibleComponent::SetIsARVisible()
|
|
1136
|
+
|
|
1137
|
+
|
|
1138
|
+
public void SetIsARVisible(bool InValue)
|
|
1139
|
+
{
|
|
1140
|
+
csp_multiplayer_VideoPlayerSpaceComponent_SetIsARVisible_void_bool(_ptr, InValue);
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
/// @}
|
|
1144
|
+
/// <remarks>\addtogroup IEnableableComponent</remarks>
|
|
1145
|
+
/// @{
|
|
1146
|
+
/// @copydoc IEnableableComponent::GetIsEnabled()
|
|
1147
|
+
|
|
1148
|
+
|
|
1149
|
+
public bool GetIsEnabled()
|
|
1150
|
+
{
|
|
1151
|
+
var _result = csp_multiplayer_VideoPlayerSpaceComponent_GetIsEnabledC_bool(_ptr);
|
|
1152
|
+
|
|
1153
|
+
return _result;
|
|
1154
|
+
}
|
|
1155
|
+
|
|
1156
|
+
/// @copydoc IEnableableComponent::SetIsEnabled()
|
|
1157
|
+
|
|
1158
|
+
|
|
1159
|
+
public void SetIsEnabled(bool InValue)
|
|
1160
|
+
{
|
|
1161
|
+
csp_multiplayer_VideoPlayerSpaceComponent_SetIsEnabled_void_bool(_ptr, InValue);
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
|
+
~VideoPlayerSpaceComponent()
|
|
1165
|
+
{
|
|
1166
|
+
//RealDispose();
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
void RealDispose()
|
|
1170
|
+
{
|
|
1171
|
+
if (_ownsPtr && !_disposed)
|
|
1172
|
+
{
|
|
1173
|
+
csp_multiplayer_VideoPlayerSpaceComponent_Dtor(_ptr);
|
|
1174
|
+
_disposed = true;
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
_disposed = true;
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
new public void Dispose()
|
|
1181
|
+
{
|
|
1182
|
+
RealDispose();
|
|
1183
|
+
GC.SuppressFinalize(this);
|
|
1184
|
+
}
|
|
1185
|
+
}
|
|
1186
|
+
}
|
|
1187
|
+
|