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,757 @@
|
|
|
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 CollisionSpaceComponent
|
|
16
|
+
/// <summary>Data representation of an CollisionSpaceComponent.</summary>
|
|
17
|
+
|
|
18
|
+
public class CollisionSpaceComponent
|
|
19
|
+
: Csp.Multiplayer.ComponentBase,
|
|
20
|
+
Csp.Multiplayer.IThirdPartyComponentRef,
|
|
21
|
+
IDisposable
|
|
22
|
+
{
|
|
23
|
+
internal override string _safeTypeName { get; } = "csp_multiplayer_CollisionSpaceComponent";
|
|
24
|
+
|
|
25
|
+
#region P/Invoke
|
|
26
|
+
#pragma warning disable IDE1006
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
[
|
|
31
|
+
DllImport(
|
|
32
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
33
|
+
"__Internal"
|
|
34
|
+
#elif DEBUG
|
|
35
|
+
"ConnectedSpacesPlatform_D"
|
|
36
|
+
#else
|
|
37
|
+
"ConnectedSpacesPlatform"
|
|
38
|
+
#endif
|
|
39
|
+
),
|
|
40
|
+
SuppressUnmanagedCodeSecurity
|
|
41
|
+
]
|
|
42
|
+
static extern NativePointer csp_multiplayer_CollisionSpaceComponent_Ctor_SpaceEntityP(IntPtr Parent);
|
|
43
|
+
|
|
44
|
+
[
|
|
45
|
+
DllImport(
|
|
46
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
47
|
+
"__Internal"
|
|
48
|
+
#elif DEBUG
|
|
49
|
+
"ConnectedSpacesPlatform_D"
|
|
50
|
+
#else
|
|
51
|
+
"ConnectedSpacesPlatform"
|
|
52
|
+
#endif
|
|
53
|
+
),
|
|
54
|
+
SuppressUnmanagedCodeSecurity
|
|
55
|
+
]
|
|
56
|
+
static extern NativePointer csp_multiplayer_CollisionSpaceComponent_GetPositionC_Vector3RC(IntPtr @class);
|
|
57
|
+
|
|
58
|
+
[
|
|
59
|
+
DllImport(
|
|
60
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
61
|
+
"__Internal"
|
|
62
|
+
#elif DEBUG
|
|
63
|
+
"ConnectedSpacesPlatform_D"
|
|
64
|
+
#else
|
|
65
|
+
"ConnectedSpacesPlatform"
|
|
66
|
+
#endif
|
|
67
|
+
),
|
|
68
|
+
SuppressUnmanagedCodeSecurity
|
|
69
|
+
]
|
|
70
|
+
static extern void csp_multiplayer_CollisionSpaceComponent_SetPosition_void_Vector3RC(
|
|
71
|
+
IntPtr @class,
|
|
72
|
+
IntPtr Value
|
|
73
|
+
);
|
|
74
|
+
|
|
75
|
+
[
|
|
76
|
+
DllImport(
|
|
77
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
78
|
+
"__Internal"
|
|
79
|
+
#elif DEBUG
|
|
80
|
+
"ConnectedSpacesPlatform_D"
|
|
81
|
+
#else
|
|
82
|
+
"ConnectedSpacesPlatform"
|
|
83
|
+
#endif
|
|
84
|
+
),
|
|
85
|
+
SuppressUnmanagedCodeSecurity
|
|
86
|
+
]
|
|
87
|
+
static extern NativePointer csp_multiplayer_CollisionSpaceComponent_GetRotationC_Vector4RC(IntPtr @class);
|
|
88
|
+
|
|
89
|
+
[
|
|
90
|
+
DllImport(
|
|
91
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
92
|
+
"__Internal"
|
|
93
|
+
#elif DEBUG
|
|
94
|
+
"ConnectedSpacesPlatform_D"
|
|
95
|
+
#else
|
|
96
|
+
"ConnectedSpacesPlatform"
|
|
97
|
+
#endif
|
|
98
|
+
),
|
|
99
|
+
SuppressUnmanagedCodeSecurity
|
|
100
|
+
]
|
|
101
|
+
static extern void csp_multiplayer_CollisionSpaceComponent_SetRotation_void_Vector4RC(
|
|
102
|
+
IntPtr @class,
|
|
103
|
+
IntPtr Value
|
|
104
|
+
);
|
|
105
|
+
|
|
106
|
+
[
|
|
107
|
+
DllImport(
|
|
108
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
109
|
+
"__Internal"
|
|
110
|
+
#elif DEBUG
|
|
111
|
+
"ConnectedSpacesPlatform_D"
|
|
112
|
+
#else
|
|
113
|
+
"ConnectedSpacesPlatform"
|
|
114
|
+
#endif
|
|
115
|
+
),
|
|
116
|
+
SuppressUnmanagedCodeSecurity
|
|
117
|
+
]
|
|
118
|
+
static extern NativePointer csp_multiplayer_CollisionSpaceComponent_GetScaleC_Vector3RC(IntPtr @class);
|
|
119
|
+
|
|
120
|
+
[
|
|
121
|
+
DllImport(
|
|
122
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
123
|
+
"__Internal"
|
|
124
|
+
#elif DEBUG
|
|
125
|
+
"ConnectedSpacesPlatform_D"
|
|
126
|
+
#else
|
|
127
|
+
"ConnectedSpacesPlatform"
|
|
128
|
+
#endif
|
|
129
|
+
),
|
|
130
|
+
SuppressUnmanagedCodeSecurity
|
|
131
|
+
]
|
|
132
|
+
static extern void csp_multiplayer_CollisionSpaceComponent_SetScale_void_Vector3RC(IntPtr @class, IntPtr Value);
|
|
133
|
+
|
|
134
|
+
[
|
|
135
|
+
DllImport(
|
|
136
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
137
|
+
"__Internal"
|
|
138
|
+
#elif DEBUG
|
|
139
|
+
"ConnectedSpacesPlatform_D"
|
|
140
|
+
#else
|
|
141
|
+
"ConnectedSpacesPlatform"
|
|
142
|
+
#endif
|
|
143
|
+
),
|
|
144
|
+
SuppressUnmanagedCodeSecurity
|
|
145
|
+
]
|
|
146
|
+
static extern Csp.Multiplayer.CollisionShape csp_multiplayer_CollisionSpaceComponent_GetCollisionShapeC_CollisionShape(
|
|
147
|
+
IntPtr @class
|
|
148
|
+
);
|
|
149
|
+
|
|
150
|
+
[
|
|
151
|
+
DllImport(
|
|
152
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
153
|
+
"__Internal"
|
|
154
|
+
#elif DEBUG
|
|
155
|
+
"ConnectedSpacesPlatform_D"
|
|
156
|
+
#else
|
|
157
|
+
"ConnectedSpacesPlatform"
|
|
158
|
+
#endif
|
|
159
|
+
),
|
|
160
|
+
SuppressUnmanagedCodeSecurity
|
|
161
|
+
]
|
|
162
|
+
static extern void csp_multiplayer_CollisionSpaceComponent_SetCollisionShape_void_CollisionShape(
|
|
163
|
+
IntPtr @class,
|
|
164
|
+
Csp.Multiplayer.CollisionShape collisionShape
|
|
165
|
+
);
|
|
166
|
+
|
|
167
|
+
[
|
|
168
|
+
DllImport(
|
|
169
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
170
|
+
"__Internal"
|
|
171
|
+
#elif DEBUG
|
|
172
|
+
"ConnectedSpacesPlatform_D"
|
|
173
|
+
#else
|
|
174
|
+
"ConnectedSpacesPlatform"
|
|
175
|
+
#endif
|
|
176
|
+
),
|
|
177
|
+
SuppressUnmanagedCodeSecurity
|
|
178
|
+
]
|
|
179
|
+
static extern Csp.Multiplayer.CollisionMode csp_multiplayer_CollisionSpaceComponent_GetCollisionModeC_CollisionMode(
|
|
180
|
+
IntPtr @class
|
|
181
|
+
);
|
|
182
|
+
|
|
183
|
+
[
|
|
184
|
+
DllImport(
|
|
185
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
186
|
+
"__Internal"
|
|
187
|
+
#elif DEBUG
|
|
188
|
+
"ConnectedSpacesPlatform_D"
|
|
189
|
+
#else
|
|
190
|
+
"ConnectedSpacesPlatform"
|
|
191
|
+
#endif
|
|
192
|
+
),
|
|
193
|
+
SuppressUnmanagedCodeSecurity
|
|
194
|
+
]
|
|
195
|
+
static extern void csp_multiplayer_CollisionSpaceComponent_SetCollisionMode_void_CollisionMode(
|
|
196
|
+
IntPtr @class,
|
|
197
|
+
Csp.Multiplayer.CollisionMode collisionMode
|
|
198
|
+
);
|
|
199
|
+
|
|
200
|
+
[
|
|
201
|
+
DllImport(
|
|
202
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
203
|
+
"__Internal"
|
|
204
|
+
#elif DEBUG
|
|
205
|
+
"ConnectedSpacesPlatform_D"
|
|
206
|
+
#else
|
|
207
|
+
"ConnectedSpacesPlatform"
|
|
208
|
+
#endif
|
|
209
|
+
),
|
|
210
|
+
SuppressUnmanagedCodeSecurity
|
|
211
|
+
]
|
|
212
|
+
static extern IntPtr csp_multiplayer_CollisionSpaceComponent_GetCollisionAssetIdC_StringRC(IntPtr @class);
|
|
213
|
+
|
|
214
|
+
[
|
|
215
|
+
DllImport(
|
|
216
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
217
|
+
"__Internal"
|
|
218
|
+
#elif DEBUG
|
|
219
|
+
"ConnectedSpacesPlatform_D"
|
|
220
|
+
#else
|
|
221
|
+
"ConnectedSpacesPlatform"
|
|
222
|
+
#endif
|
|
223
|
+
),
|
|
224
|
+
SuppressUnmanagedCodeSecurity
|
|
225
|
+
]
|
|
226
|
+
static extern void csp_multiplayer_CollisionSpaceComponent_SetCollisionAssetId_void_StringRC(
|
|
227
|
+
IntPtr @class,
|
|
228
|
+
IntPtr Value
|
|
229
|
+
);
|
|
230
|
+
|
|
231
|
+
[
|
|
232
|
+
DllImport(
|
|
233
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
234
|
+
"__Internal"
|
|
235
|
+
#elif DEBUG
|
|
236
|
+
"ConnectedSpacesPlatform_D"
|
|
237
|
+
#else
|
|
238
|
+
"ConnectedSpacesPlatform"
|
|
239
|
+
#endif
|
|
240
|
+
),
|
|
241
|
+
SuppressUnmanagedCodeSecurity
|
|
242
|
+
]
|
|
243
|
+
static extern IntPtr csp_multiplayer_CollisionSpaceComponent_GetAssetCollectionIdC_StringRC(IntPtr @class);
|
|
244
|
+
|
|
245
|
+
[
|
|
246
|
+
DllImport(
|
|
247
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
248
|
+
"__Internal"
|
|
249
|
+
#elif DEBUG
|
|
250
|
+
"ConnectedSpacesPlatform_D"
|
|
251
|
+
#else
|
|
252
|
+
"ConnectedSpacesPlatform"
|
|
253
|
+
#endif
|
|
254
|
+
),
|
|
255
|
+
SuppressUnmanagedCodeSecurity
|
|
256
|
+
]
|
|
257
|
+
static extern void csp_multiplayer_CollisionSpaceComponent_SetAssetCollectionId_void_StringRC(
|
|
258
|
+
IntPtr @class,
|
|
259
|
+
IntPtr Value
|
|
260
|
+
);
|
|
261
|
+
|
|
262
|
+
[
|
|
263
|
+
DllImport(
|
|
264
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
265
|
+
"__Internal"
|
|
266
|
+
#elif DEBUG
|
|
267
|
+
"ConnectedSpacesPlatform_D"
|
|
268
|
+
#else
|
|
269
|
+
"ConnectedSpacesPlatform"
|
|
270
|
+
#endif
|
|
271
|
+
),
|
|
272
|
+
SuppressUnmanagedCodeSecurity
|
|
273
|
+
]
|
|
274
|
+
static extern NativePointer csp_multiplayer_CollisionSpaceComponent_GetUnscaledBoundingBoxMin_Vector3C(
|
|
275
|
+
IntPtr @class
|
|
276
|
+
);
|
|
277
|
+
|
|
278
|
+
[
|
|
279
|
+
DllImport(
|
|
280
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
281
|
+
"__Internal"
|
|
282
|
+
#elif DEBUG
|
|
283
|
+
"ConnectedSpacesPlatform_D"
|
|
284
|
+
#else
|
|
285
|
+
"ConnectedSpacesPlatform"
|
|
286
|
+
#endif
|
|
287
|
+
),
|
|
288
|
+
SuppressUnmanagedCodeSecurity
|
|
289
|
+
]
|
|
290
|
+
static extern NativePointer csp_multiplayer_CollisionSpaceComponent_GetUnscaledBoundingBoxMax_Vector3C(
|
|
291
|
+
IntPtr @class
|
|
292
|
+
);
|
|
293
|
+
|
|
294
|
+
[
|
|
295
|
+
DllImport(
|
|
296
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
297
|
+
"__Internal"
|
|
298
|
+
#elif DEBUG
|
|
299
|
+
"ConnectedSpacesPlatform_D"
|
|
300
|
+
#else
|
|
301
|
+
"ConnectedSpacesPlatform"
|
|
302
|
+
#endif
|
|
303
|
+
),
|
|
304
|
+
SuppressUnmanagedCodeSecurity
|
|
305
|
+
]
|
|
306
|
+
static extern NativePointer csp_multiplayer_CollisionSpaceComponent_GetScaledBoundingBoxMin_Vector3C(
|
|
307
|
+
IntPtr @class
|
|
308
|
+
);
|
|
309
|
+
|
|
310
|
+
[
|
|
311
|
+
DllImport(
|
|
312
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
313
|
+
"__Internal"
|
|
314
|
+
#elif DEBUG
|
|
315
|
+
"ConnectedSpacesPlatform_D"
|
|
316
|
+
#else
|
|
317
|
+
"ConnectedSpacesPlatform"
|
|
318
|
+
#endif
|
|
319
|
+
),
|
|
320
|
+
SuppressUnmanagedCodeSecurity
|
|
321
|
+
]
|
|
322
|
+
static extern NativePointer csp_multiplayer_CollisionSpaceComponent_GetScaledBoundingBoxMax_Vector3C(
|
|
323
|
+
IntPtr @class
|
|
324
|
+
);
|
|
325
|
+
|
|
326
|
+
[
|
|
327
|
+
DllImport(
|
|
328
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
329
|
+
"__Internal"
|
|
330
|
+
#elif DEBUG
|
|
331
|
+
"ConnectedSpacesPlatform_D"
|
|
332
|
+
#else
|
|
333
|
+
"ConnectedSpacesPlatform"
|
|
334
|
+
#endif
|
|
335
|
+
),
|
|
336
|
+
SuppressUnmanagedCodeSecurity
|
|
337
|
+
]
|
|
338
|
+
static extern float csp_multiplayer_CollisionSpaceComponent_GetDefaultSphereRadius_float();
|
|
339
|
+
|
|
340
|
+
[
|
|
341
|
+
DllImport(
|
|
342
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
343
|
+
"__Internal"
|
|
344
|
+
#elif DEBUG
|
|
345
|
+
"ConnectedSpacesPlatform_D"
|
|
346
|
+
#else
|
|
347
|
+
"ConnectedSpacesPlatform"
|
|
348
|
+
#endif
|
|
349
|
+
),
|
|
350
|
+
SuppressUnmanagedCodeSecurity
|
|
351
|
+
]
|
|
352
|
+
static extern float csp_multiplayer_CollisionSpaceComponent_GetDefaultCapsuleHalfWidth_float();
|
|
353
|
+
|
|
354
|
+
[
|
|
355
|
+
DllImport(
|
|
356
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
357
|
+
"__Internal"
|
|
358
|
+
#elif DEBUG
|
|
359
|
+
"ConnectedSpacesPlatform_D"
|
|
360
|
+
#else
|
|
361
|
+
"ConnectedSpacesPlatform"
|
|
362
|
+
#endif
|
|
363
|
+
),
|
|
364
|
+
SuppressUnmanagedCodeSecurity
|
|
365
|
+
]
|
|
366
|
+
static extern float csp_multiplayer_CollisionSpaceComponent_GetDefaultCapsuleHalfHeight_float();
|
|
367
|
+
|
|
368
|
+
[
|
|
369
|
+
DllImport(
|
|
370
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
371
|
+
"__Internal"
|
|
372
|
+
#elif DEBUG
|
|
373
|
+
"ConnectedSpacesPlatform_D"
|
|
374
|
+
#else
|
|
375
|
+
"ConnectedSpacesPlatform"
|
|
376
|
+
#endif
|
|
377
|
+
),
|
|
378
|
+
SuppressUnmanagedCodeSecurity
|
|
379
|
+
]
|
|
380
|
+
static extern IntPtr csp_multiplayer_CollisionSpaceComponent_GetThirdPartyComponentRefC_StringRC(IntPtr @class);
|
|
381
|
+
|
|
382
|
+
[
|
|
383
|
+
DllImport(
|
|
384
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
385
|
+
"__Internal"
|
|
386
|
+
#elif DEBUG
|
|
387
|
+
"ConnectedSpacesPlatform_D"
|
|
388
|
+
#else
|
|
389
|
+
"ConnectedSpacesPlatform"
|
|
390
|
+
#endif
|
|
391
|
+
),
|
|
392
|
+
SuppressUnmanagedCodeSecurity
|
|
393
|
+
]
|
|
394
|
+
static extern void csp_multiplayer_CollisionSpaceComponent_SetThirdPartyComponentRef_void_StringRC(
|
|
395
|
+
IntPtr @class,
|
|
396
|
+
IntPtr InValue
|
|
397
|
+
);
|
|
398
|
+
|
|
399
|
+
[
|
|
400
|
+
DllImport(
|
|
401
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
402
|
+
"__Internal"
|
|
403
|
+
#elif DEBUG
|
|
404
|
+
"ConnectedSpacesPlatform_D"
|
|
405
|
+
#else
|
|
406
|
+
"ConnectedSpacesPlatform"
|
|
407
|
+
#endif
|
|
408
|
+
),
|
|
409
|
+
SuppressUnmanagedCodeSecurity
|
|
410
|
+
]
|
|
411
|
+
static extern void csp_multiplayer_CollisionSpaceComponent_Dtor(IntPtr @class);
|
|
412
|
+
|
|
413
|
+
#pragma warning restore IDE1006
|
|
414
|
+
#endregion
|
|
415
|
+
|
|
416
|
+
internal CollisionSpaceComponent(NativePointer ptr) : base(ptr) { }
|
|
417
|
+
|
|
418
|
+
public CollisionSpaceComponent(Csp.Multiplayer.ComponentBase baseInstance)
|
|
419
|
+
: base(new NativePointer(baseInstance._ptr, baseInstance._ownsPtr ? (byte)1 : (byte)0))
|
|
420
|
+
{
|
|
421
|
+
// Prevent previous instance from freeing underlying pointer when destroyed
|
|
422
|
+
baseInstance._ownsPtr = false;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
/// <summary>Constructs the collision space component, and associates it with the specified Parent space entity.</summary>
|
|
426
|
+
/// <param name="Parent">The Space entity that owns this component.</param>
|
|
427
|
+
|
|
428
|
+
public CollisionSpaceComponent(Csp.Multiplayer.SpaceEntity Parent)
|
|
429
|
+
{
|
|
430
|
+
var np = csp_multiplayer_CollisionSpaceComponent_Ctor_SpaceEntityP(Parent._ptr);
|
|
431
|
+
_ptr = np.Pointer;
|
|
432
|
+
_ownsPtr = np.OwnsOwnData;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
/// <summary>Gets the position of the origin of this component in world space.</summary>
|
|
436
|
+
/// @note The coordinate system used follows the glTF 2.0 specification, in meters.
|
|
437
|
+
/// <remarks>- Right handed coordinate system</remarks>
|
|
438
|
+
/// <remarks>- +Y is UP</remarks>
|
|
439
|
+
/// <remarks>- +X is left (facing forward)</remarks>
|
|
440
|
+
/// <remarks>- +Z is forward</remarks>
|
|
441
|
+
/// <returns>The 3D position as vector (left, up, forward) in meters.</returns>
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
public Csp.Common.Vector3 GetPosition()
|
|
445
|
+
{
|
|
446
|
+
var _result = new Csp.Common.Vector3(csp_multiplayer_CollisionSpaceComponent_GetPositionC_Vector3RC(_ptr));
|
|
447
|
+
|
|
448
|
+
return _result;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
/// <summary>Sets the position of the origin of this component in world space.</summary>
|
|
452
|
+
/// @note The coordinate system used follows the glTF 2.0 specification, in meters.
|
|
453
|
+
/// <remarks>- Right handed coordinate system</remarks>
|
|
454
|
+
/// <remarks>- +Y is UP</remarks>
|
|
455
|
+
/// <remarks>- +X is left (facing forward)</remarks>
|
|
456
|
+
/// <remarks>- +Z is forward</remarks>
|
|
457
|
+
|
|
458
|
+
|
|
459
|
+
public void SetPosition(Csp.Common.Vector3 Value)
|
|
460
|
+
{
|
|
461
|
+
csp_multiplayer_CollisionSpaceComponent_SetPosition_void_Vector3RC(_ptr, Value._ptr);
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
/// <summary>Gets a quaternion representing the rotation of the origin of this component, expressed in radians.</summary>
|
|
465
|
+
/// @note The coordinate system respects the following conventions:
|
|
466
|
+
/// <remarks>- Right handed coordinate system</remarks>
|
|
467
|
+
/// <remarks>- Positive rotation is counterclockwise</remarks>
|
|
468
|
+
/// <remarks>- The geographic North is along the positive Z axis (+Z) at an orientation of 0 degrees.</remarks>
|
|
469
|
+
/// <remarks>- North: +Z</remarks>
|
|
470
|
+
/// <remarks>- East: -X</remarks>
|
|
471
|
+
/// <remarks>- South: -Z</remarks>
|
|
472
|
+
/// <remarks>- West: +X</remarks>
|
|
473
|
+
|
|
474
|
+
|
|
475
|
+
public Csp.Common.Vector4 GetRotation()
|
|
476
|
+
{
|
|
477
|
+
var _result = new Csp.Common.Vector4(csp_multiplayer_CollisionSpaceComponent_GetRotationC_Vector4RC(_ptr));
|
|
478
|
+
|
|
479
|
+
return _result;
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
/// <summary>Sets the rotation of the origin of this component according to the specified quaternion "Value", expressed in radians.</summary>
|
|
483
|
+
/// @note The coordinate system respects the following conventions:
|
|
484
|
+
/// <remarks>- Right handed coordinate system</remarks>
|
|
485
|
+
/// <remarks>- Positive rotation is counterclockwise</remarks>
|
|
486
|
+
/// <remarks>- The geographic North is along the positive Z axis (+Z) at an orientation of 0 degrees.</remarks>
|
|
487
|
+
/// <remarks>- North: +Z</remarks>
|
|
488
|
+
/// <remarks>- East: -X</remarks>
|
|
489
|
+
/// <remarks>- South: -Z</remarks>
|
|
490
|
+
/// <remarks>- West: +X</remarks>
|
|
491
|
+
/// <param name="Value">The quaternion in radians to use as new rotation of this component.</param>
|
|
492
|
+
|
|
493
|
+
|
|
494
|
+
public void SetRotation(Csp.Common.Vector4 Value)
|
|
495
|
+
{
|
|
496
|
+
csp_multiplayer_CollisionSpaceComponent_SetRotation_void_Vector4RC(_ptr, Value._ptr);
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
/// <summary>Gets the scale of the origin of this component in world space.</summary>
|
|
500
|
+
/// @note The coordinate system used follows the glTF 2.0 specification.
|
|
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 scale as vector (left, up, forward).</returns>
|
|
506
|
+
|
|
507
|
+
|
|
508
|
+
public Csp.Common.Vector3 GetScale()
|
|
509
|
+
{
|
|
510
|
+
var _result = new Csp.Common.Vector3(csp_multiplayer_CollisionSpaceComponent_GetScaleC_Vector3RC(_ptr));
|
|
511
|
+
|
|
512
|
+
return _result;
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
/// <summary>Sets the scale of the origin of this component in world space to the specified "Value".</summary>
|
|
516
|
+
/// <param name="Value">The new value expressed as vector (left, up, forward).</param>
|
|
517
|
+
/// @note The coordinate system used follows the glTF 2.0 specification.
|
|
518
|
+
/// <remarks>- Right handed coordinate system</remarks>
|
|
519
|
+
/// <remarks>- +Y is UP</remarks>
|
|
520
|
+
/// <remarks>- +X is left (facing forward)</remarks>
|
|
521
|
+
/// <remarks>- +Z is forward</remarks>
|
|
522
|
+
|
|
523
|
+
|
|
524
|
+
public void SetScale(Csp.Common.Vector3 Value)
|
|
525
|
+
{
|
|
526
|
+
csp_multiplayer_CollisionSpaceComponent_SetScale_void_Vector3RC(_ptr, Value._ptr);
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
/// <summary>Gets the collision shape used by this collision component.</summary>
|
|
530
|
+
/// <returns>The colllision shape used by this collision component.</returns>
|
|
531
|
+
|
|
532
|
+
|
|
533
|
+
public Csp.Multiplayer.CollisionShape GetCollisionShape()
|
|
534
|
+
{
|
|
535
|
+
var _result = csp_multiplayer_CollisionSpaceComponent_GetCollisionShapeC_CollisionShape(_ptr);
|
|
536
|
+
|
|
537
|
+
return _result;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
/// <summary>Sets the collision shape used by this collision component.</summary>
|
|
541
|
+
/// <param name="collisionShape">The colllision shape used by this collision component.</param>
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
public void SetCollisionShape(Csp.Multiplayer.CollisionShape collisionShape)
|
|
545
|
+
{
|
|
546
|
+
csp_multiplayer_CollisionSpaceComponent_SetCollisionShape_void_CollisionShape(_ptr, collisionShape);
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
/// <summary>Gets the collision mode used by this collision component.</summary>
|
|
550
|
+
/// <returns>The colllision mode used by this collision component.</returns>
|
|
551
|
+
|
|
552
|
+
|
|
553
|
+
public Csp.Multiplayer.CollisionMode GetCollisionMode()
|
|
554
|
+
{
|
|
555
|
+
var _result = csp_multiplayer_CollisionSpaceComponent_GetCollisionModeC_CollisionMode(_ptr);
|
|
556
|
+
|
|
557
|
+
return _result;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
/// <summary>Sets the collision mode used by this collision component.</summary>
|
|
561
|
+
/// <param name="collisionMode">The colllision mode used by this collision component.</param>
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
public void SetCollisionMode(Csp.Multiplayer.CollisionMode collisionMode)
|
|
565
|
+
{
|
|
566
|
+
csp_multiplayer_CollisionSpaceComponent_SetCollisionMode_void_CollisionMode(_ptr, collisionMode);
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
/// <summary>Gets the ID of the collision asset used by this collision component.</summary>
|
|
570
|
+
/// <returns>The ID of the collision asset used by this collision component.</returns>
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
public string GetCollisionAssetId()
|
|
574
|
+
{
|
|
575
|
+
var _result = csp_multiplayer_CollisionSpaceComponent_GetCollisionAssetIdC_StringRC(_ptr);
|
|
576
|
+
|
|
577
|
+
var _resultString = WrapperHelper.NativeUTF8ToString(_result);
|
|
578
|
+
Global.Free(_result);
|
|
579
|
+
|
|
580
|
+
return _resultString;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
/// <summary>Sets the ID of the collision asset used by this collision component.</summary>
|
|
584
|
+
/// <param name="Value">The ID of the collision asset used by this collision component.</param>
|
|
585
|
+
|
|
586
|
+
|
|
587
|
+
public void SetCollisionAssetId(string Value)
|
|
588
|
+
{
|
|
589
|
+
csp_multiplayer_CollisionSpaceComponent_SetCollisionAssetId_void_StringRC(
|
|
590
|
+
_ptr,
|
|
591
|
+
WrapperHelper.StringToNativeUTF8(Value)
|
|
592
|
+
);
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
/// <summary>Gets the ID of the asset collection associated with this component.</summary>
|
|
596
|
+
/// @note To retrieve this component's collision asset, both the Asset ID and the Asset Collection ID are required.
|
|
597
|
+
/// <returns>The ID of the asset collection associated with this component.</returns>
|
|
598
|
+
|
|
599
|
+
|
|
600
|
+
public string GetAssetCollectionId()
|
|
601
|
+
{
|
|
602
|
+
var _result = csp_multiplayer_CollisionSpaceComponent_GetAssetCollectionIdC_StringRC(_ptr);
|
|
603
|
+
|
|
604
|
+
var _resultString = WrapperHelper.NativeUTF8ToString(_result);
|
|
605
|
+
Global.Free(_result);
|
|
606
|
+
|
|
607
|
+
return _resultString;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
/// <summary>Sets the ID of the asset collection associated with this component.</summary>
|
|
611
|
+
/// @note To retrieve this component's collision asset, both the Asset ID and the Asset Collection ID are required.
|
|
612
|
+
/// <param name="Value">The ID of the asset collection associated with this component.</param>
|
|
613
|
+
|
|
614
|
+
|
|
615
|
+
public void SetAssetCollectionId(string Value)
|
|
616
|
+
{
|
|
617
|
+
csp_multiplayer_CollisionSpaceComponent_SetAssetCollectionId_void_StringRC(
|
|
618
|
+
_ptr,
|
|
619
|
+
WrapperHelper.StringToNativeUTF8(Value)
|
|
620
|
+
);
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
/// <summary>Gets the minimum unscaled bounding box of this collision component.</summary>
|
|
624
|
+
/// <returns>The minimum unscaled bounding box of this collision component.</returns>
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
public Csp.Common.Vector3 GetUnscaledBoundingBoxMin()
|
|
628
|
+
{
|
|
629
|
+
var _result = new Csp.Common.Vector3(
|
|
630
|
+
csp_multiplayer_CollisionSpaceComponent_GetUnscaledBoundingBoxMin_Vector3C(_ptr)
|
|
631
|
+
);
|
|
632
|
+
|
|
633
|
+
return _result;
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
/// <summary>Gets the maximum unscaled bounding box of this collision component.</summary>
|
|
637
|
+
/// <returns>The maximum unscaled bounding box of this collision component.</returns>
|
|
638
|
+
|
|
639
|
+
|
|
640
|
+
public Csp.Common.Vector3 GetUnscaledBoundingBoxMax()
|
|
641
|
+
{
|
|
642
|
+
var _result = new Csp.Common.Vector3(
|
|
643
|
+
csp_multiplayer_CollisionSpaceComponent_GetUnscaledBoundingBoxMax_Vector3C(_ptr)
|
|
644
|
+
);
|
|
645
|
+
|
|
646
|
+
return _result;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
/// <summary>Gets the minimum scaled bounding box of this collision component.</summary>
|
|
650
|
+
/// <returns>The minimum scaled bounding box of this collision component.</returns>
|
|
651
|
+
|
|
652
|
+
|
|
653
|
+
public Csp.Common.Vector3 GetScaledBoundingBoxMin()
|
|
654
|
+
{
|
|
655
|
+
var _result = new Csp.Common.Vector3(
|
|
656
|
+
csp_multiplayer_CollisionSpaceComponent_GetScaledBoundingBoxMin_Vector3C(_ptr)
|
|
657
|
+
);
|
|
658
|
+
|
|
659
|
+
return _result;
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
/// <summary>Gets the maximum scaled bounding box of this collision component.</summary>
|
|
663
|
+
/// <returns>The maximum scaled bounding box of this collision component.</returns>
|
|
664
|
+
|
|
665
|
+
|
|
666
|
+
public Csp.Common.Vector3 GetScaledBoundingBoxMax()
|
|
667
|
+
{
|
|
668
|
+
var _result = new Csp.Common.Vector3(
|
|
669
|
+
csp_multiplayer_CollisionSpaceComponent_GetScaledBoundingBoxMax_Vector3C(_ptr)
|
|
670
|
+
);
|
|
671
|
+
|
|
672
|
+
return _result;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
/// <summary>Gets the default radius for a sphere collision mesh.</summary>
|
|
676
|
+
/// <returns>The default radius for a sphere collision mesh.</returns>
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
public static float GetDefaultSphereRadius()
|
|
680
|
+
{
|
|
681
|
+
var _result = csp_multiplayer_CollisionSpaceComponent_GetDefaultSphereRadius_float();
|
|
682
|
+
|
|
683
|
+
return _result;
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
/// <summary>Gets the default half width for a capsule collision mesh.</summary>
|
|
687
|
+
/// <returns>The default half width for a capsule collision mesh.</returns>
|
|
688
|
+
|
|
689
|
+
|
|
690
|
+
public static float GetDefaultCapsuleHalfWidth()
|
|
691
|
+
{
|
|
692
|
+
var _result = csp_multiplayer_CollisionSpaceComponent_GetDefaultCapsuleHalfWidth_float();
|
|
693
|
+
|
|
694
|
+
return _result;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
/// <summary>Gets the default half height for a capsule collision mesh.</summary>
|
|
698
|
+
/// <returns>The default half height for a capsule collision mesh.</returns>
|
|
699
|
+
|
|
700
|
+
|
|
701
|
+
public static float GetDefaultCapsuleHalfHeight()
|
|
702
|
+
{
|
|
703
|
+
var _result = csp_multiplayer_CollisionSpaceComponent_GetDefaultCapsuleHalfHeight_float();
|
|
704
|
+
|
|
705
|
+
return _result;
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
/// <remarks>\addtogroup IThirdPartyComponentRef</remarks>
|
|
709
|
+
/// @{
|
|
710
|
+
/// @copydoc IThirdPartyComponentRef::GetThirdPartyComponentRef()
|
|
711
|
+
|
|
712
|
+
|
|
713
|
+
public string GetThirdPartyComponentRef()
|
|
714
|
+
{
|
|
715
|
+
var _result = csp_multiplayer_CollisionSpaceComponent_GetThirdPartyComponentRefC_StringRC(_ptr);
|
|
716
|
+
|
|
717
|
+
var _resultString = WrapperHelper.NativeUTF8ToString(_result);
|
|
718
|
+
Global.Free(_result);
|
|
719
|
+
|
|
720
|
+
return _resultString;
|
|
721
|
+
}
|
|
722
|
+
|
|
723
|
+
/// @copydoc IThirdPartyComponentRef::SetThirdPartyComponentRef()
|
|
724
|
+
|
|
725
|
+
|
|
726
|
+
public void SetThirdPartyComponentRef(string InValue)
|
|
727
|
+
{
|
|
728
|
+
csp_multiplayer_CollisionSpaceComponent_SetThirdPartyComponentRef_void_StringRC(
|
|
729
|
+
_ptr,
|
|
730
|
+
WrapperHelper.StringToNativeUTF8(InValue)
|
|
731
|
+
);
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
~CollisionSpaceComponent()
|
|
735
|
+
{
|
|
736
|
+
//RealDispose();
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
void RealDispose()
|
|
740
|
+
{
|
|
741
|
+
if (_ownsPtr && !_disposed)
|
|
742
|
+
{
|
|
743
|
+
csp_multiplayer_CollisionSpaceComponent_Dtor(_ptr);
|
|
744
|
+
_disposed = true;
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
_disposed = true;
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
new public void Dispose()
|
|
751
|
+
{
|
|
752
|
+
RealDispose();
|
|
753
|
+
GC.SuppressFinalize(this);
|
|
754
|
+
}
|
|
755
|
+
}
|
|
756
|
+
}
|
|
757
|
+
|