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,836 @@
|
|
|
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 FogSpaceComponent
|
|
16
|
+
/// <summary>Data representation of an FogSpaceComponent.</summary>
|
|
17
|
+
|
|
18
|
+
public class FogSpaceComponent
|
|
19
|
+
: Csp.Multiplayer.ComponentBase,
|
|
20
|
+
Csp.Multiplayer.IVisibleComponent,
|
|
21
|
+
Csp.Multiplayer.IThirdPartyComponentRef,
|
|
22
|
+
IDisposable
|
|
23
|
+
{
|
|
24
|
+
internal override string _safeTypeName { get; } = "csp_multiplayer_FogSpaceComponent";
|
|
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_FogSpaceComponent_Ctor_SpaceEntityP(IntPtr Parent);
|
|
44
|
+
|
|
45
|
+
[
|
|
46
|
+
DllImport(
|
|
47
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
48
|
+
"__Internal"
|
|
49
|
+
#elif DEBUG
|
|
50
|
+
"ConnectedSpacesPlatform_D"
|
|
51
|
+
#else
|
|
52
|
+
"ConnectedSpacesPlatform"
|
|
53
|
+
#endif
|
|
54
|
+
),
|
|
55
|
+
SuppressUnmanagedCodeSecurity
|
|
56
|
+
]
|
|
57
|
+
static extern Csp.Multiplayer.FogMode csp_multiplayer_FogSpaceComponent_GetFogModeC_FogMode(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_FogSpaceComponent_SetFogMode_void_FogMode(
|
|
72
|
+
IntPtr @class,
|
|
73
|
+
Csp.Multiplayer.FogMode Value
|
|
74
|
+
);
|
|
75
|
+
|
|
76
|
+
[
|
|
77
|
+
DllImport(
|
|
78
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
79
|
+
"__Internal"
|
|
80
|
+
#elif DEBUG
|
|
81
|
+
"ConnectedSpacesPlatform_D"
|
|
82
|
+
#else
|
|
83
|
+
"ConnectedSpacesPlatform"
|
|
84
|
+
#endif
|
|
85
|
+
),
|
|
86
|
+
SuppressUnmanagedCodeSecurity
|
|
87
|
+
]
|
|
88
|
+
static extern NativePointer csp_multiplayer_FogSpaceComponent_GetPositionC_Vector3RC(IntPtr @class);
|
|
89
|
+
|
|
90
|
+
[
|
|
91
|
+
DllImport(
|
|
92
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
93
|
+
"__Internal"
|
|
94
|
+
#elif DEBUG
|
|
95
|
+
"ConnectedSpacesPlatform_D"
|
|
96
|
+
#else
|
|
97
|
+
"ConnectedSpacesPlatform"
|
|
98
|
+
#endif
|
|
99
|
+
),
|
|
100
|
+
SuppressUnmanagedCodeSecurity
|
|
101
|
+
]
|
|
102
|
+
static extern void csp_multiplayer_FogSpaceComponent_SetPosition_void_Vector3RC(IntPtr @class, IntPtr Value);
|
|
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 NativePointer csp_multiplayer_FogSpaceComponent_GetRotationC_Vector4RC(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_FogSpaceComponent_SetRotation_void_Vector4RC(IntPtr @class, IntPtr Value);
|
|
131
|
+
|
|
132
|
+
[
|
|
133
|
+
DllImport(
|
|
134
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
135
|
+
"__Internal"
|
|
136
|
+
#elif DEBUG
|
|
137
|
+
"ConnectedSpacesPlatform_D"
|
|
138
|
+
#else
|
|
139
|
+
"ConnectedSpacesPlatform"
|
|
140
|
+
#endif
|
|
141
|
+
),
|
|
142
|
+
SuppressUnmanagedCodeSecurity
|
|
143
|
+
]
|
|
144
|
+
static extern NativePointer csp_multiplayer_FogSpaceComponent_GetScaleC_Vector3RC(IntPtr @class);
|
|
145
|
+
|
|
146
|
+
[
|
|
147
|
+
DllImport(
|
|
148
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
149
|
+
"__Internal"
|
|
150
|
+
#elif DEBUG
|
|
151
|
+
"ConnectedSpacesPlatform_D"
|
|
152
|
+
#else
|
|
153
|
+
"ConnectedSpacesPlatform"
|
|
154
|
+
#endif
|
|
155
|
+
),
|
|
156
|
+
SuppressUnmanagedCodeSecurity
|
|
157
|
+
]
|
|
158
|
+
static extern void csp_multiplayer_FogSpaceComponent_SetScale_void_Vector3RC(IntPtr @class, IntPtr Value);
|
|
159
|
+
|
|
160
|
+
[
|
|
161
|
+
DllImport(
|
|
162
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
163
|
+
"__Internal"
|
|
164
|
+
#elif DEBUG
|
|
165
|
+
"ConnectedSpacesPlatform_D"
|
|
166
|
+
#else
|
|
167
|
+
"ConnectedSpacesPlatform"
|
|
168
|
+
#endif
|
|
169
|
+
),
|
|
170
|
+
SuppressUnmanagedCodeSecurity
|
|
171
|
+
]
|
|
172
|
+
static extern float csp_multiplayer_FogSpaceComponent_GetStartDistanceC_float(IntPtr @class);
|
|
173
|
+
|
|
174
|
+
[
|
|
175
|
+
DllImport(
|
|
176
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
177
|
+
"__Internal"
|
|
178
|
+
#elif DEBUG
|
|
179
|
+
"ConnectedSpacesPlatform_D"
|
|
180
|
+
#else
|
|
181
|
+
"ConnectedSpacesPlatform"
|
|
182
|
+
#endif
|
|
183
|
+
),
|
|
184
|
+
SuppressUnmanagedCodeSecurity
|
|
185
|
+
]
|
|
186
|
+
static extern void csp_multiplayer_FogSpaceComponent_SetStartDistance_void_float(IntPtr @class, float Value);
|
|
187
|
+
|
|
188
|
+
[
|
|
189
|
+
DllImport(
|
|
190
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
191
|
+
"__Internal"
|
|
192
|
+
#elif DEBUG
|
|
193
|
+
"ConnectedSpacesPlatform_D"
|
|
194
|
+
#else
|
|
195
|
+
"ConnectedSpacesPlatform"
|
|
196
|
+
#endif
|
|
197
|
+
),
|
|
198
|
+
SuppressUnmanagedCodeSecurity
|
|
199
|
+
]
|
|
200
|
+
static extern float csp_multiplayer_FogSpaceComponent_GetEndDistanceC_float(IntPtr @class);
|
|
201
|
+
|
|
202
|
+
[
|
|
203
|
+
DllImport(
|
|
204
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
205
|
+
"__Internal"
|
|
206
|
+
#elif DEBUG
|
|
207
|
+
"ConnectedSpacesPlatform_D"
|
|
208
|
+
#else
|
|
209
|
+
"ConnectedSpacesPlatform"
|
|
210
|
+
#endif
|
|
211
|
+
),
|
|
212
|
+
SuppressUnmanagedCodeSecurity
|
|
213
|
+
]
|
|
214
|
+
static extern void csp_multiplayer_FogSpaceComponent_SetEndDistance_void_float(IntPtr @class, float Value);
|
|
215
|
+
|
|
216
|
+
[
|
|
217
|
+
DllImport(
|
|
218
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
219
|
+
"__Internal"
|
|
220
|
+
#elif DEBUG
|
|
221
|
+
"ConnectedSpacesPlatform_D"
|
|
222
|
+
#else
|
|
223
|
+
"ConnectedSpacesPlatform"
|
|
224
|
+
#endif
|
|
225
|
+
),
|
|
226
|
+
SuppressUnmanagedCodeSecurity
|
|
227
|
+
]
|
|
228
|
+
static extern NativePointer csp_multiplayer_FogSpaceComponent_GetColorC_Vector3RC(IntPtr @class);
|
|
229
|
+
|
|
230
|
+
[
|
|
231
|
+
DllImport(
|
|
232
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
233
|
+
"__Internal"
|
|
234
|
+
#elif DEBUG
|
|
235
|
+
"ConnectedSpacesPlatform_D"
|
|
236
|
+
#else
|
|
237
|
+
"ConnectedSpacesPlatform"
|
|
238
|
+
#endif
|
|
239
|
+
),
|
|
240
|
+
SuppressUnmanagedCodeSecurity
|
|
241
|
+
]
|
|
242
|
+
static extern void csp_multiplayer_FogSpaceComponent_SetColor_void_Vector3RC(IntPtr @class, IntPtr Value);
|
|
243
|
+
|
|
244
|
+
[
|
|
245
|
+
DllImport(
|
|
246
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
247
|
+
"__Internal"
|
|
248
|
+
#elif DEBUG
|
|
249
|
+
"ConnectedSpacesPlatform_D"
|
|
250
|
+
#else
|
|
251
|
+
"ConnectedSpacesPlatform"
|
|
252
|
+
#endif
|
|
253
|
+
),
|
|
254
|
+
SuppressUnmanagedCodeSecurity
|
|
255
|
+
]
|
|
256
|
+
static extern float csp_multiplayer_FogSpaceComponent_GetDensityC_float(IntPtr @class);
|
|
257
|
+
|
|
258
|
+
[
|
|
259
|
+
DllImport(
|
|
260
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
261
|
+
"__Internal"
|
|
262
|
+
#elif DEBUG
|
|
263
|
+
"ConnectedSpacesPlatform_D"
|
|
264
|
+
#else
|
|
265
|
+
"ConnectedSpacesPlatform"
|
|
266
|
+
#endif
|
|
267
|
+
),
|
|
268
|
+
SuppressUnmanagedCodeSecurity
|
|
269
|
+
]
|
|
270
|
+
static extern void csp_multiplayer_FogSpaceComponent_SetDensity_void_float(IntPtr @class, float Value);
|
|
271
|
+
|
|
272
|
+
[
|
|
273
|
+
DllImport(
|
|
274
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
275
|
+
"__Internal"
|
|
276
|
+
#elif DEBUG
|
|
277
|
+
"ConnectedSpacesPlatform_D"
|
|
278
|
+
#else
|
|
279
|
+
"ConnectedSpacesPlatform"
|
|
280
|
+
#endif
|
|
281
|
+
),
|
|
282
|
+
SuppressUnmanagedCodeSecurity
|
|
283
|
+
]
|
|
284
|
+
static extern float csp_multiplayer_FogSpaceComponent_GetHeightFalloffC_float(IntPtr @class);
|
|
285
|
+
|
|
286
|
+
[
|
|
287
|
+
DllImport(
|
|
288
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
289
|
+
"__Internal"
|
|
290
|
+
#elif DEBUG
|
|
291
|
+
"ConnectedSpacesPlatform_D"
|
|
292
|
+
#else
|
|
293
|
+
"ConnectedSpacesPlatform"
|
|
294
|
+
#endif
|
|
295
|
+
),
|
|
296
|
+
SuppressUnmanagedCodeSecurity
|
|
297
|
+
]
|
|
298
|
+
static extern void csp_multiplayer_FogSpaceComponent_SetHeightFalloff_void_float(IntPtr @class, float Value);
|
|
299
|
+
|
|
300
|
+
[
|
|
301
|
+
DllImport(
|
|
302
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
303
|
+
"__Internal"
|
|
304
|
+
#elif DEBUG
|
|
305
|
+
"ConnectedSpacesPlatform_D"
|
|
306
|
+
#else
|
|
307
|
+
"ConnectedSpacesPlatform"
|
|
308
|
+
#endif
|
|
309
|
+
),
|
|
310
|
+
SuppressUnmanagedCodeSecurity
|
|
311
|
+
]
|
|
312
|
+
static extern float csp_multiplayer_FogSpaceComponent_GetMaxOpacityC_float(IntPtr @class);
|
|
313
|
+
|
|
314
|
+
[
|
|
315
|
+
DllImport(
|
|
316
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
317
|
+
"__Internal"
|
|
318
|
+
#elif DEBUG
|
|
319
|
+
"ConnectedSpacesPlatform_D"
|
|
320
|
+
#else
|
|
321
|
+
"ConnectedSpacesPlatform"
|
|
322
|
+
#endif
|
|
323
|
+
),
|
|
324
|
+
SuppressUnmanagedCodeSecurity
|
|
325
|
+
]
|
|
326
|
+
static extern void csp_multiplayer_FogSpaceComponent_SetMaxOpacity_void_float(IntPtr @class, float Value);
|
|
327
|
+
|
|
328
|
+
[
|
|
329
|
+
DllImport(
|
|
330
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
331
|
+
"__Internal"
|
|
332
|
+
#elif DEBUG
|
|
333
|
+
"ConnectedSpacesPlatform_D"
|
|
334
|
+
#else
|
|
335
|
+
"ConnectedSpacesPlatform"
|
|
336
|
+
#endif
|
|
337
|
+
),
|
|
338
|
+
SuppressUnmanagedCodeSecurity
|
|
339
|
+
]
|
|
340
|
+
static extern bool csp_multiplayer_FogSpaceComponent_GetIsVolumetricC_bool(IntPtr @class);
|
|
341
|
+
|
|
342
|
+
[
|
|
343
|
+
DllImport(
|
|
344
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
345
|
+
"__Internal"
|
|
346
|
+
#elif DEBUG
|
|
347
|
+
"ConnectedSpacesPlatform_D"
|
|
348
|
+
#else
|
|
349
|
+
"ConnectedSpacesPlatform"
|
|
350
|
+
#endif
|
|
351
|
+
),
|
|
352
|
+
SuppressUnmanagedCodeSecurity
|
|
353
|
+
]
|
|
354
|
+
static extern void csp_multiplayer_FogSpaceComponent_SetIsVolumetric_void_bool(IntPtr @class, bool Value);
|
|
355
|
+
|
|
356
|
+
[
|
|
357
|
+
DllImport(
|
|
358
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
359
|
+
"__Internal"
|
|
360
|
+
#elif DEBUG
|
|
361
|
+
"ConnectedSpacesPlatform_D"
|
|
362
|
+
#else
|
|
363
|
+
"ConnectedSpacesPlatform"
|
|
364
|
+
#endif
|
|
365
|
+
),
|
|
366
|
+
SuppressUnmanagedCodeSecurity
|
|
367
|
+
]
|
|
368
|
+
static extern bool csp_multiplayer_FogSpaceComponent_GetIsVisibleC_bool(IntPtr @class);
|
|
369
|
+
|
|
370
|
+
[
|
|
371
|
+
DllImport(
|
|
372
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
373
|
+
"__Internal"
|
|
374
|
+
#elif DEBUG
|
|
375
|
+
"ConnectedSpacesPlatform_D"
|
|
376
|
+
#else
|
|
377
|
+
"ConnectedSpacesPlatform"
|
|
378
|
+
#endif
|
|
379
|
+
),
|
|
380
|
+
SuppressUnmanagedCodeSecurity
|
|
381
|
+
]
|
|
382
|
+
static extern void csp_multiplayer_FogSpaceComponent_SetIsVisible_void_bool(IntPtr @class, bool InValue);
|
|
383
|
+
|
|
384
|
+
[
|
|
385
|
+
DllImport(
|
|
386
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
387
|
+
"__Internal"
|
|
388
|
+
#elif DEBUG
|
|
389
|
+
"ConnectedSpacesPlatform_D"
|
|
390
|
+
#else
|
|
391
|
+
"ConnectedSpacesPlatform"
|
|
392
|
+
#endif
|
|
393
|
+
),
|
|
394
|
+
SuppressUnmanagedCodeSecurity
|
|
395
|
+
]
|
|
396
|
+
static extern bool csp_multiplayer_FogSpaceComponent_GetIsARVisibleC_bool(IntPtr @class);
|
|
397
|
+
|
|
398
|
+
[
|
|
399
|
+
DllImport(
|
|
400
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
401
|
+
"__Internal"
|
|
402
|
+
#elif DEBUG
|
|
403
|
+
"ConnectedSpacesPlatform_D"
|
|
404
|
+
#else
|
|
405
|
+
"ConnectedSpacesPlatform"
|
|
406
|
+
#endif
|
|
407
|
+
),
|
|
408
|
+
SuppressUnmanagedCodeSecurity
|
|
409
|
+
]
|
|
410
|
+
static extern void csp_multiplayer_FogSpaceComponent_SetIsARVisible_void_bool(IntPtr @class, bool InValue);
|
|
411
|
+
|
|
412
|
+
[
|
|
413
|
+
DllImport(
|
|
414
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
415
|
+
"__Internal"
|
|
416
|
+
#elif DEBUG
|
|
417
|
+
"ConnectedSpacesPlatform_D"
|
|
418
|
+
#else
|
|
419
|
+
"ConnectedSpacesPlatform"
|
|
420
|
+
#endif
|
|
421
|
+
),
|
|
422
|
+
SuppressUnmanagedCodeSecurity
|
|
423
|
+
]
|
|
424
|
+
static extern IntPtr csp_multiplayer_FogSpaceComponent_GetThirdPartyComponentRefC_StringRC(IntPtr @class);
|
|
425
|
+
|
|
426
|
+
[
|
|
427
|
+
DllImport(
|
|
428
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
429
|
+
"__Internal"
|
|
430
|
+
#elif DEBUG
|
|
431
|
+
"ConnectedSpacesPlatform_D"
|
|
432
|
+
#else
|
|
433
|
+
"ConnectedSpacesPlatform"
|
|
434
|
+
#endif
|
|
435
|
+
),
|
|
436
|
+
SuppressUnmanagedCodeSecurity
|
|
437
|
+
]
|
|
438
|
+
static extern void csp_multiplayer_FogSpaceComponent_SetThirdPartyComponentRef_void_StringRC(
|
|
439
|
+
IntPtr @class,
|
|
440
|
+
IntPtr InValue
|
|
441
|
+
);
|
|
442
|
+
|
|
443
|
+
[
|
|
444
|
+
DllImport(
|
|
445
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
446
|
+
"__Internal"
|
|
447
|
+
#elif DEBUG
|
|
448
|
+
"ConnectedSpacesPlatform_D"
|
|
449
|
+
#else
|
|
450
|
+
"ConnectedSpacesPlatform"
|
|
451
|
+
#endif
|
|
452
|
+
),
|
|
453
|
+
SuppressUnmanagedCodeSecurity
|
|
454
|
+
]
|
|
455
|
+
static extern void csp_multiplayer_FogSpaceComponent_Dtor(IntPtr @class);
|
|
456
|
+
|
|
457
|
+
#pragma warning restore IDE1006
|
|
458
|
+
#endregion
|
|
459
|
+
|
|
460
|
+
internal FogSpaceComponent(NativePointer ptr) : base(ptr) { }
|
|
461
|
+
|
|
462
|
+
public FogSpaceComponent(Csp.Multiplayer.ComponentBase baseInstance)
|
|
463
|
+
: base(new NativePointer(baseInstance._ptr, baseInstance._ownsPtr ? (byte)1 : (byte)0))
|
|
464
|
+
{
|
|
465
|
+
// Prevent previous instance from freeing underlying pointer when destroyed
|
|
466
|
+
baseInstance._ownsPtr = false;
|
|
467
|
+
}
|
|
468
|
+
|
|
469
|
+
/// <summary>Constructs the fog space component, and associates it with the specified Parent space entity.</summary>
|
|
470
|
+
/// <param name="Parent">The Space entity that owns this component.</param>
|
|
471
|
+
|
|
472
|
+
public FogSpaceComponent(Csp.Multiplayer.SpaceEntity Parent)
|
|
473
|
+
{
|
|
474
|
+
var np = csp_multiplayer_FogSpaceComponent_Ctor_SpaceEntityP(Parent._ptr);
|
|
475
|
+
_ptr = np.Pointer;
|
|
476
|
+
_ownsPtr = np.OwnsOwnData;
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
/// <summary>Retrieves the type of fog currently used by this fog component.</summary>
|
|
480
|
+
/// <returns>The modality of fog currently used by this component.</returns>
|
|
481
|
+
|
|
482
|
+
|
|
483
|
+
public Csp.Multiplayer.FogMode GetFogMode()
|
|
484
|
+
{
|
|
485
|
+
var _result = csp_multiplayer_FogSpaceComponent_GetFogModeC_FogMode(_ptr);
|
|
486
|
+
|
|
487
|
+
return _result;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
/// <summary>Sets the type of fog currently to be used by this fog component.</summary>
|
|
491
|
+
/// <param name="Value">The modality of fog to be used by this component.</param>
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
public void SetFogMode(Csp.Multiplayer.FogMode Value)
|
|
495
|
+
{
|
|
496
|
+
csp_multiplayer_FogSpaceComponent_SetFogMode_void_FogMode(_ptr, Value);
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
/// <summary>Gets the position of the origin of this component in world space.</summary>
|
|
500
|
+
/// @note The coordinate system used follows the glTF 2.0 specification, in meters.
|
|
501
|
+
/// <remarks>- Right handed coordinate system</remarks>
|
|
502
|
+
/// <remarks>- +Y is UP</remarks>
|
|
503
|
+
/// <remarks>- +X is left (facing forward)</remarks>
|
|
504
|
+
/// <remarks>- +Z is forward</remarks>
|
|
505
|
+
/// <returns>The 3D position as vector (left, up, forward) in meters.</returns>
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
public Csp.Common.Vector3 GetPosition()
|
|
509
|
+
{
|
|
510
|
+
var _result = new Csp.Common.Vector3(csp_multiplayer_FogSpaceComponent_GetPositionC_Vector3RC(_ptr));
|
|
511
|
+
|
|
512
|
+
return _result;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
/// <summary>Sets the position of the origin of this component in world space.</summary>
|
|
516
|
+
/// @note The coordinate system used follows the glTF 2.0 specification, in meters.
|
|
517
|
+
/// <remarks>- Right handed coordinate system</remarks>
|
|
518
|
+
/// <remarks>- +Y is UP</remarks>
|
|
519
|
+
/// <remarks>- +X is left (facing forward)</remarks>
|
|
520
|
+
/// <remarks>- +Z is forward</remarks>
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
public void SetPosition(Csp.Common.Vector3 Value)
|
|
524
|
+
{
|
|
525
|
+
csp_multiplayer_FogSpaceComponent_SetPosition_void_Vector3RC(_ptr, Value._ptr);
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
/// <summary>Gets a quaternion representing the rotation of the origin of this component, expressed in radians.</summary>
|
|
529
|
+
/// @note The coordinate system respects the following conventions:
|
|
530
|
+
/// <remarks>- Right handed coordinate system</remarks>
|
|
531
|
+
/// <remarks>- Positive rotation is counterclockwise</remarks>
|
|
532
|
+
/// <remarks>- The geographic North is along the positive Z axis (+Z) at an orientation of 0 degrees.</remarks>
|
|
533
|
+
/// <remarks>- North: +Z</remarks>
|
|
534
|
+
/// <remarks>- East: -X</remarks>
|
|
535
|
+
/// <remarks>- South: -Z</remarks>
|
|
536
|
+
/// <remarks>- West: +X</remarks>
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
public Csp.Common.Vector4 GetRotation()
|
|
540
|
+
{
|
|
541
|
+
var _result = new Csp.Common.Vector4(csp_multiplayer_FogSpaceComponent_GetRotationC_Vector4RC(_ptr));
|
|
542
|
+
|
|
543
|
+
return _result;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
/// <summary>Sets the rotation of the origin of this component according to the specified quaternion "Value", expressed in radians.</summary>
|
|
547
|
+
/// @note The coordinate system respects the following conventions:
|
|
548
|
+
/// <remarks>- Right handed coordinate system</remarks>
|
|
549
|
+
/// <remarks>- Positive rotation is counterclockwise</remarks>
|
|
550
|
+
/// <remarks>- The geographic North is along the positive Z axis (+Z) at an orientation of 0 degrees.</remarks>
|
|
551
|
+
/// <remarks>- North: +Z</remarks>
|
|
552
|
+
/// <remarks>- East: -X</remarks>
|
|
553
|
+
/// <remarks>- South: -Z</remarks>
|
|
554
|
+
/// <remarks>- West: +X</remarks>
|
|
555
|
+
/// <param name="Value">The quaternion in radians to use as new rotation of this component.</param>
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
public void SetRotation(Csp.Common.Vector4 Value)
|
|
559
|
+
{
|
|
560
|
+
csp_multiplayer_FogSpaceComponent_SetRotation_void_Vector4RC(_ptr, Value._ptr);
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
/// <summary>Gets the scale of the origin of this component in world space.</summary>
|
|
564
|
+
/// @note The coordinate system used follows the glTF 2.0 specification.
|
|
565
|
+
/// <remarks>- Right handed coordinate system</remarks>
|
|
566
|
+
/// <remarks>- +Y is UP</remarks>
|
|
567
|
+
/// <remarks>- +X is left (facing forward)</remarks>
|
|
568
|
+
/// <remarks>- +Z is forward</remarks>
|
|
569
|
+
/// <returns>The 3D scale as vector (left, up, forward).</returns>
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
public Csp.Common.Vector3 GetScale()
|
|
573
|
+
{
|
|
574
|
+
var _result = new Csp.Common.Vector3(csp_multiplayer_FogSpaceComponent_GetScaleC_Vector3RC(_ptr));
|
|
575
|
+
|
|
576
|
+
return _result;
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
/// <summary>Sets the scale of the origin of this component in world space to the specified "Value".</summary>
|
|
580
|
+
/// <param name="Value">The new value expressed as vector (left, up, forward).</param>
|
|
581
|
+
/// @note The coordinate system used follows the glTF 2.0 specification.
|
|
582
|
+
/// <remarks>- Right handed coordinate system</remarks>
|
|
583
|
+
/// <remarks>- +Y is UP</remarks>
|
|
584
|
+
/// <remarks>- +X is left (facing forward)</remarks>
|
|
585
|
+
/// <remarks>- +Z is forward</remarks>
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
public void SetScale(Csp.Common.Vector3 Value)
|
|
589
|
+
{
|
|
590
|
+
csp_multiplayer_FogSpaceComponent_SetScale_void_Vector3RC(_ptr, Value._ptr);
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
/// <summary>Get start sistance</summary>
|
|
594
|
+
/// <remarks>Note: Distance from camera that the fog will start.</remarks>
|
|
595
|
+
/// <remarks>Note: 0 = this property has no effect.</remarks>
|
|
596
|
+
/// <returns>Current start distance</returns>
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
public float GetStartDistance()
|
|
600
|
+
{
|
|
601
|
+
var _result = csp_multiplayer_FogSpaceComponent_GetStartDistanceC_float(_ptr);
|
|
602
|
+
|
|
603
|
+
return _result;
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
/// <summary>Set Current start distance</summary>
|
|
607
|
+
/// <remarks>Note: Distance from camera that the fog will start.</remarks>
|
|
608
|
+
/// <remarks>Note: 0 = this property has no effect.</remarks>
|
|
609
|
+
/// <param name="Value">Current start distance</param>
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
public void SetStartDistance(float Value)
|
|
613
|
+
{
|
|
614
|
+
csp_multiplayer_FogSpaceComponent_SetStartDistance_void_float(_ptr, Value);
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
/// <summary>Get Current end distance</summary>
|
|
618
|
+
/// <remarks>Note: objects passed this distance will not be affected by fog.</remarks>
|
|
619
|
+
/// <remarks>Note: 0 = this property has no effect.</remarks>
|
|
620
|
+
/// <returns>Current end distance</returns>
|
|
621
|
+
|
|
622
|
+
|
|
623
|
+
public float GetEndDistance()
|
|
624
|
+
{
|
|
625
|
+
var _result = csp_multiplayer_FogSpaceComponent_GetEndDistanceC_float(_ptr);
|
|
626
|
+
|
|
627
|
+
return _result;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
/// <summary>Set Current end distance</summary>
|
|
631
|
+
/// <remarks>Note: objects passed this distance will not be affected by fog.</remarks>
|
|
632
|
+
/// <remarks>Note: 0 = this property has no effect.</remarks>
|
|
633
|
+
/// <param name="Value">Current end distance</param>
|
|
634
|
+
|
|
635
|
+
|
|
636
|
+
public void SetEndDistance(float Value)
|
|
637
|
+
{
|
|
638
|
+
csp_multiplayer_FogSpaceComponent_SetEndDistance_void_float(_ptr, Value);
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
/// <summary>Get fog color</summary>
|
|
642
|
+
/// <returns>Current fog color</returns>
|
|
643
|
+
|
|
644
|
+
|
|
645
|
+
public Csp.Common.Vector3 GetColor()
|
|
646
|
+
{
|
|
647
|
+
var _result = new Csp.Common.Vector3(csp_multiplayer_FogSpaceComponent_GetColorC_Vector3RC(_ptr));
|
|
648
|
+
|
|
649
|
+
return _result;
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
/// <summary>Set Current fog color</summary>
|
|
653
|
+
/// <param name="Value">Current fog color</param>
|
|
654
|
+
|
|
655
|
+
|
|
656
|
+
public void SetColor(Csp.Common.Vector3 Value)
|
|
657
|
+
{
|
|
658
|
+
csp_multiplayer_FogSpaceComponent_SetColor_void_Vector3RC(_ptr, Value._ptr);
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
/// <summary>Get Global density factor</summary>
|
|
662
|
+
/// <remarks>Note: Global density factor</remarks>
|
|
663
|
+
/// <returns>Current Global density factor</returns>
|
|
664
|
+
|
|
665
|
+
|
|
666
|
+
public float GetDensity()
|
|
667
|
+
{
|
|
668
|
+
var _result = csp_multiplayer_FogSpaceComponent_GetDensityC_float(_ptr);
|
|
669
|
+
|
|
670
|
+
return _result;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
/// <summary>Set Global density factor</summary>
|
|
674
|
+
/// <remarks>Note: Global density factor</remarks>
|
|
675
|
+
/// <param name="Value">Global density factor</param>
|
|
676
|
+
|
|
677
|
+
|
|
678
|
+
public void SetDensity(float Value)
|
|
679
|
+
{
|
|
680
|
+
csp_multiplayer_FogSpaceComponent_SetDensity_void_float(_ptr, Value);
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
/// <summary>Get Height density factor</summary>
|
|
684
|
+
/// <remarks>Note: Height density factor, controls how the density increases and height decreases. Smaller values make the visible transition larger.</remarks>
|
|
685
|
+
/// <returns>Current Height density factor</returns>
|
|
686
|
+
|
|
687
|
+
|
|
688
|
+
public float GetHeightFalloff()
|
|
689
|
+
{
|
|
690
|
+
var _result = csp_multiplayer_FogSpaceComponent_GetHeightFalloffC_float(_ptr);
|
|
691
|
+
|
|
692
|
+
return _result;
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
/// <summary>Set Height density factor</summary>
|
|
696
|
+
/// <remarks>Note: Height density factor, controls how the density increases and height decreases. Smaller values make the visible transition larger.</remarks>
|
|
697
|
+
/// <param name="Value">Height density factor</param>
|
|
698
|
+
|
|
699
|
+
|
|
700
|
+
public void SetHeightFalloff(float Value)
|
|
701
|
+
{
|
|
702
|
+
csp_multiplayer_FogSpaceComponent_SetHeightFalloff_void_float(_ptr, Value);
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
/// <summary>Get Maximum opacity of the Fog.</summary>
|
|
706
|
+
/// <remarks>Maximum opacity of the Fog.</remarks>
|
|
707
|
+
/// <remarks>Note: 1 = fog becomes fully opaque at a distance and replaces the scene colour completely.</remarks>
|
|
708
|
+
/// <remarks>Note: 0 = fog colour will have no impact.</remarks>
|
|
709
|
+
/// <returns>Current Maximum opacity of the Fog</returns>
|
|
710
|
+
|
|
711
|
+
|
|
712
|
+
public float GetMaxOpacity()
|
|
713
|
+
{
|
|
714
|
+
var _result = csp_multiplayer_FogSpaceComponent_GetMaxOpacityC_float(_ptr);
|
|
715
|
+
|
|
716
|
+
return _result;
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
/// <summary>Set Maximum opacity of the Fog.</summary>
|
|
720
|
+
/// <param name="Value">Maximum opacity of the Fog.</param>
|
|
721
|
+
|
|
722
|
+
|
|
723
|
+
public void SetMaxOpacity(float Value)
|
|
724
|
+
{
|
|
725
|
+
csp_multiplayer_FogSpaceComponent_SetMaxOpacity_void_float(_ptr, Value);
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
/// <summary>Get Is Fog Volumetric.</summary>
|
|
729
|
+
/// <param name="Value">Fog Volumetric Flag</param>
|
|
730
|
+
|
|
731
|
+
|
|
732
|
+
public bool GetIsVolumetric()
|
|
733
|
+
{
|
|
734
|
+
var _result = csp_multiplayer_FogSpaceComponent_GetIsVolumetricC_bool(_ptr);
|
|
735
|
+
|
|
736
|
+
return _result;
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
/// <summary>Set Is Fog Volumetric</summary>
|
|
740
|
+
/// <param name="Value">Is Fog Volumetric Flag</param>
|
|
741
|
+
|
|
742
|
+
|
|
743
|
+
public void SetIsVolumetric(bool Value)
|
|
744
|
+
{
|
|
745
|
+
csp_multiplayer_FogSpaceComponent_SetIsVolumetric_void_bool(_ptr, Value);
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
/// <remarks>\addtogroup IVisibleComponent</remarks>
|
|
749
|
+
/// @{
|
|
750
|
+
/// @copydoc IVisibleComponent::GetIsVisible()
|
|
751
|
+
|
|
752
|
+
|
|
753
|
+
public bool GetIsVisible()
|
|
754
|
+
{
|
|
755
|
+
var _result = csp_multiplayer_FogSpaceComponent_GetIsVisibleC_bool(_ptr);
|
|
756
|
+
|
|
757
|
+
return _result;
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
/// @copydoc IVisibleComponent::SetIsVisible()
|
|
761
|
+
|
|
762
|
+
|
|
763
|
+
public void SetIsVisible(bool InValue)
|
|
764
|
+
{
|
|
765
|
+
csp_multiplayer_FogSpaceComponent_SetIsVisible_void_bool(_ptr, InValue);
|
|
766
|
+
}
|
|
767
|
+
|
|
768
|
+
/// @copydoc IVisibleComponent::GetIsARVisible()
|
|
769
|
+
|
|
770
|
+
|
|
771
|
+
public bool GetIsARVisible()
|
|
772
|
+
{
|
|
773
|
+
var _result = csp_multiplayer_FogSpaceComponent_GetIsARVisibleC_bool(_ptr);
|
|
774
|
+
|
|
775
|
+
return _result;
|
|
776
|
+
}
|
|
777
|
+
|
|
778
|
+
/// @copydoc IVisibleComponent::SetIsARVisible()
|
|
779
|
+
|
|
780
|
+
|
|
781
|
+
public void SetIsARVisible(bool InValue)
|
|
782
|
+
{
|
|
783
|
+
csp_multiplayer_FogSpaceComponent_SetIsARVisible_void_bool(_ptr, InValue);
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
/// @}
|
|
787
|
+
/// <remarks>\addtogroup IThirdPartyComponentRef</remarks>
|
|
788
|
+
/// @{
|
|
789
|
+
/// @copydoc IThirdPartyComponentRef::GetThirdPartyComponentRef()
|
|
790
|
+
|
|
791
|
+
|
|
792
|
+
public string GetThirdPartyComponentRef()
|
|
793
|
+
{
|
|
794
|
+
var _result = csp_multiplayer_FogSpaceComponent_GetThirdPartyComponentRefC_StringRC(_ptr);
|
|
795
|
+
|
|
796
|
+
var _resultString = WrapperHelper.NativeUTF8ToString(_result);
|
|
797
|
+
Global.Free(_result);
|
|
798
|
+
|
|
799
|
+
return _resultString;
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
/// @copydoc IThirdPartyComponentRef::SetThirdPartyComponentRef()
|
|
803
|
+
|
|
804
|
+
|
|
805
|
+
public void SetThirdPartyComponentRef(string InValue)
|
|
806
|
+
{
|
|
807
|
+
csp_multiplayer_FogSpaceComponent_SetThirdPartyComponentRef_void_StringRC(
|
|
808
|
+
_ptr,
|
|
809
|
+
WrapperHelper.StringToNativeUTF8(InValue)
|
|
810
|
+
);
|
|
811
|
+
}
|
|
812
|
+
|
|
813
|
+
~FogSpaceComponent()
|
|
814
|
+
{
|
|
815
|
+
//RealDispose();
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
void RealDispose()
|
|
819
|
+
{
|
|
820
|
+
if (_ownsPtr && !_disposed)
|
|
821
|
+
{
|
|
822
|
+
csp_multiplayer_FogSpaceComponent_Dtor(_ptr);
|
|
823
|
+
_disposed = true;
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
_disposed = true;
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
new public void Dispose()
|
|
830
|
+
{
|
|
831
|
+
RealDispose();
|
|
832
|
+
GC.SuppressFinalize(this);
|
|
833
|
+
}
|
|
834
|
+
}
|
|
835
|
+
}
|
|
836
|
+
|