VR Development Framework
v 1.0.0
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events Pages
static AVR_GenericXRDevice AVR.Core.AVR_GenericXRDevice.getDeviceAtNode ( XRNode  node)
inlinestatic

Returns the last AVR_GenericXRDevice enabled that has a given controllerNode value.

Parameters
nodeNode of the requested device
Returns
last AVR_GenericXRDevice enabled that has a given controllerNode value. Null if none exists.

Definition at line 22 of file AVR_GenericXRDevice.cs.

22  {
23  nodeDevices.TryGetValue(node, out var val);
24  return val;
25  }