summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-02-27Merge pull request #74029 from bruvzg/ime_textedit_complexRémi Verschelde
[TextEdit / IME] Check selection before deleting to avoid unnecessary error messages.
2023-02-27Merge pull request #74010 from lyuma/fix_last_basis_lodRémi Verschelde
Loop over the last mipmap lod in basis universal
2023-02-27Merge pull request #74009 from BastiaanOlij/fix_vehiclebody_steeringRémi Verschelde
Steering on VehicleBody is in radians in code, degrees in UI, adjusted property tooltip to clear this up
2023-02-27Merge pull request #74007 from aaronfranke/gltf-unusedRémi Verschelde
GLTF: Delete unused `skeleton_to_node`
2023-02-27[TextEdit / IME] Check selection before deleting to avoid unnecessary error ↵bruvzg
messages.
2023-02-26basisu: Loop over the last mipmap lodLyuma
2023-02-27Steering on VehicleBody is in radians while interface is in degrees. ↵Bastiaan Olij
Improved documentation to clear this up.
2023-02-26GLTF: Delete unused skeleton_to_nodeAaron Franke
2023-02-26Merge pull request #73959 from clayjohn/GL-mobile-warningsRémi Verschelde
Add warnings for unsupported features in mobile and gl_compatibility backends
2023-02-26Merge pull request #73995 from samsface/update-expresion-docRémi Verschelde
Clarify when Expression `get_error_text()` is updated
2023-02-26Merge pull request #73990 from bruvzg/ts_dext_fixRémi Verschelde
Fix text server GDExtension build.
2023-02-26Merge pull request #73989 from YuriSizov/docs-fix-gi-tutorial-pathsRémi Verschelde
Sync tutorial paths for GI classes with online documentation changes
2023-02-26Add warnings for unsupported features in mobile and gl_compatibility backendsclayjohn
2023-02-26Clarify when Expression `get_error_text()` is updatedSam
2023-02-26Merge pull request #73948 from V-Sekai/mip-map-basisuRémi Verschelde
Fix basisu texture mipmaps
2023-02-26Merge pull request #73915 from vonagam/fix-conversions-from-native-memberRémi Verschelde
GDScript: Fix conversions from native members accessed by identifier
2023-02-26Fix text server GDExtension build.bruvzg
2023-02-26Merge pull request #73988 from RandomShaper/fix_cyclic_load_dead_lockRémi Verschelde
Fix deadlock in cyclic resource load
2023-02-26Sync tutorial paths for GI classes with online documentation changesYuri Sizov
2023-02-26Fix deadlock in cyclic resource loadPedro J. Estébanez
2023-02-26Merge pull request #73964 from vonagam/fix-coroutine-compiler-typeRémi Verschelde
GDScript: Fix address type for coroutine results
2023-02-26Merge pull request #73957 from vonagam/fix-binary-op-safetyRémi Verschelde
GDScript: Fix wrong unsafety mark for binary operator
2023-02-26Merge pull request #73899 from vnen/gdscript-init-defaults-beforehandRémi Verschelde
GDScript: Initialize all defaults beforehand in implicit constructor
2023-02-26Merge pull request #73954 from KoBeWi/BugExRémi Verschelde
Fix wrong OS regex in project converter
2023-02-26Merge pull request #73975 from bitsawer/fix_preprocessor_include_checkRémi Verschelde
Fix shader preprocessor include resource check
2023-02-26Merge pull request #73971 from tlobig/masterRémi Verschelde
Converter: Rename 3.x Vector2 `clamped` to `limit_length`
2023-02-26Merge pull request #73958 from davicr/stream_change_crashRémi Verschelde
Fix crash when changing VideoStreamPlayer.Stream
2023-02-26Merge pull request #73956 from hakro/document-sorting-offset-unitRémi Verschelde
Document VisualInstance3D offset unit
2023-02-26Document VisualInstance3D offset unitHakim
2023-02-26Converter: Rename 3.x Vector2 clamped to limit_lengthThomas Lobig
2023-02-26Patch `VideoStreamPlaybackTheora::set_file` to only look for header packets ↵Davi
of one stream type
2023-02-26Fix wrong OS regex in project converterkobewi
2023-02-26Fix shader preprocessor include resource checkbitsawer
2023-02-26GDScript: Fix address type for coroutine resultsDmitrii Maganov
2023-02-26GDScript: Fix wrong unsafety mark for binary operatorDmitrii Maganov
2023-02-25Fix basisu mipmapsK. S. Ernest (iFire) Lee
Previously basisu was storing mip maps as an array of basisu in the internal format for Texture. The new work makes sense and it generates smaller files with one image. This pull request fixes the basisu decompression and keep the approach of 1 image. If we need to change the format in 4.x, we can still support the old format with some limitations too. Basisu from gltfpack can only output with mipmaps. The single image will not work for StreamedTexture. We should support both approaches for CompressedTexture we use one, and for StreamedTexture we use another. Additional error checking for hdr images and for nullptr.
2023-02-25Merge pull request #73933 from vnen/gdscript-revert-group-property-ref-checkYuri Sizov
Revert "GDScript: Fix groups and categories been seen as members"
2023-02-25Revert "GDScript: Fix groups and categories been seen as members"George Marques
This reverts commit 6f2a8434c675b3df2aceca4e5200aaf799eeb2bd. The commit introduces a bug where it creates spurious entries for member information.
2023-02-25GDScript: Fix conversions from native members accessed by identifierDmitrii Maganov
2023-02-24GDScript: Initialize all defaults beforehand in implicit constructorGeorge Marques
Set all the default values for typed variables before actually trying to initialize them, including `@onready` ones. This ensures that if validated calls are being used there will be a value of the correct type, even if the resolution is done out of order or deferred because of `@onready`.
2023-02-25Merge pull request #73881 from vnen/max-min-only-for-numbersRémi Verschelde
Make max() and min() global functions only accept numbers
2023-02-25Merge pull request #73882 from raulsntos/dotnet/check-singletons-properlyRémi Verschelde
C#: Check if a class is a singleton using the Core name
2023-02-25Merge pull request #73892 from vonagam/fix-objects-indentity-compareRémi Verschelde
Core: Identity compare objects by id, not by pointers
2023-02-25Merge pull request #73887 from nklbdev/masterRémi Verschelde
fix typo `set_polygon` in GenericTilePolygonEditor
2023-02-24Core: Identity compare objects by id, not by pointersDmitrii Maganov
2023-02-24Merge pull request #73885 from bruvzg/popup_fixRémi Verschelde
Revert "Reordering emitted signals in PopupMenu" and fix editor selection issue in the safer way.
2023-02-25fix typo `set_polygon` in GenericTilePolygonEditornklbdev
2023-02-24Revert "Reordering emitted signals in PopupMenu" and fix editor selection ↵bruvzg
issue in the safer way.
2023-02-24Make max() and min() global functions only accept numbersGeorge Marques
The behavior for those are not well defined for non-numeric arguments. To avoid confusion the other types are forbidden.
2023-02-24GDScript: Don't use validated call for vararg methodsGeorge Marques
Since they may have runtime type validation, we cannot use the validated call.