summaryrefslogtreecommitdiffstats
path: root/modules/navigation/editor
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@8004c7524fb9f43425c4d6f614410a76678e0f7cSpartan3222024-10-301-2/+2
|\
| * Rename internal Button icon to button_icon to match exposed methodsAaron Franke2024-10-291-2/+2
| |
* | Fix copyright headers referring to GodotSpartan3222024-10-272-4/+4
| |
* | Rebrand preambles to RedotDubhghlas McLaughlin2024-10-112-0/+4
|/ | | | | | | | | | | | | | | | | | | | | | 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>
* Extract editor main screenkit2024-09-091-1/+1
|
* Remove empty bind_methods()kobewi2024-08-152-4/+0
|
* [Scene] Add SceneStringNames::pressedA Thousand Ships2024-05-141-2/+2
|
* Organize existing code for editor pluginsAaron Franke2024-04-271-1/+1
|
* Move NavigationMeshSourceGeometryData(2D/3D) to the 2D/3D subfoldersAaron Franke2024-04-151-1/+0
|
* Use threads for baking navigation mesh inside editorsmix82024-04-111-1/+1
| | | | Enables threaded navigation mesh baking inside the editor.
* [Modules] Replace `ERR_FAIL_COND` with `ERR_FAIL_NULL` where applicableA Thousand Ships2023-09-261-1/+1
|
* Replace flat buttons with flat-styled buttons with a visible pressed stateYuri Sizov2023-09-191-2/+2
|
* Add EditorStringNames singletonkobewi2023-09-031-2/+3
|
* Move navigation mesh baking to NavigationServersmix82023-08-031-11/+9
| | | | Moves navigation mesh baking to NavigationServer.
* Style: Harmonize header includes in modulesRémi Verschelde2023-06-151-0/+1
| | | | | | | | | | | | | | | | | | | | This applies our existing style guide, and adds a new rule to that style guide for modular components such as platform ports and modules: Includes from the platform port or module ("local" includes) should be listed first in their own block using relative paths, before Godot's "core" includes which use "absolute" (project folder relative) paths, and finally thirdparty includes. Includes in `#ifdef`s come after their relevant section, i.e. the overall structure is: - Local includes * Conditional local includes - Core includes * Conditional core includes - Thirdparty includes * Conditional thirdparty includes
* Fix for threaded NavigationMesh baking under new thread guardssmix82023-06-141-1/+5
| | | | Fixes threaded NavigationMesh baking under new SceneTree thread guards that blocked the process.
* Improve includes of EditorNode (and everything else)Yuri Sizov2023-04-072-0/+5
| | | | | | Also start organizing editor-specific GUI components into a dedicated folder, `editor/gui`. Also move `editor_file_server` next to the rest of debugger classes.
* Disable navmesh, lightmap, and VoxelGI generation on foreign dataSaracenOne2023-01-061-1/+29
|
* 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".
* Use forward-declarations in EditorPlugin where possibletrollodel2022-11-111-0/+2
|
* Rename EditorInterface.get_editor_main_control to get_editor_main_screenYuri Sizov2022-09-071-1/+1
|
* Rename `hint_tooltip` to `tooltip_text` & setgetMicky2022-08-271-1/+1
| | | | | | | | `hint_tooltip` -> `tooltip_text` `set_tooltip` -> `set_tooltip_text` `_get_tooltip` -> `get_tooltip_text` Updates documentation, too.
* Zero initialize all pointer class and struct membersRémi Verschelde2022-04-041-7/+7
| | | | | This prevents the pitfall of UB when checking if they have been assigned something valid by comparing to nullptr.
* Modules: Don't build editor-specific classes in templatesRémi Verschelde2022-03-282-0/+243
They're moved to an `editor` subfolder so that we can easily handle them separately.