summaryrefslogtreecommitdiffstats
path: root/scene/main
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@f128f383e892865379cb8b14e7bcc9858efe2973Spartan3222024-11-272-0/+6
|\
| * Merge pull request #80965 from Calinou/viewport-add-get-stretch-scale-factorThaddeus Crews2024-11-272-0/+6
| |\ | | | | | | | | | Add a Viewport method to get automatically computed 2D stretch transform
| | * Add a Viewport method to get automatically computed 2D stretch transformHugo Locurcio2024-11-192-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `Viewport.get_stretch_transform()` returns the automatically computed 2D stretch transform. Combined with `Transform2D.get_scale()`, this is useful when using the `canvas_items` stretch mode in a project. There are many situations where knowing this factor is useful: - Divide Camera2D zoom to keep the size of the 2D game world identical regardless of the 2D scale factor (so that UI elements can still be scaled). - Make certain controls always drawn at 1:1 scale (e.g. for the crosshair in a FPS). This is done by dividing the Control node's scale by the scale factor.
* | | Merge commit godotengine/godot@d09d82d433b03bb3773fd2a8cc8d6ccc2f8739ceSpartan3222024-11-261-0/+8
|\| |
| * | Merge pull request #99270 from Sauermann/fix-svc-drop-configThaddeus Crews2024-11-211-0/+8
| |\ \ | | | | | | | | | | | | Introduce a `SubViewportContainer` config for drag-and-drop target locations
| | * | Introduce a `SubViewportContainer` config for drag-and-drop targetsMarkus Sauermann2024-11-191-0/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With the drag-and-drop rewrite, `SubViewportContainer` nodes were no longer available as drop-locations. This PR introduces a configuration option, that allows `SubViewportContainer` to be considered as drop-location, but disables the `Control` nodes inside its `SubViewport` children as drop-location.
* | | | Merge commit godotengine/godot@9e6098432aac35bae42c9089a29ba2a80320d823Spartan3222024-11-201-14/+12
|\| | |
| * | | Merge pull request #96721 from aXu-AP/tooltip-distanceRémi Verschelde2024-11-201-14/+12
| |\ \ \ | | | | | | | | | | | | | | | Fix tooltip appearing in old place, on movement
| | * | | Fix tooltip appearing in old place, on movementaXu-AP2024-11-051-14/+12
| | | | | | | | | | | | | | | | | | | | | | | | | Fixes tooltip appearing in editor on old position of mouse. Fixes tooltip appearing even if mouse is in steady motion (now accepts max 5 px movement).
* | | | | Merge commit godotengine/godot@fd4c29a189e53a1e085df5b9b9a05cac9351b3efSpartan3222024-11-191-1/+1
|\| | | |
| * | | | Use `(r)find_char` instead of `(r)find` for single charactersA Thousand Ships2024-11-171-1/+1
| | |/ / | |/| |
* | | | Merge commit godotengine/godot@6c05ec3d6732cac44cf85c91db7d3fd1075bcb23Spartan3222024-11-153-1/+7
|\| | |
| * | | Fix missing native file dialog title translation.Pāvels Nadtočajevs2024-11-143-1/+7
| | | |
* | | | Merge commit godotengine/godot@cb411fa960f0b7fdbd97dcdb4c90f9346360ee0eSpartan3222024-11-124-16/+17
|\| | |
| * | | Merge pull request #98713 from dalexeev/core-fix-callable-get-bound-argumentsThaddeus Crews2024-11-121-4/+5
| |\ \ \ | | | | | | | | | | | | | | | Core: Fix `Callable.get_bound_arguments{,_count}()` return incorrect data
| | * | | Core: Fix `Callable.get_bound_arguments{,_count}()` return incorrect dataDanil Alexeev2024-11-041-4/+5
| | | | |
| * | | | Merge pull request #98951 from AThousandShips/fix_more_super_callThaddeus Crews2024-11-121-7/+7
| |\ \ \ \ | | | | | | | | | | | | | | | | | | Fix a few more super calls in `get_configuration_warnings` methods
| | * | | | Fix a few more super calls in `get_configuration_warnings` methodsA Thousand Ships2024-11-081-7/+7
| | |/ / / | | | | | | | | | | | | | | | A few missed last pass and one incorrect from that pass
| * | | | Core: Integrate `Ref::instantiate` where possibleThaddeus Crews2024-11-102-5/+5
| | | | |
* | | | | Merge commit godotengine/godot@0f5f3bc9546b46b2029fc8896dc859697f1eab97Spartan3222024-11-111-31/+0
|\| | | |
| * | | | [Debugger] Move quit shortcut configuration to the SceneDebuggerFabio Alessandrelli2024-11-071-31/+0
| |/ / /
* | | | Merge commit godotengine/godot@87318a2fb7fffeb72adca934e31915be077c3d1fSpartan3222024-11-062-11/+20
|\| | |
| * | | Compile certain `CanvasItem._edit_*()` functions with `DEBUG_ENABLED`Michael Alexsander2024-11-022-11/+20
| | | |
* | | | Merge pull request #834 from Spartan322/merge/c6c464cGeorge L. Albany2024-11-036-4/+133
|\ \ \ \ | | | | | | | | | | Merge commit godotengine/godot@c6c464c
| * | | | Merge commit godotengine/godot@c6c464cf9ae56e8b68620af65125dd980d0e8122Spartan3222024-11-026-4/+133
| |\| | |
| | * | | Add "Game" editor for better runtime debuggingMichael Alexsander2024-10-306-4/+133
| | | | |
* | | | | Merge pull request #773 from Spartan322/improve/find_childrenGeorge L. Albany2024-11-021-18/+47
|\ \ \ \ \ | |/ / / / |/| | | | Optimize `Node.find_children`
| * | | | Optimize `Node.find_children`Mister Puma2024-10-221-18/+47
| | | | | | | | | | | | | | | | | | | | (cherry picked from commit blazium-engine/blazium@474bfd82dc585948b957380cea4c0d328d8ac375)
* | | | | Merge commit godotengine/godot@8004c7524fb9f43425c4d6f614410a76678e0f7cSpartan3222024-10-304-11/+11
|\ \ \ \ \ | | |/ / / | |/| | |
| * | | | Merge pull request #97934 from adamscott/give-AThousandShips-a-breakThaddeus Crews2024-10-293-10/+10
| |\ \ \ \ | | |_|_|/ | |/| | | | | | | | [Codestyle] Set clang-format `RemoveSemicolon` rule to `true`
| | * | | Set clang-format `RemoveSemicolon` rule to `true`Adam Scott2024-10-253-10/+10
| | | | | | | | | | | | | | | | | | | | - Set clang-format `Standard` rule to `c++20`
| * | | | Don't override auto translate mode of custom tooltipHaoyu Qiu2024-10-251-1/+1
| |/ / /
* | | | Fix copyright headers referring to GodotSpartan3222024-10-2731-62/+62
| | | |
* | | | Merge pull request #787 from Spartan322/cherry-pick/4.3George L. Albany2024-10-256-0/+60
|\ \ \ \ | | | | | | | | | | Cherry-picks for the master (4.4) branch - 1st batch
| * | | | Add an additional input stage after physics pickingMarkus Sauermann2024-10-236-0/+60
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Allow handling events, that were not used during physics picking. (cherry picked from commit d14035edccae40020226f3dced26969647e73a15)
* | | | | Merge commit godotengine/godot@1015a481ff43edb1126ab39a147fefda290131e5Spartan3222024-10-242-2/+2
|\ \ \ \ \ | |/ / / / |/| / / / | |/ / /
| * | | Merge pull request #98490 from KoBeWi/pointer_to_canvasThaddeus Crews2024-10-241-1/+1
| |\ \ \ | | | | | | | | | | | | | | | Improve `make_canvas_position_local()` description
| | * | | Improve make_canvas_position_local descriptionkobewi2024-10-241-1/+1
| | | | |
| * | | | Fix some flickering tooltipsHaoyu Qiu2024-10-241-1/+1
| |/ / /
* | / / Merge commit godotengine/godot@b3bcb2dc14691f7729984128dca26a844f662fa1Spartan3222024-10-222-5/+25
|\| | | | |/ / |/| |
| * | Merge pull request #97005 from Repiteo/core/window-corner-styleThaddeus Crews2024-10-212-0/+3
| |\ \ | | | | | | | | | | | | Core: Add `DisplayServer` flag for sharp corners
| | * | Core: Add `DisplayServer` flag for sharp cornersThaddeus Crews2024-10-182-0/+3
| | |/
| * / Add System Locale layout direction for Control and WindowHaoyu Qiu2024-10-172-5/+22
| |/
* | Merge commit godotengine/godot@af77100e394dcaca609b15bef815ed17475e51edSpartan3222024-10-151-5/+5
|\|
| * Allow `Control` to show custom tooltip when tooltip text is emptyHaoyu Qiu2024-10-081-5/+5
| | | | | | | | Co-Authored-By: bruvzg <7645683+bruvzg@users.noreply.github.com>
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-1131-0/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* | Rebrand Godot to RedotRandolph W. Aarseth II2024-10-111-2/+2
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add Linux Editor tests workflow matrix Add Windows Editor w/ Mono workflow matrix Add Generate Glue Code job to Windows workflow Add Build GodotSharp job to Windows workflow Add godot compatibility version references Add Godot author info Add Godot version compatibility info Add Godot donor info Add Godot authors and donors to editor_about.cpp Credits: Co-authored-by: Skogi <skogi.b@gmail.com> Co-authored-by: Spartan322 <Megacake1234@gmail.com> Co-authored-by: swashberry <swashdev@pm.me> Co-authored-by: Christoffer Sundbom <christoffer_karlsson@live.se> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: McDubh <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: Dubhghlas McLaughlin <103212704+mcdubhghlas@users.noreply.github.com> Co-authored-by: radenthefolf <radenthefolf@gmail.com> Co-authored-by: John Knight <80524176+Tekisasu-JohnK@users.noreply.github.com> Co-authored-by: Adam Vondersaar <adam.vondersaar@uphold.com> Co-authored-by: decryptedchaos <nixgod@gmail.com> Co-authored-by: zaftnotameni <122100803+zaftnotameni@users.noreply.github.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: wesam <108880473+wesamdev@users.noreply.github.com> Co-authored-by: Mister Puma <MisterPuma80@gmail.com> Co-authored-by: Aaron Benjamin <lifeartstudios@gmail.com> Co-authored-by: SingleError <isaaconeoneone@gmail.com> Co-authored-by: Bioblaze Payne <BioblazePayne@gmail.com>
* Merge pull request #97240 from KoBeWi/wrong_numberRémi Verschelde2024-10-041-4/+12
|\ | | | | | | Print error on invalid `call_group()` calls
| * Print error on invalid call_group() callskobewi2024-09-201-4/+12
| |
* | Merge pull request #97624 from timothyqiu/atrnRémi Verschelde2024-10-041-2/+7
|\ \ | | | | | | | | | Fix `atr_n()` behavior when auto translation is disabled