summaryrefslogtreecommitdiff
path: root/scene
AgeCommit message (Collapse)Author
2021-11-20Fix ProceduralSkyMaterial colors due to double sRGB -> linear conversionHugo Locurcio
2021-11-19Scales the horizontal velocity according to the wall slope in 2Dfabriceci
2021-11-18Remove outdated comments related to the 20-layer editor limitationHugo Locurcio
All 32 layers are now exposed in the editor.
2021-11-18Merge pull request #54462 from Paulb23/the-last-hidden-lineRémi Verschelde
2021-11-18Merge pull request #55082 from Chaosus/vs_mesh_emitterRémi Verschelde
2021-11-18Merge pull request #53602 from KoBeWi/mountain_rangeRémi Verschelde
2021-11-18Enchance `VisualShaderNodeMeshEmitter`, add more ports and fix bugsYuri Roubinsky
2021-11-17Fix TextEdit mouse interactions when the last line is hiddenPaulb23
2021-11-17Fix `ColorPicker` inverted input on color circleYuri Roubinsky
2021-11-17Merge pull request #55056 from RandomShaper/fix_crash_instantiateRémi Verschelde
2021-11-17Fix crash when loading scene instance after node vanished from parentPedro J. Estébanez
2021-11-17Merge pull request #55018 from ↵Rémi Verschelde
kodiwills/add-error-macros-for-`set_modification_count` add negative number validation for set_modification_count
2021-11-16add input validation for set_modification_countKodi
update error macros for set_modification_count
2021-11-16Rename built-in `SGN()` macro to `SIGN()`Hugo Locurcio
This matches the name of the GDScript function (except it's uppercase here).
2021-11-16Make bezier handle type a property of keyframes, update interfaceNathan Lovato
- Replaced unused code related to old close icon with a button - Add bezier handle options to right-click menu - Remove mirror handle mode, only keep balanced - Update animation reference
2021-11-16Fix style issue after #54148Rémi Verschelde
2021-11-16Merge pull request #54148 from miraz12/fix-scrollContrainer-notification-crashRémi Verschelde
2021-11-16Merge pull request #54167 from ↵Rémi Verschelde
brunosxs/fix-game-crash-when-sending-a-notification-from-a-camera-class
2021-11-15Making nodes enclosed within comment move with the comment nodeUmang Kalra
2021-11-12Use "enum class" for input enumsAaron Franke
2021-11-12Merge pull request #54803 from goostengine/shape-cast-2dCamille Mohr-Daurat
Add `ShapeCast2D` node
2021-11-12Remove `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-12Add `ShapeCast2D` nodeAndrii Doroshenko (Xrayez)
2021-11-12Make OpenSimplex and VisualScript modules not depend on the editorAaron Franke
2021-11-12Merge pull request #51048 from aaronfranke/ci-minimalRémi Verschelde
2021-11-12Merge pull request #54920 from Chaosus/vs_fix_crashYuri Roubinsky
2021-11-12Add a minimal template build to CIAaron Franke
Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
2021-11-12Fix editor crash due incorrect setup of default texture in visual shaderYuri Roubinsky
2021-11-12Implement texture padding in TileSetAtlasSourcesGilles Roudière
2021-11-12Merge pull request #53987 from groud/tile_data_inspector_pluginRémi Verschelde
2021-11-12Modules: Make sure to include modules_enabled.gen.h where neededRémi Verschelde
2021-11-12Fix default_texture_param in shader pipeline to support uniform arraysYuri Roubinsky
2021-11-11Merge pull request #54810 from nekomatata/area-separate-override-modesCamille Mohr-Daurat
Separate space override modes for gravity/damping in Area
2021-11-11Merge pull request #54857 from nekomatata/raycast-hit-from-insideRémi Verschelde
2021-11-11Merge pull request #54869 from akien-mga/string-remove-eraseRémi Verschelde
2021-11-11String: Remove `erase` method, bindings can't mutate StringRémi Verschelde
2021-11-11Fix RichTextLabel selection copy with table cells.bruvzg
2021-11-10Add raycast options to hit when starting inside / hit back facesPouleyKetchoupp
Makes the results consistent for all shape types with options to set the desired behavior.
2021-11-10Merge pull request #49708 from megalobyte/editor_description_fixRémi Verschelde
2021-11-10Merge pull request #54847 from nekomatata/fix-test-move-regressionRémi Verschelde
2021-11-10Merge pull request #54660 from Chaosus/vs_particles_mesh_emitterRémi Verschelde
2021-11-10Update editor description property flagmegalobyte
2021-11-10Fix test_move reporting collision when touching another bodyPouleyKetchoupp
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-10Merge pull request #54204 from Ev1lbl0w/bugfix-textedit_selection_mode_crashRémi Verschelde
2021-11-10Merge pull request #54820 from nekomatata/fix-character-body-floor-errorsRémi Verschelde
2021-11-10Fix errors in CharacterBody when floor is destroyed or removedPouleyKetchoupp
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-10Fix crash with indexing array with bad valuesEv1lbl0w
2021-11-10VisualShader: Document enum args for virtual methodsRémi Verschelde
Fixes #31563.
2021-11-09Merge pull request #53819 from TokageItLab/re-implement-ping-pongRémi Verschelde
Reimplement ping-pong animation and reverse playback
2021-11-09Separate space override modes for gravity/damping in AreaPouleyKetchoupp
Also make inspector clearer for gravity point properties.