Interface ISteamVR_Action_Vector2
Inherited Members
Namespace: Valve.VR
Assembly: Assembly-CSharp.dll
Syntax
public interface ISteamVR_Action_Vector2 : ISteamVR_Action_In_Source, ISteamVR_Action_Source
  Properties
axis
The current float value of the action. Note: Will only return non-zero if the action is also active.
Declaration
Vector2 axis { get; }
  Property Value
| Type | Description | 
|---|---|
| UnityEngine.Vector2 | 
delta
The float value difference between this update and the previous update. Note: Will only return non-zero if the action is also active.
Declaration
Vector2 delta { get; }
  Property Value
| Type | Description | 
|---|---|
| UnityEngine.Vector2 | 
lastAxis
The float value of the action from the previous update. Note: Will only return non-zero if the action is also active.
Declaration
Vector2 lastAxis { get; }
  Property Value
| Type | Description | 
|---|---|
| UnityEngine.Vector2 | 
lastDelta
The float value difference between the previous update and update before that. Note: Will only return non-zero if the action is also active.
Declaration
Vector2 lastDelta { get; }
  Property Value
| Type | Description | 
|---|---|
| UnityEngine.Vector2 |