summaryrefslogtreecommitdiff
path: root/core
AgeCommit message (Collapse)Author
2022-06-17Merge pull request #62156 from madmiraal/fix-61457Rémi Verschelde
Ensure AudioFrame variables l and r are always initialised
2022-06-17Merge pull request #62023 from Calinou/detect-3d-small-textures-no-vram-compressRémi Verschelde
Disable VRAM compression by default for small textures in Detect 3D
2022-06-17Merge pull request #61991 from bruvzg/property_shortcutRémi Verschelde
Make enum/constant binds 64-bit.
2022-06-17Ensure AudioFrame variables l and r are always initialisedMarcel Admiraal
2022-06-17Make enum/constant binds 64-bit.bruvzg
2022-06-17Audio: Expose 2D/3D panning strength parametersEllen Poe
2022-06-16Adding function key support from F17 to F35gregcsokas
OSX supports everything by default, Linux is also capable of supporting every function key, Windows as I know support only up to F24
2022-06-16Remove redundand header from `a_star.h`Yuri Rubinsky
2022-06-16Make AStar to use 64-bit logicYuri Rubinsky
2022-06-16Merge pull request #58669 from theraot/ASar2DbidirectionalRémi Verschelde
AStar2D bidirectional
2022-06-15Validate every source element separately Array::append_array()Pedro J. Estébanez
2022-06-15Merge pull request #61812 from Chaosus/fix_wrapfRémi Verschelde
2022-06-15Merge pull request #61934 from Geometror/hashfuncsRémi Verschelde
Hash function improvements
2022-06-15Hash function improvementsHendrik Brucker
2022-06-14Merge pull request #62030 from KoBeWi/SetName/GetNameRémi Verschelde
2022-06-14Change set/get binding to use StringNamekobewi
2022-06-14Add vector value linkingkobewi
Co-authored-by: redlamp <244062+redlamp@users.noreply.github.com>
2022-06-14Disable VRAM compression by default for small textures in Detect 3DHugo Locurcio
This is done to prevent reducing texture quality when it doesn't save much video memory, especially for pixel art. The size threshold can be adjusted in the project settings. To get the previous behavior where textures detected to be used in 3D had their compression mode always set to VRAM, set this to the lowest value (16).
2022-06-12Fix parameter name for String.left and String.rightHaoyu Qiu
2022-06-12Merge pull request #61949 from ↵Rémi Verschelde
touilleMan/native_extension_open_library_handle_initialization_error Fix NativeExtension::open_library return value when the undelying lib fails to initialize
2022-06-12Fix NativeExtension::open_library return value when the undelying lib fails ↵Emmanuel Leblond
to initialize
2022-06-11Add suffixes to all nodes and resourcesFireForge
2022-06-08Fix `wrapf` to correct wrap values with 0.1 steppingYuri Rubinsky
2022-06-08Fix (again) loading binary resources with float=64xutaxkamay
I had an error while importing my GLB file from 32-bit precision floating point, I guess this was forgotten while implementing 64-bit precision floating point. I'm not sure if there's any other left to do though.
2022-06-08i18n: Misc fixes translation stringsRémi Verschelde
Adds some translator comments to solve some questions raised on Weblate.
2022-06-07Merge pull request #61319 from JFonS/taa_wipRémi Verschelde
Initial TAA implementation
2022-06-07Merge pull request #41568 from dalexeev/config_file_empty_sectRémi Verschelde
Fix saving section-less keys in `ConfigFile`
2022-06-07Merge pull request #59786 from V-Sekai/ok_colorRémi Verschelde
Allow picking similar colours using OKHSL.
2022-06-07Bind vararg method flag in core constantssps1112
2022-06-07Fix saving section-less keys in `ConfigFile`Danil Alexeev
2022-06-07Merge pull request #61751 from KoBeWi/🐱‍👤Rémi Verschelde
2022-06-07Merge pull request #50349 from Calinou/array-add-some-everyRémi Verschelde
Add `any()` and `all()` methods to Array
2022-06-07Allow picking similar colours using OKHSL.K. S. Ernest (iFire) Lee
2022-06-07Add GLOBAL_DEF_INTERNAL to hide specific settingskobewi
2022-06-07Initial TAA implementationjfons
Initial TAA support based on the implementation in Spartan Engine. Motion vectors are correctly generated for camera and mesh movement, but there is no support for other things like particles or skeleton deformations.
2022-06-06Merge pull request #59883 from KoBeWi/merge_thisRémi Verschelde
2022-06-06Improve architectures in OS::has_feature and make them work on MSVCAaron Franke
2022-06-06[GDExtension] Expose Variant, NodePath and StringName hash functions.bruvzg
2022-06-04Merge pull request #61669 from fire-forge/inputRémi Verschelde
Make Input `mouse_mode` and `use_accumulated_input` properties
2022-06-03Make Input mouse_mode and use_accumulated_input propertiesFireForge
2022-06-03Add array element type to `get_connected_joypads`Raul Santos
2022-06-03Add StringName explicitly to Variant::hash_compareGeorge Marques
This makes equality comparisons to StringName more performant
2022-06-03Fix `String.uri_encode` on WindowsHaoyu Qiu
2022-06-02Merge pull request #60711 from nathanfranke/rpc-serverFabio Alessandrelli
network - finish renaming AUTH to AUTHORITY
2022-06-02Merge pull request #61339 from lyuma/streampeerssl_get_streamRémi Verschelde
2022-05-31Add Dictionary.merge()kobewi
2022-05-25Add StreamPeerSSL.get_stream() accessor.Lyuma
2022-05-25finish renaming AUTH to AUTHORITYNathan Franke
2022-05-25use ERR_FAIL_INDEX when preferredNathan Franke
2022-05-25Add `any()` and `all()` methods to ArrayHugo Locurcio
These can be used as faster, more convenient shorthands to using `filter()` + `size()`.