summaryrefslogtreecommitdiffstats
path: root/servers/xr_server.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
|
* Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
| | | | | | | | | | | | | | | | | | | | | | 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>
* Cleanup of raw `nullptr` checks with `Ref`A Thousand Ships2024-08-311-2/+2
| | | | Using `is_valid/null` over checks with `nullptr` or `ERR_FAIL_NULL` etc.
* Apply reference frame transform to OpenXRCompositionLayer nodesdevloglogan2024-05-291-0/+4
|
* OpenXR: Change timing of xrWaitFrame and add thread safety features to OpenXRBastiaan Olij2024-05-011-44/+102
|
* Rework XR Trackers to have a common ancestor. Allow creation of XRNode3D to ↵Malcolm Nixon2024-04-181-153/+10
| | | | drive node positions and visibility.
* Add body tracking support.Malcolm Nixon2024-02-271-0/+48
|
* Provide generic interface for XR hand trackingDavid Snopek2024-02-231-0/+48
|
* Initial XRFaceTrackingProvider and XRFaceTracker work.Malcolm Nixon2024-02-171-0/+48
| | | | Updated to XRFaceModifier3D.
* OpenXR: Allow changing play area mode during active sessionDavid Snopek2024-01-311-0/+5
|
* Add support for OpenXR local floor extensionDavid Snopek2024-01-231-6/+0
|
* Added docs for DRAW_ORDER_REVERSE_LIFETIME constant and minor XR log improvementAnutrix2023-11-111-3/+1
|
* Remove error print from XRServer.find_interfaceAaron Franke2023-08-171-7/+2
| | | | Co-authored-by: David Snopek <dsnopek@gmail.com>
* Add XRServer.world_origin propertyBastiaan Olij2023-03-011-0/+3
|
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | 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".
* Replace Array return types with TypedArray 3kobewi2022-08-241-1/+1
|
* Add startup flag to override XR mode settingsBastiaan Olij2022-07-281-0/+10
|
* use ERR_FAIL_INDEX when preferredNathan Franke2022-05-251-2/+2
|
* Rename Basis get_axis to get_column, remove redundant methodsAaron Franke2022-05-031-3/+3
|
* Rename Basis "elements" to "rows"Aaron Franke2022-04-291-1/+1
|
* Implementing OpenXR driverBastiaan Olij2022-02-231-2/+3
|
* Improve XRInterface hooks into renderingBastiaan Olij2022-01-261-25/+25
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Rename `remove()` to `remove_at()` when removing by indexLightning_A2021-11-231-2/+2
|
* Add support for returning the play area from XRInterfaceBastiaan Olij2021-10-191-21/+29
|
* Rework XR positional trackersBastiaan Olij2021-10-171-79/+98
|
* Fix missing argument names in bindingsRémi Verschelde2021-10-091-1/+1
| | | | | | While at it, tweak some boolean setters to use `p_enabled` for the bool. Also renames `draw_minimap()` to `set_draw_minimap()`.
* Change to using doubles in XR classesBastiaan Olij2021-09-211-2/+2
|
* Adding GDExtension support to XRInterfaceBastiaan Olij2021-08-261-10/+6
|
* Optimize StringName usagereduz2021-07-181-4/+4
| | | | | | | | | | | * Added a new macro SNAME() that constructs and caches a local stringname. * Subsequent usages use the cached version. * Since these use a global static variable, a second refcounter of static usages need to be kept for cleanup time. * Replaced all theme usages by this new macro. * Replace all signal emission usages by this new macro. * Replace all call_deferred usages by this new macro. This is part of ongoing work to optimize GUI and the editor.
* Add stereoscopic rendering through multiviewBastiaan Olij2021-06-131-2/+2
|
* Rename Transform to Transform3D in coreAaron Franke2021-06-031-7/+7
|
* Change XRPositionalTracker to a reference and better expose it to GDNativeBastiaan Olij2021-03-291-9/+14
|
* Fix failure in set_primary_interface when parameter is nulllucicam2021-03-251-0/+1
| | | | | | | | The program would fail if the parameter is passed as null in set_primary_interface because in the print_verbose, the get_namea) method is called on the parameter and this causes a failure if the parameter that was passed is null. Same fix was done in 3.x also and it seems to be present in master too.
* Update copyright statements to 2021Rémi Verschelde2021-01-011-2/+2
| | | | | | | | | | | | | | Happy new year to the wonderful Godot community! 2020 has been a tough year for most of us personally, but a good year for Godot development nonetheless with a huge amount of work done towards Godot 4.0 and great improvements backported to the long-lived 3.2 branch. We've had close to 400 contributors to engine code this year, authoring near 7,000 commit! (And that's only for the `master` branch and for the engine code, there's a lot more when counting docs, demos and other first-party repos.) Here's to a great year 2021 for all Godot users 🎆
* Rename XR get_type and get_nameAaron Franke2020-12-041-4/+4
| | | Now called get_tracker_type and get_tracker_name
* RenderingServer reorganizationreduz2020-12-041-1/+1
|
* Reorganized core/ directory, it was too fatty alreadyreduz2020-11-071-1/+1
| | | | | | -Removed FuncRef, since Callable makes it obsolete -Removed int_types.h as its obsolete in c++11+ -Changed color names code
* Style: clang-format: Disable KeepEmptyLinesAtTheStartOfBlocksRémi Verschelde2020-05-141-7/+0
| | | | | | | | | | | | | | Which means that reduz' beloved style which we all became used to will now be changed automatically to remove the first empty line. This makes us lean closer to 1TBS (the one true brace style) instead of hybridating it with some Allman-inspired spacing. There's still the case of braces around single-statement blocks that needs to be addressed (but clang-format can't help with that, but clang-tidy may if we agree about it). Part of #33027.
* Renaming all ARVR nodes to XRBastiaan Olij2020-04-091-0/+386