summaryrefslogtreecommitdiffstats
path: root/editor/debugger/editor_debugger_node.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@d09d82d433b03bb3773fd2a8cc8d6ccc2f8739ceSpartan3222024-11-261-1/+1
|\
| * Merge pull request #99054 from timothyqiu/session-namesThaddeus Crews2024-11-221-1/+1
| |\ | | | | | | | | | Translate the name of the debugger session tabs
| | * Translate the name of the debugger session tabsHaoyu Qiu2024-11-111-1/+1
| | |
* | | Merge commit godotengine/godot@fd4c29a189e53a1e085df5b9b9a05cac9351b3efSpartan3222024-11-191-4/+4
|\| |
| * | Use `(r)find_char` instead of `(r)find` for single charactersA Thousand Ships2024-11-171-4/+4
| |/
* | Merge commit godotengine/godot@c6c464cf9ae56e8b68620af65125dd980d0e8122Spartan3222024-11-021-0/+8
|\|
| * Add "Game" editor for better runtime debuggingMichael Alexsander2024-10-301-0/+8
| |
* | Merge commit godotengine/godot@8004c7524fb9f43425c4d6f614410a76678e0f7cSpartan3222024-10-301-4/+4
|\|
| * Rename internal Button icon to button_icon to match exposed methodsAaron Franke2024-10-291-4/+4
| |
* | Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-111-0/+2
|/ | | | | | | | | | | | | | | | | | | | | | 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>
* Expose EditorUndoRedoManager's clear_history()kobewi2024-08-291-1/+1
|
* Fix weird plural public method namesAdam Scott2024-08-271-4/+4
|
* [Scene] Add `SceneStringNames::font(_size/_color)`A Thousand Ships2024-06-181-4/+4
|
* [Scene] Add `SceneStringNames::panel`A Thousand Ships2024-05-301-3/+3
|
* [Scene] Add `SceneStringNames::id_pressed`A Thousand Ships2024-05-301-1/+1
|
* Merge pull request #91033 from Hilderin/keep_current_bottom_panel_on_playRémi Verschelde2024-05-291-5/+1
|\ | | | | | | Add editor setting to keep bottom panel state on play and stop game
| * Add editor setting to keep bottom panel state on play and stop gameHilderin2024-05-291-5/+1
| |
* | Limit icon size in EditorDebuggerTree.Daylily-Zeleen2024-05-251-1/+7
| |
* | [Scene] Add SceneStringNames::pressedA Thousand Ships2024-05-141-1/+1
| |
* | Replace `find` with `contains/has` where applicableA Thousand Ships2024-05-081-1/+1
| | | | | | | | | | | | | | * Replaces `find(...) != -1` with `contains` for `String` * Replaces `find(...) == -1` with `!contains` for `String` * Replaces `find(...) != -1` with `has` for containers * Replaces `find(...) == -1` with `!has` for containers
* | Don't store values when loading themkobewi2024-03-071-1/+4
|/
* Add const lvalue ref to editor/* container parametersMuller-Castro2024-02-261-2/+2
|
* Extract BottomPanel from EditorNodekit2024-02-201-3/+4
|
* Use check_changed_settings_in_group() everywherekobewi2024-02-191-1/+2
|
* Merge pull request #86676 from rune-scape/sparse-script-reloadYuri Sizov2024-01-171-2/+8
|\ | | | | | | GDScript: Hot-reload changed scripts only
| * Hot-reload only changed scriptsrune-scape2024-01-021-2/+8
| |
* | Update deferred calls to use Callableskobewi2024-01-091-1/+1
|/
* Fix debugger behaviour with multi-session debugging:Saracen2023-10-061-6/+57
| | | | | | Fixes script editor debug menu on sessions other than 1 Fixes breakpoint toggle from menu in sessions other than 1 Removes execution display when switching to non-breaked sessions
* [Editor] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-151-4/+4
|
* Fix accessing editor theme items throughout the UIYuri Sizov2023-09-151-6/+6
| | | | This also exposes `EditorInterface::get_editor_theme`.
* Add EditorStringNames singletonkobewi2023-09-031-12/+13
|
* Merge pull request #75200 from ↵Rémi Verschelde2023-06-191-3/+3
|\ | | | | | | | | | | Calinou/debugger-editor-settings-add-property-hints Add property hints for debugger/profiler editor settings
| * Add property hints for debugger/profiler editor settingsHugo Locurcio2023-03-221-3/+3
| | | | | | | | This also adds descriptions for those settings.
* | Extract editor run toolbar into its own componentYuri Sizov2023-04-191-8/+8
|/ | | | | | | | - Simplify and update its logic. - Simplify EditorScript. - Improve EditorNode and other relevant includes. - Fix scene-based path in the movie writer when reloading a scene.
* Add EditorUndoRedoManager singletonkobewi2023-01-161-1/+1
|
* One Copyright Update to rule them allRémi Verschelde2023-01-051-29/+29
| | | | | | | | | | | | | | | | | | | | As many open source projects have started doing it, we're removing the current year from the copyright notice, so that we don't need to bump it every year. It seems like only the first year of publication is technically relevant for copyright notices, and even that seems to be something that many companies stopped listing altogether (in a version controlled codebase, the commits are a much better source of date of publication than a hardcoded copyright statement). We also now list Godot Engine contributors first as we're collectively the current maintainers of the project, and we clarify that the "exclusive" copyright of the co-founders covers the timespan before opensourcing (their further contributions are included as part of Godot Engine contributors). Also fixed "cf." Frenchism - it's meant as "refer to / see".
* Add remote history to EditorUndoRedoManagerkobewi2022-12-081-0/+2
|
* Use forward-declarations in big editor classestrollodel2022-11-291-0/+2
|
* [Editor] Add button to keep the debug server open.Fabio Alessandrelli2022-11-251-17/+29
| | | | | | | | | | | | | | | | 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.
* Merge pull request #68709 from MewPurPur/instance-begone-part3Rémi Verschelde2022-11-161-3/+3
|\ | | | | | | Remove more instances of 'instance' being used as a verb
| * Remove more instances of 'instance' being used as a verbVolTer2022-11-161-3/+3
| |
* | [Editor] Better expose EditorDebuggerPlugin.Fabio Alessandrelli2022-11-141-15/+29
|/ | | | | | | | | | | | | | | Now splitted into two classes: - EditorDebuggerPlugin (RefCounted). - EditorDebuggerSession (abstract). This allows the EditorPlugin to be in control of the debugger plugin lifecycle, be notified when sessions are created, and customize each of them independently. We should slowly transition the various profilers and captures in ScriptEditorDebugger to their own plugins, and decouple ScriptEditorDebugger from it's UI part (making it the "real" EditorDebuggerSession potentially dropping the wrappers).
* Merge pull request #62416 from Calinou/movie-maker-request-attention-on-finishRémi Verschelde2022-10-311-0/+6
|\ | | | | | | Request attention on the editor window when done recording a movie
| * Request attention on the editor window when done recording a movieHugo Locurcio2022-06-261-0/+6
| | | | | | | | | | | | | | | | | | Recording a movie can take a long time, so the user may not be paying attention to the editor while leaving a movie rendering in the background. This also allows editor plugins to access the state of Movie Maker mode within the editor (and set it).
* | Merge pull request #67578 from KoBeWi/GEDITORRémi Verschelde2022-10-311-3/+3
|\ \ | | | | | | | | | Unify usage of GLOBAL/EDITOR_GET
| * | Unify usage of GLOBAL/EDITOR_GETkobewi2022-10-181-3/+3
| | |
* | | Add buttons in Remote Scene TreeMicky2022-10-201-0/+19
|/ / | | | | | | | | | | A Scene button to any scene instantiated from file. When clicked, it opens the original PackedScene. A toggle visibility button is also available.
* | Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵bruvzg2022-10-071-5/+2
| | | | | | | | change warnings=all to use /W4.
* | Add per-scene UndoRedokobewi2022-08-221-2/+6
| |