struct XRSemanticsSubsystemCinfo
(Niantic.Lightship.AR.XRSubsystems.XRSemanticsSubsystemCinfo)
Overview
Constructor parameters for the XRSemanticsSubsystemDescriptor.
struct XRSemanticsSubsystemCinfo: IEquatable< XRSemanticsSubsystemCinfo > {
// properties
string id;
Type providerType;
Type subsystemTypeOverride;
Func<Supported> semanticSegmentationImageSupportedDelegate;
// methods
bool Equals(XRSemanticsSubsystemCinfo other);
override bool Equals(System.Object obj);
override int GetHashCode();
static bool operator == (
XRSemanticsSubsystemCinfo lhs,
XRSemanticsSubsystemCinfo rhs
);
static bool operator != (
XRSemanticsSubsystemCinfo lhs,
XRSemanticsSubsystemCinfo rhs
);
};
Detailed Documentation
Constructor parameters for the XRSemanticsSubsystemDescriptor.
Properties
id
string id
Specifies an identifier for the provider implementation of the subsystem.
The identifier for the provider implementation of the subsystem.
providerType
Type providerType
Specifies the provider implementation type to use for instantiation.
The provider implementation type to use for instantiation.
subsystemTypeOverride
Type subsystemTypeOverride
Specifies the XRAnchorSubsystem-derived type that forwards casted calls to its provider.
The type of the subsystem to use for instantiation. If null, XRAnchorSubsystem will be instantiated.
semanticSegmentationImageSupportedDelegate
Func<Supported> semanticSegmentationImageSupportedDelegate
Specifies if the current subsystem supports semantics segmentation image.
Methods
Equals
bool Equals(XRSemanticsSubsystemCinfo other)
Tests for equality.
Parameters:
other
- The other XRSemanticsSubsystemCinfo to compare against.
Returns:
True
if every field in other is equal to this XRSemanticsSubsystemCinfo, otherwise false.