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,270 @@
|
|
|
1
|
+
// WARNING: DO NOT EDIT THIS FILE! IT IS A GENERATED FILE AND
|
|
2
|
+
// ANY CHANGES YOU MAKE WILL BE OVERWRITTEN ON THE NEXT BUILD
|
|
3
|
+
|
|
4
|
+
#nullable enable annotations
|
|
5
|
+
|
|
6
|
+
using System;
|
|
7
|
+
using System.Collections.Generic;
|
|
8
|
+
using System.Reflection;
|
|
9
|
+
using System.Runtime.InteropServices;
|
|
10
|
+
using System.Security;
|
|
11
|
+
using System.Threading.Tasks;
|
|
12
|
+
|
|
13
|
+
namespace Csp.Multiplayer
|
|
14
|
+
{
|
|
15
|
+
/// <summary>Class used to provide details of a changed asset in a callback.</summary>
|
|
16
|
+
|
|
17
|
+
public class AssetDetailBlobParams : NativeClassWrapper, IDisposable
|
|
18
|
+
{
|
|
19
|
+
internal override string _safeTypeName { get; } = "csp_multiplayer_AssetDetailBlobParams";
|
|
20
|
+
|
|
21
|
+
#region P/Invoke
|
|
22
|
+
#pragma warning disable IDE1006
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
[
|
|
26
|
+
DllImport(
|
|
27
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
28
|
+
"__Internal"
|
|
29
|
+
#elif DEBUG
|
|
30
|
+
"ConnectedSpacesPlatform_D"
|
|
31
|
+
#else
|
|
32
|
+
"ConnectedSpacesPlatform"
|
|
33
|
+
#endif
|
|
34
|
+
),
|
|
35
|
+
SuppressUnmanagedCodeSecurity
|
|
36
|
+
]
|
|
37
|
+
static extern Csp.Multiplayer.EAssetChangeType csp_multiplayer_AssetDetailBlobParams__Get_ChangeType(
|
|
38
|
+
IntPtr @class
|
|
39
|
+
);
|
|
40
|
+
|
|
41
|
+
[
|
|
42
|
+
DllImport(
|
|
43
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
44
|
+
"__Internal"
|
|
45
|
+
#elif DEBUG
|
|
46
|
+
"ConnectedSpacesPlatform_D"
|
|
47
|
+
#else
|
|
48
|
+
"ConnectedSpacesPlatform"
|
|
49
|
+
#endif
|
|
50
|
+
),
|
|
51
|
+
SuppressUnmanagedCodeSecurity
|
|
52
|
+
]
|
|
53
|
+
static extern void csp_multiplayer_AssetDetailBlobParams__Set_ChangeType(
|
|
54
|
+
IntPtr @class,
|
|
55
|
+
Csp.Multiplayer.EAssetChangeType value
|
|
56
|
+
);
|
|
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 IntPtr csp_multiplayer_AssetDetailBlobParams__Get_AssetId(IntPtr @class);
|
|
71
|
+
|
|
72
|
+
[
|
|
73
|
+
DllImport(
|
|
74
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
75
|
+
"__Internal"
|
|
76
|
+
#elif DEBUG
|
|
77
|
+
"ConnectedSpacesPlatform_D"
|
|
78
|
+
#else
|
|
79
|
+
"ConnectedSpacesPlatform"
|
|
80
|
+
#endif
|
|
81
|
+
),
|
|
82
|
+
SuppressUnmanagedCodeSecurity
|
|
83
|
+
]
|
|
84
|
+
static extern void csp_multiplayer_AssetDetailBlobParams__Set_AssetId(IntPtr @class, IntPtr value);
|
|
85
|
+
|
|
86
|
+
[
|
|
87
|
+
DllImport(
|
|
88
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
89
|
+
"__Internal"
|
|
90
|
+
#elif DEBUG
|
|
91
|
+
"ConnectedSpacesPlatform_D"
|
|
92
|
+
#else
|
|
93
|
+
"ConnectedSpacesPlatform"
|
|
94
|
+
#endif
|
|
95
|
+
),
|
|
96
|
+
SuppressUnmanagedCodeSecurity
|
|
97
|
+
]
|
|
98
|
+
static extern IntPtr csp_multiplayer_AssetDetailBlobParams__Get_Version(IntPtr @class);
|
|
99
|
+
|
|
100
|
+
[
|
|
101
|
+
DllImport(
|
|
102
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
103
|
+
"__Internal"
|
|
104
|
+
#elif DEBUG
|
|
105
|
+
"ConnectedSpacesPlatform_D"
|
|
106
|
+
#else
|
|
107
|
+
"ConnectedSpacesPlatform"
|
|
108
|
+
#endif
|
|
109
|
+
),
|
|
110
|
+
SuppressUnmanagedCodeSecurity
|
|
111
|
+
]
|
|
112
|
+
static extern void csp_multiplayer_AssetDetailBlobParams__Set_Version(IntPtr @class, IntPtr value);
|
|
113
|
+
|
|
114
|
+
[
|
|
115
|
+
DllImport(
|
|
116
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
117
|
+
"__Internal"
|
|
118
|
+
#elif DEBUG
|
|
119
|
+
"ConnectedSpacesPlatform_D"
|
|
120
|
+
#else
|
|
121
|
+
"ConnectedSpacesPlatform"
|
|
122
|
+
#endif
|
|
123
|
+
),
|
|
124
|
+
SuppressUnmanagedCodeSecurity
|
|
125
|
+
]
|
|
126
|
+
static extern Csp.Systems.EAssetType csp_multiplayer_AssetDetailBlobParams__Get_AssetType(IntPtr @class);
|
|
127
|
+
|
|
128
|
+
[
|
|
129
|
+
DllImport(
|
|
130
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
131
|
+
"__Internal"
|
|
132
|
+
#elif DEBUG
|
|
133
|
+
"ConnectedSpacesPlatform_D"
|
|
134
|
+
#else
|
|
135
|
+
"ConnectedSpacesPlatform"
|
|
136
|
+
#endif
|
|
137
|
+
),
|
|
138
|
+
SuppressUnmanagedCodeSecurity
|
|
139
|
+
]
|
|
140
|
+
static extern void csp_multiplayer_AssetDetailBlobParams__Set_AssetType(
|
|
141
|
+
IntPtr @class,
|
|
142
|
+
Csp.Systems.EAssetType value
|
|
143
|
+
);
|
|
144
|
+
|
|
145
|
+
[
|
|
146
|
+
DllImport(
|
|
147
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
148
|
+
"__Internal"
|
|
149
|
+
#elif DEBUG
|
|
150
|
+
"ConnectedSpacesPlatform_D"
|
|
151
|
+
#else
|
|
152
|
+
"ConnectedSpacesPlatform"
|
|
153
|
+
#endif
|
|
154
|
+
),
|
|
155
|
+
SuppressUnmanagedCodeSecurity
|
|
156
|
+
]
|
|
157
|
+
static extern IntPtr csp_multiplayer_AssetDetailBlobParams__Get_AssetCollectionId(IntPtr @class);
|
|
158
|
+
|
|
159
|
+
[
|
|
160
|
+
DllImport(
|
|
161
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
162
|
+
"__Internal"
|
|
163
|
+
#elif DEBUG
|
|
164
|
+
"ConnectedSpacesPlatform_D"
|
|
165
|
+
#else
|
|
166
|
+
"ConnectedSpacesPlatform"
|
|
167
|
+
#endif
|
|
168
|
+
),
|
|
169
|
+
SuppressUnmanagedCodeSecurity
|
|
170
|
+
]
|
|
171
|
+
static extern void csp_multiplayer_AssetDetailBlobParams__Set_AssetCollectionId(IntPtr @class, IntPtr value);
|
|
172
|
+
|
|
173
|
+
[
|
|
174
|
+
DllImport(
|
|
175
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
176
|
+
"__Internal"
|
|
177
|
+
#elif DEBUG
|
|
178
|
+
"ConnectedSpacesPlatform_D"
|
|
179
|
+
#else
|
|
180
|
+
"ConnectedSpacesPlatform"
|
|
181
|
+
#endif
|
|
182
|
+
),
|
|
183
|
+
SuppressUnmanagedCodeSecurity
|
|
184
|
+
]
|
|
185
|
+
static extern NativePointer csp_multiplayer_AssetDetailBlobParams_Ctor();
|
|
186
|
+
|
|
187
|
+
[
|
|
188
|
+
DllImport(
|
|
189
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
190
|
+
"__Internal"
|
|
191
|
+
#elif DEBUG
|
|
192
|
+
"ConnectedSpacesPlatform_D"
|
|
193
|
+
#else
|
|
194
|
+
"ConnectedSpacesPlatform"
|
|
195
|
+
#endif
|
|
196
|
+
),
|
|
197
|
+
SuppressUnmanagedCodeSecurity
|
|
198
|
+
]
|
|
199
|
+
static extern void csp_multiplayer_AssetDetailBlobParams_Dtor(IntPtr @class);
|
|
200
|
+
|
|
201
|
+
#pragma warning restore IDE1006
|
|
202
|
+
#endregion
|
|
203
|
+
|
|
204
|
+
internal AssetDetailBlobParams(NativePointer ptr) : base(ptr) { }
|
|
205
|
+
|
|
206
|
+
public Csp.Multiplayer.EAssetChangeType ChangeType
|
|
207
|
+
{
|
|
208
|
+
get => csp_multiplayer_AssetDetailBlobParams__Get_ChangeType(_ptr);
|
|
209
|
+
set => csp_multiplayer_AssetDetailBlobParams__Set_ChangeType(_ptr, value);
|
|
210
|
+
}
|
|
211
|
+
|
|
212
|
+
public string AssetId
|
|
213
|
+
{
|
|
214
|
+
get => WrapperHelper.NativeUTF8ToString(csp_multiplayer_AssetDetailBlobParams__Get_AssetId(_ptr));
|
|
215
|
+
set => csp_multiplayer_AssetDetailBlobParams__Set_AssetId(_ptr, WrapperHelper.StringToNativeUTF8(value));
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
public string Version
|
|
219
|
+
{
|
|
220
|
+
get => WrapperHelper.NativeUTF8ToString(csp_multiplayer_AssetDetailBlobParams__Get_Version(_ptr));
|
|
221
|
+
set => csp_multiplayer_AssetDetailBlobParams__Set_Version(_ptr, WrapperHelper.StringToNativeUTF8(value));
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
public Csp.Systems.EAssetType AssetType
|
|
225
|
+
{
|
|
226
|
+
get => csp_multiplayer_AssetDetailBlobParams__Get_AssetType(_ptr);
|
|
227
|
+
set => csp_multiplayer_AssetDetailBlobParams__Set_AssetType(_ptr, value);
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
public string AssetCollectionId
|
|
231
|
+
{
|
|
232
|
+
get => WrapperHelper.NativeUTF8ToString(csp_multiplayer_AssetDetailBlobParams__Get_AssetCollectionId(_ptr));
|
|
233
|
+
set =>
|
|
234
|
+
csp_multiplayer_AssetDetailBlobParams__Set_AssetCollectionId(
|
|
235
|
+
_ptr,
|
|
236
|
+
WrapperHelper.StringToNativeUTF8(value)
|
|
237
|
+
);
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
public AssetDetailBlobParams()
|
|
241
|
+
{
|
|
242
|
+
var np = csp_multiplayer_AssetDetailBlobParams_Ctor();
|
|
243
|
+
_ptr = np.Pointer;
|
|
244
|
+
_ownsPtr = np.OwnsOwnData;
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
~AssetDetailBlobParams()
|
|
248
|
+
{
|
|
249
|
+
//RealDispose();
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
void RealDispose()
|
|
253
|
+
{
|
|
254
|
+
if (_ownsPtr && !_disposed)
|
|
255
|
+
{
|
|
256
|
+
csp_multiplayer_AssetDetailBlobParams_Dtor(_ptr);
|
|
257
|
+
_disposed = true;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
_disposed = true;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
public void Dispose()
|
|
264
|
+
{
|
|
265
|
+
RealDispose();
|
|
266
|
+
GC.SuppressFinalize(this);
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 5d69b79d8fd64b23a875f18a6ab855c7
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {instanceID: 0}
|
|
9
|
+
userData: null
|
|
10
|
+
assetBundleName: null
|
|
11
|
+
assetBundleVariant: null
|
|
@@ -0,0 +1,339 @@
|
|
|
1
|
+
// WARNING: DO NOT EDIT THIS FILE! IT IS A GENERATED FILE AND
|
|
2
|
+
// ANY CHANGES YOU MAKE WILL BE OVERWRITTEN ON THE NEXT BUILD
|
|
3
|
+
|
|
4
|
+
#nullable enable annotations
|
|
5
|
+
|
|
6
|
+
using System;
|
|
7
|
+
using System.Collections.Generic;
|
|
8
|
+
using System.Reflection;
|
|
9
|
+
using System.Runtime.InteropServices;
|
|
10
|
+
using System.Security;
|
|
11
|
+
using System.Threading.Tasks;
|
|
12
|
+
|
|
13
|
+
namespace Csp.Multiplayer
|
|
14
|
+
{
|
|
15
|
+
/// <summary>The base class for all components, provides mechanisms for dirtying properties and subscribing to events on property changes.</summary>
|
|
16
|
+
|
|
17
|
+
public class ComponentBase : NativeClassWrapper, IDisposable
|
|
18
|
+
{
|
|
19
|
+
internal override string _safeTypeName { get; } = "csp_multiplayer_ComponentBase";
|
|
20
|
+
|
|
21
|
+
#region P/Invoke
|
|
22
|
+
#pragma warning disable IDE1006
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
[
|
|
27
|
+
DllImport(
|
|
28
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
29
|
+
"__Internal"
|
|
30
|
+
#elif DEBUG
|
|
31
|
+
"ConnectedSpacesPlatform_D"
|
|
32
|
+
#else
|
|
33
|
+
"ConnectedSpacesPlatform"
|
|
34
|
+
#endif
|
|
35
|
+
),
|
|
36
|
+
SuppressUnmanagedCodeSecurity
|
|
37
|
+
]
|
|
38
|
+
static extern void csp_multiplayer_ComponentBase_Dtor(IntPtr @class);
|
|
39
|
+
|
|
40
|
+
[
|
|
41
|
+
DllImport(
|
|
42
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
43
|
+
"__Internal"
|
|
44
|
+
#elif DEBUG
|
|
45
|
+
"ConnectedSpacesPlatform_D"
|
|
46
|
+
#else
|
|
47
|
+
"ConnectedSpacesPlatform"
|
|
48
|
+
#endif
|
|
49
|
+
),
|
|
50
|
+
SuppressUnmanagedCodeSecurity
|
|
51
|
+
]
|
|
52
|
+
static extern ushort csp_multiplayer_ComponentBase_GetId_uint16_t(IntPtr @class);
|
|
53
|
+
|
|
54
|
+
[
|
|
55
|
+
DllImport(
|
|
56
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
57
|
+
"__Internal"
|
|
58
|
+
#elif DEBUG
|
|
59
|
+
"ConnectedSpacesPlatform_D"
|
|
60
|
+
#else
|
|
61
|
+
"ConnectedSpacesPlatform"
|
|
62
|
+
#endif
|
|
63
|
+
),
|
|
64
|
+
SuppressUnmanagedCodeSecurity
|
|
65
|
+
]
|
|
66
|
+
static extern Csp.Multiplayer.ComponentType csp_multiplayer_ComponentBase_GetComponentType_ComponentType(
|
|
67
|
+
IntPtr @class
|
|
68
|
+
);
|
|
69
|
+
|
|
70
|
+
[
|
|
71
|
+
DllImport(
|
|
72
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
73
|
+
"__Internal"
|
|
74
|
+
#elif DEBUG
|
|
75
|
+
"ConnectedSpacesPlatform_D"
|
|
76
|
+
#else
|
|
77
|
+
"ConnectedSpacesPlatform"
|
|
78
|
+
#endif
|
|
79
|
+
),
|
|
80
|
+
SuppressUnmanagedCodeSecurity
|
|
81
|
+
]
|
|
82
|
+
static extern NativePointer csp_multiplayer_ComponentBase_GetProperties_MapPC(IntPtr @class);
|
|
83
|
+
|
|
84
|
+
[
|
|
85
|
+
DllImport(
|
|
86
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
87
|
+
"__Internal"
|
|
88
|
+
#elif DEBUG
|
|
89
|
+
"ConnectedSpacesPlatform_D"
|
|
90
|
+
#else
|
|
91
|
+
"ConnectedSpacesPlatform"
|
|
92
|
+
#endif
|
|
93
|
+
),
|
|
94
|
+
SuppressUnmanagedCodeSecurity
|
|
95
|
+
]
|
|
96
|
+
static extern NativePointer csp_multiplayer_ComponentBase_GetParent_SpaceEntityP(IntPtr @class);
|
|
97
|
+
|
|
98
|
+
[
|
|
99
|
+
DllImport(
|
|
100
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
101
|
+
"__Internal"
|
|
102
|
+
#elif DEBUG
|
|
103
|
+
"ConnectedSpacesPlatform_D"
|
|
104
|
+
#else
|
|
105
|
+
"ConnectedSpacesPlatform"
|
|
106
|
+
#endif
|
|
107
|
+
),
|
|
108
|
+
SuppressUnmanagedCodeSecurity
|
|
109
|
+
]
|
|
110
|
+
static extern void csp_multiplayer_ComponentBase_RegisterActionHandler_void_StringRC_EntityActionHandler(
|
|
111
|
+
IntPtr @class,
|
|
112
|
+
IntPtr InAction,
|
|
113
|
+
_RegisterActionHandlerActionHandlerDelegate ActionHandler,
|
|
114
|
+
IntPtr ActionHandlerStateObject
|
|
115
|
+
);
|
|
116
|
+
|
|
117
|
+
[
|
|
118
|
+
DllImport(
|
|
119
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
120
|
+
"__Internal"
|
|
121
|
+
#elif DEBUG
|
|
122
|
+
"ConnectedSpacesPlatform_D"
|
|
123
|
+
#else
|
|
124
|
+
"ConnectedSpacesPlatform"
|
|
125
|
+
#endif
|
|
126
|
+
),
|
|
127
|
+
SuppressUnmanagedCodeSecurity
|
|
128
|
+
]
|
|
129
|
+
static extern void csp_multiplayer_ComponentBase_UnregisterActionHandler_void_StringRC(
|
|
130
|
+
IntPtr @class,
|
|
131
|
+
IntPtr InAction
|
|
132
|
+
);
|
|
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 void csp_multiplayer_ComponentBase_InvokeAction_void_StringRC_StringRC(
|
|
147
|
+
IntPtr @class,
|
|
148
|
+
IntPtr InAction,
|
|
149
|
+
IntPtr InActionParams
|
|
150
|
+
);
|
|
151
|
+
|
|
152
|
+
[
|
|
153
|
+
DllImport(
|
|
154
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
155
|
+
"__Internal"
|
|
156
|
+
#elif DEBUG
|
|
157
|
+
"ConnectedSpacesPlatform_D"
|
|
158
|
+
#else
|
|
159
|
+
"ConnectedSpacesPlatform"
|
|
160
|
+
#endif
|
|
161
|
+
),
|
|
162
|
+
SuppressUnmanagedCodeSecurity
|
|
163
|
+
]
|
|
164
|
+
static extern NativePointer csp_multiplayer_ComponentBase_Ctor();
|
|
165
|
+
|
|
166
|
+
[
|
|
167
|
+
DllImport(
|
|
168
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
169
|
+
"__Internal"
|
|
170
|
+
#elif DEBUG
|
|
171
|
+
"ConnectedSpacesPlatform_D"
|
|
172
|
+
#else
|
|
173
|
+
"ConnectedSpacesPlatform"
|
|
174
|
+
#endif
|
|
175
|
+
),
|
|
176
|
+
SuppressUnmanagedCodeSecurity
|
|
177
|
+
]
|
|
178
|
+
static extern NativePointer csp_multiplayer_ComponentBase_Ctor_ComponentType_SpaceEntityP(
|
|
179
|
+
Csp.Multiplayer.ComponentType Type,
|
|
180
|
+
IntPtr Parent
|
|
181
|
+
);
|
|
182
|
+
|
|
183
|
+
#pragma warning restore IDE1006
|
|
184
|
+
#endregion
|
|
185
|
+
|
|
186
|
+
internal ComponentBase(NativePointer ptr) : base(ptr) { }
|
|
187
|
+
|
|
188
|
+
delegate void _RegisterActionHandlerActionHandlerDelegate(
|
|
189
|
+
IntPtr _StateObject__,
|
|
190
|
+
NativePointer arg1,
|
|
191
|
+
string arg2,
|
|
192
|
+
string arg3
|
|
193
|
+
);
|
|
194
|
+
|
|
195
|
+
public delegate void RegisterActionHandlerActionHandlerDelegate(
|
|
196
|
+
Csp.Multiplayer.ComponentBase arg1,
|
|
197
|
+
string arg2,
|
|
198
|
+
string arg3
|
|
199
|
+
);
|
|
200
|
+
|
|
201
|
+
/// <summary>Virtual destructor for the component.</summary>
|
|
202
|
+
|
|
203
|
+
~ComponentBase()
|
|
204
|
+
{
|
|
205
|
+
//RealDispose();
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
void RealDispose()
|
|
209
|
+
{
|
|
210
|
+
if (_ownsPtr && !_disposed)
|
|
211
|
+
{
|
|
212
|
+
csp_multiplayer_ComponentBase_Dtor(_ptr);
|
|
213
|
+
_disposed = true;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
_disposed = true;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
public void Dispose()
|
|
220
|
+
{
|
|
221
|
+
RealDispose();
|
|
222
|
+
GC.SuppressFinalize(this);
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
/// <summary>Get the ID for this component.</summary>
|
|
226
|
+
/// <remarks>/// This is set when calling SpaceEntity::AddComponent and is autogenerated with the intention of being unique</remarks>
|
|
227
|
+
/// <remarks>within the context of the entity it is attached to.</remarks>
|
|
228
|
+
/// <remarks>/// @return The ID.</remarks>
|
|
229
|
+
|
|
230
|
+
|
|
231
|
+
public ushort GetId()
|
|
232
|
+
{
|
|
233
|
+
var _result = csp_multiplayer_ComponentBase_GetId_uint16_t(_ptr);
|
|
234
|
+
|
|
235
|
+
return _result;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
/// <summary>Get the ComponentType of the component.</summary>
|
|
239
|
+
/// <returns>The type of the component as an enum.</returns>
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
public Csp.Multiplayer.ComponentType GetComponentType()
|
|
243
|
+
{
|
|
244
|
+
var _result = csp_multiplayer_ComponentBase_GetComponentType_ComponentType(_ptr);
|
|
245
|
+
|
|
246
|
+
return _result;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
/// <summary>Get a map of the replicated values defined for this component.</summary>
|
|
250
|
+
/// <remarks>/// The index of the map represents a unique index for the property,</remarks>
|
|
251
|
+
/// <remarks>intended to be defined in the inherited component as an enum of available properties keys.</remarks>
|
|
252
|
+
/// <remarks>/// @return A map of the replicated values, keyed by their unique key.</remarks>
|
|
253
|
+
|
|
254
|
+
|
|
255
|
+
public Csp.Common.Map<uint, Csp.Multiplayer.ReplicatedValue> GetProperties()
|
|
256
|
+
{
|
|
257
|
+
var _result = new Csp.Common.Map<uint, Csp.Multiplayer.ReplicatedValue>(
|
|
258
|
+
csp_multiplayer_ComponentBase_GetProperties_MapPC(_ptr)
|
|
259
|
+
);
|
|
260
|
+
|
|
261
|
+
return _result;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
/// <summary>Get the parent SpaceEntity for this component. Components can only attach to one parent.</summary>
|
|
265
|
+
/// <returns>A pointer to the parent SpaceEntity.</returns>
|
|
266
|
+
|
|
267
|
+
|
|
268
|
+
public Csp.Multiplayer.SpaceEntity GetParent()
|
|
269
|
+
{
|
|
270
|
+
var _result = new Csp.Multiplayer.SpaceEntity(csp_multiplayer_ComponentBase_GetParent_SpaceEntityP(_ptr));
|
|
271
|
+
|
|
272
|
+
return _result;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
/// <summary>Register an action handler callback to be called when the given action is invoked.</summary>
|
|
276
|
+
/// <param name="InAction">The identifying name of the action.</param>
|
|
277
|
+
/// <param name="ActionHandler">Callback to be called when the action is invoked, contains</param>
|
|
278
|
+
/// <remarks>a pointer to this component, the name of the action and a string of parameters for the action.</remarks>
|
|
279
|
+
|
|
280
|
+
static void RegisterActionHandlerActionHandlerDelegateFunction(
|
|
281
|
+
IntPtr _StateObject__,
|
|
282
|
+
NativePointer arg1,
|
|
283
|
+
string arg2,
|
|
284
|
+
string arg3
|
|
285
|
+
) {
|
|
286
|
+
var _handle = (GCHandle)_StateObject__;
|
|
287
|
+
var _ActionHandler = (RegisterActionHandlerActionHandlerDelegate)_handle.Target;
|
|
288
|
+
|
|
289
|
+
var _arg1 = new Csp.Multiplayer.ComponentBase(arg1);
|
|
290
|
+
var _arg2 = arg2;
|
|
291
|
+
var _arg3 = arg3;
|
|
292
|
+
|
|
293
|
+
_ActionHandler(_arg1, _arg2, _arg3);
|
|
294
|
+
// TODO: Queue persistent callback handles to be freed on exit
|
|
295
|
+
// _handle.Free();
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
public void RegisterActionHandler(string InAction, RegisterActionHandlerActionHandlerDelegate ActionHandler)
|
|
299
|
+
{
|
|
300
|
+
var _ActionHandler = GCHandle.Alloc(ActionHandler);
|
|
301
|
+
|
|
302
|
+
csp_multiplayer_ComponentBase_RegisterActionHandler_void_StringRC_EntityActionHandler(
|
|
303
|
+
_ptr,
|
|
304
|
+
WrapperHelper.StringToNativeUTF8(InAction),
|
|
305
|
+
RegisterActionHandlerActionHandlerDelegateFunction,
|
|
306
|
+
(IntPtr)_ActionHandler
|
|
307
|
+
);
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
/// <summary>Removes the action handler callback for the given action.</summary>
|
|
311
|
+
/// <param name="InAction">The identifying name of the action.</param>
|
|
312
|
+
|
|
313
|
+
|
|
314
|
+
public void UnregisterActionHandler(string InAction)
|
|
315
|
+
{
|
|
316
|
+
csp_multiplayer_ComponentBase_UnregisterActionHandler_void_StringRC(
|
|
317
|
+
_ptr,
|
|
318
|
+
WrapperHelper.StringToNativeUTF8(InAction)
|
|
319
|
+
);
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
/// <summary>Calls the registered action handler callback for the given action and passes the given parameters.</summary>
|
|
323
|
+
/// <param name="InAction">The identifying name of the action.</param>
|
|
324
|
+
/// <param name="InActionParams">Parameters for the action that will be passed to the action handler callback.</param>
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
public void InvokeAction(string InAction, string InActionParams)
|
|
328
|
+
{
|
|
329
|
+
csp_multiplayer_ComponentBase_InvokeAction_void_StringRC_StringRC(
|
|
330
|
+
_ptr,
|
|
331
|
+
WrapperHelper.StringToNativeUTF8(InAction),
|
|
332
|
+
WrapperHelper.StringToNativeUTF8(InActionParams)
|
|
333
|
+
);
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
protected ComponentBase() { }
|
|
337
|
+
}
|
|
338
|
+
}
|
|
339
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 2b2a37db0faa4094bb61991eb8321edf
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {instanceID: 0}
|
|
9
|
+
userData: null
|
|
10
|
+
assetBundleName: null
|
|
11
|
+
assetBundleVariant: null
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
// WARNING: DO NOT EDIT THIS FILE! IT IS A GENERATED FILE AND
|
|
2
|
+
// ANY CHANGES YOU MAKE WILL BE OVERWRITTEN ON THE NEXT BUILD
|
|
3
|
+
|
|
4
|
+
#nullable enable annotations
|
|
5
|
+
|
|
6
|
+
using System;
|
|
7
|
+
using System.Collections.Generic;
|
|
8
|
+
using System.Reflection;
|
|
9
|
+
using System.Runtime.InteropServices;
|
|
10
|
+
using System.Security;
|
|
11
|
+
using System.Threading.Tasks;
|
|
12
|
+
|
|
13
|
+
namespace Csp.Multiplayer
|
|
14
|
+
{
|
|
15
|
+
/// <summary>Represents the type of component.</summary>
|
|
16
|
+
/// <remarks>/// Values with _DEPRECATED appended to their name should not be used. They are retained only for backwards compatibility.</remarks>
|
|
17
|
+
|
|
18
|
+
public enum ComponentType
|
|
19
|
+
{
|
|
20
|
+
Invalid,
|
|
21
|
+
Core,
|
|
22
|
+
UIController_DEPRECATED,
|
|
23
|
+
StaticModel,
|
|
24
|
+
AnimatedModel,
|
|
25
|
+
MediaSurface_DEPRECATED,
|
|
26
|
+
VideoPlayer,
|
|
27
|
+
ImageSequencer_DEPRECATED,
|
|
28
|
+
ExternalLink,
|
|
29
|
+
AvatarData,
|
|
30
|
+
Light,
|
|
31
|
+
Button,
|
|
32
|
+
Image,
|
|
33
|
+
ScriptData,
|
|
34
|
+
Custom,
|
|
35
|
+
Conversation,
|
|
36
|
+
Portal,
|
|
37
|
+
Audio,
|
|
38
|
+
Spline,
|
|
39
|
+
Collision,
|
|
40
|
+
Reflection,
|
|
41
|
+
Fog,
|
|
42
|
+
ECommerce,
|
|
43
|
+
FiducialMarker,
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
fileFormatVersion: 2
|
|
2
|
+
guid: 7f957eb868d84d5393bc409e86983431
|
|
3
|
+
MonoImporter:
|
|
4
|
+
externalObjects: {}
|
|
5
|
+
serializedVersion: 2
|
|
6
|
+
defaultReferences: []
|
|
7
|
+
executionOrder: 0
|
|
8
|
+
icon: {instanceID: 0}
|
|
9
|
+
userData: null
|
|
10
|
+
assetBundleName: null
|
|
11
|
+
assetBundleVariant: null
|