Table of Contents

Class Hint.Joystick.HidApi.PS3

Namespace
Sdl3Sharp
Assembly
Sdl3Sharp.dll

SDL_HINT_JOYSTICK_HIDAPI_PS3_*

public static class Hint.Joystick.HidApi.PS3
Inheritance
Hint.Joystick.HidApi.PS3
Inherited Members

Remarks

For the hint SDL_HINT_JOYSTICK_HIDAPI_PS3 ("SDL_JOYSTICK_HIDAPI_PS3") see UseDriver.

Properties

SixaxisDriver

Gets a hint controlling whether the Sony driver (sixaxis.sys) for PS3 controllers (Sixaxis/DualShock 3) should be used

public static Hint SixaxisDriver { get; }

Property Value

Hint

A hint controlling whether the Sony driver (sixaxis.sys) for PS3 controllers (Sixaxis/DualShock 3) should be used

Remarks

The hint can be set to the following values:

  • "0"Sony driver (sixaxis.sys) is not used
  • "1"Sony driver (sixaxis.sys) is used

The default value for this hint is 0.

This hint should be set before initializing joysticks and gamepads (either by initializing SDL or by initializing them on their own).

See Also

UseDriver

Gets a hint controlling whether the HIDAPI driver for PS3 controllers should be used

public static Hint UseDriver { get; }

Property Value

Hint

A hint controlling whether the HIDAPI driver for PS3 controllers should be used

Remarks

The hint can be set to the following values:

  • "0"HIDAPI driver is not used
  • "1"HIDAPI driver is used

The default value for this hint is the value of UseDrivers on macOS, and "0" on other platforms.

For official Sony driver (sixaxis.sys) use SixaxisDriver. See https://github.com/ViGEm/DsHidMini for an alternative driver on Windows.

This hint should be set before initializing joysticks and gamepads (either by initializing SDL or by initializing them on their own).

See Also