Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-07-15 | doc: Sync classref with current source | Rémi Verschelde | |
2019-07-09 | TreeItem: Rename new button disable method to set_button_disabled | Rémi Verschelde | |
Follow-up to #30408. Also sync classref with current source. | |||
2019-06-30 | doc: Remove null default values that can't be determined | Rémi Verschelde | |
Applying #30187. | |||
2019-06-30 | doc: Add default values to all properties | Rémi Verschelde | |
Thanks to @bojidar-bg's impressive work in #29380. | |||
2019-06-27 | Proofread and improve the whole class reference | Hugo Locurcio | |
- Document a few more properties and methods - Add more information to many classes - Fix lots of typos and gramar mistakes - Use [code] tags for parameters consistently - Use [b] and [i] tags consistently - Put "Warning:" and "Note:" on their own line to be more visible, and make them always bold - Tweak formatting in code examples to be more readable - Use double quotes consistently - Add more links to third-party technologies | |||
2019-06-16 | doc: Sync classref with current source, fix formatting issues | Rémi Verschelde | |
2019-06-12 | Merge pull request #29465 from bruvzg/per_pixel_transp_impr | Rémi Verschelde | |
Removes redundant "splash" setting, improves per pixel transparency documentation. | |||
2019-06-11 | makerst: Fix format of [url] links in reST | Rémi Verschelde | |
Moved some logic to make_url in an attempt to reuse it in the parser, but it proved too complex so I ended up not using it. I kept it as a separate method nevertheless. | |||
2019-06-04 | Removes redundant "display/window/per_pixel_transparency/splash" setting, ↵ | bruvzg | |
improves per pixel transparency documentation. | |||
2019-06-01 | doc: Sync classref with current source | Rémi Verschelde | |
2019-05-28 | doc: Sync classref with current source | Rémi Verschelde | |
2019-05-15 | doc: Fix issues found by the parser | Rémi Verschelde | |
2019-04-24 | Improve the ProjectSettings documentation | Hugo Locurcio | |
2019-04-22 | Merge pull request #28125 from KoBeWi/code_true_code | Rémi Verschelde | |
Consistently wrap booleans in [code] | |||
2019-04-19 | doc: Sync classref with current source | Rémi Verschelde | |
2019-04-19 | doc: Drop unused <demos> tag | Rémi Verschelde | |
2019-04-17 | Consistently wrap booleans in [code] | Tomasz Chabora | |
2019-04-15 | doc: Sync classref with current source | Rémi Verschelde | |
2019-04-01 | doc: Bump version to 3.2 | Rémi Verschelde | |
2019-03-13 | Merge pull request #26484 from Andrettin/Configurable-Tooltip-Offset | Rémi Verschelde | |
Make the Tooltip Position Offset Configurable | |||
2019-03-07 | Define android/modules globally so it appears in Project Settings | Rémi Verschelde | |
Until now people had to add it manually to project.godot to load custom modules. | |||
2019-03-05 | Disable driver fallback to GLES2 by default | Rémi Verschelde | |
GLES2 is not designed to be a drop-in replacement for the GLES3 backend, so the fallback mode has to be used knowingly. It *can* make sense for simple projects which make sure to handle the differences between both rendering backends, but most users should stick to one supported backend. By making it opt-in, we can now use this parameter to define whether to export ETC textures to Android and iOS when using GLES3 + Fallback. When using GLES3 without Fallback on Android, set the proper min GLES version in the AndroidManifest. Also made the option boolean and renamed it for clarity and to avoid conflict with the previous String option (which would always evaluate as "true" otherwise). Fixes #26569. | |||
2019-03-02 | Made the tooltip position offset configurable | Andrettin | |
2019-02-20 | ProjectSettings: fix category for per pixel transparency settings | Rémi Verschelde | |
2019-01-14 | GLES2: Make Nvidia flicker workaround opt-in | Rémi Verschelde | |
It has a big impact on 2D and text rendering performance (cf. #24466) so the solution seems worse than the bug it aims to work around. It's now opt-in via "rendering/quality/2d/gles2_use_nvidia_rect_flicker_workaround" for those who need it and have a simple enough game for the performance drop not to be an issue. Fixes #24466. | |||
2019-01-07 | doc: Fix wrong references found by Sphinx and new makerst.py | Rémi Verschelde | |
2018-12-15 | doc: Sync classref with current source | Rémi Verschelde | |
2018-12-14 | Merge pull request #23799 from marcelofg55/custom_ps | Rémi Verschelde | |
Add application/config/project_settings_override option to override project settings | |||
2018-12-14 | Request mic access only when is needed | volzhs | |
2018-12-13 | Add application/config/project_settings_override option to override project ↵ | Marcelo Fernandez | |
settings | |||
2018-11-25 | Improved bindings and added documentation for AnimationNode, closes #20720 | Juan Linietsky | |
2018-11-13 | doc: Sync classref with current source | Rémi Verschelde | |
2018-10-25 | doc: Sync with current source | Rémi Verschelde | |
2018-10-25 | Repaired mistyped of 'its' on several files. | M. Huri | |
2018-10-24 | [Docs] Repaired some words on ProjectSettings | M. Huri | |
2018-10-07 | Update class documentation xml | Kelly Thomas | |
2018-10-02 | Improve doc of ProjectSettings | florian | |
Documentation added for: * bool load_resource_pack(String) * bool property_can_revert(String) * Variant property_get_revert(String) * Error save() * Error save_custom(String) | |||
2018-09-21 | doc: Sync classref with current source | Rémi Verschelde | |
2018-09-15 | doc: Sync classref with current source | Rémi Verschelde | |
2018-09-13 | [DOCS] Project Settings: Default clear color | Max Hilbrunner | |
2018-09-12 | Misc. typos | luz.paz | |
Found via `codespell -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po"` | |||
2018-08-31 | update class docs | Kelly Thomas | |
2018-08-29 | doc: Sync classref with current source | Rémi Verschelde | |
2018-08-26 | Fall back to GLES2 if GLES3 is not working | Hein-Pieter van Braam | |
This adds a static is_viable() method to all rasterizers which has to be called before initializing the rasterizer. This allows us to check what rasterizer to use in OS::initialize together with the GL context initialization. This commit also adds a new project setting "rendering/quality/driver/driver_fallback" which allows the creator of a project to specify whether or not fallback to GLES2 is allowed. This setting is ignored for the editor so the editor will always open even if the project itself cannot run. This will hopefully reduce confusion for users downloading projects from the internet. We also no longer crash when GLES3 is not functioning on a platform. This fixes #15324 | |||
2018-08-21 | doc: Sync classref with current source | Rémi Verschelde | |
2018-07-26 | doc: Sync classref with current source | Rémi Verschelde | |
Fix various missing arguments in bindings. | |||
2018-06-13 | Style fixes for commit d5bb6faa | Rémi Verschelde | |
2018-06-11 | -Make sure that ProjectSettings are properly dumped when dumping docs. | Juan Linietsky | |
-Documented all properties of project settings Update documentation for ProjectSettings | |||
2018-02-27 | doc: Remove status from hardcoded version string | Rémi Verschelde | |
It has no practical use case and just generates noise for each alpha, beta, etc. | |||
2018-02-19 | doc: Update version string in header | Rémi Verschelde | |