From 0d0a26bad401f34074d23ed6fcc19d7e4d915a88 Mon Sep 17 00:00:00 2001 From: cyber-sushi Date: Mon, 13 May 2024 18:27:09 +0200 Subject: [PATCH] Added docs regarding new L/RSTICK_ACTIVATION_MODIFIERS parameter --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index 734c72f..b32dedb 100644 --- a/README.md +++ b/README.md @@ -149,6 +149,14 @@ Lower value is higher sensitivity, minimum `"1"`, suggested `"6"`. If this is se #### `LSTICK_DEADZONE` and `RSTICK_DEADZONE` Set how much your analog sticks should be tilted before their inputs are detected.\ Particularly useful for older devices that suffer from drifting. Use a value between `"0"` and `"128"`. +#### `LSTICK_ACTIVATION_MODIFIERS` and `RSTICK_ACTIVATION_MODIFIERS` +When using analog sticks in `cursor` or `scroll` mode, normally, they're always active. However, if you specify a list of keys or modifiers in `LSTICK_ACTIVATION_MODIFIERS` or `RSTICK_ACTIVATION_MODIFIERS`, they'll only be active when the modifiers are pressed.\ +Example: +``` +#only move the cursor when select and start are pressed +LSTICK = "cursor" +LSTICK_ACTIVATION_MODIFIERS = "BTN_SELECT-BTN_START" +``` #### `16_BIT_AXIS` This is needed if you're using Xbox controllers and Switch Joy-Cons to properly calibrate the analog stick's sensitivity.\ Set to `"true"` if you're using those controllers.