diff options
author | rubenwardy <rubenwardy@gmail.com> | 2017-04-02 23:00:34 +0100 |
---|---|---|
committer | Auke Kok <sofar+github@foo-projects.org> | 2017-04-06 20:58:52 -0700 |
commit | bce0d458d8cda70c10d78ea9ec476474f0a6f01a (patch) | |
tree | 529062ce8f0e7b7fd8f5bd94608af3e36a7860d6 /minetest.conf.example | |
parent | 351cc2e79a7d78f7ec97ff9b33e4f0bad4042b19 (diff) | |
download | minetest-bce0d458d8cda70c10d78ea9ec476474f0a6f01a.tar.gz minetest-bce0d458d8cda70c10d78ea9ec476474f0a6f01a.tar.bz2 minetest-bce0d458d8cda70c10d78ea9ec476474f0a6f01a.zip |
Add Joystick type detection and Xbox controller support
* Add joystick type detection (with joystick_type setting to override it)
* Fix multiple joysticks from interfering with each other by only reading from one (add joystick_id setting)
* Add support for Xbox controllers
Diffstat (limited to 'minetest.conf.example')
-rw-r--r-- | minetest.conf.example | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/minetest.conf.example b/minetest.conf.example index 292a645e3..cfc66f168 100644 --- a/minetest.conf.example +++ b/minetest.conf.example @@ -87,6 +87,14 @@ # type: bool # enable_joysticks = false +# The identifier of the joystick to use +# type: int +# joystick_id = 0 + +# The type of joystick +# type: enum values: auto,generic,xbox +# joystick_type = auto + # The time in seconds it takes between repeated events # when holding down a joystick button combination. # type: float @@ -1786,4 +1794,3 @@ server_side_occlusion_culling = true # Print the engine's profiling data in regular intervals (in seconds). 0 = disable. Useful for developers. # type: int # profiler_print_interval = 0 - |