Ninni Pipping
9a5af8e793
Clarify that event handling does not affect `Input`
...
(cherry picked from commit 732ad382a6
)
2023-05-12 12:14:45 +02:00
Christopher Foo
28012c40fb
Ensure WindowData minimized/maximized are mutually exclusive
...
The window manager can break the assumption that
fullscreen/maximized/minimized values are mutually exclusive.
(cherry picked from commit e4d052e284
)
2023-05-12 12:14:30 +02:00
Omar Shehata
bab96e71d2
Fix double tap & drag on Android
...
(cherry picked from commit 0c94750642
)
2023-05-12 12:14:14 +02:00
Fredia Huya-Kouadio
07af84689f
Follow up to https://github.com/godotengine/godot/pull/76399 to fix input ANR in the Godot Android editor
...
(cherry picked from commit 367061cf9c
)
2023-05-12 12:12:05 +02:00
Pedro J. Estébanez
d07d4d90d0
Allow concurrent buffering and dispatch of input events
...
(cherry picked from commit f369ed9223
)
2023-05-12 12:11:58 +02:00
kleonc
4b11fc65f1
Make `LocalVector` respect its `tight` template parameter
...
(cherry picked from commit 0b944e1a68
)
2023-05-12 12:11:41 +02:00
Michael Alexsander
b7206e25bf
Improve some descriptions in the OS docs
...
(cherry picked from commit 6db12c5e50
)
2023-05-12 12:11:23 +02:00
Ninni Pipping
5d93de88a8
Fix size error in `BitMap.opaque_to_polygons`
...
Previous estimate of upper limit on size was incorrect
(cherry picked from commit 249784ed53
)
2023-05-12 12:10:50 +02:00
Pedro J. Estébanez
813fc0940d
Allow creation of rendering buffers at any time
...
(cherry picked from commit d4c46f15ae
)
2023-05-12 12:10:35 +02:00
kobewi
64b15c8ec1
Add info label to TileMap editor
...
(cherry picked from commit 979b53aba4
)
2023-05-12 12:07:14 +02:00
Bastiaan Olij
3a90fa677b
Fix incorrect HTC action map entries
...
(cherry picked from commit e15358dc67
)
2023-05-12 12:07:02 +02:00
jmb462
f3b608d331
Fix regression with right click on main selection
...
(cherry picked from commit d59cdb8327
)
2023-05-12 12:07:02 +02:00
Jean-Michel Bernard
53df7c18e0
Fix right click in selection of additional caret
...
(cherry picked from commit 5c06c030f2
)
2023-05-12 12:07:02 +02:00
Aaron Franke
f49c69a1e7
Fix small mistake in docs, "antecedents" -> "ancestors"
...
(cherry picked from commit 740b0713a2
)
2023-05-12 12:07:02 +02:00
VolTer
78c190f4f5
Add an example for how to use AudioStreamGenerator
...
(cherry picked from commit 9d77caaf95
)
2023-05-12 12:07:02 +02:00
VolTer
e530168fb8
Document TextServerDummy
...
(cherry picked from commit c8e06fe838
)
2023-05-12 12:07:02 +02:00
UltraBIF
4b63ce83d2
Fixed various typos across the docs
...
(cherry picked from commit 8106d33d0f
)
2023-05-12 12:07:02 +02:00
David Turner
0566ac68de
Explain why an image would be invalid for a texture
...
(cherry picked from commit 43a7cb093c
)
2023-05-12 12:07:02 +02:00
mashumafi
0cb1fd3a61
Wait for navigation baking to finish before destruction
...
(cherry picked from commit a93a2e519d
)
2023-05-12 12:07:01 +02:00
kobewi
d56c4f960c
Remove erroneous signal connection
...
(cherry picked from commit 88ea3dd4db
)
2023-05-12 12:07:01 +02:00
kobewi
19b998396c
Close built-in shaders when closing scene
...
(cherry picked from commit aaf02ec04a
)
2023-05-12 12:07:01 +02:00
Bastiaan Olij
a5cb7a5eb5
Expose viewports render targer RID
...
(cherry picked from commit ab60d3b65c
)
2023-05-12 12:07:01 +02:00
kobewi
0277f57b6f
Some clarifications on screen-space coordinates
...
(cherry picked from commit 33b9be27d3
)
2023-05-12 12:07:01 +02:00
Pedro J. Estébanez
907b10fb96
Fix additional cases of breakage of rendering effects
...
(cherry picked from commit c58e50adcc
)
2023-05-12 12:07:01 +02:00
clayjohn
2435c9426d
Use proper UV in cubemap downsampler raster
...
This removes bias in cubemap downsampling shader that resulted in the bottom of cubemaps being over represented
(cherry picked from commit fb77021559
)
2023-05-12 12:07:01 +02:00
Tetane
e68e2fad25
Use a SubViewport for CanvasItem inspector preview
...
(cherry picked from commit d3792a2373
)
2023-05-12 12:07:00 +02:00
HolonProduction
a07ad181ab
Preserve scene unique names when saving branch as scene.
...
(cherry picked from commit 7814dedc91
)
2023-05-12 12:07:00 +02:00
VolTer
70f7fcd208
Light3D show scaling warning immediately
...
(cherry picked from commit 818d57b5b4
)
2023-05-12 12:07:00 +02:00
Tefatika
b532dd7626
Fixed error messages when setting all_tab_in_front of TabContainer
...
Some signal handlers weren't unregistered when removing the wrapped
child TabBar, which resulted in errors printed when the TabBar was
removed and added again when the flag was updated
(cherry picked from commit abd894daf7
)
2023-05-12 12:07:00 +02:00
Tefatika
e58001bd0d
Command Palette search now also uses original English command names
...
Both localized and non localized names will be used while filtering
The highest score between the two will be picked when determining
the entries order
(cherry picked from commit 09460cfaaf
)
2023-05-12 12:07:00 +02:00
clayjohn
9d257f10c0
Use DXT1 when compressing PNGs with RGB format
...
This results in much smaller file sizes with the same quality
(cherry picked from commit f84c6df8d1
)
2023-05-12 12:07:00 +02:00
Lyuma
2a0597d0cb
import: Fix Silhouette used incorrect index.
...
Fixes bind pose mistake from using i (mesh skin index) instead of bone_idx (skeleton bone index).
Fixes #76448
(cherry picked from commit d33a734ac5
)
2023-05-12 12:07:00 +02:00
bruvzg
ebaf3cc9ab
[iOS] Fix loading of GDExtension dylibs auto converted to framework.
...
(cherry picked from commit ad4d565ee7
)
2023-05-12 12:06:59 +02:00
Justin Wash
268b60ddd6
Fix infinite loop in Build2DFaces::_find_edge_intersections
...
(cherry picked from commit 1ac2c537da
)
2023-05-12 12:06:59 +02:00
K. S. Ernest (iFire) Lee
0c312c7a08
Fix CSG edge case causing intersection line to hit on common edge of 2 triangles.
...
The previous implementation assumed that the intersection entered or exited a
shape when it hit right on the common edge of 2 triangles. However, there is
also a case where it just "skirts" the other shape on the outside.
To fix this, we added code to check the intersection distance and if the
normals of the faces are pointed in the same direction as the intersection or
not (e.g. inner product > 0). This handles the case where the intersection
line hits the common edge of 2 triangles and skirts the other shape on the
outside.
Extended code to cover a third case.
Fixes #58637 .
Co-authored-by: OldBelge <StevenGeens@users.noreply.github.com>
(cherry picked from commit eaa84bc682
)
2023-05-12 12:06:59 +02:00
kobewi
c8d64e8580
Fix another collision shape editor crash
...
(cherry picked from commit 01c32dffaf
)
2023-05-12 12:06:59 +02:00
kobewi
fdf66b3472
Fix CollisionShape2D editor crash
...
(cherry picked from commit e5d0bb1605
)
2023-04-28 17:16:53 +02:00
Rémi Verschelde
2d74ee0e5b
Update changelog for 4.0.3
2023-04-27 08:51:08 +02:00
George Marques
21bb5b9c0e
GDScript: Don't fail when freed object is return
...
This is check is a bit too eager. The user should be able to handle the
return value even if it's a freed object.
(cherry picked from commit abbdf80643
)
2023-04-27 08:49:29 +02:00
George Marques
aff0340486
GDScript: Fix wrong increment for disassembly of lambda
...
(cherry picked from commit 5b49382d38
)
2023-04-27 08:49:29 +02:00
Pedro J. Estébanez
908325c29e
Fix unsupported sampler filter used for voxel GI
...
(cherry picked from commit 09aa1bbdb3
)
2023-04-27 08:43:30 +02:00
Pedro J. Estébanez
a5779ff281
Fix breakages of volumetric fog on voxel GI changes
...
(cherry picked from commit 2beed0d5dc
)
2023-04-27 08:43:23 +02:00
kobewi
37c89f78ac
Improve reliability of 2D shape editor redrawing
...
(cherry picked from commit d8e39912f8
)
2023-04-27 08:42:54 +02:00
bitsawer
a0a95c7bc7
Fix Shader Preprocessor line numbering when disabled
...
(cherry picked from commit 34896d8e89
)
2023-04-27 08:41:43 +02:00
George Marques
ee9a268fd7
GDScript: Use default path in test generator if not provided
...
Since it's almost always used with the same path, assume it is running
from the Godot source root.
(cherry picked from commit 221deb1cc1
)
2023-04-27 08:41:36 +02:00
Devin
1b74572377
Updated GDScript example to use clear_surfaces() and C Sharp example to use ClearSurfaces() instead of non-existent surface_remove() and SurfaceRemove()
...
(cherry picked from commit 3b615ed789
)
2023-04-27 08:41:23 +02:00
Rémi Verschelde
ba004ea1c3
Merge pull request #76476 from YuriSizov/4.0-cherrypicks
...
Cherry-picks for the 4.0 branch (future 4.0.3) - 3rd batch
2023-04-26 17:57:45 +02:00
Yuri Sizov
e7f4af0913
Update the changelog for 4.0.3
2023-04-26 15:50:20 +02:00
VolTer
7f09c3d2fc
Provide an example on how to use ImmediateMesh
...
(cherry picked from commit 4eabad6c26
)
2023-04-26 14:51:01 +02:00
Yuri Sizov
56110a354c
Err when trying to build the editor without its required modules
...
(cherry picked from commit a145194268
)
2023-04-26 14:51:01 +02:00