summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-11-25Merge pull request #69164 from Faless/debugger/4.x_server_keep_openRémi Verschelde
[Editor] Add button to keep the debug server open.
2022-11-25Merge pull request #68447 from Grimmr/clean-tooltips-on-WM-focus-offRémi Verschelde
Viewport cancels existing tooltip when window looses focus
2022-11-25[Editor] Add button to keep the debug server open.Fabio Alessandrelli
The setting is stored in the project editor metadata, and the server is automatically started/stopped when the option change (only stopped if no session is currently active). The CLI option `--debug-server` now also forces the server to stay open (without saving the state, unlike the menu option). This commit also removes the "Keep debugger open" option in the script editor "debug" menu. That option was really confusing, it used to hide the bottom panel if and only if the debugger pane was selected, so if you had your output log open instead (default when pressing play) it would effectively do nothing. Having an option to save a click in such a very specific case seems very overkill.
2022-11-25Viewport cancels existing tooltip when window looses focusgrimmr
fixes #68197 when NOTIFICATION_WM_WINDOW_FOCUS_OUT is recieved by a viewport it will now call _gui_cancel_tooltip() to avoid it hanging around after the mouse events stop coming in
2022-11-25Merge pull request #69146 from clayjohn/Polygon2D-errorRémi Verschelde
Ensure that mesh instance is properly freed when freeing Polygon2D
2022-11-25Merge pull request #69155 from timothyqiu/group-baseRémi Verschelde
Fix inspector not showing name for `LabelSettings.font`
2022-11-25Merge pull request #69152 from TokageItLab/fix-anim-key-cant-editRémi Verschelde
Fix wrong `AnimationTrackKeyEdit` update timing
2022-11-25Merge pull request #69148 from zaevi/fix_debugger_inspect_sub_objectRémi Verschelde
Fix debugger can't inspect sub objects.
2022-11-25Merge pull request #69123 from queezle42/queezle42/masterRémi Verschelde
Fix GLAD-related build problems on Linux
2022-11-25Merge pull request #67511 from neikeq/issue-66060Rémi Verschelde
C#: Load assemblies as collectible only in the Godot editor
2022-11-25Fix wrong AnimationTrackKeyEdit update timingSilc Renew
2022-11-25Fix inspector not showing name for LabelSettings.fontHaoyu Qiu
2022-11-25FIx debugger can't inspect sub objects.Zae
2022-11-25Fix GLAD-related build problems on LinuxJens Nolte
- Use gl.h provided by GLAD in the OpenXR module - Use non-EXT variants of some OpenGL defines - Remove libGL-related code paths
2022-11-24Ensure that mesh instance is properly freed when freeing Polygon2Dclayjohn
2022-11-25Merge pull request #69143 from raulsntos/dotnet/projection-docsIgnacio Roldán Etcheverry
C#: Add Projection documentation
2022-11-25C#: Add Projection documentationRaul Santos
- Add documentation to Projection type - Reorder Projection members to be consistent with other C# types
2022-11-24Merge pull request #69135 from clayjohn/GLES3-mesh2DRémi Verschelde
Fix drawing of Mesh2D
2022-11-24Merge pull request #69134 from jquinl/export_range_int_fixRémi Verschelde
GDScript: Properly respect `int` type hint for `@export_range`
2022-11-24Merge pull request #69133 from clayjohn/GDscript-static-warningRémi Verschelde
Ensure class name is printed in STATIC_CALLED_ON_INSTANCE warning
2022-11-24GDScript: Properly respect `int` type hint for `@export_range`unknown
Fixes #69104. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
2022-11-24Fix drawing of Mesh2Dclayjohn
The batch was being discarded if no instance buffer was present, but an instance buffer is only needed for MultiMesh and particles.
2022-11-24Ensure class name is printed in STATIC_CALLED_ON_INSTANCE warningclayjohn
2022-11-24Merge pull request #69128 from Chaosus/vs_fix_custom_nodesRémi Verschelde
Fix custom visual shader nodes not being loaded at startup
2022-11-24Merge pull request #69127 from KoBeWi/redUNDOntRémi Verschelde
Cleanup remaining EditorUndoRedoManager usages
2022-11-24Merge pull request #69072 from souplamp/history-dock-check-connectedRémi Verschelde
Add history dock to default editor layout, and prevent signal connecting multiple times
2022-11-24Fix custom visual shader nodes not being loaded at startupYuri Rubinsky
2022-11-24Cleanup remaining EditorUndoRedoManager usageskobewi
2022-11-24Merge pull request #69125 from raulsntos/dotnet/bezier_derivativeRémi Verschelde
C#: Implement BezierDerivative
2022-11-24Merge pull request #66574 from MewPurPur/search-results-improvementsRémi Verschelde
Fixes and improvements to Search Results dock
2022-11-24Merge pull request #68566 from Mickeon/node-print-orphans-staticRémi Verschelde
Make `Node.print_orphan_nodes()` static
2022-11-24Merge pull request #68938 from brunosxs/fix/subresource-documentationRémi Verschelde
Fix for documentation not appearing in preview in editor inspector
2022-11-24Merge pull request #68386 from MewPurPur/snappedi-snappedfRémi Verschelde
Implement snappedi, snappedf, and Vector[2/3/4]i.snapped
2022-11-24Merge pull request #68806 from MewPurPur/printraw-warn-better-in-docsRémi Verschelde
Make it clearer that printraw only prints to terminal
2022-11-24Merge pull request #69111 from TokageItLab/put-together-interpolationsRémi Verschelde
Refactor interpolating functions in some classes to use `Math` class
2022-11-24Merge pull request #69083 from fire/abstract_gltf_materialRémi Verschelde
Cache materials in gltf as the abstract class of Material in GLTFDocument
2022-11-24Merge pull request #67330 from KoBeWi/immortal_scenesRémi Verschelde
Don't free instanced scenes when recreating tiles
2022-11-24Merge pull request #68455 from Calinou/improve-editor-property-capitalizationRémi Verschelde
Improve editor property capitalization
2022-11-24History dock singleton, set default editor layout, ready notificationsouplamp
- add the history dock to the default editor layout, so when a user does Editor -> Editor Layout -> Default the history dock will no longer disappear - change the enter tree notification to a ready notification to prevent the history dock from trying to connect 'on_history_changed' signal everytime the dock is moved in the editor layout
2022-11-24Make it clearer that printraw only prints to terminalVolTer
2022-11-24Cache materials in gltf as the abstract class of MaterialK. S. Ernest (iFire) Lee
Use the abstract material class instead of BaseMaterial3D. This allows inserting ShaderMaterials into gltf. Like in VRM.
2022-11-24C#: Implement BezierDerivativeRaul Santos
Adds `BezierDerivative` method to Mathf, Vector2 and Vector3 (already exposed in Core).
2022-11-24Improve editor property capitalizationHugo Locurcio
- Don't capitalize stop words such as "at", "in" or "to". - Add more acronyms to capitalize. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
2022-11-24Merge pull request #69108 from akien-mga/gdscript-ignore-warnings-debugRémi Verschelde
GDScript: Only check if ignoring warnings in debug build
2022-11-24Merge pull request #69107 from Mickeon/oopsRémi Verschelde
Fix warning in Signal Documentation
2022-11-24Merge pull request #69105 from pkowal1982/opacityRémi Verschelde
Fix near one opacity in editor icons
2022-11-24Merge pull request #69089 from raulsntos/dotnet/docs-objectRémi Verschelde
Fix C# documentation for Godot.Object
2022-11-24Merge pull request #68833 from BastiaanOlij/improve_extension_logicRémi Verschelde
Improve logic for detecting and tracking extensions
2022-11-24Merge pull request #68283 from zaevi/fix_float_dock_titleRémi Verschelde
[Editor] Fix float dock shows incorrect title.
2022-11-24Refactor interpolating functions in some classes to use Math classSilc Renew