Struct XRPointCloudSubsystemDescriptor.Cinfo
This struct is an initializer for the creation of a XRPointCloudSubsystemDescriptor.
Implements
Inherited Members
Namespace: UnityEngine.XR.ARSubsystems
Assembly: solution.dll
Syntax
public struct XRPointCloudSubsystemDescriptor.Cinfo : IEquatable<XRPointCloudSubsystemDescriptor.Cinfo>
Remarks
Point cloud data provider should create a descriptor during InitializeOnLoad using
the parameters here to specify which of the XRPointCloudSubsystem features it supports.
Fields
id
The string identifier for a specific implementation.
Declaration
public string id
Field Value
| Type | Description |
|---|---|
| string |
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 XRPointCloudSubsystem-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(XRPointCloudSubsystemDescriptor.Cinfo other)
Parameters
| Type | Name | Description |
|---|---|---|
| XRPointCloudSubsystemDescriptor.Cinfo | other | The other XRPointCloudSubsystemDescriptor.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 ==(XRPointCloudSubsystemDescriptor.Cinfo lhs, XRPointCloudSubsystemDescriptor.Cinfo rhs)
Parameters
| Type | Name | Description |
|---|---|---|
| XRPointCloudSubsystemDescriptor.Cinfo | lhs | The left-hand side of the comparison. |
| XRPointCloudSubsystemDescriptor.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 !=(XRPointCloudSubsystemDescriptor.Cinfo lhs, XRPointCloudSubsystemDescriptor.Cinfo rhs)
Parameters
| Type | Name | Description |
|---|---|---|
| XRPointCloudSubsystemDescriptor.Cinfo | lhs | The left-hand side of the comparison. |
| XRPointCloudSubsystemDescriptor.Cinfo | rhs | The right-hand side of the comparison. |
Returns
| Type | Description |
|---|---|
| bool |
|