summaryrefslogtreecommitdiffstats
path: root/scene/debugger
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #98777 from AThousandShips/debug_no_3d_fixThaddeus Crews2024-11-101-0/+2
|\ | | | | | | Add missing checks for non-3D builds in scene debugger
| * Add missing checks for non-3D builds in scene debuggerA Thousand Ships2024-11-021-0/+2
| |
* | Merge pull request #98891 from Faless/debugger/game_view_settingsThaddeus Crews2024-11-102-5/+28
|\ \ | | | | | | | | | [Debugger] Better settings configuration for RuntimeNodeSelect and Window quit
| * | [Debugger] Add configuration to the GameView debugger pluginFabio Alessandrelli2024-11-072-4/+14
| | |
| * | [Debugger] Move quit shortcut configuration to the SceneDebuggerFabio Alessandrelli2024-11-072-1/+14
| |/
* / Reload cached resources in runtime on file reimportMichael Alexsander2024-11-052-3/+15
|/
* Add "Game" editor for better runtime debuggingMichael Alexsander2024-10-302-83/+1270
|
* Set clang-format `RemoveSemicolon` rule to `true`Adam Scott2024-10-251-1/+1
| | | | - Set clang-format `Standard` rule to `c++20`
* Fixed Remote Nodes missing custom iconsBogdan Inculet2024-10-151-1/+15
|
* SCons: Add unobtrusive type hints in SCons filesThaddeus Crews2024-09-251-0/+1
|
* Reduce and prevent unnecessary random-access to `List`A Thousand Ships2024-05-041-4/+4
| | | | | | | | | Random-access access to `List` when iterating is `O(n^2)` (`O(n)` when accessing a single element) * Removed subscript operator, in favor of a more explicit `get` * Added conversion from `Iterator` to `ConstIterator` * Remade existing operations into other solutions when applicable
* Avoid unqualified-id "near" and "far" in Node3DEditor/ViewportSilc Lizard (Tokage) Renew2024-02-131-9/+4
|
* Merge pull request #86659 from MajorMcDoom/live-debug-local-transformRémi Verschelde2024-02-121-0/+54
|\ | | | | | | Improved synchronization of Transforms during live debug sessions
| * Changed various editor transform operations to be committed in local instead ↵Zi Ye2024-01-051-0/+54
| | | | | | | | of global space. Fixed a couple of bugs when syncing transforms to debug instance.
* | Replace error checks against `size` with `is_empty`A Thousand Ships2024-02-091-5/+5
|/
* Use mingw-std-threads in MinGW buildsPedro J. Estébanez2023-11-181-0/+5
|
* Display multiplayer authority ID in remote debuggerSaracen2023-10-221-0/+6
|
* Fix arg count checks in SceneDebuggerkleonc2023-07-191-4/+4
|
* Use NULL instead of COND checks when appropriateNinni Pipping2023-06-101-1/+1
| | | | Restricted to scene
* Refresh filesystem when saving remote branchkobewi2023-03-241-0/+3
|
* One Copyright Update to rule them allRémi Verschelde2023-01-052-58/+58
| | | | | | | | | | | | | | | | | | | | 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".
* Fix unexpected editor dependencykobewi2022-12-061-0/+4
|
* Merge pull request #65228 from Mickeon/fix-packed-scene-unique-name-rootRémi Verschelde2022-12-052-1/+24
|\ | | | | | | Fix "Save Branch as Scene" storing root Node's `unique_name_in_owner`
| * Fix "Save Branch as Scene" storing root Node's `unique_name_in_owner`Micky2022-09-172-1/+24
| | | | | | | | Fix #64425
* | Merge pull request #68709 from MewPurPur/instance-begone-part3Rémi Verschelde2022-11-161-1/+1
|\ \ | | | | | | | | | Remove more instances of 'instance' being used as a verb
| * | Remove more instances of 'instance' being used as a verbVolTer2022-11-161-1/+1
| | |
* | | [MP] Move engine and editor profilers to a plugin.Fabio Alessandrelli2022-11-142-96/+0
|/ / | | | | | | Also refactor the editor plugin out of the ReplicationEditor.
* | Add buttons in Remote Scene TreeMicky2022-10-202-9/+46
| | | | | | | | | | | | 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-3/+3
|/ | | | change warnings=all to use /W4.
* Swap arguments of ResourceSaver.save()kobewi2022-07-291-1/+1
|
* Code quality: Fix header guards consistencyRémi Verschelde2022-07-251-1/+1
| | | | | Adds `header_guards.sh` bash script, used in CI to validate future changes. Can be run locally to fix invalid header guards.
* Remake resource thread safety and APIreduz2022-06-221-2/+2
| | | | | | | | * Ensures thread safety when resources are destroyed. * Simplified API by always forcing `ResourceCache::get_ref`, which needs less hacks and is fully thread safe. * Removed RWLock for resources because its not possible to use for the new logic. Should not be a problem. Supersedes #57533
* Add a new HashSet templatereduz2022-05-202-32/+35
| | | | | * Intended to replace RBSet in most cases. * Optimized for iteration speed
* Use range iterators for RBSet in most casesAaron Record2022-05-191-15/+15
|
* Replace most uses of Map by HashMapreduz2022-05-162-53/+53
| | | | | | | | | | | | * 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!
* Rename profiler "Idle Time" to "Process Time"Hugo Locurcio2022-05-051-1/+1
| | | | | References to "idle time" are progressively being replaced by "process time" throughout the engine to avoid confusion.
* Remove `RES` and `REF` typedefs in favor of spelled out `Ref<>`Hugo Locurcio2022-05-031-6/+6
| | | | | | These typedefs don't save much typing compared to the full `Ref<Resource>` and `Ref<RefCounted>`, yet they sometimes introduce confusion among new contributors.
* Remove VARIANT_ARG* macrosreduz2022-03-092-9/+28
| | | | | | | | * 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.
* [Debugger] Move most profilers to ServersDebugger.Fabio Alessandrelli2022-02-062-6/+125
| | | | | Also splits bandwidth/rpc profiler (RPCProfiler is now in SceneDebugger).
* Allow method binds to take Object subclasses as argumentsTechnoPorg2022-01-251-0/+1
| | | | | | This commit adds a condition to VariantCaster that casts Variants of type OBJECT to any type T, if T is derived from Object. This change enables a fair bit of code cleanup. First, the Variant implicit cast operators for Node and Control can be removed, which allows for some invalid includes to be removed. Second, helper methods in Tree whose sole purpose was to cast arguments to TreeItem * are no longer necessary. A few small changes also had to be made to other files, due to the changes cascading down all the includes.
* Update copyright statements to 2022Rémi Verschelde2022-01-032-4/+4
| | | | Happy new year to the wonderful Godot community!
* Replace String comparisons with "", String() to is_empty()Nathan Franke2021-12-091-1/+1
| | | | | | Also: - Adds two stress tests to test_string.h - Changes to .empty() on std::strings
* Merge pull request #48717 from Faless/debugger/4.x_custom_res_fixRémi Verschelde2021-11-291-1/+1
|\
| * Fix display of programmatically created value in remote inspectorFabio Alessandrelli2021-05-141-1/+1
| |
* | Use range iterators for `Map`Lightning_A2021-09-301-8/+8
| |
* | Fix camera override not workingrequizm2021-08-211-1/+1
| |
* | Disable Node3D when compiling without 3D and fix disable_3d optionAaron Franke2021-08-131-2/+2
| |
* | Organize methods in Viewport and explicitly name 3D methods with 3DAaron Franke2021-08-101-4/+4
| |
* | Use const references where possible for List range iteratorsRémi Verschelde2021-07-251-2/+2
| |
* | Use C++ iterators for Lists in many situationsAaron Franke2021-07-231-5/+4
| |