Skip to content
This repository was archived by the owner on May 9, 2026. It is now read-only.

Input

Choose a tag to compare

@BOLL7708 BOLL7708 released this 14 Aug 21:47
· 13 commits to master since this release

Update

Overlays can now receive various input, without the dashboard being present.

In the payload, add an input object, which can contain any of the options below.

{
  "data": {
    "input": {
      "mouse": true,
      "smoothScroll": true,
      "discreteScroll": true,
      "touchpad": true
    }
  }
}
  1. Mouse will return button and position events.
  2. Smooth scroll returns scrolling events in a smooth manner, I think, I haven't actually used it yet but I've seen the events come in.
  3. Discrete scroll is the same but will be discrete steps, in theory.
  4. Touchpad will provide the raw location output by the touchpad on the controller.