Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-11-12 | Use "enum class" for input enums | Aaron Franke | |
2021-11-12 | Merge pull request #54803 from goostengine/shape-cast-2d | Camille Mohr-Daurat | |
Add `ShapeCast2D` node | |||
2021-11-12 | Remove `get_closest_*` methods from `ShapeCast2D` | Andrii Doroshenko (Xrayez) | |
The physics API cannot provide needed functionality to ensure the correct behavior, which might lead to confusion (see `rest_info()`). However `get_closest_collision_safe/unsafe_fraction()` methods are not removed, because they return correct result from `cast_motion()`. | |||
2021-11-12 | Add `ShapeCast2D` node | Andrii Doroshenko (Xrayez) | |
2021-11-12 | Make OpenSimplex and VisualScript modules not depend on the editor | Aaron Franke | |
2021-11-12 | Merge pull request #51048 from aaronfranke/ci-minimal | Rémi Verschelde | |
2021-11-12 | Merge pull request #54920 from Chaosus/vs_fix_crash | Yuri Roubinsky | |
2021-11-12 | Add a minimal template build to CI | Aaron Franke | |
Co-authored-by: Rémi Verschelde <rverschelde@gmail.com> | |||
2021-11-12 | Fix editor crash due incorrect setup of default texture in visual shader | Yuri Roubinsky | |
2021-11-12 | Implement texture padding in TileSetAtlasSources | Gilles Roudière | |
2021-11-12 | Merge pull request #53987 from groud/tile_data_inspector_plugin | Rémi Verschelde | |
2021-11-12 | Modules: Make sure to include modules_enabled.gen.h where needed | Rémi Verschelde | |
2021-11-12 | Fix default_texture_param in shader pipeline to support uniform arrays | Yuri Roubinsky | |
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 | Merge pull request #54857 from nekomatata/raycast-hit-from-inside | Rémi Verschelde | |
2021-11-11 | Merge pull request #54869 from akien-mga/string-remove-erase | 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-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 #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 #54820 from nekomatata/fix-character-body-floor-errors | Rémi Verschelde | |
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 | Fix crash with indexing array with bad values | Ev1lbl0w | |
2021-11-10 | VisualShader: Document enum args for virtual methods | Rémi Verschelde | |
Fixes #31563. | |||
2021-11-09 | Merge pull request #53819 from TokageItLab/re-implement-ping-pong | Rémi Verschelde | |
Reimplement ping-pong animation and reverse playback | |||
2021-11-09 | Separate space override modes for gravity/damping in Area | PouleyKetchoupp | |
Also make inspector clearer for gravity point properties. | |||
2021-11-09 | Merge pull request #46721 from bruvzg/custom_word_break_punct | Rémi Verschelde | |
2021-11-09 | Merge pull request #54372 from bruvzg/text_edit_ui | Rémi Verschelde | |
2021-11-09 | Merge pull request #54649 from bruvzg/shadows | Rémi Verschelde | |
2021-11-08 | Several Gradient improvements | Hendrik Brucker | |
2021-11-08 | Merge pull request #52943 from RandomShaper/property_pin_control_natural | Rémi Verschelde | |
2021-11-08 | Merge pull request #54715 from goostengine/gradient-texture-1d-rename | Yuri Roubinsky | |
2021-11-08 | Add property value pinning | Pedro J. Estébanez | |
2021-11-07 | Remove redundant texture flag setters/getters for `CameraTexture` | Aaron Record | |
2021-11-07 | Unify determination of default property values | Pedro J. Estébanez | |
2021-11-07 | Rename `GradientTexture` to `GradientTexture1D` | Andrii Doroshenko (Xrayez) | |
1. Explicit and unambiguous when comparing to `GradientTexture2D` 2. Consistent with other class names where 1D is used in the engine. | |||
2021-11-07 | Fix preview sun and environment names | kobewi | |
2021-11-06 | Added `MeshEmitter` node for particles in visual shader | Yuri Roubinsky | |
2021-11-06 | Fix Label and RichTextLabale text shadows and shadow outlines. | bruvzg | |
2021-11-05 | Merge pull request #54573 from nekomatata/query-parameters | Rémi Verschelde | |
2021-11-05 | Added 2D boolean hint for particle emitters in visual shaders | Yuri Roubinsky | |
2021-11-04 | Use parameter classes instead of arguments for all physics queries | PouleyKetchoupp | |
Same as what is already done for shape queries, applied to point and ray queries. Easier to document and more flexible to add more parameters. Also expose intersect_point method to script in 3D. Remove intersect_point_on_canvas in 2D, replaced with a parameter. | |||
2021-11-04 | Add missing argument names for bindings in GDExtension | Rémi Verschelde | |
2021-11-04 | Add is_built_in() method to Resource | kobewi | |
2021-11-03 | Rename `PROPERTY_USAGE_NOEDITOR` to `PROPERTY_USAGE_NO_EDITOR` | Hugo Locurcio | |
This is consistent with other constants that include `NO`, such as `PROPERTY_HINT_COLOR_NO_ALPHA`. |