summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | | | | | | | | | | | | | fix set_position()Silc Renew2022-06-251-1/+1
| | |_|_|_|_|_|/ / / / / / / / | |/| | | | | | | | | | | | |
* | | | | | | | | | | | | | | Merge pull request #62255 from vnen/gdscript-implicit-onreadyRémi Verschelde2022-06-243-13/+39
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | GDScript: Use implicit method for @onready variables
| * | | | | | | | | | | | | | | GDScript: Use implicit method for @onready variablesGeorge Marques2022-06-243-13/+31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Initialize them with the implicit method so they're not related to the overriding of the `_ready` method of the script but instead are always set.
| * | | | | | | | | | | | | | | GDScript: Don't add implicit constructor to the list of functionsGeorge Marques2022-06-242-1/+9
| | |/ / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | So it's not shown on docs or when listing the methods. This also avoids being able to call it using the `call()` function.
* | | | | | | | | | | | | | | Merge pull request #62369 from timothyqiu/http-request-docRémi Verschelde2022-06-241-13/+17
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / / / / / |/| | | | | | | | | | | | | | Make code example in HTTPRequest classref working
| * | | | | | | | | | | | | | Make code example in HTTPRequest classref workingHaoyu Qiu2022-06-241-13/+17
| |/ / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Co-authored-by: Raul Santos <raulsntos@gmail.com>
* | | | | | | | | | | | | | Merge pull request #62054 from techiepriyansh/soft-shadows-lightmapperRémi Verschelde2022-06-246-51/+104
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add support for soft shadows to the GPU lightmapper
| * | | | | | | | | | | | | | add support for soft shadows to the lightmapperPriyansh Rathi2022-06-246-51/+104
| |/ / / / / / / / / / / / /
* | | | | | | | | | | | | | Merge pull request #62133 from BastiaanOlij/move_cubemap_effectsRémi Verschelde2022-06-2415-422/+527
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / |/| | | | | | | | | | | | | Moved cube_to_dp and cubemap logic into CopyEffects
| * | | | | | | | | | | | | Moved cube_to_dp and cubemap logic into CopyEffectsBastiaan Olij2022-06-2415-422/+527
| | | | | | | | | | | | | |
* | | | | | | | | | | | | | Merge pull request #62375 from smix8/doc_navmesh_bake_obstruct_limit_4xRémi Verschelde2022-06-241-0/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | Document limits of using meshes to obstruct navigation mesh bakingsmix82022-06-241-0/+1
| | |/ / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Recast (the library used for baking) has no concept of a geometry "inside" and this is intentional. ReCast will add navigation mesh to areas as soon as the area inside a source geometry mesh is large enough to fit a navigation mesh polygon with current baking parameters.
* | | | | | | | | | | | | | Merge pull request #59918 from ↵Rémi Verschelde2022-06-245-12/+12
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | piiertho/enhancement/rename-controll-minimum_size-to-custom_minimum_size
| * | | | | | | | | | | | | enhancement: rename exposed property Control::minimum_size to ↵Pierre-Thomas Meisels2022-06-235-12/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Control::custom_minimum_size
* | | | | | | | | | | | | | Merge pull request #62300 from smix8/navigation_map_force_update_4.xRémi Verschelde2022-06-248-0/+43
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | Add NavigationServer map_force_update() functionsmix82022-06-238-0/+43
| | |_|/ / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds map_force_update() function to NavigationServer. This function immediately flushes the Navigationserver command queue and recalculates all navigationmeshes and region connections for a specific map.
* | | | | | | | | | | | | | Merge pull request #62227 from TokageItLab/fix-rotation-mode-node3dRémi Verschelde2022-06-242-21/+50
|\ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | fix method when rotation_mode changedSilc Renew2022-06-232-21/+50
| | |_|_|_|_|_|_|_|/ / / / / | |/| | | | | | | | | | | |
* | | | | | | | | | | | | | Merge pull request #61698 from raulsntos/icon_color-editor-themeRémi Verschelde2022-06-241-1/+17
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add icon colors to editor theme
| * | | | | | | | | | | | | | Add icon colors to editor themeRaul Santos2022-06-231-1/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add `icon_normal_color`, `icon_pressed_color`, and `icon_disabled_color` to `Button`, `OptionButton`, `CheckButton`, and `CheckBox`.
* | | | | | | | | | | | | | | Merge pull request #62353 from smix8/navigation_region_owns_point_4.xRémi Verschelde2022-06-248-0/+39
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add NavigationServer region_owns_point() helper function
| * | | | | | | | | | | | | | | Add NavigationServer.region_owns_point() helper functionsmix82022-06-238-0/+39
| | |_|_|/ / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds a helper function to check if a world space position is currently owned by a navigation region.
* | | | | | | | | | | | | | | Merge pull request #62368 from V-Sekai/exr-bugRémi Verschelde2022-06-243-3/+11
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|_|/ / / / / / / |/| | | | | | | | | | | | | | Restore the openexr grayscale property.
| * | | | | | | | | | | | | | Restore the openexr grayscale property.K. S. Ernest (iFire) Lee2022-06-233-3/+11
|/ / / / / / / / / / / / / /
* | | | | | | | | | | | | | Merge pull request #62238 from V-Sekai/openexr-bufferRémi Verschelde2022-06-245-11/+36
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For in-engine processing allow saving openexr to a buffer.
| * | | | | | | | | | | | | | For in-engine processing allow saving openexr to a buffer.K. S. Ernest (iFire) Lee2022-06-235-11/+36
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | Merge pull request #60356 from ↵Rémi Verschelde2022-06-233-0/+118
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | piiertho/feature/add-core-types-enum-description-to-extention-api-json Add core types enums description to extension api json
| * | | | | | | | | | | | | | | Add core types enums description to extension api jsonPierre-Thomas Meisels2022-06-233-0/+118
| | |/ / / / / / / / / / / / / | |/| | | | | | | | | | | | |
* | | | | | | | | | | | | | | Merge pull request #62327 from Geometror/hash-containers-fastmod-optimizationRémi Verschelde2022-06-233-30/+98
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | HashMap/HashSet optimization: fast modulo
| * | | | | | | | | | | | | | | Optimize HashMap/HashSet using fastmodHendrik Brucker2022-06-233-30/+98
| | |/ / / / / / / / / / / / / | |/| | | | | | | | | | | | |
* | | | | | | | | | | | | | | Merge pull request #62342 from reduz/methodinfo-varargsRémi Verschelde2022-06-234-238/+69
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implement varargs in Methodinfo
| * | | | | | | | | | | | | | | Implement varargs in Methodinforeduz2022-06-234-238/+69
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Variadic templates are an awful thing. Implements #62233 using them in MethodInfo so less changes are required.
* | | | | | | | | | | | | | | | Merge pull request #62349 from KoBeWi/crash_patternRémi Verschelde2022-06-231-0/+3
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix crash when drawing invalid tiles
| * | | | | | | | | | | | | | | | Fix crash when drawing invalid tileskobewi2022-06-231-0/+3
| | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | Merge pull request #62355 from raulsntos/fix-curve-notifyRémi Verschelde2022-06-232-14/+42
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix Curve{2D,3D} notifying property list changed
| * | | | | | | | | | | | | | | | | Fix Curve{2D,3D} notifying property list changedRaul Santos2022-06-232-14/+42
| | |_|_|/ / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make `Curve2D` and `Curve3D` more consistent with `Curve` and avoid calling `notify_property_list_changed` when the list of points doesn't change.
* | | | | | | | | | | | | | | | | Merge pull request #62352 from akien-mga/mono-newtonsoft.json-13.0.1Rémi Verschelde2022-06-233-3/+3
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |/ / / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | Mono: Update Newtonsoft.Json to 13.0.1
| * | | | | | | | | | | | | | | | Mono: Update Newtonsoft.Json to 13.0.1Rémi Verschelde2022-06-233-3/+3
| | |_|_|_|_|_|_|_|_|_|_|/ / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See https://github.com/advisories/GHSA-5crp-9r3c-p9vr
* | | | | | | | | | | | | | | | Merge pull request #62312 from smix8/navigation_get_maps_4.xRémi Verschelde2022-06-238-0/+36
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | Add Navigation function to get all navigation mapssmix82022-06-228-0/+36
| | |_|_|_|_|_|_|_|_|/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added new function that returns all created navigation map RIDs from the NavigationServer. The function returns both 2D and 3D created navigation maps as technically there is no distinction between them.
* | | | | | | | | | | | | | | | Merge pull request #62293 from smix8/navigation_disable_editorprogress_bake_4.xRémi Verschelde2022-06-231-0/+7
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | Disable thread-unsafe EditorProgress for navmesh bakingsmix82022-06-221-0/+7
| | |_|_|_|_|_|_|/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Disables navmesh baking EditorProgress for now until fixed as EditorProgress is not thread-safe and uses hacks and Main::iteration() for steps which can result in random crashes when baking navmesh.
* | | | | | | | | | | | | | | | Merge pull request #62348 from smix8/navigation_baking_aabb_4.xRémi Verschelde2022-06-234-0/+53
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / / / / / / / / |/| | | | | | | | | | | | | | |
| * | | | | | | | | | | | | | | Implement NavigationMesh bake areasmix82022-06-234-0/+53
| |/ / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Adds two new properties to NavigationMesh resources to restrict the navmesh baking to an area enclosed by an AABB with volume.
* | | | | | | | | | | | | | | Merge pull request #62323 from Maran23/window-title-changed-data-fixRémi Verschelde2022-06-231-3/+9
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | Update the window title when the project settings were changed or when the ↵Marius Hanl2022-06-221-3/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | unsaved cache was changed (either by editing something or by saving) This makes sure that: 1.) The title is always up-to-date with project settings 2.) The title always reflects the changes made in the editor by showing or hiding the '(*)'
* | | | | | | | | | | | | | | | Merge pull request #62297 from gumaciel/update_android_targetSdkVersion_30_to_31Rémi Verschelde2022-06-235-3/+6
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | Update android:targetSdkVersion from 30 to 31Gustavo Maciel2022-06-235-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Starting in August 2022, new apps will need to target API level 31 (Android 12) or higher and adjust for behavioral changes. Read more here: https://developer.android.com/google/play/requirements/target-sdk
* | | | | | | | | | | | | | | | | Merge pull request #61628 from Vitika9/61617Rémi Verschelde2022-06-232-6/+25
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | | | | | | | Fixed dragging curve pointsVitika92022-06-222-6/+25
| | | | | | | | | | | | | | | | | |