summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-09-30Use mobile as the default rendering method on mobile when vulkan is supportedclayjohn
2022-09-29Merge pull request #66603 from HerrSersch/fix-missing-sHugo Locurcio
2022-09-29Fix missing "s" at the end of word in `OS.move_to_trash()` descriptionVictor Karp
Change "Do not use it for files in res:// as it will not work in exported project." to "[...] projects."
2022-09-29Merge pull request #66592 from KoBeWi/look_at_me_I_am_the_captain_nowRémi Verschelde
Fail `look_at()` if not inside tree
2022-09-29Merge pull request #66590 from ↵Rémi Verschelde
akien-mga/animation-workaround-disable-onion-skinning Animation editor: Disable onion skinning temporarily due to rendering bug
2022-09-29Merge pull request #66575 from MewPurPur/indent-dedent-in-scripteditRémi Verschelde
Rename Indent Left/Right options in the Script Editor to Indent/Unindent
2022-09-29Merge pull request #66534 from ↵Rémi Verschelde
akien-mga/scons-msvc-graphite-silence-c++17-deprecation-warnings SCons: Silence MSVC C++17 deprecation warnings in Graphite
2022-09-29Merge pull request #66143 from DarkKilauea/nav-queries-agentRémi Verschelde
Update NavigationAgent to use query_path
2022-09-29Rename Indent Left/Right to Indent/DedentVolTer
2022-09-29Fail look_at() if not inside treekobewi
2022-09-29Animation editor: Disable onion skinning temporarily due to rendering bugRémi Verschelde
Works around #53870.
2022-09-29Merge pull request #66583 from bruvzg/constexprRémi Verschelde
Use `constexpr` in the conditions with template parameters and `sizeof`s to suppress C4127 warnings.
2022-09-29Merge pull request #66552 from bruvzg/64_bitfieldsRémi Verschelde
Change BitField to use 64-bit int.
2022-09-29Merge pull request #65807 from clayjohn/light-units-bugRémi Verschelde
Validate physical light units in GI classes.
2022-09-29Merge pull request #66565 from clayjohn/canvas-lightsRémi Verschelde
Clean up canvas light shader API.
2022-09-29Use `constexpr` in the conditions with template parameters and `sizeof`s to ↵bruvzg
suppress C4127 warnings.
2022-09-28Update NavigationAgent to use query_pathJosh Jones
This paves the way for having agents respond to link traversal.
2022-09-29Merge pull request #66103 from Zylann/bind_property_usage_read_onlyRémi Verschelde
2022-09-28Merge pull request #66570 from ↵Rémi Verschelde
akien-mga/project-features-ignore-old-vulkan-names Project supported features: Ignore old 'Vulkan Clustered/Forward' names
2022-09-28Merge pull request #66568 from rburing/cylinder_support_is_deadRémi Verschelde
`GodotCylinderShape3D::get_supports`: delete dead code
2022-09-28Expose `PROPERTY_USAGE_READ_ONLY`Marc Gilleron
2022-09-28Project supported features: Ignore old 'Vulkan Clustered/Forward' namesRémi Verschelde
This eases transition from beta 1 to beta 2 so that users don't get a warning about a missing feature. The names were just changed. The old feature names are removed from project.godot when opening such a project.
2022-09-28GodotCylinderShape3D::get_supports: delete dead codeRicardo Buring
2022-09-28Merge pull request #58995 from Sauermann/fix-mouse-cursor-change-2Rémi Verschelde
Update mouse cursor shape after changes
2022-09-28Merge pull request #66549 from MisterMX/tilemap-get-used-rectRémi Verschelde
refactor(TileMap): Return `Rect2i` in `get_used_rect`
2022-09-28Merge pull request #66551 from bruvzg/font_is_cyclicRémi Verschelde
Fix Font::_is_cyclic.
2022-09-28Merge pull request #66548 from akien-mga/msvc-warnings-c4701-c4703Rémi Verschelde
Fix MSVC warnings C4701 and C4703: Potentially uninitialized variable used
2022-09-28Merge pull request #66545 from akien-mga/msvc-warnings-c4324-c4389-c4456-c4459Rémi Verschelde
Fix MSVC warnings C4324, C4389, C4456, and C4459
2022-09-28Merge pull request #66544 from lawnjelly/bvh_tree_sibling_warningRémi Verschelde
Fix false flag compiler warning in bvh tree
2022-09-28Merge pull request #66543 from akien-mga/msvc-warning-c4702Rémi Verschelde
Fix MSVC warning C4702: unreachable code
2022-09-28Merge pull request #66542 from akien-mga/msvc-warning-c4706Rémi Verschelde
Fix MSVC warning C4706: assignment within conditional expression
2022-09-28Clean up canvas light shader API.clayjohn
Expose LIGHT_ENERGY and LIGHT_IS_DIRECTIONAL. Add LIGHT_DIRECTION
2022-09-28Merge pull request #66539 from bruvzg/gdv_renameRémi Verschelde
Rename `script_instance` to `_script_instance` in the `GDVIRTUAL*` wrappers to avoid shadowing `Object` member.
2022-09-28Merge pull request #66525 from Calinou/doc-gdscript-get-stack-debug-instanceRémi Verschelde
Document `print_stack()` and `get_stack()` requiring a debugger connection
2022-09-28Merge pull request #66532 from bruvzg/mipmap_changeRémi Verschelde
[Text Server] Clear textures after "generate mipmaps" property change.
2022-09-28Fix Font::_is_cyclic.bruvzg
2022-09-28Fix MSVC warnings C4701 and C4703: Potentially uninitialized variable usedRémi Verschelde
2022-09-28refactor(TileMap): Return Rect2i in get_used_rectMisterMX
Signed-off-by: MisterMX <mbxd12@web.de>
2022-09-28Fix MSVC warning C4702: unreachable codeRémi Verschelde
Part of #66537.
2022-09-28Fix MSVC warnings C4324, C4389, C4456, and C4459Rémi Verschelde
Part of #66537.
2022-09-28Change BitField to use 64-bit int.bruvzg
2022-09-28Fix false flag compiler warning in bvh treelawnjelly
Compiler wrongly warns that sibling_id may be used when uninitialized. This PR sets the value to silence the warning.
2022-09-28Fix MSVC warning C4706: assignment within conditional expressionRémi Verschelde
Part of #66537.
2022-09-28Rename `script_instance` to `_script_instance` in the `GDVIRTUAL*` wrappers ↵bruvzg
to avoid shadowing `Object` member.
2022-09-28SCons: Silence MSVC C++17 deprecation warnings in GraphiteRémi Verschelde
Fixes #66497.
2022-09-28Document `print_stack()` and `get_stack()` requiring a debugger connectionHugo Locurcio
2022-09-28Merge pull request #66492 from bruvzg/gde_ts_underscrRémi Verschelde
[GDExtension] Use function names with underscore for TextServer extension, add macros to generate wrappers for module functions.
2022-09-28Merge pull request #66467 from nikitalita/fix-make-dir-windowsRémi Verschelde
make_dir() choking on ".."
2022-09-28[Text Server] Clear textures after "generate mipmaps" property change.bruvzg
2022-09-28Merge pull request #66528 from bruvzg/win_no_mmRémi Verschelde
[Windows] Ignore excessive wintab mouse move events.