summaryrefslogtreecommitdiffstats
path: root/modules/gridmap
Commit message (Collapse)AuthorAgeFilesLines
...
| * Update meshes list UI immeditely after setting mesh library in gridmapjsjtxietian2023-09-201-0/+1
| |
* | fix some keys triggering their actions twice in GridMapGeoffroy Warin2023-09-111-0/+1
|/
* Add EditorStringNames singletonkobewi2023-09-031-4/+5
|
* Ensure the visibility is updated when entering the treeChia-Hsiang Cheng2023-08-291-2/+3
|
* Merge pull request #80782 from KoBeWi/MessLibraryRémi Verschelde2023-08-214-16/+42
|\ | | | | | | Cleanup MeshLibrary changed signals
| * Cleanup MeshLibrary changed signalskobewi2023-08-194-16/+42
| |
* | Fix GridMap shortcuts that should not be physicalGeoffroy Warin2023-08-191-2/+2
|/
* Make gridmap shortcuts editable and not conflict with other pluginsGeoffroy Warin2023-08-101-17/+46
| | | | Co-authored-by: Tomek <kobewi4e@gmail.com>
* Unify and streamline connecting to Resource changeskobewi2023-07-173-9/+10
|
* Doctool: Remove version attribute from XML headerRémi Verschelde2023-07-061-1/+1
| | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb).
* Bump version to 4.2-devRémi Verschelde2023-07-051-1/+1
| | | | Keep on waitin'
* Fix GridMap tile picking when a search filter is appliedHaoyu Qiu2023-06-211-9/+14
|
* Merge pull request #78265 from caseyjoy/57068_gridmap_grid_positionRémi Verschelde2023-06-201-1/+8
|\ | | | | | | Update GridMap editor grid location when required
| * Update GridMap editor grid location when requiredCasey2023-06-171-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The GridMap editor's grid previously did not not move when moving the tile cursor, only on certain menu actions. This commit adds an update_grid call for valid mouse movement in the editor, changes update_grid to only offset if there's a valid cursor, and adds updates for the grid and cursor when a mesh library is changed since we need the new RID for the update_grid check, and if we remove the mesh library we want to make sure it gets recentered. As a nice side-effect, it also updates to the new cursor mesh if you load a new mesh library. Fixes #57068
* | Style: Harmonize header includes in modulesRémi Verschelde2023-06-152-1/+3
|/ | | | | | | | | | | | | | | | | | | | 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 some invalid plugin edit callskobewi2023-06-112-10/+0
|
* Add syntax highlighter iconsVolTer2023-05-291-1/+1
|
* Rework Navigation Avoidancesmix82023-05-101-2/+2
| | | | Rework Navigation Avoidance.
* Validate code tags in documentation for potential paramsYuri Sizov2023-04-261-5/+5
| | | | | | | Adds a check to make_rst to look for matches between the text inside of the [code][/code] tag and known param identifiers. Fixes most of what was revealed.
* Improve includes of EditorNode (and everything else)Yuri Sizov2023-04-071-0/+2
| | | | | | 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.
* Only change floors in GridMap editor when holding Ctrl/Cmd, not ShiftHugo Locurcio2023-03-251-3/+3
| | | | | The Shift modifier frequently interfered with freelook's speed modifier, which led to the floor level being accidentally changed.
* Fix GridMap free navigation RID error spamsmix82023-03-211-2/+6
| | | | Fixes GridMap free navigation RID error spam.
* Fix GridMap signal "cell_size_changed" disconnect errorsmix82023-03-141-1/+1
| | | | Fixes GridMap signal "cell_size_changed" disconnect error.
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* Fix GridMap 'cell_size_changed' signal not disconnecting properlysmix82023-02-231-1/+1
| | | | Fixes that a GridMap node would not disconnect from the 'cell_size_changed' signal when the new selected node is another valid GridMap.
* Improvements and fixes based on Weblate commentsHaoyu Qiu2023-02-131-0/+1
| | | | | | | | | | | | | | | | | | | * Description of `ui_text_submit` action should be "Submit Text" instead of "Text Submitted". * Spell out "Animation" instead of using "Anim.". * Treat "Max" as regular word instead of writing "Max.". * Use generic "Set %s" for action name instead of a dedicated "Set target_position". * Add translator comment for: * "Inclusive" and "Self" in the profiler. * Places where it needs the context about being an editor progress label. * "Duplicated Animation Name" since it's refering to the new name of a duplicated animation. * Disambiguation of "View Plane Transform", "Paste Selects" and "Display Normal". * Fix wrong undo action name for renaming an input action. * Fix missing end quote in a shader error message. * In class reference: * Fix duplicated "if" in the description of `signf()`. * Fix mismatched example output in `String.operator %()`. * Fix typo in the description of `Decal.texture_emission`. * Unify description of `String.match()` and `StringName.match()`.
* Add EditorUndoRedoManager singletonkobewi2023-01-161-5/+5
|
* Rework const on NavigationServer methodsJosh Jones2023-01-071-5/+5
| | | `const` is used on all methods, even when they cause modification of the server. This reworks the methods of the server to only use `const` on method that don't change the state of the server.
* One Copyright Update to rule them allRémi Verschelde2023-01-056-174/+174
| | | | | | | | | | | | | | | | | | | | 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 safety-checks before some servers `free()`Adam Scott2022-12-292-0/+10
|
* Merge pull request #70366 from ↵Rémi Verschelde2022-12-211-2/+2
|\ | | | | | | | | | | quentinguidee/refactoring/fix-double-get-singleton Fix double get_singleton()
| * Fix double get_singleton()Quentin Guidée2022-12-201-2/+2
| | | | | | | | Signed-off-by: Quentin Guidée <quentin.guidee@gmail.com>
* | Change GridMap navigation_layers to be per mesh_library itemsmix82022-12-203-61/+5
|/ | | | Changes GridMap navigation_layers from a single bitmask for the entire GridMap to a bitmask for each item used in the mesh_library with a baked navmesh.
* Add GridMap collision_prioritysmix82022-12-193-4/+26
| | | | Adds property 'collision_priority' for all physics bodies of the entire GridMap.
* Fix Navigation API abbreviations inconsistencysmix82022-12-172-37/+37
| | | | Schema for navigation to name user facing API with "navigation" without abbreviation and e.g. NavigationServer internals with abbr "nav".
* Enable assigning an owner to navigation regions and linksJosh Jones2022-12-101-0/+2
| | | This allows users of the server APIs to get back the nodes that created certain regions and links.
* Use forward-declarations in big editor classestrollodel2022-11-291-0/+2
|
* Cleanup remaining EditorUndoRedoManager usageskobewi2022-11-242-4/+5
|
* Fill random docskobewi2022-11-221-0/+4
|
* Use forward-declarations in EditorPlugin where possibletrollodel2022-11-111-0/+3
|
* Unify usage of GLOBAL/EDITOR_GETkobewi2022-10-181-3/+3
|
* Fix MSVC warnings, rename shadowed variables, fix uninitialized values, ↵bruvzg2022-10-071-4/+4
| | | | change warnings=all to use /W4.
* Rename remaining "Spatial" in Plugins to "Node3D"Micky2022-10-041-1/+1
| | | | | | | | | | | | For EditorNode3DGizmo: - `get_spatial_node` -> `get_node_3d` - `set_spatial_node` -> `set_node_3d` For EditorPlugin: - `add_spatial_gizmo_plugin` -> `add_node_3d_gizmo_plugin` - `remove_spatial_gizmo_plugin` -> `remove_node_3d_gizmo_plugin` Also renames some internal methods for consistency (`forward_3d_draw_over_viewport` & `forward_3d_force_draw_over_viewport` ...). Basically, Spatial has been completely eradicated.
* Fix typos with codespellRémi Verschelde2022-09-301-1/+1
| | | | | | | Using codespell 2.3-dev from current git. And fix typo in `methods.py` for `vsproj=yes` option (still won't work though).
* Merge pull request #66242 from akien-mga/scons-unify-tools-targetRémi Verschelde2022-09-301-1/+1
|\
| * SCons: Unify tools/target build type configurationRémi Verschelde2022-09-261-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implements https://github.com/godotengine/godot-proposals/issues/3371. New `target` presets ==================== The `tools` option is removed and `target` changes to use three new presets, which match the builds users are familiar with. These targets control the default optimization level and enable editor-specific and debugging code: - `editor`: Replaces `tools=yes target=release_debug`. * Defines: `TOOLS_ENABLED`, `DEBUG_ENABLED`, `-O2`/`/O2` - `template_debug`: Replaces `tools=no target=release_debug`. * Defines: `DEBUG_ENABLED`, `-O2`/`/O2` - `template_release`: Replaces `tools=no target=release`. * Defines: `-O3`/`/O2` New `dev_build` option ====================== The previous `target=debug` is now replaced by a separate `dev_build=yes` option, which can be used in combination with either of the three targets, and changes the following: - `dev_build`: Defines `DEV_ENABLED`, disables optimization (`-O0`/`/0d`), enables generating debug symbols, does not define `NDEBUG` so `assert()` works in thirdparty libraries, adds a `.dev` suffix to the binary name. Note: Unlike previously, `dev_build` defaults to off so that users who compile Godot from source get an optimized and small build by default. Engine contributors should now set `dev_build=yes` in their build scripts or IDE configuration manually. Changed binary names ==================== The name of generated binaries and object files are changed too, to follow this format: `godot.<platform>.<target>[.dev][.double].<arch>[.<extra_suffix>][.<ext>]` For example: - `godot.linuxbsd.editor.dev.arm64` - `godot.windows.template_release.double.x86_64.mono.exe` Be sure to update your links/scripts/IDE config accordingly. More flexible `optimize` and `debug_symbols` options ==================================================== The optimization level and whether to generate debug symbols can be further specified with the `optimize` and `debug_symbols` options. So the default values listed above for the various `target` and `dev_build` combinations are indicative and can be replaced when compiling, e.g.: `scons p=linuxbsd target=template_debug dev_build=yes optimize=debug` will make a "debug" export template with dev-only code enabled, `-Og` optimization level for GCC/Clang, and debug symbols. Perfect for debugging complex crashes at runtime in an exported project.
* | Fix MSVC warnings C4324, C4389, C4456, and C4459Rémi Verschelde2022-09-281-1/+1
|/ | | | Part of #66537.
* Merge pull request #65241 from bruvzg/no_keymap_ambiguityRémi Verschelde2022-09-081-5/+5
|\ | | | | | | Fix key mapping changes when moving from macOS to other platform.
| * Fix key mapping changes when moving from macOS to other platformbruvzg2022-09-071-5/+5
| | | | | | | | | | Removes separate `Command` key (use `Meta` instead). Adds an event flag to automatically remap `Command` <-> `Control` (cannot be set alongside `Control` or `Meta`).
* | Merge pull request #64193 from smix8/navigation_gridmap_navmap_change_4.xRémi Verschelde2022-09-083-2/+52
|\ \ | | | | | | | | | Add GridMap function to change navigation map for baked navigation regions