summaryrefslogtreecommitdiff
path: root/modules
AgeCommit message (Collapse)Author
2023-01-31Merge pull request #72422 from BastiaanOlij/openxr_set_active_setsRémi Verschelde
Added methods to OpenXR interface to set which action sets are active
2023-01-31Merge pull request #72427 from MinusKube/csg-polygon-path-bugRémi Verschelde
Don't generate CSGPolygon3D shape before the assigned path is inside tree
2023-01-31Merge pull request #72212 from anvilfolk/gdtestnamesRémi Verschelde
Add option to print filenames in GDScript unit testing
2023-01-30Add option to print filenames in GDScript unit testingocean (they/them)
2023-01-31Don't generate CSGPolygon3D shape before the assigned path is inside treeMinusKube
2023-01-31Added methods to OpenXR interface to set which action sets are activeBastiaan Olij
2023-01-30Merge pull request #72031 from reduz/change-high-quality-texture-importRémi Verschelde
Refactor high quality texture import
2023-01-30Merge pull request #72208 from bruvzg/rtl_fix_thr_crashRémi Verschelde
[RichTextLabel] Fix thread unsafe `set_physics_process_internal` usage. Use `WorkerThreadPool` instead of creating new threads.
2023-01-30Merge pull request #72400 from vnen/gdscript-match-release-consistencyRémi Verschelde
GDScript: Fix match branches return check on release
2023-01-30Merge pull request #72390 from vonagam/fix-allowed-vararg-ptrcallRémi Verschelde
GDScript: Fix vararg method calls with exact arguments
2023-01-30[RichTextLabel] Fix thread unsafe `set_physics_process_internal` usage. Use ↵bruvzg
`WorkerThreadPool` instead of creating new threads.
2023-01-30GDScript: Fix match branches return check on releaseGeorge Marques
The check for existence of `return` only existed on debug builds for match branches. This could lead on an invalid error after exporting. Now this is checked on relase too, so it works the same as the editor.
2023-01-30GDScript: Fix vararg method calls with exact argumentsDmitrii Maganov
2023-01-30Merge pull request #72381 from yedpodtrzitko/yed/update-fileaccess-docsRémi Verschelde
docs: replace `File` with `FileAccess`
2023-01-30Refactor high quality texture importJuan Linietsky
* Only two texture import modes for low/high quality now: * S3TC/BPTC * ETC2/ASTC * Makes sense given this is the general preferred and most compatible combination in most platforms. * Removed lossy_quality from VRAM texture compression options. It was unused everywhere. * Added a new "high_quality" option to texture import. When enabled, it uses BPTC/ASTC (BC7/ASTC4x4) instead of S3TC/ETC2 (DXT1-5/ETC2,ETCA). * Changed MacOS export settings so required texture formats depend on the architecture selected. This solves the following problems: * Makes it simpler to import textures as high quality, without having to worry about the specific format used. * As the editor can now run on platforms such as web, Mac OS with Apple Silicion and Android, it should no longer be assumed that S3TC/BPTC is available by default for it.
2023-01-30docs: replace File with FileAccessJiri Suchan
2023-01-30Merge pull request #72305 from dalexeev/gfs-fix-export-enumRémi Verschelde
GDScript: Fix `@export_enum` works only with `int`
2023-01-30Fix various typos with codespellRémi Verschelde
And include #72377. Co-authored-by: Wiktor Kocielski <withaust@gmail.com>
2023-01-30Merge pull request #72325 from raulsntos/dotnet/fix-72321Rémi Verschelde
C#: Fix `Rotated` and `RotatedLocal`
2023-01-30Merge pull request #71995 from Faless/net/4.x_tls_verifyRémi Verschelde
[NET] Refactor TLS configuration.
2023-01-30Merge pull request #72342 from TokageItLab/immutabletrackRémi Verschelde
Add remove immutable tracks option to glTF importer
2023-01-30GDScript: Fix `@export_enum` works only with `int`Danil Alexeev
2023-01-30Merge pull request #72315 from raulsntos/dotnet/transform2d-skewRémi Verschelde
C#: Add `Skew` to `Transform2D` and fix `InterpolateWith`
2023-01-30Merge pull request #72310 from Geometror/allow-disabling-noise-normalizationRémi Verschelde
[Noise/NoiseTexture2D] Allow disabling normalization
2023-01-30Merge pull request #72175 from dalexeev/gds-fix-export-group-annotationsRémi Verschelde
GDScript: Fix broken export group annotations
2023-01-30Add remove immutable tracks option to glTF importerSilc Renew
Co-authored-by: Lyuma <xn.lyuma@gmail.com>
2023-01-29C#: Fix `Rotated` and `RotatedLocal`Raul Santos
Implementation was interchanged.
2023-01-29C#: Add `Skew` to `Transform2D` and fix `InterpolateWith`Raul Santos
- Add `Skew` property to `Transform2D`. - Fix `InterpolateWith` in `Transform2D` to support skewed transforms.
2023-01-29[Noise/NoiseTexture2D] Allow disabling normalizationHendrik Brucker
2023-01-29Allow unicode identifier in GDScript syntax highlighterHaoyu Qiu
2023-01-29Merge pull request #72285 from vnen/gdscript-variable-matchRémi Verschelde
GDScript: Allow variables in match patterns
2023-01-29Merge pull request #72286 from vnen/gdscript-native-static-call-crashRémi Verschelde
GDScript: Avoid calling non-static methods on native classes
2023-01-29Merge pull request #71844 from vonagam/fix-constant-conversionsRémi Verschelde
GDScript: Fix constant conversions
2023-01-28GDScript: Avoid calling non-static methods on native classesGeorge Marques
2023-01-28GDScript: Allow variables in match patternsGeorge Marques
To restore an ability available in 3.x and reduce compatibility changes.
2023-01-29GDScript: Fix constant conversionsDmitrii Maganov
2023-01-28GDScript: Fix implicit conversions for function returnsDmitrii Maganov
2023-01-28GDScript: Fix test from #69163 after annotations changeRémi Verschelde
2023-01-28Merge pull request #72228 from DarkKilauea/nav-agent-callableRémi Verschelde
Use Callable for Navigation Agent callbacks
2023-01-28Merge pull request #72205 from raulsntos/dotnet/proxy-classRémi Verschelde
Fix lookup of C# types by their engine name
2023-01-28Merge pull request #71992 from raulsntos/dotnet/rect-altRémi Verschelde
C#: Remove `GetArea` and `GetVolume` methods
2023-01-28Merge pull request #69163 from vonagam/variant-safe-linesRémi Verschelde
GDScript: Fix wrong marking of some lines related to Variant as unsafe
2023-01-28[Net] Remove StreamPeerTLS.blocking_handshake option.Fabio Alessandrelli
Which was unused internally, and can be replaced by: ``` while tls.get_status() == tls.STATUS_HANDSHAKING: tls.poll() ```
2023-01-28[NET] Refactor TLS configuration.Fabio Alessandrelli
Use a TLSOptions configuration object which is created via static functions. - "TLSOptions.client": uses the standard CA and common name verification. - "TLSOptions.client_unsafe": uses optional CA verification (i.e. if specified) - "TLSOptions.server": is the standard server configuration (chain + key) This will allow us to expand the TLS configuration options to include e.g. mutual authentication without bloating the classes that uses StreamPeerTLS and PacketPeerDTLS as underlying peers.
2023-01-27Use Callable for Navigation Agent callbacksJosh Jones
2023-01-27Fix lookup of C# types by their engine nameRaul Santos
2023-01-27Merge pull request #72182 from raulsntos/dotnet/remove-obsolete-stringextensionsRémi Verschelde
C#: Remove obsolete StringExtensions methods
2023-01-27Merge pull request #71986 from raulsntos/dotnet/readonly-collectionsRémi Verschelde
C#: Implement readonly-ness in Array and Dictionary
2023-01-27C#: Remove `GetArea` and `GetVolume` methodsRaul Santos
- Remove `GetArea` method in favor of the `Area` property in Rect2{i}. - Replace `GetVolume` method with a `Volume` property in AABB.
2023-01-27C#: Remove obsolete StringExtensions methodsRaul Santos