summaryrefslogtreecommitdiffstats
path: root/modules/openxr/action_map
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-2710-20/+20
|
* Merge commit godotengine/godot@1015a481ff43edb1126ab39a147fefda290131e5Spartan3222024-10-243-61/+117
|\
| * OpenXR: change bindings to 'flatten' source pathsBastiaan Olij2024-10-223-61/+117
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-1110-0/+20
|/ | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* SCons: Add unobtrusive type hints in SCons filesThaddeus Crews2024-09-251-0/+1
|
* Couple of small fixes on the action map: now saves when CTRL-S is ↵Bastiaan Olij2024-07-111-3/+6
| | | | pressed/project is run, no longer looses content if OpenXR is not enabled, and a small documentation fix.
* OpenXR: Add HTC/MSFT hand interaction profilesBastiaan Olij2024-06-121-15/+0
|
* Replace `find` with `contains/has` where applicableA Thousand Ships2024-05-083-6/+6
| | | | | | | * Replaces `find(...) != -1` with `contains` for `String` * Replaces `find(...) == -1` with `!contains` for `String` * Replaces `find(...) != -1` with `has` for containers * Replaces `find(...) == -1` with `!has` for containers
* Add support for OpenXR hand interaction extensionBastiaan Olij2024-05-021-72/+92
|
* Cleanup of OpenXR module scons configBastiaan Olij2024-01-251-0/+10
|
* Add Meta controller extensionBastiaan Olij2024-01-111-0/+3
|
* Remove unused grip touch action from default OpenXR action mapBastiaan Olij2023-11-181-1/+0
|
* Add support for the OpenXR Eye gaze interaction extensionBastiaan Olij2023-10-021-1/+7
| | | | Co-authored-by: Bastiaan Olij <mux213@gmail.com>
* OpenXR fix missing add profile for hauweiBastiaan Olij2023-09-111-0/+1
|
* Change to new PICO interaction profilesBastiaan Olij2023-08-304-4/+27
|
* Ensure OpenXR classes are declared properlyA Thousand Ships2023-08-284-37/+39
| | | | Co-authored-by: Bastiaan Olij <mux213@gmail.com>
* Style: Harmonize header includes in modulesRémi Verschelde2023-06-156-8/+10
| | | | | | | | | | | | | | | | | | | | This applies our existing style guide, and adds a new rule to that style guide for modular components such as platform ports and modules: Includes from the platform port or module ("local" includes) should be listed first in their own block using relative paths, before Godot's "core" includes which use "absolute" (project folder relative) paths, and finally thirdparty includes. Includes in `#ifdef`s come after their relevant section, i.e. the overall structure is: - Local includes * Conditional local includes - Core includes * Conditional core includes - Thirdparty includes * Conditional thirdparty includes
* Merge pull request #74930 from BastiaanOlij/fix_action_map_entriesRémi Verschelde2023-05-081-2/+2
|\ | | | | | | Fix incorrect HTC action map entries
| * Fix incorrect HTC action map entriesBastiaan Olij2023-03-151-2/+2
| |
* | OpenXR: Enable access to the Valve Index grip force sensingZac Luzader2023-03-122-0/+4
|/
* OpenXR: Add preliminary Pico controller profilersjtdrjgfuzkfg2023-01-061-0/+25
| | | | | | | This commit adds the Pico controller used in the Pico 4 as implemented in current versions of the OpenXR runtime on the device itself. Note that the extension and paths used in this commit might become obsolete once there is official support for the Pico 4 in the OpenXR standard.
* One Copyright Update to rule them allRémi Verschelde2023-01-0510-290/+290
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* Removed member variables from OpenXRExtensionWrapperBastiaan Olij2023-01-041-318/+2
| | | | | Made extension container in OpenXRAPI static Moved controller meta data into extensions where applicable
* Various fixes for OpenXR action map meta data and editingBastiaan Olij2022-11-2510-813/+894
|
* Merge pull request #64250 from raulsntos/openxr-string-arraysRémi Verschelde2022-11-222-2/+2
|\ | | | | | | Expose string array properties in OpenXR module as PackedStringArray
| * Expose string array properties in OpenXR module as PackedStringArrayRaul Santos2022-08-112-2/+2
| |
* | Change default OpenXR pose to aim poseBastiaan Olij2022-10-281-10/+10
| |
* | Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵bruvzg2022-10-071-3/+3
| | | | | | | | change warnings=all to use /W4.
* | Add OpenXR palm pose extension supportBastiaan Olij2022-09-232-6/+36
|/
* Fix unnamed arguments in XML docsRedMser2022-07-261-1/+1
|
* Code quality: Fix header guards consistencyRémi Verschelde2022-07-255-7/+7
| | | | | Adds `header_guards.sh` bash script, used in CI to validate future changes. Can be run locally to fix invalid header guards.
* Adding HTC tracker supportBastiaan Olij2022-06-163-2/+242
|
* Validate input in OpenXR array setterHaoyu Qiu2022-04-201-2/+16
|
* Added missing interaction profiles and making sure related extensions are ↵Bastiaan Olij2022-04-063-21/+282
| | | | enabled if available
* Add action map editor for OpenXRBastiaan Olij2022-04-0410-44/+747
|
* Fix typos with codespellRémi Verschelde2022-03-311-1/+1
| | | | | | Using codespell 2.2-dev from current git. Fix a couple incorrect uses of gendered pronouns.
* Implementing OpenXR driverBastiaan Olij2022-02-238-0/+900