summaryrefslogtreecommitdiffstats
path: root/modules/webxr/webxr_interface_js.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Rename Basis "elements" to "rows"Aaron Franke2022-04-291-9/+9
|
* Fix more issues found by cppcheck.bruvzg2022-04-201-2/+2
|
* Style: Cleanup single-line blocks, semicolons, dead codeRémi Verschelde2022-02-161-1/+2
| | | | | Remove currently unused implementation of TextureBasisU, could be re-added later on if needed and ported.
* Improve XRInterface hooks into renderingBastiaan Olij2022-01-261-1/+1
|
* Update copyright statements to 2022Rémi Verschelde2022-01-031-2/+2
| | | | Happy new year to the wonderful Godot community!
* Rework XR positional trackersBastiaan Olij2021-10-171-21/+65
|
* Change to using doubles in XR classesBastiaan Olij2021-09-211-1/+1
|
* Adding GDExtension support to XRInterfaceBastiaan Olij2021-08-261-23/+5
|
* WebXR: Fix build after SNAME additionRémi Verschelde2021-07-211-2/+2
| | | | Was missed as WebXR build was disabled prior to #50563.
* Merge pull request #50563 from dsnopek/webxr-enable-ciRémi Verschelde2021-07-211-0/+17
|\ | | | | Re-enable building WebXR in GitHub Actions
| * Re-enable building WebXR in GitHub ActionsDavid Snopek2021-07-171-0/+17
| |
* | Optimize StringName usagereduz2021-07-181-6/+6
|/ | | | | | | | | | | * 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.
* [HTML5] Fix build (with module_webxr_enabled=no).Fabio Alessandrelli2021-07-151-4/+4
| | | | | The XR API changed a bit, and it's not just a rename, though probably an easy update for someone who is qualified :).
* Rename `instance()`->`instantiate()` when it's a verbLightning_A2021-06-191-1/+1
|
* Add stereoscopic rendering through multiviewBastiaan Olij2021-06-131-5/+22
|
* Rename Transform to Transform3D in coreAaron Franke2021-06-031-4/+4
|
* Replace remaining uses of `NULL` with `nullptr`Rémi Verschelde2021-04-291-1/+1
| | | | Follow-up to #38736 (these uses were likely added after this PR was merged).
* Change XRPositionalTracker to a reference and better expose it to GDNativeBastiaan Olij2021-03-291-5/+5
|
* Rename some more global enums (Key, Joy, MIDI)Aaron Franke2021-03-231-1/+1
|
* Prevent fatal error in WebXR when 'immersize-ar' loses and regains trackingDavid Snopek2021-01-271-8/+18
|
* Support mono devices in WebXRDavid Snopek2021-01-251-3/+2
|
* Fix WebXR module.Fabio Alessandrelli2021-01-101-3/+3
| | | | | Some functions and enums were renamed in 4.0 but not updated in the WebXR code.
* Add support for WebXRDavid Snopek2021-01-041-0/+451