summaryrefslogtreecommitdiffstats
path: root/modules/mobile_vr
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@8004c7524fb9f43425c4d6f614410a76678e0f7cSpartan3222024-10-302-31/+31
|\
| * Set clang-format `RemoveSemicolon` rule to `true`Adam Scott2024-10-252-31/+31
| | | | | | | | - Set clang-format `Standard` rule to `c++20`
* | Fix copyright headers referring to GodotSpartan3222024-10-274-8/+8
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-114-0/+8
|/ | | | | | | | | | | | | | | | | | | | | | 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
|
* Fix type-o in `MobileVRInterface` sample code in docs: `xr` -> `use_xr`David Snopek2024-07-311-1/+1
|
* Improvements to VRS/Foveated renderingBastiaan Olij2024-05-033-3/+70
|
* Merge pull request #91140 from RadiantUwU/add-mobile-vr-screen-rectRémi Verschelde2024-05-023-3/+25
|\ | | | | | | Add a new property named `offset_rect` to `MobileVRInterface`
| * Implement offset_rect property to MobileVRInterface to allow changing screen ↵Radiant2024-05-023-3/+25
| | | | | | | | area.
* | MobileVR: orientation is progressive and needs to be initialisedBastiaan Olij2024-04-291-1/+1
|/
* Doctool: Remove version attribute from XML headerRémi Verschelde2023-07-061-1/+1
| | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb).
* Bump version to 4.2-devRémi Verschelde2023-07-051-1/+1
| | | | Keep on waitin'
* Add a get_system_info method to XRInterfaceBastiaan Olij2023-03-152-0/+10
|
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* One Copyright Update to rule them allRémi Verschelde2023-01-054-116/+116
| | | | | | | | | | | | | | | | | | | | 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".
* Style: Misc docs and comment style and language fixesRémi Verschelde2022-11-023-3/+3
| | | | | | | | | | - Removed empty paragraphs in XML. - Consistently use bold style for "Example:", on a new line. - Fix usage of `[code]` when hyperlinks could be used (`[member]`, `[constant]`). - Fix invalid usage of backticks for inline code in BBCode. - Fix some American/British English spelling inconsistencies. - Other minor fixes spotted along the way, including typo fixes with codespell. - Don't specify `@GlobalScope` for `enum` and `constant`.
* Implement Vector4, Vector4i, Projectionreduz2022-07-232-3/+3
| | | | | | | | | | | | | Implement built-in classes Vector4, Vector4i and Projection. * Two versions of Vector4 (float and integer). * A Projection class, which is a 4x4 matrix specialized in projection types. These types have been requested for a long time, but given they were very corner case they were not added before. Because in Godot 4, reimplementing parts of the rendering engine is now possible, access to these types (heavily used by the rendering code) becomes a necessity. **Q**: Why Projection and not Matrix4? **A**: Godot does not use Matrix2, Matrix3, Matrix4x3, etc. naming convention because, within the engine, these types always have a *purpose*. As such, Godot names them: Transform2D, Transform3D or Basis. In this case, this 4x4 matrix is _always_ used as a _Projection_, hence the naming.
* Rename OSX to macOS and iPhoneOS to iOS.bruvzg2022-07-211-1/+1
|
* Merge pull request #60723 from reduz/refactor-module-initializationRémi Verschelde2022-05-042-4/+14
|\
| * Refactor module initializationreduz2022-05-042-4/+14
| | | | | | | | | | | | | | * Changed to use the same stages as extensions. * Makes the initialization more coherent, helping solve problems due to lack of stages. * Makes it easier to port between module and extension. * removed the DRIVER initialization level (no longer needed).
* | Rename Basis get_axis to get_column, remove redundant methodsAaron Franke2022-05-031-3/+3
| |
* | Rename Basis "elements" to "rows"Aaron Franke2022-04-291-3/+3
|/
* Add an XML schema for documentationHugo Locurcio2022-02-151-1/+1
| | | | | | | | This makes it easier to spot syntax errors when editing the class reference. The schema is referenced locally so validation can still work offline. Each class XML's schema conformance is also checked on GitHub Actions.
* Improve XRInterface hooks into renderingBastiaan Olij2022-01-262-2/+2
|
* Adding a tracking confidence state to XRPoseBastiaan Olij2022-01-202-1/+4
|
* Style: Remove inconsistently used `@author` docstringsRémi Verschelde2022-01-041-3/+1
| | | | | | | | | | Each file in Godot has had multiple contributors who co-authored it over the years, and the information of who was the original person to create that file is not very relevant, especially when used so inconsistently. `git blame` is a much better way to know who initially authored or later modified a given chunk of code, and most IDEs now have good integration to show this information.
* Update copyright statements to 2022Rémi Verschelde2022-01-034-8/+8
| | | | Happy new year to the wonderful Godot community!
* Make overridden properties link to parent definitionYuri Sizov2021-12-031-1/+1
| | | | Co-authored-by: Josh DeGraw <joshmdegraw@gmail.com>
* Add support for returning the play area from XRInterfaceBastiaan Olij2021-10-193-0/+18
|
* Rework XR positional trackersBastiaan Olij2021-10-172-17/+44
|
* Improve unregistering XR interfaces so we don't get crashes in GDExtensions ↵Bastiaan Olij2021-09-281-1/+16
| | | | by destroying the XRServer too early
* Change to using doubles in XR classesBastiaan Olij2021-09-212-38/+38
|
* Don't generate empty doc sections and reduce code duplicationAaron Franke2021-09-201-4/+0
|
* Add source rectangle to blitBastiaan Olij2021-08-291-5/+5
|
* Adding GDExtension support to XRInterfaceBastiaan Olij2021-08-262-35/+13
|
* Add constant to vector function parameters that don't actually modify their ↵Ricard Rovira Cubeles2021-08-151-4/+4
| | | | | input. Add more overloads of vector multiplication, required by templates to compile with float=64.
* Implement the ability to disable classesreduz2021-07-131-1/+1
| | | | | | | * This PR adds the ability to disable classes when building. * For now it's only possible to do this via command like: `scons disable_classes=RayCast2D,Area3D` * Eventually, a proper UI will be implemented to create a build config file to do this at large scale, as well as detect what is used in the project.
* Rename `instance()`->`instantiate()` when it's a verbLightning_A2021-06-191-1/+1
|
* Add stereoscopic rendering through multiviewBastiaan Olij2021-06-132-22/+79
|
* Rename Quat to QuaternionMarcel Admiraal2021-06-041-2/+2
|
* Disable 3D-only modules when 3D is disabledAaron Franke2021-06-031-1/+1
|
* Rename Transform to Transform3D in coreAaron Franke2021-06-032-4/+4
|
* Fixes small typos and grammar correctionAnshul7sp12021-03-121-6/+6
|
* Initialize class/struct variables with default values in modules/Rafał Mikrut2021-02-082-25/+15
|
* Update copyright statements to 2021Rémi Verschelde2021-01-014-8/+8
| | | | | | | | | | | | | | 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 🎆
* Port ClassDB tests to use doctestAndrii Doroshenko (Xrayez)2020-08-161-3/+5
| | | | | | | | | | | | | | | | | | | | | | Extracted the most minimal core initialization functionality from `setup()` and `setup2()` so that `ClassDB` could be tested properly (input, audio, rendering, physics etc, are excluded). Display and rendering servers/singletons are not initialized at all. Due to the fact that most subsystems are disabled, fixed various crashes in the process (in order): - `AcceptDialog` OK/cancel swap behavior (used `DisplayServer` while `register_scene_types()`); - `make_default_theme` which depends on `RenderingServer`; - `XRServer` singleton access while calling `register_modules_types()`; - hidden bug in a way joypads are cleaned up (MacOS and Linux only). Removed manual `ClassDB` init/cleanup calls from `test_validate_testing.h`. ClassDB tests: Co-authored-by: Ignacio Etcheverry <ignalfonsore@gmail.com>
* Add override keywords.Marcel Admiraal2020-07-101-12/+12
|
* Style: Fix unnecessary semicolons that confused clang-formatRémi Verschelde2020-05-192-7/+1
|
* Style: Enforce braces around if blocks and loopsRémi Verschelde2020-05-141-6/+12
| | | | | Using clang-tidy's `readability-braces-around-statements`. https://clang.llvm.org/extra/clang-tidy/checks/readability-braces-around-statements.html
* Style: clang-format: Disable AllowShortIfStatementsOnASingleLineRémi Verschelde2020-05-101-7/+13
| | | | | | | Part of #33027, also discussed in #29848. Enforcing the use of brackets even on single line statements would be preferred, but `clang-format` doesn't have this functionality yet.