9752 Commits

Author SHA1 Message Date
Aaron Franke
f70a8accdb
[4.2] GLTF: Fix bad pointer to ImporterMeshInstance3D root node at runtime 2025-03-09 15:36:04 -07:00
Rémi Verschelde
369b981a75
Merge pull request #98878 from aaronfranke/4.2-gltf-preserve-visibility
[4.2] GLTF: Preserve node visibility on import
2024-12-05 01:11:08 +01:00
demolke
31017f89ce
Update vertex color import to handle Blender 4.2 upwards
Blender commit 0f0a8df8a9 which is landing in 4.2 deprecated `vertex_colors` GLTF property, use `export_vertex_color` instead.

(cherry picked from commit 7864abbeec103b2a3a2aa9713642a19b5a962b7e)
2024-12-05 01:03:19 +01:00
Aaron Franke
8bf8028d3b
[4.2] GLTF: Preserve node visibility on import 2024-11-08 14:21:44 -08:00
Rémi Verschelde
3504c98c12
Revert "[MP] Handle cleanup of "scene cache" nodes"
This reverts commit 8544106b7e4d9add7905da08e3cd3bf720f3cb20.

This caused regression #90908.
2024-07-31 22:47:02 +02:00
Rémi Verschelde
c8356fb9d4
Bump version to 4.2.3-rc 2024-04-17 16:05:28 +02:00
Zae
0b734a6371
C#: Fix return type hint for methods.
(cherry picked from commit 51c54b03d1aac56c2e55a1b7358140bd6cd00de4)
2024-04-09 13:07:18 +02:00
aaronp64
6710381d9a
Fix ZIPReader.get_files() error on empty zip files
Added check for empty zip file before trying to look at first file

Fixes #90388

(cherry picked from commit 2dad2fbce2db76d27dc2504c34aedf302ef0a74f)
2024-04-08 23:07:16 +02:00
Haoyu Qiu
7d1c5125a0
Fix node config warning not updating for Multiplayer{Spawner,Synchronizer}
(cherry picked from commit 6feb43200b95168dda261573ca1765a67b8a0fff)
2024-04-08 15:48:31 +02:00
A Thousand Ships
3bb74adc45
[Doc] Document loading behavior with relative paths
(cherry picked from commit 2508c2e3093b3cb32a2aead46cef7d484e3148c9)
2024-04-08 15:48:31 +02:00
Raul Santos
d2433970c9
C#: Use get_instance_binding instead of set
(cherry picked from commit a351c4bbe3065912ffa8ed43263aaa6b35774e1b)
2024-04-08 15:48:30 +02:00
kleonc
a8851277d2
[C#] Fix Transform3D.InterpolateWith applying rotation before scale
(cherry picked from commit e2ed63b313e3eff714e32f2cd2d01db9f0e2ea9d)
2024-04-08 15:48:29 +02:00
Danil Alexeev
d81e6e951c
Update @GDScript documentation
(cherry picked from commit 0c48845247903ac5a8fe0477d31e262e58c91f1b)
2024-04-08 15:48:28 +02:00
Zae
1b90b9ad05
C#: Fix issues for StringName reference in CSharpInstanceBridge.Get.
(cherry picked from commit 1e14503715d20bc1fc10f0343e7eecf6d6707feb)
2024-03-12 17:02:19 +01:00
Max Hilbrunner
61f4d6252b
Fix removing connected peer during disconnection
(cherry picked from commit bd8380db5534af18fb4fab76daac77ef420becb4)
2024-03-11 23:29:11 +01:00
A Thousand Ships
4e5b545c04
[GDScript] Prevent running String number functions on invalid literal
Prevents printing excessive errors.

(cherry picked from commit 66d55e62f009876b4e71d988a7a1bfb16c8230fa)
2024-03-11 23:26:36 +01:00
Aaron Franke
16d154e8fd
Fix GLTF exporting invalid meshes and attempting to export gizmo meshes
(cherry picked from commit 2d38c980ee91bae816fd84e6cffb779c291ab089)
2024-03-11 23:25:27 +01:00
Aaron Franke
7513a79555
Fix crash when importing a GLTF file with a skeleton as the root
(cherry picked from commit 4c8d69f264459a9b8b72fa7ffe8a972e821af1a1)
2024-03-11 23:25:13 +01:00
Fabio Alessandrelli
0b03a281e1
[MP] Fix remote net ID cleanup
Synchronizers for spawned nodes were not correctly keeping track of the
net ID assigned by the remote, preventing the replication from
performing the proper cleanup.

This resulted in errors being thrown when sync messages were received
after despawn (which is possible due to their unreliable nature).

(cherry picked from commit 89dacb88ec57dc7c7deb72defac49b60da2e4ca6)
2024-03-11 23:21:59 +01:00
Fabio Alessandrelli
1dfd92797e
[MP] Fix spawned nodes not working after reset
Ensures that spawnable nodes (i.e. spawned nodes over which the local
instance has authority) always have a network ID, since they may lose it
after the multiplayer is reset (e.g. when changing the multiplayer peer).

(cherry picked from commit cb08f2a9689eff85256e020608ac264bcdaf57f7)
2024-03-11 23:21:51 +01:00
Fabio Alessandrelli
966e1a3d71
[MP] Fix auth not waiting for confirmation in some cases
The auth implementation was treating any received packet as a remote
confirmation after the peer was confirmed locally.

It now correctly awaits for the remote confirmation packet before
admitting new peers.

(cherry picked from commit 754036f82f8c404972480c18d81130945fcbb3d9)
2024-03-11 23:08:35 +01:00
nikitalita
360543361b
fix next_ogg_packet never returning false
(cherry picked from commit 86a914575fba337f5379dc0970676b9cbfdd966d)
2024-03-11 23:06:28 +01:00
Jovan Gerodetti
9f4eac82a2
GDScriptAnalyzer is unaware of properties from other Languages
Co-authored-by: K. S. Ernest (iFire) Lee <fire@users.noreply.github.com>
Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com>
(cherry picked from commit 030aa41a99dc152b99396c3fe2e18873fa9ea497)
2024-03-11 23:06:00 +01:00
Sofox
b3b961247f
Fix for RegEx.sub truncating string when 'end' is used
(cherry picked from commit 46b420f7ee5361819b11dff50e6ffbb038f85696)
2024-03-11 17:57:00 +01:00
Thaddeus Crews
d0a36f8111
C#: Match Core implementation of BinToInt & HexToInt
(cherry picked from commit 48428bd087cfc084df0e9ada32a4e89d85083ef6)
2024-03-11 17:39:20 +01:00
Paul Joannon
f546d40367
Delay fs update when populating path bimap
(cherry picked from commit 999180d5b5c1023f441100e7b45a3aa346a2e898)
2024-03-11 17:37:14 +01:00
Michael Wörner
167b4c071c
Fixed ~CSharpScript() holding on to a mutex longer than necessary, creating potential for a deadlock.
(cherry picked from commit 9d50a486bf00592888664828b35d703c46eaa9b0)
2024-03-11 17:36:44 +01:00
Zae
587d689c5f
C#: Fix not assigning runtime_initialized when initializing with AOT.
(cherry picked from commit e868a9f577ede620aeb76a60097c470de3296233)
2024-03-11 17:36:20 +01:00
Mikael Klasson
bbc90d8c8a
fix: use correct number in GD0103 link
(cherry picked from commit a2b183067c6e218146e51110477ab4300076e30e)
2024-03-11 17:35:25 +01:00
Ivan Shakhov
b1b5cb9d6f
Bump Rider.PathLocator nuget version, which provides a fix for detecting Rider installations
(cherry picked from commit 703c34a78898c3925d07c589400e63d03f4e1a5e)
2024-03-11 17:28:54 +01:00
Ivan Shakhov
76055c4268
bump the PackageReference "JetBrains.Rider.PathLocator" to 1.0.8
(cherry picked from commit 7f63f4a6bf45a928454e01a28202428110751a39)
2024-03-11 17:28:54 +01:00
Nông Văn Tình
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 d81c9c32c5ea4e91de3038b30c4a7a9ab78b7481)
2024-03-11 16:39:27 +01:00
Danil Alexeev
8f0966982d
GDScript: Fix POT generator skips some nodes (part 2)
(cherry picked from commit e07ec89bdf186844494142a56dd764ad712e4cdb)
2024-03-11 16:23:38 +01:00
A Thousand Ships
63c13e77e4
[C#] Fix typo in Color documentation
(cherry picked from commit 5aadb8660b512548713b3e69e01e2b9d32befc15)
2024-03-11 15:22:02 +01:00
A Thousand Ships
50a240916a
[Doc] Fix some incorrect uses of "children"
(cherry picked from commit 9b5cd8e2400ac305b3e47229a8981327c22823f0)
2024-03-11 15:18:58 +01:00
clayjohn
abde3b53da
Fix wrong indexing when generating dummy tangents in GLTF import
(cherry picked from commit 14c776f798eb678d4d73b9cec81a981bb1b5cb26)
2024-03-11 15:00:43 +01:00
clayjohn
6ba9c6bf6d
Avoid singularity when generated tangents and validate that tangents are good enough when using compression
(cherry picked from commit 781cd27fe432349c36c5363be4f879b1c3c48c10)
2024-03-11 15:00:43 +01:00
David Snopek
4142e57082
Fix crash when using OpenXR extension wrappers from GDExtension
(cherry picked from commit 713ea0629a8c767e117836af4646cf88deca872a)
2024-03-11 15:00:43 +01:00
clayjohn
d5ac4564b0
Remove workaround in GLTF exporter that double converts ra textures to rg
(cherry picked from commit 4f41b9494353adb529af6c062c86361988481e27)
2024-03-11 15:00:43 +01:00
Mikael Hermansson
fc78f766d1
Allow LSP to process multiple messages per poll
(cherry picked from commit e2485044a1b33628e6149d4f930b6fe065743c9d)
2024-03-11 15:00:42 +01:00
Rémi Verschelde
fe45b36d52
basis_universal: Unbundle jpgd, use our newer copy
(cherry picked from commit 48ed0474e2bc6e165e8dd30740d21536e6d0e40c)
2024-03-11 15:00:42 +01:00
mxaddict
e45579fcc6
Added proper timeout for blender rpc connection
(cherry picked from commit 857586b7ae41f1e50ad3ff85e42cb84df159d7c6)
2024-03-11 15:00:41 +01:00
A Thousand Ships
c17688fa6c
Fix running tests in template builds
Also fixes some errors with 3D disabled
2024-02-27 16:03:18 +01:00
Pedro J. Estébanez
d8cbaa3a8b
Fix warning in MSVC
(cherry picked from commit fe8c217b7cc85b1f35dc54eb342a8451828a7418)
2024-02-27 15:59:48 +01:00
Michael Wörner
7ca66462ac
Fixed an issue that could cause a crash when encountering a zero-length packet in an OGG stream.
A zero-length memcpy into a null pointer itself does not fail, but for gcc with optimizations, this can cause incorrect code to be generated further down the line since the pointer is then assumed to be non-null.
Now stripping zero-length packets and pages without packets from the OggPacketSequence during import. This prevents various warning and error messages for files that end on a zero-length packet.

(cherry picked from commit a4db4ae6581a6e4f051d8aea2c562c1165d22590)
2024-02-27 15:45:39 +01:00
A Thousand Ships
e070bbc77e [C#] Fix Encloses failing on shared upper bound for AABB and
`Rect2(I)`

(cherry picked from commit 227a165ce4ecf2c040263075ed4b23862519af6f)
2024-01-25 18:56:36 +01:00
Danil Alexeev
c35e05e7b1 GDScript: Fix accessing static function as Callable in static context
(cherry picked from commit 10dcb21d8b4f36de45b623ac0c9f14f3a7f9a96c)
2024-01-25 18:45:01 +01:00
Danil Alexeev
ee1034d355 GDScript: Fix POT generator skips some nodes
(cherry picked from commit 1aa242f7c4f5cdc8712e783817fabc60224f21cb)
2024-01-25 18:32:37 +01:00
jsjtxietian
bce0ada5f4 Prompt require editor restart to user when gizmo color changed
(cherry picked from commit b0ccd5c84f460d875d127455741d817ece6d3bed)
2024-01-25 18:32:37 +01:00
eldidou
b34af3aa5a Speed up GDScript::get_must_clear_dependencies()
get_must_clear_dependencies() has a N^3*log(N) time complexity, and this can very quickly slow down the quitting process as more gdscripts are added in a project.
This change improves it to N^2*log(N).
Instead of using all the inverted dependencies, we do the same with all (non-inverted) dependencies, which is N times faster.

Fixes #85435

(cherry picked from commit 0d77c3e09228b847658de3453b36fa78e073222c)
2024-01-25 18:32:36 +01:00