Struct XRDepthSubsystemDescriptor.Cinfo
This struct is an initializer for the creation of a XRDepthSubsystemDescriptor.
Implements
Inherited Members
Namespace: UnityEngine.XR.ARSubsystems
Assembly: solution.dll
Syntax
public struct XRDepthSubsystemDescriptor.Cinfo : IEquatable<XRDepthSubsystemDescriptor.Cinfo>Remarks
Depth data provider should create  a descriptor during InitializeOnLoad using
the parameters here to specify which of the XRDepthSubsystem features it supports.
Fields
id
The string identifier for a specific implementation.
Declaration
public string idField Value
| Type | Description | 
|---|---|
| string | 
implementationType
The concrete Type which will be instantiated if Create is called on this subsystem descriptor.
Declaration
[Obsolete("XRDepthSubsystem no longer supports the deprecated set of base classes for subsystems as of Unity 2020.2. Use providerType and, optionally, subsystemTypeOverride instead.", true)]
public Type implementationTypeField Value
| Type | Description | 
|---|---|
| Type | 
Properties
providerType
Specifies the provider implementation type to use for instantiation.
Declaration
public Type providerType { get; set; }Property Value
| Type | Description | 
|---|---|
| Type | The provider implementation type to use for instantiation. | 
subsystemTypeOverride
Specifies the XRDepthSubsystem-derived type that forwards casted calls to its provider.
Declaration
public Type subsystemTypeOverride { get; set; }Property Value
| Type | Description | 
|---|---|
| Type | The type of the subsystem to use for instantiation. If null,  | 
supportsConfidence
True if the subsystem supports per feature point confidence values, false otherwise.
Declaration
public bool supportsConfidence { get; set; }Property Value
| Type | Description | 
|---|---|
| bool | 
supportsFeaturePoints
True if the subsystem supports feature points, false otherwise.
Declaration
public bool supportsFeaturePoints { get; set; }Property Value
| Type | Description | 
|---|---|
| bool | 
supportsUniqueIds
True if the subsystem supports per-feature point identifiers, false otherwise.
Declaration
public bool supportsUniqueIds { get; set; }Property Value
| Type | Description | 
|---|---|
| bool | 
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(XRDepthSubsystemDescriptor.Cinfo other)Parameters
| Type | Name | Description | 
|---|---|---|
| XRDepthSubsystemDescriptor.Cinfo | other | The other XRDepthSubsystemDescriptor.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 ==(XRDepthSubsystemDescriptor.Cinfo lhs, XRDepthSubsystemDescriptor.Cinfo rhs)Parameters
| Type | Name | Description | 
|---|---|---|
| XRDepthSubsystemDescriptor.Cinfo | lhs | The left-hand side of the comparison. | 
| XRDepthSubsystemDescriptor.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 !=(XRDepthSubsystemDescriptor.Cinfo lhs, XRDepthSubsystemDescriptor.Cinfo rhs)Parameters
| Type | Name | Description | 
|---|---|---|
| XRDepthSubsystemDescriptor.Cinfo | lhs | The left-hand side of the comparison. | 
| XRDepthSubsystemDescriptor.Cinfo | rhs | The right-hand side of the comparison. | 
Returns
| Type | Description | 
|---|---|
| bool | 
 |