Commit Graph

59525 Commits

Author SHA1 Message Date
80a0b4e0b6 Add workaround for emscripten >= 3.1.47 LTO build
(cherry picked from commit 656bc22e28)
2024-03-11 17:28:55 +01:00
afa50c4d2b Fix SoftBody3D for double-precision builds
(cherry picked from commit 701ecd3a0d)
2024-03-11 17:28:54 +01:00
cc95f87b2b [TileSet] Fix crash when deleting dragged polygon point
(cherry picked from commit 0ba7463803)
2024-03-11 17:28:54 +01:00
583b48c43f Fix leak of scene used for customization during export
(cherry picked from commit d103b5570f)
2024-03-11 17:28:54 +01:00
b1b5cb9d6f Bump Rider.PathLocator nuget version, which provides a fix for detecting Rider installations
(cherry picked from commit 703c34a788)
2024-03-11 17:28:54 +01:00
76055c4268 bump the PackageReference "JetBrains.Rider.PathLocator" to 1.0.8
(cherry picked from commit 7f63f4a6bf)
2024-03-11 17:28:54 +01:00
1894129713 [Editor] Add missing ellipses to menu options that open dialogs
(cherry picked from commit dde5368dee)
2024-03-11 17:28:54 +01:00
ac4051f8a8 [Editor] Improve clarity and style of ResourcePicker menu
* Adds ellipses to options opening a new menu
* Adds a descriptive tooltip to `Quick Load`

(cherry picked from commit e5b751b6eb)
2024-03-11 17:28:54 +01:00
5b25a115c8 Editor: Fix skipping normal category followed by custom one
(cherry picked from commit b2f62658a2)
2024-03-11 16:42:34 +01:00
3098b02e56 Show modifier key functionality on all the editor tools
(cherry picked from commit 433c22fb6f)
2024-03-11 16:41:06 +01:00
a5e857019c Fix frame number underflow in visual profiler
Unsigned subtraction underflow caused the frame counter to be locked at
2^64 in the visual profiler until debugger/profiler_frame_history_size
number of frames had passed.

(cherry picked from commit 27dc9fa4c0)
2024-03-11 16:39:46 +01:00
ae6079dbdf Fix incorrect condition for error filtering
Fixes: #87643

The original condition stopped immediately after checking for 'searchText' in the 'Message' field, resulting in premature termination of subsequent checks. This fix ensures that all relevant conditions are appropriately evaluated before determining the filtering outcome.

Additionally, accompanying changes include improved code readability for better comprehension. This adjustment enhances the maintainability of the error filtering mechanism, contributing to a more robust codebase overall.

(cherry picked from commit d81c9c32c5)
2024-03-11 16:39:27 +01:00
82d2375382 Fix editor profiler script function sort order
The engine internally limits the number of functions reported back (to
16 by default). To this point, it's been sort the profiling info in
*ascending* order of time spent, then trimming the list. This meant
we may only see the best (fastest) functions, instead of the worst
that you probably want when profiling.

Now the servers_debugger sort more closely matches the local_debugger
one, which worked fine.

(cherry picked from commit 90a5f23e79)
2024-03-11 16:39:14 +01:00
93fdca17d0 Make viewport message dependent on framerate not physics step
(cherry picked from commit 17e9fd06ce)
2024-03-11 16:36:47 +01:00
7c162351c9 Check is the ref shader valid in visual shader's update_option_menu
(cherry picked from commit ff089f8cea)
2024-03-11 16:36:30 +01:00
fddd0a5098 Fix playback position label update in Audio Stream Importer
The current playback position label doesn't get updated if the playhead is not visible. The label is updated in `_draw_indicator()` at the end of the function, but we return early if the calculated offset falls outside the valid range. This fix moves the label updating above this check, ensuring that the label always gets updated regardless of the visibility of the playhead.

Fixes #86550.

(cherry picked from commit 155bebfdf2)
2024-03-11 16:29:58 +01:00
3ebb5ea482 Display functions that were previously forgotten in Profiler
The array data in `add()` contains these data, but some data may
have been forgotten to be converted into `ServerFunctionInfo`.

This results in some information not being displayed in the Profiler.

(cherry picked from commit 3d3c4e87c7)
2024-03-11 16:29:44 +01:00
b1d67c4fde Stop escaping ' on POT generation
(cherry picked from commit e5022531bf)
2024-03-11 16:29:29 +01:00
7e7bf59f68 Prevent escape key from closing Editor Settings window when filtering for shorcuts
(cherry picked from commit eb565780e7)
2024-03-11 16:29:04 +01:00
4e615b162d Fix infinite loop when calculating zoom level if tile_size * max_zoom < default
(cherry picked from commit 42c672afd6)
2024-03-11 16:24:17 +01:00
8f0966982d GDScript: Fix POT generator skips some nodes (part 2)
(cherry picked from commit e07ec89bdf)
2024-03-11 16:23:38 +01:00
9fa98ebb17 [iOS one-click] Add support for Xcode 15 devicectl.
(cherry picked from commit 33ce138b9b)
2024-03-11 16:15:08 +01:00
01c51db41c Copy track update mode when adding reset key
(cherry picked from commit d96fca371b)
2024-03-11 16:14:31 +01:00
2eda411cca Do not call _validate_script if editor is not enabled
(cherry picked from commit 0fbc857e3f)
2024-03-11 16:11:13 +01:00
e5add91a46 Prevent race condition on initial breakpoints from DAP
(cherry picked from commit 485342408b)
2024-03-11 16:10:56 +01:00
cc38139799 Fix visual shader's screen_uv input preview uses position of node
rather than a sample area like uv

(cherry picked from commit d920bdeda5)
2024-03-11 16:10:14 +01:00
a05e15944e Fix opening docs writing extra navigation history
Fix #82292
Removes extraneous call to change the tab if the page wasn't yet open when opening class member description.

(cherry picked from commit 0506d6f192)
2024-03-11 16:08:20 +01:00
fc42a18ffe [Doc] Clarify bsearch(_custom) behavior
* Added an example for the effect of `before`
* Clarified the arguments to the custom callable can be either order

(cherry picked from commit 06df4abcd3)
2024-03-11 15:23:45 +01:00
b739939459 [Docs][C#] Use PropertyName constants in more places
(cherry picked from commit 2f1f8ee39b)
2024-03-11 15:23:27 +01:00
867df40f13 Address a few issues in Transform3D documentation
(cherry picked from commit abf4894677)
2024-03-11 15:22:59 +01:00
63c13e77e4 [C#] Fix typo in Color documentation
(cherry picked from commit 5aadb8660b)
2024-03-11 15:22:02 +01:00
ba722ea067 [Doc] Clarify some details about deferred calls
(cherry picked from commit 1cc5b0aa0d)
2024-03-11 15:21:28 +01:00
94c9e96056 RTL: Clarify that line, paragraph, and character numbers are zero-indexed
Closes #82885.

(cherry picked from commit 4a1397b58c)
2024-03-11 15:20:28 +01:00
50a240916a [Doc] Fix some incorrect uses of "children"
(cherry picked from commit 9b5cd8e240)
2024-03-11 15:18:58 +01:00
7159bd3bc3 Add necessary elaboration to documentation for Node3D::get_parent_node_3d
(cherry picked from commit 4c8015bec3)
2024-03-11 15:18:39 +01:00
637960597f Document that parse_input_event doesn't influence the OS
(cherry picked from commit 8121446385)
2024-03-11 15:18:21 +01:00
da4aaaa007 [Doc] Fix GDScript casing of String.num_scientific
(cherry picked from commit b384beccc5)
2024-03-11 15:17:57 +01:00
9d5755d20c Clarify behavior of opening a new file in FileAccess
The containing directory must exist for this to succeed.

(cherry picked from commit a775d8bf5a)
2024-03-11 15:17:40 +01:00
2c22a0a590 Additional docs: c# mainloop needs to be registered in the global class
(cherry picked from commit 3122b368c0)
2024-03-11 15:17:18 +01:00
6400a1fd62 Fix "dimensionnal" typo
(cherry picked from commit 9472ccbcdd)
2024-03-11 15:16:57 +01:00
ccc8472c57 Fix some leftover references to hint_albedo in docs
(cherry picked from commit e5266f71b9)
2024-03-11 15:16:37 +01:00
aca96eb406 Fix function description for Font.get_char_size()
Removed description implying you can pass a second char in order to account for kerning

(cherry picked from commit c9bc54637b)
2024-03-11 15:14:42 +01:00
48f0e5f12b Document using RichTextLabel's meta_clicked to handle clickable URLs
(cherry picked from commit ea03154a27)
2024-03-11 15:14:10 +01:00
fb55840d92 Document initial position project settings not affecting run from editor
(cherry picked from commit d3df15f823)
2024-03-11 15:13:42 +01:00
aaf1928940 Improve documentation on Android package unique name
- Document `$genname` behavior.
- Update to match actual validation and Google Play guidelines.

(cherry picked from commit 111908c4ed)
2024-03-11 15:13:16 +01:00
002028ea40 Fix docs for Color class regarding bits per component.
This fixes godot-docs#8906 ( https://github.com/godotengine/godot-docs/issues/8906 )

(cherry picked from commit 0e977e087c)
2024-03-11 15:12:55 +01:00
5a0f95edd2 Document OS.execute() limitations on Android
(cherry picked from commit d94ee14123)
2024-03-11 15:12:22 +01:00
5b63622726 Remove duplicate reference of CUSTOM_ARRAY_RBGA8_URNOM in docs
(cherry picked from commit 02faccd14f)
2024-03-11 15:11:17 +01:00
c3d9191f33 Fix inverted link in docs
Title and url were swapped

(cherry picked from commit 17000bf8c3)
2024-03-11 15:10:39 +01:00
263616aab0 Minor fix in DisplayServer.xml to include Linux & Windows in FEATURE_NATIVE_DIALOG
(cherry picked from commit 2ba6066d5d)
2024-03-11 15:10:11 +01:00