Age | Commit message (Collapse) | Author |
|
_reimport_file is called from multiple threads as part of the threaded importer.
Inserting to this set from a thread could hit a race condition leading to memory corruption or hangs.
It seems to be unused, intentionally or unintentionally
|
|
Add a "save on focus loss" editor setting (disabled by default)
|
|
Decrease the editor FPS limit when unfocused from 20 to 10
|
|
Add keyboard shortcuts to the project manager
|
|
Main: Fixup bogus fallback to project manager with more bolognese
|
|
akien-mga/editorsettings-auto-display-scale-factor
EditorSettings: Factor code to compute auto display scale
|
|
Fixes for documentation search
|
|
ERR_FAIL_NULL check file access
|
|
Null in ResourceImporterTexture::_save_stex
|
|
Remove GridMap's "Lock View" option and a related method.
|
|
Move code folding into CodeEdit and hide line hiding API
|
|
WARNING: Hacks everywhere!
The logic in `main.cpp` is due a full rewrite as it's extremely hacky,
splitting argument parsing over several functions, with a mess of global state
and assumptions about what combinations of arguments or lack thereof should
mean in terms of what we want to read: game, editor, project manager, or
command line tools such as `--doctool`, `--export` or `--script`.
Until this is fully rewritten, this patch hacks things some more to ensure
that we don't fall back to the project manager in cases where it's not
warranted, and especially not *too late*, as it can mean that we haven't
properly initialized stuff like `EditorPaths` needed by the PM (which in turn
impacts what kind of path will be used for logs and the shader cache, etc...
the rabbit hole goes deep).
Fixes #41435.
Fixes #49392.
Fixes #49658.
Fixes https://github.com/godotengine/godot/issues/38202#issuecomment-773158477.
|
|
Updates rich_text_label so that the built-in documentation can be searched
Previously, it would only find the first result and would not select other results
Renames "_entered" functions to "_submitted"
|
|
Don't use the abbrevation "Sep." in UI text
|
|
Also fixes typo introduced in https://github.com/godotengine/godot/pull/48597/files#r652636544.
|
|
(cherry picked from commit a812779cc534784acf47ad3ed3100b045912bdbb)
|
|
|
|
Apparently this feature utilized a completely commented out 7+ years old
method, effectively doing nothing. Since it was designed with a completely
different editor design in mind it is pretty much incompatible and as such
it's best to remove it for now.
|
|
from Multiple Selection"
|
|
|
|
Handle portrait mode monitors in the automatic editor scale detection
|
|
Improve scrolling actions in the animation track editor
|
|
Rename "Singleton" to "Global Variable" in the AutoLoad editor
|
|
Adding some more missing renames for Transform3D and Quaternion
|
|
Calinou/editor-freelook-fix-redrawing-when-not-moving
Fix editor constantly redrawing when freelook is active with still camera
|
|
|
|
Make easing properties drawn with anti aliasing
|
|
Add the ability to reload the current project
|
|
Prevent accidental drags by adding drag distance threshold
|
|
unsignedFoo/49451-fix-selection-changed-multinodeeditor
Fix SceneTreeDock::_selection_changed to handle to single selection from Multiple Selection
|
|
Remove trailing slash from recent dir if needed
|
|
|
|
|
|
- EditorSettings: Ensure that `create()` makes a valid singleton.
Fixes #49179, fixes #49450.
- EditorPaths: Cleanup code, properly set `paths_valid`.
- EditorPaths: Move more paths validation (check, mkdir) from
EditorSettings for a better separation of concerns.
- EditorPaths: Move EditorFileSystem creation of `.godot/imported`
next to other paths.
|
|
Rename get_parent_spatial() to get_parent_node_3d()
|
|
|
|
Renames get_parent_spatial() to get_parent_node3d() and changes its
implementation. Before it was not returning a correct pointer if the
node wasn't added to a SceneTree. Now it uses the same implementation as
CanvasItem, which will be correct even for nodes outside a SceneTree.
|
|
Prevent `Theme` resource from emitting changes during bulk operations
|
|
|
|
|
|
|
|
Consistently prefix bound virtual methods with _
|
|
Add a Time singleton
|
|
Previously, the wrong tooltip was shown.
This also tweaks the tooltips' texts to be clearer and remove
references to "game" (since Godot is used for more than just games).
|
|
|
|
|
|
Use "Delete" in FileSystemDock on all platforms
|
|
Rename `Reference` to `RefCounted`
|
|
The consensus is that the per-platform strings are not so useful in the
first place, so it's better to revert back to "Delete" for every platform.
|
|
Implement lossless WebP encoding
|