diff options
author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-17 09:25:11 +0100 |
---|---|---|
committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-17 09:25:11 +0100 |
commit | 093493d1ecc082672d80707c31bd95a5175ab2ce (patch) | |
tree | 7a692e5bafff5bfda971ce3e9c91ba48bbd7b5dc /src/crepe/api/Config.h | |
parent | cc2ec343367ebaa3b6a6142532f7a067c3c981a1 (diff) | |
parent | 3c99c73f3c1c31ba97f7e8c74f434c880f8a9036 (diff) |
Merge branch 'wouter/inputSystem' into wouter/button-improvement
Diffstat (limited to 'src/crepe/api/Config.h')
-rw-r--r-- | src/crepe/api/Config.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/crepe/api/Config.h b/src/crepe/api/Config.h index ca2d3f1..ed1cf38 100644 --- a/src/crepe/api/Config.h +++ b/src/crepe/api/Config.h @@ -76,6 +76,11 @@ struct Config final { */ std::string root_pattern = ".crepe-root"; } asset; + //! Configuration for click tolerance. + struct { + //! The maximum number of pixels the mouse can move between MouseDown and MouseUp events to be considered a click. + int click_tolerance = 5; + } input; //! Audio system settings struct { |