Struct XRRaycastSubsystemDescriptor.Cinfo
Used to register a descriptor. See RegisterDescriptor(XRRaycastSubsystemDescriptor.Cinfo).
Namespace: UnityEngine.XR.ARSubsystems
Syntax
public struct Cinfo : IEquatable<XRRaycastSubsystemDescriptor.Cinfo>
Properties
id
A provider-specific identifier.
Declaration
public string id { get; set; }
Property Value
| Type | Description | 
|---|---|
| String | 
subsystemImplementationType
The Type of the subsystem.
Declaration
public Type subsystemImplementationType { get; set; }
Property Value
| Type | Description | 
|---|---|
| Type | 
supportedTrackableTypes
The types of trackables against which raycasting is supported.
Declaration
public TrackableType supportedTrackableTypes { get; set; }
Property Value
| Type | Description | 
|---|---|
| TrackableType | 
supportsTrackedRaycasts
Whether "tracked" raycasts are supported. A tracked raycast is repeated over time and the results are updated automatically.
Declaration
public bool supportsTrackedRaycasts { get; set; }
Property Value
| Type | Description | 
|---|---|
| Boolean | 
supportsViewportBasedRaycast
Whether the provider supports casting a ray from a screen point.
Declaration
public bool supportsViewportBasedRaycast { get; set; }
Property Value
| Type | Description | 
|---|---|
| Boolean | 
supportsWorldBasedRaycast
Whether the provider supports casting an arbitrary ray.
Declaration
public bool supportsWorldBasedRaycast { get; set; }
Property Value
| Type | Description | 
|---|---|
| Boolean | 
Methods
Equals(Object)
Tests for equality.
Declaration
public override bool Equals(object obj)
Parameters
| Type | Name | Description | 
|---|---|---|
| Object | obj | The   | 
Returns
| Type | Description | 
|---|---|
| Boolean | 
  | 
Overrides
Equals(XRRaycastSubsystemDescriptor.Cinfo)
Tests for equality.
Declaration
public bool Equals(XRRaycastSubsystemDescriptor.Cinfo other)
Parameters
| Type | Name | Description | 
|---|---|---|
| XRRaycastSubsystemDescriptor.Cinfo | other | The other XRRaycastSubsystemDescriptor.Cinfo to compare against.  | 
Returns
| Type | Description | 
|---|---|
| Boolean | 
  | 
GetHashCode()
Generates a hash suitable for use with containers like HashSet and Dictionary.
Declaration
public override int GetHashCode()
Returns
| Type | Description | 
|---|---|
| Int32 | A hash code generated from this object's fields.  | 
Overrides
ToString()
Generates a string representation of this XRRaycastSubsystemDescriptor.Cinfo.
Declaration
public override string ToString()
Returns
| Type | Description | 
|---|---|
| String | A string representation of this XRRaycastSubsystemDescriptor.Cinfo.  | 
Overrides
Operators
Equality(XRRaycastSubsystemDescriptor.Cinfo, XRRaycastSubsystemDescriptor.Cinfo)
Tests for equality. Same as Equals(XRRaycastSubsystemDescriptor.Cinfo).
Declaration
public static bool operator ==(XRRaycastSubsystemDescriptor.Cinfo lhs, XRRaycastSubsystemDescriptor.Cinfo rhs)
Parameters
| Type | Name | Description | 
|---|---|---|
| XRRaycastSubsystemDescriptor.Cinfo | lhs | The left-hand side of the comparison.  | 
| XRRaycastSubsystemDescriptor.Cinfo | rhs | The right-hand side of the comparison.  | 
Returns
| Type | Description | 
|---|---|
| Boolean | 
  | 
Inequality(XRRaycastSubsystemDescriptor.Cinfo, XRRaycastSubsystemDescriptor.Cinfo)
Tests for inequality. Same as !Equals(XRRaycastSubsystemDescriptor.Cinfo).
Declaration
public static bool operator !=(XRRaycastSubsystemDescriptor.Cinfo lhs, XRRaycastSubsystemDescriptor.Cinfo rhs)
Parameters
| Type | Name | Description | 
|---|---|---|
| XRRaycastSubsystemDescriptor.Cinfo | lhs | The left-hand side of the comparison.  | 
| XRRaycastSubsystemDescriptor.Cinfo | rhs | The right-hand side of the comparison.  | 
Returns
| Type | Description | 
|---|---|
| Boolean | 
  |