summaryrefslogtreecommitdiffstats
path: root/editor/debugger/editor_debugger_node.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Fix copyright headers referring to GodotSpartan3222024-10-271-2/+2
|
* Rebrand preambles to RedotSpartan3222024-10-131-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit e8542b06acca3c1bdeee4b528411771f0819f084) 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>
* [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
| |
* | Remove Signal connect bindsJuan Linietsky2022-07-291-10/+10
|/ | | | | Remove the optional argument p_binds from `Object::connect` since it was deprecated by Callable.bind(). Changed all uses of it to Callable.bind()
* Fix Debugger tab not updating when clearing errorskobewi2022-06-061-34/+38
|
* Use range iterators for RBSet in most casesAaron Record2022-05-191-2/+2
|
* Replace most uses of Map by HashMapreduz2022-05-161-1/+1
| | | | | | | | | | | | * Map is unnecessary and inefficient in almost every case. * Replaced by the new HashMap. * Renamed Map to RBMap and Set to RBSet for cases that still make sense (order matters) but use is discouraged. There were very few cases where replacing by HashMap was undesired because keeping the key order was intended. I tried to keep those (as RBMap) as much as possible, but might have missed some. Review appreciated!
* Cleanup EditorNode and EditorDataHendrik Brucker2022-03-301-1/+1
| | | | Co-authored-by: Eric M <itsjusteza@gmail.com>
* Make `TabBar/Container` default their alignments to the left instead of centerMichael Alexsander2022-03-171-1/+0
|
* Remove VARIANT_ARG* macrosreduz2022-03-091-2/+2
| | | | | | | | * Very old macros from the time Godot was created. * Limited arguments to 5 (then later changed to 8) in many places. * They were replaced by C++11 Variadic Templates. * Renamed methods that take argument pointers to have a "p" suffix. This was used in some places and not in others, so made it standard. * Also added a dereference check for Variant*. Helped catch a couple of bugs.
* Merge pull request #58687 from YeldhamDev/the_beast_has_been_slainRémi Verschelde2022-03-041-1/+1
|\
| * Make `TabContainer` use `TabBar` internallyMichael Alexsander2022-03-031-1/+1
| |
* | Fix debugger not opening built-in scriptskobewi2022-03-021-2/+14
|/
* Port existing _notification code to use switch statements (part 1/3)jmb4622022-02-161-96/+97
|