ProtoFlux:Standard Controller

From Resonite Wiki

This article or section is a Stub. You can help the Resonite Wiki by expanding it.


Standard Controller
User
IsActive
Node
Type
BatteryLevel
IsBatteryCharging
Primary
Secondary
Grab
Menu
Strength
Axis
Controllers

This node provides information for generic controllers.


Usage

The standard controller node allows one to interact with the players virtual reality controller.

Say you want to get the user's grip and trigger strength, just feed it a user and a "Chirality input" for the left or right controller and volla!

Just pull an output from the grip boolean and the strength float value and now you have the users grip and trigger on/off and strength!

Examples

Inputs

User (User)

The user to get controller information from.

Node (Chirality)

The controller side to get information from.

Outputs

IsActive (bool)

Is this controller actively being used right now.

Type (Type)

The controller type being used. (a subtype of IStandardController if a controller exists or null)

BatteryLevel (float)

The battery level of this controller. (1: full, 0: empty, -1: battery level not available)

IsBatteryCharging (bool)

Is this controller currently charging.

Primary (bool)

Is primary pressed right now.

Secondary (bool)

Is secondary pressed right now.

Grab (bool)

Is the controller's grip button pressed right now.

Menu (bool)

Is the menu button being pressed right now.

Strength (float)

How much the trigger is pressed currently. (from 0 to 1)

Axis (float2)

The position of this controller's joystick or touchpad depending on controller type. ([-1; -1]: bottom left, [+1; +1]: top right, [0; 0] for touchpads that are untouched)

Index Controllers have both types of input. Axis returns the touchpad position.