Interface ISteamVR_Action_Single
Inherited Members
Namespace: Valve.VR
Assembly: Assembly-CSharp.dll
Syntax
public interface ISteamVR_Action_Single : 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
float axis { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Single | 
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
float delta { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Single | 
lastAxis
The float value of the action from the previous update. Note: Will only return non-zero if the action is also active.
Declaration
float lastAxis { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Single | 
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
float lastDelta { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Single |