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,793 @@
|
|
|
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 AnimatedModelSpaceComponent
|
|
16
|
+
/// <summary>Data representation of an AnimatedModelSpaceComponent.</summary>
|
|
17
|
+
|
|
18
|
+
public class AnimatedModelSpaceComponent
|
|
19
|
+
: Csp.Multiplayer.ComponentBase,
|
|
20
|
+
Csp.Multiplayer.ITransformComponent,
|
|
21
|
+
Csp.Multiplayer.IVisibleComponent,
|
|
22
|
+
Csp.Multiplayer.IExternalResourceComponent,
|
|
23
|
+
Csp.Multiplayer.IThirdPartyComponentRef,
|
|
24
|
+
Csp.Multiplayer.IShadowCasterComponent,
|
|
25
|
+
IDisposable
|
|
26
|
+
{
|
|
27
|
+
internal override string _safeTypeName { get; } = "csp_multiplayer_AnimatedModelSpaceComponent";
|
|
28
|
+
|
|
29
|
+
#region P/Invoke
|
|
30
|
+
#pragma warning disable IDE1006
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
[
|
|
35
|
+
DllImport(
|
|
36
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
37
|
+
"__Internal"
|
|
38
|
+
#elif DEBUG
|
|
39
|
+
"ConnectedSpacesPlatform_D"
|
|
40
|
+
#else
|
|
41
|
+
"ConnectedSpacesPlatform"
|
|
42
|
+
#endif
|
|
43
|
+
),
|
|
44
|
+
SuppressUnmanagedCodeSecurity
|
|
45
|
+
]
|
|
46
|
+
static extern NativePointer csp_multiplayer_AnimatedModelSpaceComponent_Ctor_SpaceEntityP(IntPtr Parent);
|
|
47
|
+
|
|
48
|
+
[
|
|
49
|
+
DllImport(
|
|
50
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
51
|
+
"__Internal"
|
|
52
|
+
#elif DEBUG
|
|
53
|
+
"ConnectedSpacesPlatform_D"
|
|
54
|
+
#else
|
|
55
|
+
"ConnectedSpacesPlatform"
|
|
56
|
+
#endif
|
|
57
|
+
),
|
|
58
|
+
SuppressUnmanagedCodeSecurity
|
|
59
|
+
]
|
|
60
|
+
static extern IntPtr csp_multiplayer_AnimatedModelSpaceComponent_GetExternalResourceAssetIdC_StringRC(
|
|
61
|
+
IntPtr @class
|
|
62
|
+
);
|
|
63
|
+
|
|
64
|
+
[
|
|
65
|
+
DllImport(
|
|
66
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
67
|
+
"__Internal"
|
|
68
|
+
#elif DEBUG
|
|
69
|
+
"ConnectedSpacesPlatform_D"
|
|
70
|
+
#else
|
|
71
|
+
"ConnectedSpacesPlatform"
|
|
72
|
+
#endif
|
|
73
|
+
),
|
|
74
|
+
SuppressUnmanagedCodeSecurity
|
|
75
|
+
]
|
|
76
|
+
static extern void csp_multiplayer_AnimatedModelSpaceComponent_SetExternalResourceAssetId_void_StringRC(
|
|
77
|
+
IntPtr @class,
|
|
78
|
+
IntPtr Value
|
|
79
|
+
);
|
|
80
|
+
|
|
81
|
+
[
|
|
82
|
+
DllImport(
|
|
83
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
84
|
+
"__Internal"
|
|
85
|
+
#elif DEBUG
|
|
86
|
+
"ConnectedSpacesPlatform_D"
|
|
87
|
+
#else
|
|
88
|
+
"ConnectedSpacesPlatform"
|
|
89
|
+
#endif
|
|
90
|
+
),
|
|
91
|
+
SuppressUnmanagedCodeSecurity
|
|
92
|
+
]
|
|
93
|
+
static extern IntPtr csp_multiplayer_AnimatedModelSpaceComponent_GetExternalResourceAssetCollectionIdC_StringRC(
|
|
94
|
+
IntPtr @class
|
|
95
|
+
);
|
|
96
|
+
|
|
97
|
+
[
|
|
98
|
+
DllImport(
|
|
99
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
100
|
+
"__Internal"
|
|
101
|
+
#elif DEBUG
|
|
102
|
+
"ConnectedSpacesPlatform_D"
|
|
103
|
+
#else
|
|
104
|
+
"ConnectedSpacesPlatform"
|
|
105
|
+
#endif
|
|
106
|
+
),
|
|
107
|
+
SuppressUnmanagedCodeSecurity
|
|
108
|
+
]
|
|
109
|
+
static extern void csp_multiplayer_AnimatedModelSpaceComponent_SetExternalResourceAssetCollectionId_void_StringRC(
|
|
110
|
+
IntPtr @class,
|
|
111
|
+
IntPtr Value
|
|
112
|
+
);
|
|
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 NativePointer csp_multiplayer_AnimatedModelSpaceComponent_GetPositionC_Vector3RC(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_AnimatedModelSpaceComponent_SetPosition_void_Vector3RC(
|
|
141
|
+
IntPtr @class,
|
|
142
|
+
IntPtr InValue
|
|
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 NativePointer csp_multiplayer_AnimatedModelSpaceComponent_GetRotationC_Vector4RC(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_AnimatedModelSpaceComponent_SetRotation_void_Vector4RC(
|
|
172
|
+
IntPtr @class,
|
|
173
|
+
IntPtr InValue
|
|
174
|
+
);
|
|
175
|
+
|
|
176
|
+
[
|
|
177
|
+
DllImport(
|
|
178
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
179
|
+
"__Internal"
|
|
180
|
+
#elif DEBUG
|
|
181
|
+
"ConnectedSpacesPlatform_D"
|
|
182
|
+
#else
|
|
183
|
+
"ConnectedSpacesPlatform"
|
|
184
|
+
#endif
|
|
185
|
+
),
|
|
186
|
+
SuppressUnmanagedCodeSecurity
|
|
187
|
+
]
|
|
188
|
+
static extern NativePointer csp_multiplayer_AnimatedModelSpaceComponent_GetScaleC_Vector3RC(IntPtr @class);
|
|
189
|
+
|
|
190
|
+
[
|
|
191
|
+
DllImport(
|
|
192
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
193
|
+
"__Internal"
|
|
194
|
+
#elif DEBUG
|
|
195
|
+
"ConnectedSpacesPlatform_D"
|
|
196
|
+
#else
|
|
197
|
+
"ConnectedSpacesPlatform"
|
|
198
|
+
#endif
|
|
199
|
+
),
|
|
200
|
+
SuppressUnmanagedCodeSecurity
|
|
201
|
+
]
|
|
202
|
+
static extern void csp_multiplayer_AnimatedModelSpaceComponent_SetScale_void_Vector3RC(
|
|
203
|
+
IntPtr @class,
|
|
204
|
+
IntPtr InValue
|
|
205
|
+
);
|
|
206
|
+
|
|
207
|
+
[
|
|
208
|
+
DllImport(
|
|
209
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
210
|
+
"__Internal"
|
|
211
|
+
#elif DEBUG
|
|
212
|
+
"ConnectedSpacesPlatform_D"
|
|
213
|
+
#else
|
|
214
|
+
"ConnectedSpacesPlatform"
|
|
215
|
+
#endif
|
|
216
|
+
),
|
|
217
|
+
SuppressUnmanagedCodeSecurity
|
|
218
|
+
]
|
|
219
|
+
static extern NativePointer csp_multiplayer_AnimatedModelSpaceComponent_GetTransformC_SpaceTransform(
|
|
220
|
+
IntPtr @class
|
|
221
|
+
);
|
|
222
|
+
|
|
223
|
+
[
|
|
224
|
+
DllImport(
|
|
225
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
226
|
+
"__Internal"
|
|
227
|
+
#elif DEBUG
|
|
228
|
+
"ConnectedSpacesPlatform_D"
|
|
229
|
+
#else
|
|
230
|
+
"ConnectedSpacesPlatform"
|
|
231
|
+
#endif
|
|
232
|
+
),
|
|
233
|
+
SuppressUnmanagedCodeSecurity
|
|
234
|
+
]
|
|
235
|
+
static extern void csp_multiplayer_AnimatedModelSpaceComponent_SetTransform_void_SpaceTransformRC(
|
|
236
|
+
IntPtr @class,
|
|
237
|
+
IntPtr InValue
|
|
238
|
+
);
|
|
239
|
+
|
|
240
|
+
[
|
|
241
|
+
DllImport(
|
|
242
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
243
|
+
"__Internal"
|
|
244
|
+
#elif DEBUG
|
|
245
|
+
"ConnectedSpacesPlatform_D"
|
|
246
|
+
#else
|
|
247
|
+
"ConnectedSpacesPlatform"
|
|
248
|
+
#endif
|
|
249
|
+
),
|
|
250
|
+
SuppressUnmanagedCodeSecurity
|
|
251
|
+
]
|
|
252
|
+
static extern bool csp_multiplayer_AnimatedModelSpaceComponent_GetIsLoopPlaybackC_bool(IntPtr @class);
|
|
253
|
+
|
|
254
|
+
[
|
|
255
|
+
DllImport(
|
|
256
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
257
|
+
"__Internal"
|
|
258
|
+
#elif DEBUG
|
|
259
|
+
"ConnectedSpacesPlatform_D"
|
|
260
|
+
#else
|
|
261
|
+
"ConnectedSpacesPlatform"
|
|
262
|
+
#endif
|
|
263
|
+
),
|
|
264
|
+
SuppressUnmanagedCodeSecurity
|
|
265
|
+
]
|
|
266
|
+
static extern void csp_multiplayer_AnimatedModelSpaceComponent_SetIsLoopPlayback_void_bool(
|
|
267
|
+
IntPtr @class,
|
|
268
|
+
bool Value
|
|
269
|
+
);
|
|
270
|
+
|
|
271
|
+
[
|
|
272
|
+
DllImport(
|
|
273
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
274
|
+
"__Internal"
|
|
275
|
+
#elif DEBUG
|
|
276
|
+
"ConnectedSpacesPlatform_D"
|
|
277
|
+
#else
|
|
278
|
+
"ConnectedSpacesPlatform"
|
|
279
|
+
#endif
|
|
280
|
+
),
|
|
281
|
+
SuppressUnmanagedCodeSecurity
|
|
282
|
+
]
|
|
283
|
+
static extern bool csp_multiplayer_AnimatedModelSpaceComponent_GetIsPlayingC_bool(IntPtr @class);
|
|
284
|
+
|
|
285
|
+
[
|
|
286
|
+
DllImport(
|
|
287
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
288
|
+
"__Internal"
|
|
289
|
+
#elif DEBUG
|
|
290
|
+
"ConnectedSpacesPlatform_D"
|
|
291
|
+
#else
|
|
292
|
+
"ConnectedSpacesPlatform"
|
|
293
|
+
#endif
|
|
294
|
+
),
|
|
295
|
+
SuppressUnmanagedCodeSecurity
|
|
296
|
+
]
|
|
297
|
+
static extern void csp_multiplayer_AnimatedModelSpaceComponent_SetIsPlaying_void_bool(
|
|
298
|
+
IntPtr @class,
|
|
299
|
+
bool Value
|
|
300
|
+
);
|
|
301
|
+
|
|
302
|
+
[
|
|
303
|
+
DllImport(
|
|
304
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
305
|
+
"__Internal"
|
|
306
|
+
#elif DEBUG
|
|
307
|
+
"ConnectedSpacesPlatform_D"
|
|
308
|
+
#else
|
|
309
|
+
"ConnectedSpacesPlatform"
|
|
310
|
+
#endif
|
|
311
|
+
),
|
|
312
|
+
SuppressUnmanagedCodeSecurity
|
|
313
|
+
]
|
|
314
|
+
static extern long csp_multiplayer_AnimatedModelSpaceComponent_GetAnimationIndexC_int64_t(IntPtr @class);
|
|
315
|
+
|
|
316
|
+
[
|
|
317
|
+
DllImport(
|
|
318
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
319
|
+
"__Internal"
|
|
320
|
+
#elif DEBUG
|
|
321
|
+
"ConnectedSpacesPlatform_D"
|
|
322
|
+
#else
|
|
323
|
+
"ConnectedSpacesPlatform"
|
|
324
|
+
#endif
|
|
325
|
+
),
|
|
326
|
+
SuppressUnmanagedCodeSecurity
|
|
327
|
+
]
|
|
328
|
+
static extern void csp_multiplayer_AnimatedModelSpaceComponent_SetAnimationIndex_void_int64_t(
|
|
329
|
+
IntPtr @class,
|
|
330
|
+
long Value
|
|
331
|
+
);
|
|
332
|
+
|
|
333
|
+
[
|
|
334
|
+
DllImport(
|
|
335
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
336
|
+
"__Internal"
|
|
337
|
+
#elif DEBUG
|
|
338
|
+
"ConnectedSpacesPlatform_D"
|
|
339
|
+
#else
|
|
340
|
+
"ConnectedSpacesPlatform"
|
|
341
|
+
#endif
|
|
342
|
+
),
|
|
343
|
+
SuppressUnmanagedCodeSecurity
|
|
344
|
+
]
|
|
345
|
+
static extern bool csp_multiplayer_AnimatedModelSpaceComponent_GetIsVisibleC_bool(IntPtr @class);
|
|
346
|
+
|
|
347
|
+
[
|
|
348
|
+
DllImport(
|
|
349
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
350
|
+
"__Internal"
|
|
351
|
+
#elif DEBUG
|
|
352
|
+
"ConnectedSpacesPlatform_D"
|
|
353
|
+
#else
|
|
354
|
+
"ConnectedSpacesPlatform"
|
|
355
|
+
#endif
|
|
356
|
+
),
|
|
357
|
+
SuppressUnmanagedCodeSecurity
|
|
358
|
+
]
|
|
359
|
+
static extern void csp_multiplayer_AnimatedModelSpaceComponent_SetIsVisible_void_bool(
|
|
360
|
+
IntPtr @class,
|
|
361
|
+
bool InValue
|
|
362
|
+
);
|
|
363
|
+
|
|
364
|
+
[
|
|
365
|
+
DllImport(
|
|
366
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
367
|
+
"__Internal"
|
|
368
|
+
#elif DEBUG
|
|
369
|
+
"ConnectedSpacesPlatform_D"
|
|
370
|
+
#else
|
|
371
|
+
"ConnectedSpacesPlatform"
|
|
372
|
+
#endif
|
|
373
|
+
),
|
|
374
|
+
SuppressUnmanagedCodeSecurity
|
|
375
|
+
]
|
|
376
|
+
static extern bool csp_multiplayer_AnimatedModelSpaceComponent_GetIsARVisibleC_bool(IntPtr @class);
|
|
377
|
+
|
|
378
|
+
[
|
|
379
|
+
DllImport(
|
|
380
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
381
|
+
"__Internal"
|
|
382
|
+
#elif DEBUG
|
|
383
|
+
"ConnectedSpacesPlatform_D"
|
|
384
|
+
#else
|
|
385
|
+
"ConnectedSpacesPlatform"
|
|
386
|
+
#endif
|
|
387
|
+
),
|
|
388
|
+
SuppressUnmanagedCodeSecurity
|
|
389
|
+
]
|
|
390
|
+
static extern void csp_multiplayer_AnimatedModelSpaceComponent_SetIsARVisible_void_bool(
|
|
391
|
+
IntPtr @class,
|
|
392
|
+
bool InValue
|
|
393
|
+
);
|
|
394
|
+
|
|
395
|
+
[
|
|
396
|
+
DllImport(
|
|
397
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
398
|
+
"__Internal"
|
|
399
|
+
#elif DEBUG
|
|
400
|
+
"ConnectedSpacesPlatform_D"
|
|
401
|
+
#else
|
|
402
|
+
"ConnectedSpacesPlatform"
|
|
403
|
+
#endif
|
|
404
|
+
),
|
|
405
|
+
SuppressUnmanagedCodeSecurity
|
|
406
|
+
]
|
|
407
|
+
static extern IntPtr csp_multiplayer_AnimatedModelSpaceComponent_GetThirdPartyComponentRefC_StringRC(
|
|
408
|
+
IntPtr @class
|
|
409
|
+
);
|
|
410
|
+
|
|
411
|
+
[
|
|
412
|
+
DllImport(
|
|
413
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
414
|
+
"__Internal"
|
|
415
|
+
#elif DEBUG
|
|
416
|
+
"ConnectedSpacesPlatform_D"
|
|
417
|
+
#else
|
|
418
|
+
"ConnectedSpacesPlatform"
|
|
419
|
+
#endif
|
|
420
|
+
),
|
|
421
|
+
SuppressUnmanagedCodeSecurity
|
|
422
|
+
]
|
|
423
|
+
static extern void csp_multiplayer_AnimatedModelSpaceComponent_SetThirdPartyComponentRef_void_StringRC(
|
|
424
|
+
IntPtr @class,
|
|
425
|
+
IntPtr InValue
|
|
426
|
+
);
|
|
427
|
+
|
|
428
|
+
[
|
|
429
|
+
DllImport(
|
|
430
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
431
|
+
"__Internal"
|
|
432
|
+
#elif DEBUG
|
|
433
|
+
"ConnectedSpacesPlatform_D"
|
|
434
|
+
#else
|
|
435
|
+
"ConnectedSpacesPlatform"
|
|
436
|
+
#endif
|
|
437
|
+
),
|
|
438
|
+
SuppressUnmanagedCodeSecurity
|
|
439
|
+
]
|
|
440
|
+
static extern bool csp_multiplayer_AnimatedModelSpaceComponent_GetIsShadowCasterC_bool(IntPtr @class);
|
|
441
|
+
|
|
442
|
+
[
|
|
443
|
+
DllImport(
|
|
444
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
445
|
+
"__Internal"
|
|
446
|
+
#elif DEBUG
|
|
447
|
+
"ConnectedSpacesPlatform_D"
|
|
448
|
+
#else
|
|
449
|
+
"ConnectedSpacesPlatform"
|
|
450
|
+
#endif
|
|
451
|
+
),
|
|
452
|
+
SuppressUnmanagedCodeSecurity
|
|
453
|
+
]
|
|
454
|
+
static extern void csp_multiplayer_AnimatedModelSpaceComponent_SetIsShadowCaster_void_bool(
|
|
455
|
+
IntPtr @class,
|
|
456
|
+
bool Value
|
|
457
|
+
);
|
|
458
|
+
|
|
459
|
+
[
|
|
460
|
+
DllImport(
|
|
461
|
+
#if !UNITY_EDITOR && UNITY_IOS
|
|
462
|
+
"__Internal"
|
|
463
|
+
#elif DEBUG
|
|
464
|
+
"ConnectedSpacesPlatform_D"
|
|
465
|
+
#else
|
|
466
|
+
"ConnectedSpacesPlatform"
|
|
467
|
+
#endif
|
|
468
|
+
),
|
|
469
|
+
SuppressUnmanagedCodeSecurity
|
|
470
|
+
]
|
|
471
|
+
static extern void csp_multiplayer_AnimatedModelSpaceComponent_Dtor(IntPtr @class);
|
|
472
|
+
|
|
473
|
+
#pragma warning restore IDE1006
|
|
474
|
+
#endregion
|
|
475
|
+
|
|
476
|
+
internal AnimatedModelSpaceComponent(NativePointer ptr) : base(ptr) { }
|
|
477
|
+
|
|
478
|
+
public AnimatedModelSpaceComponent(Csp.Multiplayer.ComponentBase baseInstance)
|
|
479
|
+
: base(new NativePointer(baseInstance._ptr, baseInstance._ownsPtr ? (byte)1 : (byte)0))
|
|
480
|
+
{
|
|
481
|
+
// Prevent previous instance from freeing underlying pointer when destroyed
|
|
482
|
+
baseInstance._ownsPtr = false;
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
/// <summary>Constructs the animated model space component, and associates it with the specified Parent space entity.</summary>
|
|
486
|
+
/// <param name="Parent">The Space entity that owns this component.</param>
|
|
487
|
+
|
|
488
|
+
public AnimatedModelSpaceComponent(Csp.Multiplayer.SpaceEntity Parent)
|
|
489
|
+
{
|
|
490
|
+
var np = csp_multiplayer_AnimatedModelSpaceComponent_Ctor_SpaceEntityP(Parent._ptr);
|
|
491
|
+
_ptr = np.Pointer;
|
|
492
|
+
_ownsPtr = np.OwnsOwnData;
|
|
493
|
+
}
|
|
494
|
+
|
|
495
|
+
public string GetExternalResourceAssetId()
|
|
496
|
+
{
|
|
497
|
+
var _result = csp_multiplayer_AnimatedModelSpaceComponent_GetExternalResourceAssetIdC_StringRC(_ptr);
|
|
498
|
+
|
|
499
|
+
var _resultString = WrapperHelper.NativeUTF8ToString(_result);
|
|
500
|
+
Global.Free(_result);
|
|
501
|
+
|
|
502
|
+
return _resultString;
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
public void SetExternalResourceAssetId(string Value)
|
|
506
|
+
{
|
|
507
|
+
csp_multiplayer_AnimatedModelSpaceComponent_SetExternalResourceAssetId_void_StringRC(
|
|
508
|
+
_ptr,
|
|
509
|
+
WrapperHelper.StringToNativeUTF8(Value)
|
|
510
|
+
);
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
/// <summary>Gets the ID of the asset collection associated with this component.</summary>
|
|
514
|
+
/// @note To retrieve this component's animated asset, both the Asset ID and the Asset Collection ID are required.
|
|
515
|
+
/// <returns>The ID of the asset collection associated with this component.</returns>
|
|
516
|
+
|
|
517
|
+
|
|
518
|
+
public string GetExternalResourceAssetCollectionId()
|
|
519
|
+
{
|
|
520
|
+
var _result = csp_multiplayer_AnimatedModelSpaceComponent_GetExternalResourceAssetCollectionIdC_StringRC(
|
|
521
|
+
_ptr
|
|
522
|
+
);
|
|
523
|
+
|
|
524
|
+
var _resultString = WrapperHelper.NativeUTF8ToString(_result);
|
|
525
|
+
Global.Free(_result);
|
|
526
|
+
|
|
527
|
+
return _resultString;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
/// <summary>Sets the ID of the asset collection associated with this component.</summary>
|
|
531
|
+
/// @note To retrieve this component's animated asset, both the Asset ID and the Asset Collection ID are required.
|
|
532
|
+
/// <param name="Value">The ID of the asset collection associated with this component.</param>
|
|
533
|
+
|
|
534
|
+
|
|
535
|
+
public void SetExternalResourceAssetCollectionId(string Value)
|
|
536
|
+
{
|
|
537
|
+
csp_multiplayer_AnimatedModelSpaceComponent_SetExternalResourceAssetCollectionId_void_StringRC(
|
|
538
|
+
_ptr,
|
|
539
|
+
WrapperHelper.StringToNativeUTF8(Value)
|
|
540
|
+
);
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
/// <remarks>\addtogroup ITransformComponent</remarks>
|
|
544
|
+
/// @{
|
|
545
|
+
/// @copydoc IPositionComponent::GetPosition()
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
public Csp.Common.Vector3 GetPosition()
|
|
549
|
+
{
|
|
550
|
+
var _result = new Csp.Common.Vector3(
|
|
551
|
+
csp_multiplayer_AnimatedModelSpaceComponent_GetPositionC_Vector3RC(_ptr)
|
|
552
|
+
);
|
|
553
|
+
|
|
554
|
+
return _result;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
/// @copydoc IPositionComponent::SetPosition()
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
public void SetPosition(Csp.Common.Vector3 InValue)
|
|
561
|
+
{
|
|
562
|
+
csp_multiplayer_AnimatedModelSpaceComponent_SetPosition_void_Vector3RC(_ptr, InValue._ptr);
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
/// @copydoc IRotationComponent::GetRotation()
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
public Csp.Common.Vector4 GetRotation()
|
|
569
|
+
{
|
|
570
|
+
var _result = new Csp.Common.Vector4(
|
|
571
|
+
csp_multiplayer_AnimatedModelSpaceComponent_GetRotationC_Vector4RC(_ptr)
|
|
572
|
+
);
|
|
573
|
+
|
|
574
|
+
return _result;
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
/// @copydoc IRotationComponent::SetRotation()
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
public void SetRotation(Csp.Common.Vector4 InValue)
|
|
581
|
+
{
|
|
582
|
+
csp_multiplayer_AnimatedModelSpaceComponent_SetRotation_void_Vector4RC(_ptr, InValue._ptr);
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
/// @copydoc IScaleComponent::GetScale()
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
public Csp.Common.Vector3 GetScale()
|
|
589
|
+
{
|
|
590
|
+
var _result = new Csp.Common.Vector3(csp_multiplayer_AnimatedModelSpaceComponent_GetScaleC_Vector3RC(_ptr));
|
|
591
|
+
|
|
592
|
+
return _result;
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
/// @copydoc IScaleComponent::SetScale()
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
public void SetScale(Csp.Common.Vector3 InValue)
|
|
599
|
+
{
|
|
600
|
+
csp_multiplayer_AnimatedModelSpaceComponent_SetScale_void_Vector3RC(_ptr, InValue._ptr);
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
/// @copydoc ITransformComponent::GetTransform()
|
|
604
|
+
|
|
605
|
+
|
|
606
|
+
public Csp.Multiplayer.SpaceTransform GetTransform()
|
|
607
|
+
{
|
|
608
|
+
var _result = new Csp.Multiplayer.SpaceTransform(
|
|
609
|
+
csp_multiplayer_AnimatedModelSpaceComponent_GetTransformC_SpaceTransform(_ptr)
|
|
610
|
+
);
|
|
611
|
+
|
|
612
|
+
return _result;
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
/// @copydoc ITransformComonent::SetTransform()
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
public void SetTransform(Csp.Multiplayer.SpaceTransform InValue)
|
|
619
|
+
{
|
|
620
|
+
csp_multiplayer_AnimatedModelSpaceComponent_SetTransform_void_SpaceTransformRC(_ptr, InValue._ptr);
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
/// @}
|
|
624
|
+
/// <summary>Checks if the animation of this animated model is in loop.</summary>
|
|
625
|
+
/// <returns>True if the animation of this animated model loops (i.e. restarts from the beginning on end), false otherwise.</returns>
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
public bool GetIsLoopPlayback()
|
|
629
|
+
{
|
|
630
|
+
var _result = csp_multiplayer_AnimatedModelSpaceComponent_GetIsLoopPlaybackC_bool(_ptr);
|
|
631
|
+
|
|
632
|
+
return _result;
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
/// <summary>Establishes if the animation of this animated model is in loop.</summary>
|
|
636
|
+
/// <param name="Value">True if the animation of this animated model will loop (i.e. restarts from the beginning on end), false otherwise.</param>
|
|
637
|
+
|
|
638
|
+
|
|
639
|
+
public void SetIsLoopPlayback(bool Value)
|
|
640
|
+
{
|
|
641
|
+
csp_multiplayer_AnimatedModelSpaceComponent_SetIsLoopPlayback_void_bool(_ptr, Value);
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
/// <summary>Checks if the animation of this animated model is playing.</summary>
|
|
645
|
+
/// <returns>True if the animation of this animated is playing, false otherwise.</returns>
|
|
646
|
+
|
|
647
|
+
|
|
648
|
+
public bool GetIsPlaying()
|
|
649
|
+
{
|
|
650
|
+
var _result = csp_multiplayer_AnimatedModelSpaceComponent_GetIsPlayingC_bool(_ptr);
|
|
651
|
+
|
|
652
|
+
return _result;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
/// <summary>Establishes if the animation of this animated model is playing.</summary>
|
|
656
|
+
/// <param name="Value">True if the animation of this animated model is playing, false otherwise.</param>
|
|
657
|
+
|
|
658
|
+
|
|
659
|
+
public void SetIsPlaying(bool Value)
|
|
660
|
+
{
|
|
661
|
+
csp_multiplayer_AnimatedModelSpaceComponent_SetIsPlaying_void_bool(_ptr, Value);
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
/// <summary>Gets the index of the currently active animation.</summary>
|
|
665
|
+
/// <returns>The index of the currently active animation.</returns>
|
|
666
|
+
|
|
667
|
+
|
|
668
|
+
public long GetAnimationIndex()
|
|
669
|
+
{
|
|
670
|
+
var _result = csp_multiplayer_AnimatedModelSpaceComponent_GetAnimationIndexC_int64_t(_ptr);
|
|
671
|
+
|
|
672
|
+
return _result;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
/// <summary>Sets the index of the currently active animation.</summary>
|
|
676
|
+
/// <returns>The index of the currently active animation.</returns>
|
|
677
|
+
|
|
678
|
+
|
|
679
|
+
public void SetAnimationIndex(long Value)
|
|
680
|
+
{
|
|
681
|
+
csp_multiplayer_AnimatedModelSpaceComponent_SetAnimationIndex_void_int64_t(_ptr, Value);
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
/// <remarks>\addtogroup IVisibleComponent</remarks>
|
|
685
|
+
/// @{
|
|
686
|
+
/// @copydoc IVisibleComponent::GetIsVisible()
|
|
687
|
+
|
|
688
|
+
|
|
689
|
+
public bool GetIsVisible()
|
|
690
|
+
{
|
|
691
|
+
var _result = csp_multiplayer_AnimatedModelSpaceComponent_GetIsVisibleC_bool(_ptr);
|
|
692
|
+
|
|
693
|
+
return _result;
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
/// @copydoc IVisibleComponent::SetIsVisible()
|
|
697
|
+
|
|
698
|
+
|
|
699
|
+
public void SetIsVisible(bool InValue)
|
|
700
|
+
{
|
|
701
|
+
csp_multiplayer_AnimatedModelSpaceComponent_SetIsVisible_void_bool(_ptr, InValue);
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
/// @copydoc IVisibleComponent::GetIsARVisible()
|
|
705
|
+
|
|
706
|
+
|
|
707
|
+
public bool GetIsARVisible()
|
|
708
|
+
{
|
|
709
|
+
var _result = csp_multiplayer_AnimatedModelSpaceComponent_GetIsARVisibleC_bool(_ptr);
|
|
710
|
+
|
|
711
|
+
return _result;
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
/// @copydoc IVisibleComponent::SetIsARVisible()
|
|
715
|
+
|
|
716
|
+
|
|
717
|
+
public void SetIsARVisible(bool InValue)
|
|
718
|
+
{
|
|
719
|
+
csp_multiplayer_AnimatedModelSpaceComponent_SetIsARVisible_void_bool(_ptr, InValue);
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
/// @}
|
|
723
|
+
/// <remarks>\addtogroup IThirdPartyComponentRef</remarks>
|
|
724
|
+
/// @{
|
|
725
|
+
/// @copydoc IThirdPartyComponentRef::GetThirdPartyComponentRef()
|
|
726
|
+
|
|
727
|
+
|
|
728
|
+
public string GetThirdPartyComponentRef()
|
|
729
|
+
{
|
|
730
|
+
var _result = csp_multiplayer_AnimatedModelSpaceComponent_GetThirdPartyComponentRefC_StringRC(_ptr);
|
|
731
|
+
|
|
732
|
+
var _resultString = WrapperHelper.NativeUTF8ToString(_result);
|
|
733
|
+
Global.Free(_result);
|
|
734
|
+
|
|
735
|
+
return _resultString;
|
|
736
|
+
}
|
|
737
|
+
|
|
738
|
+
/// @copydoc IThirdPartyComponentRef::SetThirdPartyComponentRef()
|
|
739
|
+
|
|
740
|
+
|
|
741
|
+
public void SetThirdPartyComponentRef(string InValue)
|
|
742
|
+
{
|
|
743
|
+
csp_multiplayer_AnimatedModelSpaceComponent_SetThirdPartyComponentRef_void_StringRC(
|
|
744
|
+
_ptr,
|
|
745
|
+
WrapperHelper.StringToNativeUTF8(InValue)
|
|
746
|
+
);
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
/// @}
|
|
750
|
+
/// <remarks>\addtogroup IShadowCasterComponent</remarks>
|
|
751
|
+
/// @{
|
|
752
|
+
/// @copydoc IShadowCasterComponent::GetIsShadowCaster()
|
|
753
|
+
|
|
754
|
+
|
|
755
|
+
public bool GetIsShadowCaster()
|
|
756
|
+
{
|
|
757
|
+
var _result = csp_multiplayer_AnimatedModelSpaceComponent_GetIsShadowCasterC_bool(_ptr);
|
|
758
|
+
|
|
759
|
+
return _result;
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
/// @copydoc IShadowCasterComponent::SetIsShadowCaster()
|
|
763
|
+
|
|
764
|
+
|
|
765
|
+
public void SetIsShadowCaster(bool Value)
|
|
766
|
+
{
|
|
767
|
+
csp_multiplayer_AnimatedModelSpaceComponent_SetIsShadowCaster_void_bool(_ptr, Value);
|
|
768
|
+
}
|
|
769
|
+
|
|
770
|
+
~AnimatedModelSpaceComponent()
|
|
771
|
+
{
|
|
772
|
+
//RealDispose();
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
void RealDispose()
|
|
776
|
+
{
|
|
777
|
+
if (_ownsPtr && !_disposed)
|
|
778
|
+
{
|
|
779
|
+
csp_multiplayer_AnimatedModelSpaceComponent_Dtor(_ptr);
|
|
780
|
+
_disposed = true;
|
|
781
|
+
}
|
|
782
|
+
|
|
783
|
+
_disposed = true;
|
|
784
|
+
}
|
|
785
|
+
|
|
786
|
+
new public void Dispose()
|
|
787
|
+
{
|
|
788
|
+
RealDispose();
|
|
789
|
+
GC.SuppressFinalize(this);
|
|
790
|
+
}
|
|
791
|
+
}
|
|
792
|
+
}
|
|
793
|
+
|