Struct XRHumanBodySubsystemCinfo
Constructor info for the XRHumanBodySubsystemDescriptor.
Inherited Members
Namespace: UnityEngine.XR.ARSubsystems
Syntax
public struct XRHumanBodySubsystemCinfo : IEquatable<XRHumanBodySubsystemCinfo>
Properties
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. |
implementationType
Specifies the provider implementation type to use for instantiation.
Declaration
[Obsolete("XRHumanBodySubsystem 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 implementationType { readonly get; set;
}
Property Value
| Type | Description |
|---|---|
| Type | Specifies the provider implementation type to use for instantiation. |
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 XRHumanBodySubsystem-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, |
supportsHumanBody2D
Specifies if the current subsystem supports 2D human body pose estimation.
Declaration
public bool supportsHumanBody2D { readonly get; set; }
Property Value
| Type | Description |
|---|---|
| Boolean |
|
supportsHumanBody3D
Specifies if the current subsystem supports 3D human body pose estimation.
Declaration
public bool supportsHumanBody3D { readonly get; set; }
Property Value
| Type | Description |
|---|---|
| Boolean |
|
supportsHumanBody3DScaleEstimation
Specifies if the current subsystem supports 3D human body scale estimation.
Declaration
public bool supportsHumanBody3DScaleEstimation { readonly 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(XRHumanBodySubsystemCinfo)
Tests for equality.
Declaration
public bool Equals(XRHumanBodySubsystemCinfo other)
Parameters
| Type | Name | Description |
|---|---|---|
| XRHumanBodySubsystemCinfo | other | The other XRHumanBodySubsystemCinfo to compare against. |
Returns
| Type | Description |
|---|---|
| Boolean |
|
Implements
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
Operators
Equality(XRHumanBodySubsystemCinfo, XRHumanBodySubsystemCinfo)
Tests for equality. Same as Equals(XRHumanBodySubsystemCinfo).
Declaration
public static bool operator ==(XRHumanBodySubsystemCinfo lhs, XRHumanBodySubsystemCinfo rhs)
Parameters
| Type | Name | Description |
|---|---|---|
| XRHumanBodySubsystemCinfo | lhs | The left-hand side of the comparison. |
| XRHumanBodySubsystemCinfo | rhs | The right-hand side of the comparison. |
Returns
| Type | Description |
|---|---|
| Boolean |
|
Inequality(XRHumanBodySubsystemCinfo, XRHumanBodySubsystemCinfo)
Tests for inequality. Same as !Equals(XRHumanBodySubsystemCinfo).
Declaration
public static bool operator !=(XRHumanBodySubsystemCinfo lhs, XRHumanBodySubsystemCinfo rhs)
Parameters
| Type | Name | Description |
|---|---|---|
| XRHumanBodySubsystemCinfo | lhs | The left-hand side of the comparison. |
| XRHumanBodySubsystemCinfo | rhs | The right-hand side of the comparison. |
Returns
| Type | Description |
|---|---|
| Boolean |
|