Struct ControllerElementMapping
Represents a real device controller element mapped onto a virtual device element
Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.GetType()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Snowflake.Input.Controller.Mapped
Assembly: Snowflake.Framework.Primitives.dll
Syntax
public struct ControllerElementMapping
Constructors
ControllerElementMapping(ControllerElement, DeviceCapability)
Create a new mapping between a virtual controller element and device capability
Declaration
public ControllerElementMapping(ControllerElement virtualElement, DeviceCapability deviceElement)
Parameters
Type | Name | Description |
---|---|---|
Controller |
virtualElement | The virtual controller element to map to. |
Device |
deviceElement | The real device capability. |
ControllerElementMapping(KeyValuePair<ControllerElement, DeviceCapability>)
Create a new mapping between a virtual controller element and device capability from a key value pair
Declaration
public ControllerElementMapping(KeyValuePair<ControllerElement, DeviceCapability> kvp)
Parameters
Type | Name | Description |
---|---|---|
System. |
kvp | The key value pair to convert |
Properties
DeviceCapability
Gets or sets the real element.
Declaration
public DeviceCapability DeviceCapability { get; set; }
Property Value
Type | Description |
---|---|
Device |
LayoutElement
Gets the virtual element.
Declaration
public ControllerElement LayoutElement { get; }
Property Value
Type | Description |
---|---|
Controller |
Operators
Explicit(KeyValuePair<ControllerElement, DeviceCapability> to ControllerElementMapping)
Converts between a Controller
Declaration
public static explicit operator ControllerElementMapping(KeyValuePair<ControllerElement, DeviceCapability> kvp)
Parameters
Type | Name | Description |
---|---|---|
System. |
kvp | The key value pair |
Returns
Type | Description |
---|---|
Controller |