Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-02-21 | GDScript: Fix error message for unfound type | Dmitrii Maganov | |
2023-02-21 | Merge pull request #73693 from vnen/gdscript-fix-script-signature-check | Rémi Verschelde | |
GDScript: Fix override signature check of script inheritance | |||
2023-02-21 | Merge pull request #73680 from vnen/gdscript-div-by-zero-crash-fix | Rémi Verschelde | |
GDScript: Avoid validated division operation to test for zero | |||
2023-02-21 | Merge pull request #73679 from vnen/gdscript-autoload-ref-crash-fix | Rémi Verschelde | |
GDScript: Fix crash when autoload script can't be found | |||
2023-02-21 | Merge pull request #73699 from Piralein/classref-🧹 | Rémi Verschelde | |
update outdated classref references and examples | |||
2023-02-21 | Merge pull request #73698 from clayjohn/SS-bias | Rémi Verschelde | |
Increase SSAO and SSIL bias to account for variance in mipmap generation | |||
2023-02-21 | Merge pull request #73622 from ChibiDenDen/patch-2 | Rémi Verschelde | |
Fix use-after-free for VkAttachmentReference | |||
2023-02-21 | Merge pull request #73478 from NewDefectus/master | Rémi Verschelde | |
Use the original canvas to calculate light positioning | |||
2023-02-21 | Merge pull request #72300 from Chaosus/shader_forbid_pass_mv_textures | Rémi Verschelde | |
Forbid passing multiview sampler to the custom function in shaders | |||
2023-02-21 | update outdated references and examples | Hana | |
2023-02-21 | Increase SSAO and SSIL bias to account for variance in mipmap generation | clayjohn | |
2023-02-21 | GDScript: Fix override signature check of script inheritance | George 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-21 | GDScript: Avoid validated division operation to test for zero | George 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-21 | GDScript: Fix crash when autoload script can't be found | George Marques | |
2023-02-21 | Merge pull request #73672 from aaronfranke/time-doc | Rémi Verschelde | |
Fix incorrect Time documentation in get_datetime_dict_from_unix_time | |||
2023-02-21 | Merge pull request #73671 from bruvzg/linux_tts_lock | Rémi Verschelde | |
[Linux] Process TTS callback on the main thread to avoid speech-dispatcher deadlock. | |||
2023-02-21 | Merge pull request #73649 from aaronfranke/time-to-test-int | Rémi Verschelde | |
Explicitly cast to Variant's int type in Time tests | |||
2023-02-21 | Merge pull request #73595 from KoBeWi/missingno | Rémi Verschelde | |
Fix missing directories when exporting from cmd | |||
2023-02-21 | Use the original canvas to calculate light positioning | Alon Ran | |
2023-02-21 | Fix incorrect Time documentation in get_datetime_dict_from_unix_time | Aaron Franke | |
2023-02-21 | [Linux] Process TTS callback on the main thread to avoid speech-dispatcher ↵ | bruvzg | |
deadlock. | |||
2023-02-21 | Forbid passing multiview sampler to the custom function in shaders | Yuri Rubinsky | |
2023-02-21 | Merge pull request #73666 from bruvzg/mac_warp | Rémi Verschelde | |
[macOS] Fix Input.warp_mouse shifted by one screen pixel. | |||
2023-02-21 | Merge pull request #73667 from aaronfranke/gltf-unused-joint-bool | Rémi Verschelde | |
Remove unused joint boolean in GLTFNode | |||
2023-02-21 | Merge pull request #73664 from bruvzg/fix_sc_reset | Rémi Verschelde | |
[Editor] Fix shortcut reset. | |||
2023-02-21 | Merge pull request #73652 from KoBeWi/master_degree_in_maths | Rémi Verschelde | |
Clarify rotation degrees | |||
2023-02-21 | Merge pull request #73654 from V-Sekai/fbx_base_dir | Rémi Verschelde | |
fbx: Set base_dir correctly in append_from_scene | |||
2023-02-21 | Remove unused joint boolean in GLTFNode | Aaron Franke | |
2023-02-21 | [macOS] Fix Input.warp_mouse shifted by one screen pixel. | bruvzg | |
2023-02-21 | Merge pull request #73661 from mashumafi/external-class-ref | Rémi Verschelde | |
Add test for const class references | |||
2023-02-21 | Merge pull request #73662 from BastiaanOlij/fix_opengl_wobbly_sky | Rémi Verschelde | |
Fix wobbly sky in stereoscopic OpenGL | |||
2023-02-21 | Merge pull request #73659 from BastiaanOlij/fix_opengl_clearscreen | Rémi Verschelde | |
Fix issue with clearing screen after part has been drawn | |||
2023-02-21 | Fix shortcut reset. | bruvzg | |
2023-02-21 | Fix wobbly sky in stereoscopic OpenGL | Bastiaan Olij | |
2023-02-20 | Add test for const class references | mashumafi | |
2023-02-21 | Fix issue with clearing screen after part has been drawn | Bastiaan Olij | |
2023-02-20 | fbx: Set base_dir correctly in append_from_scene | Lyuma | |
2023-02-20 | Clarify rotation degrees | kobewi | |
2023-02-20 | Merge pull request #73634 from KoBeWi/merged_into_error | Rémi Verschelde | |
Fix tile atlas merging crash | |||
2023-02-20 | Merge pull request #73639 from vnen/gdscript-limit-completion-recursion-depth | Rémi Verschelde | |
GDScript: Limit recursion depth for completion functions | |||
2023-02-20 | Merge pull request #73422 from bruvzg/no_alt | Rémi Verschelde | |
[macOS] Replace all `Alt/Option+Letter/Number` default shortcuts to avoid conflicts with special character input. | |||
2023-02-20 | Explicitly cast to Variant's int type in Time tests | Aaron Franke | |
2023-02-20 | [macOS] Replace all `Alt/Option+Letter/Number` default shortcuts to avoid ↵ | bruvzg | |
conflicts with special character input. | |||
2023-02-20 | GDScript: Limit recursion depth for completion functions | George Marques | |
Avoid crashing if the completion gets stuck in infinite recursion while trying to guess the expression type. | |||
2023-02-20 | Fix tile atlas merging crash | kobewi | |
2023-02-20 | Fix missing directories when exporting from cmd | kobewi | |
2023-02-20 | Merge pull request #73628 from lawnjelly/bvh_mutex_fix | Rémi Verschelde | |
BVH - fix lockguards for multithread mode | |||
2023-02-20 | BVH - fix lockguards for multithread mode | lawnjelly | |
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-20 | Merge pull request #73626 from Faless/mp/4.x_synced_signal | Rémi Verschelde | |
[MP] Add a "synchronized" signal to MultiplayerSynchronized. | |||
2023-02-20 | Merge pull request #73621 from ChibiDenDen/patch-1 | Rémi Verschelde | |
Fix bufSize parameter for glGetSynciv |