Commit graph

76495 commits

Author SHA1 Message Date
Thaddeus Crews
84c0ec04f3
Core: Integrate semantic constants in math structs
- Excludes self-explanatory constants (ZERO, ONE, etc)
2025-08-19 10:15:08 -05:00
Thaddeus Crews
0c51ede243
Merge pull request #109625 from aaronfranke/gltf-texture-sampler-crash
GLTF: Fix crash reading texture sampler for non-existent texture
2025-08-15 12:58:48 -05:00
Thaddeus Crews
2853d91191
Merge pull request #109176 from SchultzenDK/fix-script-clears-gizmos
Stop clearing editor_plugin_screen on script edit
2025-08-15 12:58:47 -05:00
Thaddeus Crews
a43e6e68cc
Merge pull request #100813 from ryevdokimov/prevent-selecting-hidden-transform-gizmo
Fix being able to grab hidden transform gizmo handles
2025-08-15 12:58:47 -05:00
Thaddeus Crews
8892a8d362
Merge pull request #109612 from dsnopek/emit-signal-no-alloca
Don't use `alloca()` in `Object::emit_signalp()` to prevent stack overflow
2025-08-15 12:58:46 -05:00
Thaddeus Crews
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
Thaddeus Crews
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
Aaron Franke
821fecd933
GLTF: Fix crash reading texture sampler for non-existent texture 2025-08-14 19:25:32 -07:00
LavishBehemoth
fc7624491e Update _physics_process and _process docs to reflect implementation. 2025-08-14 14:05:09 -04:00
Mikael Hermansson
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
David Snopek
3eed53686b Don't use alloca() in Object::emit_signalp() to prevent stack overflow 2025-08-14 09:54:59 -05:00
Thaddeus Crews
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
Thaddeus Crews
6f298b6642
Merge pull request #109548 from bruvzg/shader_x
Improve shader overloaded function error reporting.
2025-08-14 09:28:01 -05:00
Thaddeus Crews
a02ff4402e
Merge pull request #109577 from AdriaandeJongh/clarify-build-version
[Docs] Mention 'build version' in iOS, macOS, and visionOS export docs
2025-08-14 09:28:00 -05:00
Thaddeus Crews
f3b908bcc1
Merge pull request #109608 from syntaxerror247/patch-2
Android: Fix build command for AAB export
2025-08-14 09:27:59 -05:00
Thaddeus Crews
7726f6e89b
Merge pull request #108453 from MarianoGnu/ms/dont-duplicate-scripts
Never duplicate Scripts when duplicating resources recursively
2025-08-14 09:27:59 -05:00
MarianoGnu
5033a6af07 Never duplicate Scripts when duplicating resources recursively
This allows to duplicate PackedScenes safely
Fixes #108220
2025-08-14 10:26:48 -03:00
Anish Mishra
1763b43dca
Android: Fix build command in standard AAB export 2025-08-14 17:13:21 +05:30
Thaddeus Crews
de463e0241
Merge pull request #109564 from timothyqiu/scene-create-3d
SceneCreateDialog: Hide 3D Scene option when 3D editor is disabled
2025-08-13 18:42:16 -05:00
Thaddeus Crews
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
Thaddeus Crews
1ecbd75c07
Merge pull request #109593 from ShadowCow13/animation-slice-name
Fix name included in animation when saved from slice in scene importer
2025-08-13 18:42:14 -05:00
Thaddeus Crews
90ba13bd0b
Merge pull request #109528 from syntaxerror247/drive-selection-issue
Fix drive selection issue on Android
2025-08-13 18:42:13 -05:00
Thaddeus Crews
583f3bfb97
Merge pull request #109556 from devloglogan/mobile-motion-vec-fix
Fix mobile renderer motion vectors
2025-08-13 18:42:13 -05:00
Thaddeus Crews
5a9a05e255
Merge pull request #109584 from kleonc/tile_terrain_preview_icon_fix_transformed_alternative
Fix `TileMapLayer` terrain preview icons for transformed alternative tiles
2025-08-13 18:42:12 -05:00
Thaddeus Crews
a245f21b3b
Merge pull request #109480 from Rindbee/apply-different-strategies-when-check-theme-override-properties
Disallow clicking to toggle the checkbox of a theme override of type `Resource` to checked
2025-08-13 18:42:11 -05:00
Thaddeus Crews
eeb6ac01e8
Merge pull request #109530 from bruvzg/svg_alloc
[TVG] Use heap for XML parser allocs.
2025-08-13 18:42:10 -05:00
shadowcow13
c6c4c55146 Fix name included in animation when saved from slice in scene importer 2025-08-13 16:53:43 -06:00
Adriaan de Jongh
a8bcf40c40 mention 'build version' in iOS, macOS, and visionOS export docs 2025-08-13 23:22:31 +02:00
kleonc
5ba1d0ff97 Fix TileMapLayer terrain preview icons for transformed alternative tiles 2025-08-13 18:35:51 +02:00
风青山
39141e7b9c
Disallow clicking to toggle the checkbox of a theme override of type Resource to checked
These resources are external, but can be further categorized as follows:

1. Imported resource;
2. Embedded resource (no resource path, provided by the engine);
3. Other text-based resource.

Resources of different categorie may need different strategies.

Currently, for resource types, it is up to the user to decide what to do
next.  Clicking to toggle checkboxes is not allowed, but you can still
manipulate resources through the `EditorResourcePicker`'s context menu
(right-click on a resource in the inspector or click the down arrow icon
next to the resource to open the menu).
2025-08-13 16:19:42 +08:00
Haoyu Qiu
69613d2099 SceneCreateDialog: Hide 3D Scene option when 3D editor is disabled 2025-08-13 13:54:39 +08:00
Hazel Kennedy
69015944e1 add dropdown keyword to MenuButton and OptionButton 2025-08-12 15:57:01 -07:00
devloglogan
fb829bdd08 Fix mobile renderer motion vectors regression 2025-08-12 16:45:31 -05:00
Hugo Locurcio
4596894c8e
Clarify the types InputEvent.is_action_type() will return true for 2025-08-12 19:15:46 +02:00
Thaddeus Crews
8aa37cab89
Merge pull request #109469 from ryevdokimov/fix-previews
Fix cinematic preview causing the editor redraw continuously and aspect ratio not updating in camera preview
2025-08-12 11:46:40 -05:00
Thaddeus Crews
fa5035f72a
Merge pull request #109465 from ryevdokimov/fix-ctrl-command-rotate
Fix node can't be rotated by holding ctrl/command while in select mode
2025-08-12 11:46:39 -05:00
Thaddeus Crews
2a526028b1
Merge pull request #108792 from arkology/find-in-files-panel-sizing
Fix `FindInFilesPanel` sizing issues
2025-08-12 11:46:38 -05:00
Thaddeus Crews
916af4680c
Merge pull request #109522 from KoBeWi/resource_of_type_Folder
Don't open folders as file in script editor
2025-08-12 11:46:37 -05:00
Thaddeus Crews
cc9fcbeb1b
Merge pull request #109100 from aaronfranke/range-snap
Fix snapping logic in Range
2025-08-12 11:46:36 -05:00
Thaddeus Crews
a420585780
Merge pull request #109540 from bruvzg/input_timestamps
Add methods to check which event first triggered "just pressed/released" state.
2025-08-12 11:46:35 -05:00
Thaddeus Crews
9016df63f7
Merge pull request #109539 from Giganzo/shortcut-reset
Fix shortcut reset for spatial_editor/tool_select
2025-08-12 11:46:34 -05:00
Thaddeus Crews
29ff6c3469
Merge pull request #107681 from m4gr3d/revert_remove_compress_native_lib_option
Revert the removal of the `gradle_build/compress_native_libraries` export option
2025-08-12 11:46:33 -05:00
Pāvels Nadtočajevs
c3cc1ba8e4
Improve shader overloaded function error reporting. 2025-08-12 16:58:43 +03:00
Pāvels Nadtočajevs
10fd7163d4
Add methods to check which event first triggered "just pressed/released" state. 2025-08-12 16:25:23 +03:00
Aaron Franke
af8bdac5a9
Use r128.h for high precision snapping 2025-08-12 04:11:33 -07:00
Aaron Franke
eee7ce635b
Fix snapping logic in Range 2025-08-12 03:32:27 -07:00
Giganzo
54ac5cd068 Fix shortcut reset for spatial_editor/tool_select 2025-08-12 10:46:20 +02:00
Fredia Huya-Kouadio
74eba7a770 Revert the removal of the gradle_build/compress_native_libraries export option 2025-08-11 19:01:11 -07:00
Pāvels Nadtočajevs
c687d7e7b0
[TVG] Use heap for XML parser allocs. 2025-08-11 21:11:59 +03:00
Anish Mishra
5bcf9a5a57 Fix drive selection issue on Android 2025-08-11 21:47:00 +05:30