summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-01-16Merge pull request #71507 from groud/fix_add_source_source_idRémi Verschelde
Fix TileDate::add_source accepting invalid ID values
2023-01-16Merge pull request #70557 from KoBeWi/class_yeetRémi Verschelde
Move global script class cache to separate file
2023-01-16Merge pull request #71502 from bruvzg/tooltip_clickthroughRémi Verschelde
Add `WINDOW_FLAG_MOUSE_PASSTHROUGH` flag and enabled it for tooltips.
2023-01-16Merge pull request #69851 from dalexeev/fix-scaling-issueRémi Verschelde
Fix scaling issue in `draw_line` and similar methods
2023-01-16Merge pull request #70030 from KoBeWi/why_is_tweenRémi Verschelde
Improve empty Tween error message
2023-01-16Merge pull request #71369 from Calinou/editor-tweak-executable-file-filtersRémi Verschelde
Tweak fbx2gltf file filter to remove naming restriction
2023-01-16Merge pull request #64021 from ajreckof/change-shortcut-for-rect-tool-tilemapRémi Verschelde
Add `Key::CTRL_OR_CMD` and use it to fix shortcut for tilemap painting tools on macOS
2023-01-16Fixes TileDate::add_source accepting invalid ID valuesGilles Roudière
2023-01-16Fix scaling issue in `draw_line` and similar methodsDanil Alexeev
2023-01-16Add `WINDOW_FLAG_MOUSE_PASSTHROUGH` flag and enabled it for tooltips. Expose ↵bruvzg
`window_set_mouse_passthrough` to `Window`.
2023-01-16Improve empty Tween error messagekobewi
2023-01-16Tweak fbx2gltf file filter to remove naming restrictionHugo Locurcio
This relaxes the naming restriction on fbx2gltf binaries, as people may be renaming them then wondering why they've disappeared from the dialog unless they select "All Files (*)" as a filter.
2023-01-16Move global script class cache to separate filekobewi
2023-01-16Merge pull request #70668 from KoBeWi/never_give_upRémi Verschelde
Retry loading addons after filesystem scan
2023-01-16Merge pull request #70669 from KoBeWi/bruh2Rémi Verschelde
Improve ResourcePreloader description
2023-01-16Merge pull request #71436 from TigranExe/patch-1Rémi Verschelde
Added a brief description to SkeletonProfileHumanoid
2023-01-16Merge pull request #71461 from snoopdouglas/snoopdouglas/masterRémi Verschelde
Class reference: snake_case .tscn & .gd filenames, _on_* callbacks
2023-01-16Merge pull request #70685 from stmSi/fix-nan-graphedit-infinite-loopRémi Verschelde
Fix: NaN value making infinite loop inside GraphEdit's `NOTIFICATION_DRAW`
2023-01-16Merge pull request #71498 from bruvzg/win_init_sizeRémi Verschelde
[Windows] Fix incorrect full-screen mode applied on start.
2023-01-16Merge pull request #71485 from adamscott/history-localRémi Verschelde
Save history when goto script line in the text editor
2023-01-16Merge pull request #71308 from hcoura/test-curve-2dRémi Verschelde
Add unit tests for Curve2D
2023-01-16Merge pull request #70504 from KoBeWi/the_choosen_antipatternRémi Verschelde
Add EditorUndoRedoManager singleton
2023-01-16Merge pull request #71477 from aaronfranke/gltf-append-docRémi Verschelde
Improve the documentation of GLTFDocument's append methods
2023-01-16Merge pull request #43399 from KoBeWi/path_stalkingRémi Verschelde
Update PathFollow2D when curve is changed
2023-01-16doc: Add a brief description to SkeletonProfileHumanoidTigranExe
2023-01-16Merge pull request #71458 from raulsntos/dotnet/quaternionRémi Verschelde
C#: Make `Length` and `LengthSquared` into methods in `Quaternion`.
2023-01-16Merge pull request #71456 from raulsntos/dotnet/sync-planeRémi Verschelde
C#: Sync `Plane` with Core
2023-01-16Merge pull request #71445 from raulsntos/dotnet/transformsRémi Verschelde
C#: Add missing `Transform{2D,3D}` and `Basis` constructors
2023-01-16Merge pull request #71431 from raulsntos/dotnet/scale-and-rotationRémi Verschelde
C#: Replace `Rotation` and `Scale` properties with get methods
2023-01-16Merge pull request #71474 from raulsntos/plane_get_centerRémi Verschelde
Rename `center` method to `get_center` in Plane.
2023-01-16Merge pull request #70684 from filiperinaldi/fix_arm64_build_clangRémi Verschelde
Fix arm64 build when using Clang
2023-01-16Merge pull request #70433 from Sauermann/fix-treeitem-idRémi Verschelde
Fix confusion about TreeItem.add_button ambiguity between id and index
2023-01-16Merge pull request #59076 from ↵Rémi Verschelde
Sauermann/fix-cursorshape-tilesetatlassourceeditor Use get_cursor_shape for identifying the cursor shape in TileSetAtlasSourceEditor
2023-01-16[Windows] Fix incorrect full-screen mode applied on start.bruvzg
2023-01-16replace the use of CTRL by CMD_OR_CTRL in three places where using CTRL ↵ajreckof
prevented the use of the functionality on mac on Mac CTRL + Left click = Right click therefore when a functionality needs CTRL + Left click it is not possible on mac. It then forcibly needs to be CMD on mac
2023-01-16Add EditorUndoRedoManager singletonkobewi
2023-01-15Save history when goto script line in the text editor.Adam Scott
2023-01-15Improve the documentation of GLTFDocument's append methodsAaron Franke
2023-01-15C#: Sync `Plane` with CoreRaul Santos
- Add `Plane(Vector3)` constructor. - Rename `IntersectRay` to `IntersectsRay`. - Rename `IntersectSegment` to `IntersectsSegment`. - Replace `Center` property with `GetCenter` method. - Add and fix documentation about the _normal_ parameter to Core and C# documentation.
2023-01-15add CMD_OR_CTRL as a Key and not just a key modifierajreckof
2023-01-15Update PathFollow2D when curve is changedTomasz Chabora
2023-01-15Rename `center` method to `get_center` in Plane.Raul Santos
2023-01-15Merge pull request #71459 from akien-mga/fix-change_scene-leakRémi Verschelde
Fix change_scene memory leak due to duplicate instantiation
2023-01-15C#: Add missing `Transform{2D,3D}` and `Basis` constructorsRaul Santos
- Remove `Transform3D(Quaternion, Vector3)` constructor from C#. - Add `Transform3D(Projection)` constructor to C#. - Add documentation to the `Transform3D(Projection)` constructor in Core. - Add `Transform3D` constructor with only real_t params to C# that mirrors `Transform2D`. - Expose `Basis` constructor with only real_t params in C#. - Add `Transform2D(real_t, Vector2, real_t, Vector2)` constructor to C#.
2023-01-15Class reference: snake_case .gd filenames, _on_*Doug Thompson
This is for: https://github.com/godotengine/godot-docs/issues/6245
2023-01-15C#: Replace `Rotation` and `Scale` properties with get methodsRaul Santos
- Replace `Rotation` property with `GetRotation` method in `Transform2D`. - Replace `Scale` property with `GetScale` method in `Transform2D`. - Replace `Scale` property with `GetScale` method in `Basis`. Core does not expose set methods.
2023-01-15Fix change_scene memory leak due to duplicate instantiationRémi Verschelde
Regression from #71105. Fixes #71363.
2023-01-15C#: Make `Length` and `LengthSquared` into methods in `Quaternion`.Raul Santos
The `Length` and `LengthSquared` members are implemented as methods in every other C# struct, `Quaternion` was the only one implementing them as properties.
2023-01-15Merge pull request #71437 from vaartis/linux-backtraceRémi Verschelde
Alter linux debug stacktraces handling to support more environments
2023-01-15Merge pull request #71374 from ↵Rémi Verschelde
raulsntos/dotnet/remove-spherical_interpolate_with C#: Remove `SphericalInterpolateWith` from Transform3D