Age | Commit message (Collapse) | Author |
|
|
|
PackedScene: Prevent crash when root node has `parent` attribute
|
|
Respect 'mesh compression' editor import option in Assimp and glTF importers [master]
|
|
The crash happens further down when setting an invalid owner in
`Node::_set_owner_nocheck` but I couldn't figure out how to fix it.
But here the proper fix is to catch the invalid scene file early on
and fail loading it.
Part of #17372.
|
|
Add an editor tooltip to document gizmo visibility options
|
|
|
|
See discussion in
https://github.com/godotengine/godot-proposals/issues/716.
|
|
Add visual feedback when hovering layer checkboxes in the Inspector
|
|
Fix dialog spam when inspecting MeshInstance from model file
|
|
- properly visit power of 2 factors (50%, 100%, 200%...)
- index based zoom values to prevent floating point issues
- Fix 2d editor not able to reach min and max zoom values
|
|
|
|
Add fallback icons and make custom ones appear in the recent/favorites list in the "Create New" dialog
|
|
Tweak the import compression property hint for clarity
|
|
Preserving "Sync Scene Changes" & "Sync Script Changes" with Project Settings
|
|
Fix excessive bottom cropping in atlas generation
|
|
This also changes how checkboxes are selected, which makes it possible
to click in the small area between two checkboxes and
still toggle a value successfully (which is arguably less frustrating).
|
|
Add a getter and property for the editor distraction-free mode
|
|
FIX CodeTextEditor not respecting focus in _input
|
|
Allow mouse zooming without hovering the texture in the TileSet editor
|
|
Implement zooming using Ctrl + Mouse wheel in the TileMap editor
|
|
Change OK text in snap dialog to OK
|
|
Improve the text appearance in the script editor warnings panel
|
|
|
|
|
|
This was previously implemented in the GridMap editor. This makes
the same feature available in the TileMap editor.
|
|
This partially addresses
https://github.com/godotengine/godot-proposals/issues/968.
|
|
|
|
Fixes: #38739
|
|
dreamsComeTrue/project-manager-grab-focus-on-enter
Grabbing focus on ProjectList after clicking an item.
|
|
Prevent crash attaching a script with no languages registered
|
|
Move `RayShape2D` implementation into its own translation unit
|
|
|
|
|
|
|
|
Fixes: #39012
|
|
importers
|
|
Split `Geometry` singleton into `Geometry2D` and `Geometry3D`
|
|
And do the dedent and stripping for both translated and
non-translated strings for consistency, and so that we
don't need to do it at the call site.
|
|
in the "Create New" dialog
|
|
Extra `_2d` suffixes are removed from 2D methods accoringly.
|
|
Add shortcut for Pan Mode (G)
|
|
Custom Skeleton3DEditorPlugin
|
|
And change TileMap Bucket Fill shortcut to (B).
Fixes #8582.
|
|
Dynamic infinite 3D grid
|
|
This patch adds ability to include external, user-defined C++ modules
to be compiled as part of Godot via `custom_modules` build option
which can be passed to `scons`.
```
scons platform=x11 tools=yes custom_modules="../project/modules"
```
Features:
- detects all available modules under `custom_modules` directory the
same way as it does for built-in modules (not recursive);
- works with both relative and absolute paths on the filesystem;
- multiple search paths can be specified as a comma-separated list.
Module custom documentation and editor icons collection and generation
process is adapted to work with absolute paths needed by such modules.
Also fixed doctool bug mixing absolute and relative paths respectively.
Implementation details:
- `env.module_list` is a dictionary now, which holds both module name as
key and either a relative or absolute path to a module as a value.
- `methods.detect_modules` is run twice: once for built-in modules, and
second for external modules, all combined later.
- `methods.detect_modules` was not doing what it says on the tin. It is
split into `detect_modules` which collects a list of available modules
and `write_modules` which generates `register_types` sources for each.
- whether a module is built-in or external is distinguished by relative
or absolute paths respectively. `custom_modules` scons converter
ensures that the path is absolute even if relative path is supplied,
including expanding user paths and symbolic links.
- treats the parent directory as if it was Godot's base directory, so
that there's no need to change include paths in cases where custom
modules are included as dependencies in other modules.
|
|
It used APIs that were changed after the PR was last rebased.
|
|
Improve the editor feature profiles UX
|
|
|
|
- Make the Ignore button's position identical across all warnings
by moving it to the left.
- Change the Ignore button's text and color to make it more obvious
that it can be clicked.
- Use the editor font instead of the default project font to match
the rest of the editor.
|
|
Well, infinite for all intents and purposes.
|