Age | Commit message (Collapse) | Author |
|
The Low Processor Usage Mode Sleep Usec setting is now used as a
FPS limiter rather than a constant sleep duration.
This will increase CPU/GPU usage slightly due to the higher
effective FPS, but the increase in overall smoothness is worth it.
If both Force Fps and Low Processor Usage Mode settings are enabled
in the project settings, only the setting that causes the highest
sleep duration will be retained.
This closes #11030.
|
|
Remove 'de_CH' translation (4% complete) to default to the 100%
complete 'de' one.
Fixes #32625.
(cherry picked from commit 35a5ebb44d534683da4e2e6b774fe7e1d165a24b)
|
|
GDScript LSP: Fix wrong error checks added in #39385
|
|
Add note about automatic window title to FileDialog documentation.
|
|
GDNative: merge API structs, bump version of merged structs.
|
|
Add keyboard layout enumeration / set / get functions.
|
|
Clarify Node virtual methdods not being called if node is orphan
|
|
[macOS export] Add notarization support.
|
|
Fixes the stopping of animation effects in bbcode text after appending
|
|
Fix Image.create_from_data "use_mipmaps" class doc
|
|
Fix TabContainer emitting spurious tab_selected signals when a theme …
|
|
Reverts `latest_client_id` back to 0, as I misunderstood how the client
IDs are assigned and, without further testing and debugging, I can't
say if this was a bug or a valid default value.
Similarly, a `latest_client_id` of -1 is no longer raising an error.
Fixes #39548.
|
|
Document the `in` operator in String, Array and Dictionary classes
|
|
Object: Add usage hint to instantiate Object properties in editor
|
|
Fixed "Favourite Project" button in Project Manager
|
|
Unhide Skeleton3D menu button
|
|
Fix label percent visible doc description
|
|
Remove the obsolete "2D Pixel" import preset
|
|
Document how to resize a SubViewportContainer to avoid stretching
|
|
Delete bus effect with Delete key
|
|
[Doc] Fix RegEx expression result
|
|
Fix match count for whole word search in editor
|
|
Check if a match borders a new line char when incrementing match counts.
|
|
Fix minor errors to do with `search_all` example in RegEx and
typo in RegExMatch class docs.
|
|
|
|
|
|
Immediately run first iteration after JS FS sync.
|
|
|
|
Which is now run inside an animation frame.
This avoid a 1 frame black screen when setting up the canvas.
|
|
This closes #27534.
|
|
Texture filtering is now defined on a per-node basis, thanks to
bindless textures provided by Vulkan.
This closes #37057.
|
|
Add description to TileSet.is_tile_bound() method
|
|
Re-enable scroll follow on RichTextLabel clear
|
|
Fix Material.render_priority doc: claims opaque objects are sorted
|
|
|
|
|
|
- The repaint code was moved outside of set_current_tab() and to a "_repaint()" private function
- _on_theme_changed() will now only call _repaint() and update()
This means _on_theme_changed() will do only what it needs (repainting the TabContainer to account for the new theme)
fixes #39498
|
|
Opaque objects are rendered using the depth buffer, so the end result
appears sorted, but the opaque objects themselves are not sorted.
|
|
The Image.create_from_data doc describes the "use_mipmaps" argument as a
way to generate mipmaps, but this method only allocates and loads data.
This can cause confusion, where this function reads more or less data
than expected. Update the doc to be more specific that create_from_data
is loading the mipmaps from the raw data.
|
|
Ensure pair callback data is set to null when it's null.
|
|
|
|
|
|
Linux/X11), remove latin variant function.
|
|
This closes #39489.
|
|
|
|
This also clarifies the `in` operator behavior in Object.
|
|
Fixes #36372 as Path2D/Path3D's `curve` property no longer uses a Curve
instance as default value, but instead it gets a (unique) default Curve
instance when created through the editor (CreateDialog).
ClassDB gets a sanity check to ensure that we don't do the same mistake
for other properties in the future, but instead use the dedicated
property usage hint.
Fixes #36372.
Fixes #36650.
Supersedes #36644 and #36656.
Co-authored-by: Thakee Nathees <thakeenathees@gmail.com>
Co-authored-by: simpuid <utkarsh.email@yahoo.com>
|
|
Fix whole word search slowdown in editor
|
|
Reduce repeated iteration through the full text
when counting the number of occurrences of whole
words while searching a file in the editor.
|
|
Fix custom types in node list search
|