summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-02-21GDScript: Fix error message for unfound typeDmitrii Maganov
2023-02-21Merge pull request #73693 from vnen/gdscript-fix-script-signature-checkRémi Verschelde
GDScript: Fix override signature check of script inheritance
2023-02-21Merge pull request #73680 from vnen/gdscript-div-by-zero-crash-fixRémi Verschelde
GDScript: Avoid validated division operation to test for zero
2023-02-21Merge pull request #73679 from vnen/gdscript-autoload-ref-crash-fixRémi Verschelde
GDScript: Fix crash when autoload script can't be found
2023-02-21Merge pull request #73699 from Piralein/classref-🧹Rémi Verschelde
update outdated classref references and examples
2023-02-21Merge pull request #73698 from clayjohn/SS-biasRémi Verschelde
Increase SSAO and SSIL bias to account for variance in mipmap generation
2023-02-21Merge pull request #73622 from ChibiDenDen/patch-2Rémi Verschelde
Fix use-after-free for VkAttachmentReference
2023-02-21Merge pull request #73478 from NewDefectus/masterRémi Verschelde
Use the original canvas to calculate light positioning
2023-02-21Merge pull request #72300 from Chaosus/shader_forbid_pass_mv_texturesRémi Verschelde
Forbid passing multiview sampler to the custom function in shaders
2023-02-21update outdated references and examplesHana
2023-02-21Increase SSAO and SSIL bias to account for variance in mipmap generationclayjohn
2023-02-21GDScript: Fix override signature check of script inheritanceGeorge Marques
Avoid treating the super class as a meta type for signature check, since it is looking at the instance level for that.
2023-02-21GDScript: Avoid validated division operation to test for zeroGeorge Marques
The validated operations for integer division and modulo do not check for division by zero. This avoids validated operation in these cases to make sure the check is performed and avoid crashing the engine.
2023-02-21GDScript: Fix crash when autoload script can't be foundGeorge Marques
2023-02-21Merge pull request #73672 from aaronfranke/time-docRémi Verschelde
Fix incorrect Time documentation in get_datetime_dict_from_unix_time
2023-02-21Merge pull request #73671 from bruvzg/linux_tts_lockRémi Verschelde
[Linux] Process TTS callback on the main thread to avoid speech-dispatcher deadlock.
2023-02-21Merge pull request #73649 from aaronfranke/time-to-test-intRémi Verschelde
Explicitly cast to Variant's int type in Time tests
2023-02-21Merge pull request #73595 from KoBeWi/missingnoRémi Verschelde
Fix missing directories when exporting from cmd
2023-02-21Use the original canvas to calculate light positioningAlon Ran
2023-02-21Fix incorrect Time documentation in get_datetime_dict_from_unix_timeAaron Franke
2023-02-21[Linux] Process TTS callback on the main thread to avoid speech-dispatcher ↵bruvzg
deadlock.
2023-02-21Forbid passing multiview sampler to the custom function in shadersYuri Rubinsky
2023-02-21Merge pull request #73666 from bruvzg/mac_warpRémi Verschelde
[macOS] Fix Input.warp_mouse shifted by one screen pixel.
2023-02-21Merge pull request #73667 from aaronfranke/gltf-unused-joint-boolRémi Verschelde
Remove unused joint boolean in GLTFNode
2023-02-21Merge pull request #73664 from bruvzg/fix_sc_resetRémi Verschelde
[Editor] Fix shortcut reset.
2023-02-21Merge pull request #73652 from KoBeWi/master_degree_in_mathsRémi Verschelde
Clarify rotation degrees
2023-02-21Merge pull request #73654 from V-Sekai/fbx_base_dirRémi Verschelde
fbx: Set base_dir correctly in append_from_scene
2023-02-21Remove unused joint boolean in GLTFNodeAaron Franke
2023-02-21[macOS] Fix Input.warp_mouse shifted by one screen pixel.bruvzg
2023-02-21Merge pull request #73661 from mashumafi/external-class-refRémi Verschelde
Add test for const class references
2023-02-21Merge pull request #73662 from BastiaanOlij/fix_opengl_wobbly_skyRémi Verschelde
Fix wobbly sky in stereoscopic OpenGL
2023-02-21Merge pull request #73659 from BastiaanOlij/fix_opengl_clearscreenRémi Verschelde
Fix issue with clearing screen after part has been drawn
2023-02-21Fix shortcut reset.bruvzg
2023-02-21Fix wobbly sky in stereoscopic OpenGLBastiaan Olij
2023-02-20Add test for const class referencesmashumafi
2023-02-21Fix issue with clearing screen after part has been drawnBastiaan Olij
2023-02-20fbx: Set base_dir correctly in append_from_sceneLyuma
2023-02-20Clarify rotation degreeskobewi
2023-02-20Merge pull request #73634 from KoBeWi/merged_into_errorRémi Verschelde
Fix tile atlas merging crash
2023-02-20Merge pull request #73639 from vnen/gdscript-limit-completion-recursion-depthRémi Verschelde
GDScript: Limit recursion depth for completion functions
2023-02-20Merge pull request #73422 from bruvzg/no_altRémi Verschelde
[macOS] Replace all `Alt/Option+Letter/Number` default shortcuts to avoid conflicts with special character input.
2023-02-20Explicitly cast to Variant's int type in Time testsAaron Franke
2023-02-20[macOS] Replace all `Alt/Option+Letter/Number` default shortcuts to avoid ↵bruvzg
conflicts with special character input.
2023-02-20GDScript: Limit recursion depth for completion functionsGeorge Marques
Avoid crashing if the completion gets stuck in infinite recursion while trying to guess the expression type.
2023-02-20Fix tile atlas merging crashkobewi
2023-02-20Fix missing directories when exporting from cmdkobewi
2023-02-20Merge pull request #73628 from lawnjelly/bvh_mutex_fixRémi Verschelde
BVH - fix lockguards for multithread mode
2023-02-20BVH - fix lockguards for multithread modelawnjelly
Due to a lack of variable name, the BVH lock guards lifetimes previously did not cover the whole function call. This is fixed, and the warning message for contention is removed as multithread mode seems to be desired in production in 4.x.
2023-02-20Merge pull request #73626 from Faless/mp/4.x_synced_signalRémi Verschelde
[MP] Add a "synchronized" signal to MultiplayerSynchronized.
2023-02-20Merge pull request #73621 from ChibiDenDen/patch-1Rémi Verschelde
Fix bufSize parameter for glGetSynciv