Struct XROcclusionSubsystemDescriptor.Cinfo
Constructor parameters for the XROcclusionSubsystemDescriptor.
Implements
Inherited Members
Namespace: UnityEngine.XR.ARSubsystems
Assembly: Unity.XR.ARSubsystems.dll
Syntax
public struct XROcclusionSubsystemDescriptor.Cinfo : IEquatable<XROcclusionSubsystemDescriptor.Cinfo>
Properties
environmentDepthConfidenceImageSupportedDelegate
Specifies if the current subsystem supports environment depth confidence image.
Declaration
public Func<Supported> environmentDepthConfidenceImageSupportedDelegate { readonly get; set; }
Property Value
Type | Description |
---|---|
Func<Supported> |
environmentDepthImageSupportedDelegate
Query for whether the current subsystem supports environment depth image.
Declaration
public Func<Supported> environmentDepthImageSupportedDelegate { readonly get; set; }
Property Value
Type | Description |
---|---|
Func<Supported> |
environmentDepthTemporalSmoothingSupportedDelegate
Specifies whether a subsystem supports temporal smoothing of the environment depth image.
Declaration
public Func<Supported> environmentDepthTemporalSmoothingSupportedDelegate { readonly get; set; }
Property Value
Type | Description |
---|---|
Func<Supported> | A method delegate indicating support for temporal smoothing of the environment depth image. |
humanSegmentationDepthImageSupportedDelegate
Specifies whether a subsystem supports human segmentation depth image.
Declaration
public Func<Supported> humanSegmentationDepthImageSupportedDelegate { readonly get; set; }
Property Value
Type | Description |
---|---|
Func<Supported> |
humanSegmentationStencilImageSupportedDelegate
Specifies whether a subsystem supports human segmentation stencil image.
Declaration
public Func<Supported> humanSegmentationStencilImageSupportedDelegate { readonly get; set; }
Property Value
Type | Description |
---|---|
Func<Supported> |
id
Specifies an identifier for the provider implementation of the subsystem.
Declaration
public string id { readonly get; set; }
Property Value
Type | Description |
---|---|
string | The identifier for the provider implementation of the subsystem. |
providerType
Specifies the provider implementation type to use for instantiation.
Declaration
public Type providerType { readonly get; set; }
Property Value
Type | Description |
---|---|
Type | The provider implementation type to use for instantiation. |
subsystemTypeOverride
Specifies the XRAnchorSubsystem
-derived type that forwards casted calls to its provider.
Declaration
public Type subsystemTypeOverride { readonly get; set; }
Property Value
Type | Description |
---|---|
Type | The type of the subsystem to use for instantiation. If null, |
Methods
Equals(object)
Tests for equality.
Declaration
public override bool Equals(object obj)
Parameters
Type | Name | Description |
---|---|---|
object | obj | The |
Returns
Type | Description |
---|---|
bool |
|
Overrides
Equals(Cinfo)
Tests for equality.
Declaration
public bool Equals(XROcclusionSubsystemDescriptor.Cinfo other)
Parameters
Type | Name | Description |
---|---|---|
XROcclusionSubsystemDescriptor.Cinfo | other | The other XROcclusionSubsystemDescriptor.Cinfo to compare against. |
Returns
Type | Description |
---|---|
bool |
|
GetHashCode()
Generates a hash suitable for use with containers like HashSet
and Dictionary
.
Declaration
public override int GetHashCode()
Returns
Type | Description |
---|---|
int | A hash code generated from this object's fields. |
Overrides
Operators
operator ==(Cinfo, Cinfo)
Tests for equality. Same as Equals(Cinfo).
Declaration
public static bool operator ==(XROcclusionSubsystemDescriptor.Cinfo lhs, XROcclusionSubsystemDescriptor.Cinfo rhs)
Parameters
Type | Name | Description |
---|---|---|
XROcclusionSubsystemDescriptor.Cinfo | lhs | The left-hand side of the comparison. |
XROcclusionSubsystemDescriptor.Cinfo | rhs | The right-hand side of the comparison. |
Returns
Type | Description |
---|---|
bool |
|
operator !=(Cinfo, Cinfo)
Tests for inequality. Same as !
Equals(Cinfo).
Declaration
public static bool operator !=(XROcclusionSubsystemDescriptor.Cinfo lhs, XROcclusionSubsystemDescriptor.Cinfo rhs)
Parameters
Type | Name | Description |
---|---|---|
XROcclusionSubsystemDescriptor.Cinfo | lhs | The left-hand side of the comparison. |
XROcclusionSubsystemDescriptor.Cinfo | rhs | The right-hand side of the comparison. |
Returns
Type | Description |
---|---|
bool |
|