Commit Graph

12387 Commits

Author SHA1 Message Date
b432e108d5 Merge pull request #109791 from Talkashie/master
Typo cleanup pass
2025-08-21 18:39:37 -05:00
ac7703977a Merge pull request #109785 from Calinou/doc-astar-thread-safe
Fix incorrect statement on thread (un)safety in AStar class reference
2025-08-21 18:39:36 -05:00
c8e0845b86 Merge pull request #109813 from bruvzg/exc_note
Clarify that `EXCLUDE_FROM_CAPTURE` only works with native windows.
2025-08-21 06:24:24 -05:00
10e11ec87f Rename SVGTexture to DPITexture. 2025-08-21 11:39:16 +03:00
dd6099617a Clarify that EXCLUDE_FROM_CAPTURE only works with native windows. 2025-08-21 00:14:58 +03:00
be0406946f Merge pull request #109805 from Repiteo/docs/svgtexture-experimental
Docs: Mark `SVGTexture` as experimental
2025-08-20 13:04:24 -05:00
048460b8d5 Merge pull request #109662 from raulsntos/compat-get_forced_export_files
Add default param value to `EditorExportPlatform::get_forced_export_files`
2025-08-20 12:07:17 -05:00
1413b5f910 Docs: Mark SVGTexture as experimental 2025-08-20 10:22:27 -05:00
64af1f9866 fix - Typo in doc of text_editor/theme/highlighting/gdscript/string_name_color 2025-08-20 16:56:50 +09:00
bc7e68dfd1 Typos 2025-08-19 18:32:59 -05:00
8ee499d787 Fix incorrect statement on thread (un)safety in AStar class reference 2025-08-19 20:48:20 +02:00
3d87dcbd64 Merge pull request #109010 from LurkerAbove/viewport-gettexture-docs-add-cscode
Add the C# code equivalent to the documentation of Viewport.GetTexture()
2025-08-18 20:36:48 -05:00
42224bb750 Merge pull request #109694 from bruvzg/old_win_cap
[Windows] Fix color picker on old versions of Windows 10.
2025-08-18 08:29:13 -05:00
f5152699bc Merge pull request #108768 from WinnerWind/fix-zero-threadcount
FIX: Prevent crashing if `max_threads` is zero.
2025-08-18 08:29:04 -05:00
274f88c5b8 [Windows] Fix color picker on old versions of Windows 10. 2025-08-18 09:23:31 +03:00
a1788e09bf Prevent crashing if max_threads is zero.
Adds a note in the docs that a thread count of 0 has the same effect as a thread count of -1.

Change language of WorkerThreadPool in ProjectSettings

Co-Authored-By: Tomasz Chabora <kobewi4e@gmail.com>
2025-08-17 20:12:41 +05:30
702bbb3eab Add default param value to EditorExportPlatform::get_forced_export_files
Add default parameter value to a new parameter added in 4.5 to `EditorExportPlatform::get_forced_export_files` so we can avoid breaking compatibility for GDScript.
2025-08-16 04:16:43 +02:00
d98931c170 Merge pull request #109320 from lavishbehemoth/process-docs
Update _physics_process and _process docs to reflect implementation.
2025-08-15 12:58:45 -05:00
34d01ea07e Merge pull request #109607 from mihe/character-thread-sync
Fix `move_and_slide` forcing synchronization with physics thread
2025-08-15 12:58:44 -05:00
0ea06fe446 Added the C# code equivalent to the note in Viewport.GetTexture()
Define 'viewport' for parity with GDScript's '$viewport'

Co-authored-by: Paul Joannon <437025+paulloz@users.noreply.github.com>
2025-08-14 18:53:34 -07:00
fc7624491e Update _physics_process and _process docs to reflect implementation. 2025-08-14 14:05:09 -04:00
6c907c2d37 Fix move_and_slide forcing synchronization with physics thread
Co-authored-by: Ricardo Buring <ricardo.buring@gmail.com>
2025-08-14 18:58:36 +02:00
e67074d0ab Merge pull request #109552 from Calinou/doc-inputevent-is-action-type
Clarify the types `InputEvent.is_action_type()` will return `true` for
2025-08-14 09:28:02 -05:00
51206892fe Merge pull request #109402 from dawdle-deer/dropdown-search-term
Add "dropdown" keyword to OptionButton and MenuButton
2025-08-13 18:42:15 -05:00
90ba13bd0b Merge pull request #109528 from syntaxerror247/drive-selection-issue
Fix drive selection issue on Android
2025-08-13 18:42:13 -05:00
69015944e1 add dropdown keyword to MenuButton and OptionButton 2025-08-12 15:57:01 -07:00
4596894c8e Clarify the types InputEvent.is_action_type() will return true for 2025-08-12 19:15:46 +02:00
cc9fcbeb1b Merge pull request #109100 from aaronfranke/range-snap
Fix snapping logic in Range
2025-08-12 11:46:36 -05:00
10fd7163d4 Add methods to check which event first triggered "just pressed/released" state. 2025-08-12 16:25:23 +03:00
eee7ce635b Fix snapping logic in Range 2025-08-12 03:32:27 -07:00
5bcf9a5a57 Fix drive selection issue on Android 2025-08-11 21:47:00 +05:30
510c8e642c fix function used in the code example 2025-08-10 18:24:13 -03:00
2560ddbce0 Add CameraServer camera_feeds_updated signal, and document async behavior 2025-08-08 03:53:41 +09:00
68e38b5d9c Merge pull request #109242 from Calinou/doc-tree-item-collapsed-signal
Document `Tree.item_collapsed` also being emitted when the item is expanded
2025-08-06 12:01:20 -05:00
ff5d738f16 Merge pull request #109208 from SheepYhangCN/get-rendering-driver-name-desc-fix
Fix inaccurate description of `get_current_rendering_driver_name`
2025-08-06 12:01:19 -05:00
5a556c6528 Merge pull request #109118 from bruvzg/svg_nine
Add `SVGTexture`support to `NinePatchRect`, `TextureProgressBar` and `StyleBoxTexture`.
2025-08-06 12:01:11 -05:00
22285c8fd9 Document OS.get_video_adapter_driver_info() being slow to call the first time
- Add a code sample that shows how to call it from a thread
  to avoid blocking the engine.
2025-08-06 14:39:16 +02:00
e4131712a4 Document Tree.item_collapsed also being emitted when the item is expanded
This also mentions that the signal is emitted even when the item is
expanded/collapsed through code.
2025-08-04 21:47:18 +02:00
dd129b6cef Merge pull request #109095 from allenwp/docs10896
Update HDR 2D documentation to include Compatibility support.
2025-08-04 12:04:18 -05:00
610c98c1ce Add SVGTexturesupport to NinePatchRect, TextureProgressBar and StyleBoxTexture. 2025-08-04 08:57:30 +03:00
45509c284c Merge pull request #108029 from Joy-less/clarify-visible_characters
Clarify `visible_characters`
2025-08-03 10:51:18 -05:00
a07306b532 Fix inaccurate description of get_current_rendering_driver_name 2025-08-02 03:14:27 +08:00
b33c3de691 Merge pull request #109180 from Calinou/doc-rigidbody-center-of-mass-auto
Clarify the behavior of `RigidBody.CENTER_OF_MASS_MODE_AUTO`
2025-08-01 11:45:20 -05:00
ad825a36ec Clarify the behavior of RigidBody.CENTER_OF_MASS_MODE_AUTO 2025-08-01 00:38:33 +02:00
a37cfd0974 Add search keywords for CheckButton and ButtonGroup 2025-07-31 23:23:27 +02:00
dda2614aca i18n: Sync translations with Weblate 2025-07-31 22:27:25 +02:00
eee305b9bd Merge pull request #108921 from Giganzo/button-disabled
Fix button down signal not emitting on first press after being disabled
2025-07-31 10:39:10 -05:00
f9313aa27b Merge pull request #108924 from bruvzg/ac17
Update access-kit to 0.17.0
2025-07-31 10:39:09 -05:00
c68213fe2a Merge pull request #102350 from IceflowRE/update_add_item_doc
Update OptionButton documentation
2025-07-31 10:39:07 -05:00
22a54671ef Merge pull request #98250 from Calinou/doc-physics-spiral-of-death
Improve documentation on "physics spiral of death" in ProjectSettings
2025-07-31 10:39:04 -05:00