Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-11-12 | Merge pull request #54872 from akien-mga/rect2-has_point-borders | Max Hilbrunner | |
Rect2: Clarify docs for `has_point` excluding bottom and right borders | |||
2021-11-12 | Merge pull request #54867 from Chaosus/shader_fix_light_albedo | Rémi Verschelde | |
Fix shader crashing when using `ALBEDO` or `ALPHA` in light function | |||
2021-11-11 | Merge pull request #54810 from nekomatata/area-separate-override-modes | Camille Mohr-Daurat | |
Separate space override modes for gravity/damping in Area | |||
2021-11-11 | Rect2: Clarify docs for `has_point` excluding bottom and right borders | Rémi Verschelde | |
Improve tests, as well as documentation for `expand`. | |||
2021-11-11 | Merge pull request #54889 from KoBeWi/debug_name | Rémi Verschelde | |
2021-11-11 | Show built-in script names in the debugger | kobewi | |
2021-11-11 | Merge pull request #54857 from nekomatata/raycast-hit-from-inside | Rémi Verschelde | |
2021-11-11 | Merge pull request #54883 from bruvzg/dir_control_warning | Rémi Verschelde | |
2021-11-11 | Merge pull request #54876 from bruvzg/no_captured_move | Rémi Verschelde | |
2021-11-11 | [GDScript] Check string literals for Unicode direction control characters. | bruvzg | |
2021-11-11 | Merge pull request #54874 from lyuma/fix_other_importer | Rémi Verschelde | |
2021-11-11 | Make window unmovable by dragging title bar, when mouse in captured or ↵ | bruvzg | |
confined mode. | |||
2021-11-11 | Merge pull request #54869 from akien-mga/string-remove-erase | Rémi Verschelde | |
2021-11-11 | Merge pull request #54868 from akien-mga/color-from_hsv-static | Rémi Verschelde | |
2021-11-11 | Merge pull request #54870 from bruvzg/rtl_table_copy | Rémi Verschelde | |
2021-11-11 | Fix import_scene_from_other_importer and import_animation_from_other_importer | Lyuma | |
2021-11-11 | Color: Bind `from_hsv` as static method | Rémi Verschelde | |
2021-11-11 | String: Remove `erase` method, bindings can't mutate String | Rémi Verschelde | |
2021-11-11 | Fix RichTextLabel selection copy with table cells. | bruvzg | |
2021-11-11 | Fix shader crashing when using `ALBEDO` or `ALPHA` in light function | Yuri Roubinsky | |
2021-11-11 | Merge pull request #54865 from boruok/fix-navigationpolygon-doc | Yuri Roubinsky | |
2021-11-11 | fixed typo in NavigationPolygon doc | boruok | |
2021-11-11 | Merge pull request #54861 from timothyqiu/escape | Rémi Verschelde | |
Add missing characters for property name quoting | |||
2021-11-11 | Add missing characters for property name quoting | Haoyu Qiu | |
2021-11-10 | Add raycast options to hit when starting inside / hit back faces | PouleyKetchoupp | |
Makes the results consistent for all shape types with options to set the desired behavior. | |||
2021-11-10 | Merge pull request #54745 from KoBeWi/find_in_scenes | Rémi Verschelde | |
2021-11-10 | Merge pull request #54836 from pycbouh/inspector-plugins-fixes-and-groups | Rémi Verschelde | |
2021-11-10 | Merge pull request #49708 from megalobyte/editor_description_fix | Rémi Verschelde | |
2021-11-10 | Merge pull request #54847 from nekomatata/fix-test-move-regression | Rémi Verschelde | |
2021-11-10 | Merge pull request #54660 from Chaosus/vs_particles_mesh_emitter | Rémi Verschelde | |
2021-11-10 | Update editor description property flag | megalobyte | |
2021-11-10 | Fix test_move reporting collision when touching another body | PouleyKetchoupp | |
Reporting rest collision information is needed for move_and_collide and move_and_slide so floor detection can be done properly, but in the case of just testing the motion for collision, it makes sense to return false if the body is able to move all along the path without being stopped. Updated the logic in test_move and clarified the documentation for test_move and move_and_collide. | |||
2021-11-10 | Merge pull request #54204 from Ev1lbl0w/bugfix-textedit_selection_mode_crash | Rémi Verschelde | |
2021-11-10 | Merge pull request #54783 from ator-dev/fix-override-exposure | Rémi Verschelde | |
2021-11-10 | Merge pull request #54840 from Calinou/mono-move-exception-policy-setting | Rémi Verschelde | |
2021-11-10 | Merge pull request #54838 from groud/fix_editor_import_plugin | Rémi Verschelde | |
2021-11-10 | Merge pull request #54820 from nekomatata/fix-character-body-floor-errors | Rémi Verschelde | |
2021-11-10 | Merge pull request #54837 from akien-mga/windows-bigobj | Rémi Verschelde | |
2021-11-10 | Move Mono unhandled exception setting to be located within a subsection | Hugo Locurcio | |
Settings that aren't within a subsection are difficult to reach when other settings do have a subsection. This also adds documentation for the project setting. | |||
2021-11-10 | Merge pull request #54832 from akien-mga/visualshader-virtual-enum-args | Yuri Roubinsky | |
2021-11-10 | Merge pull request #54834 from akien-mga/windows-gcc-warnings-fix | Rémi Verschelde | |
2021-11-10 | Fix EditorImportPlugin logic for checking unimplemented methods | Gilles Roudière | |
2021-11-10 | Fix errors in CharacterBody when floor is destroyed or removed | PouleyKetchoupp | |
In all physics servers, body_get_direct_state() now silently returns nullptr when the body has been already freed or is removed from space, so the client code can detect this state and invalidate the body rid. In 2D, there is no change in behavior (just no more errors). In 3D, the Bullet server returned a valid direct body state when the body was removed from the physics space, but in this case it didn't make sense to use the information from the body state. | |||
2021-11-10 | Windows: Enable `/bigobj` to increase max size for obj files | Rémi Verschelde | |
Equivalent `-Wa,-mbig-obj` for GCC/Clang. This started being needed to compile harfbuzz in `target=debug` with MinGW/GCC, but there doesn't seem to be any drawback to enabling `/bigobj` (aside from losing support for pre-VS 2005 linkers, which we don't support). | |||
2021-11-10 | Fix EditorInspectorPlugin virtual bindings and add parse_group callback | Yuri Sizov | |
2021-11-10 | Merge pull request #54676 from Chaosus/gds_restrict_names | Rémi Verschelde | |
2021-11-10 | Merge pull request #54358 from ↵ | Rémi Verschelde | |
Shawak/feature-allow-root-node-paths-without-quote | |||
2021-11-10 | Windows: Fix compilation warnings with GCC 11.2.1 | Rémi Verschelde | |
2021-11-10 | Fix crash with indexing array with bad values | Ev1lbl0w | |
2021-11-10 | VisualShader: Document enum args for virtual methods | Rémi Verschelde | |
Fixes #31563. |