C# Class OpenTK.Input.JoystickMoveEventArgs

Provides data for the JoystickDevice.Move event. This class is cached for performance reasons - avoid storing references outside the scope of the event.
Inheritance: JoystickEventArgs
Mostra file Open project: prepare/HTML-Renderer Class Usage Examples

Public Methods

Method Description
JoystickMoveEventArgs ( JoystickAxis axis, float value, float delta ) : System

Initializes a new instance of the JoystickMoveEventArgs class.

Method Details

JoystickMoveEventArgs() public method

Initializes a new instance of the JoystickMoveEventArgs class.
public JoystickMoveEventArgs ( JoystickAxis axis, float value, float delta ) : System
axis JoystickAxis The index of the joystick axis that was moved.
value float The absolute value of the joystick axis.
delta float The relative change in value of the joystick axis.
return System