Age | Commit message (Collapse) | Author |
|
Renames JSON.parse_string() to parse()
Renames JSON.decode_data() to stringify()
|
|
|
|
Remove thread-unsafe and unused late_added_files.
|
|
Make closing current scene faster
|
|
Allow selecting frames by holding down the mouse in SpriteFrames editor
|
|
Add PROPERTY_USAGE_NONE and use it
|
|
|
|
|
|
edited tracks
|
|
This complements the existing (Ctrl +) Shift + Left mouse button
multiple frame (de)selection.
|
|
Rename VisibilityNotifier2D/3D to VisibleOnScreenNotifier2D/3D
|
|
_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
|
|
* Renames for 2D and 3D
* Class name was confusing, given both 2D and 3D have a "visible" property that is unrelated to actual on-screen visibility.
* New name makes it clear that this is about visibility on screen.
|
|
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"
|
|
Method from `String`
|
|
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()
|