Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-10-13 | Merge pull request #53744 from williamd67/GPULightmapper-prevent-endless-loop | Rémi Verschelde | |
2021-10-13 | Merge pull request #53743 from williamd67/GPULightmapper-process-rays-to-sky | Rémi Verschelde | |
2021-10-13 | Merge pull request #53322 from ↵ | Rémi Verschelde | |
williamd67/GPULightmapper-skip-smoothen-positions-flat-triangle | |||
2021-10-13 | Merge pull request #53745 from KoBeWi/layerzzzzz | Rémi Verschelde | |
2021-10-13 | Merge pull request #53683 from Chaosus/vs_previews | Rémi Verschelde | |
2021-10-13 | Use z_index for TileMap layer darkening | kobewi | |
2021-10-12 | GPULightmapper: prevent loop with max iterations | William Deurwaarder | |
In case the calculation of the delta contained infinity values (division by zero), than later the calculation of the next cell failed as the infinity value was multiplied by zero which resulted in a nan. The nan-value caused that the next cell was equal to the current cell which resulted in an end-less loop, which only terminates by the maximum iterations protection. This is solved by replacing infinity with grid_size which acts as infinity. | |||
2021-10-12 | GPULightmapper: process rays to sky in all bounces as active | William Deurwaarder | |
Before this change only rays to the sky (RAY_MISS) in the first bounce were processed as active rays. This caused artifacts, areas were too light, when more than one bounce were processed. Now rays to the sky are processed as active rays for all bounces. | |||
2021-10-12 | Merge pull request #52495 from ↵ | Rémi Verschelde | |
kdiduk/issue-52491-fix-value-conversion-in-hashfuncs-header #52491 Cosmetic: fix type cast so that it matches return value type | |||
2021-10-12 | Merge pull request #53471 from KoBeWi/🥞 | Rémi Verschelde | |
Improve editor panning and remove RMB panning | |||
2021-10-12 | Merge pull request #53705 from e8newallm/53668 | Rémi Verschelde | |
Fixed editor attempting to save a blank scene with save all scenes | |||
2021-10-12 | Merge pull request #52293 from neikeq/class-db-api-type-bug | Rémi Verschelde | |
Fix ClassDB API type mismatch bug between --editor and player | |||
2021-10-12 | Merge pull request #53636 from KoBeWi/colorayer | Rémi Verschelde | |
Add modulate property to TileMap layers | |||
2021-10-12 | Merge pull request #53676 from Klowner/camera-get-pyramid-rid-shape-crash | Rémi Verschelde | |
Fix Camera3D::get_pyramid_shape_rid() crash when not in scene | |||
2021-10-12 | Merge pull request #53712 from CakHuri/nullptr | Rémi Verschelde | |
Replace NULL with nullptr | |||
2021-10-12 | Merge pull request #53735 from Paulb23/text-file-drop-and-drag | Rémi Verschelde | |
Allow dragging TextFiles from the Filesystem dock | |||
2021-10-12 | Merge pull request #53732 from Paulb23/text-file-save | Rémi Verschelde | |
Fix TextFiles not saving when closing the tab | |||
2021-10-12 | Merge pull request #53728 from groud/fix_forgotten_print | Rémi Verschelde | |
Fix useless debug print | |||
2021-10-12 | Allow dragging TextFiles from the Filesystem dock | Paulb23 | |
2021-10-12 | GPULightmapper: skip smoothen positions for flat triangles | William Deurwaarder | |
Smoothening positions for flat, non-smoothened, triangles is unnecessary and caused positions to move outside their triangle which caused side-effects as rays from those positions intersected with triangles which could not be reached from the original triangle. This is solved by skipping smoothening of positions for flat triangles. A triangle is determined to be flas as its vertex normals are equal. | |||
2021-10-12 | Fix TextFiles not saving when closing the tab | Paulb23 | |
2021-10-12 | Merge pull request #53717 from Calinou/android-default-arm64 | Rémi Verschelde | |
2021-10-12 | Fix useless debug print | Gilles Roudière | |
2021-10-12 | Merge pull request #53720 from vnen/gdscript-typed-array-custom-class | Rémi Verschelde | |
2021-10-12 | Build for 64-bit ARM by default when compiling or exporting for Android | Hugo Locurcio | |
All Android devices that support Vulkan support 64-bit ARM. This also removes NEON opt-out code for ARMv7 as pretty much all ARMv7 devices also support NEON. | |||
2021-10-12 | Merge pull request #53715 from vnen/gdscript-setter-parameter-type | Rémi Verschelde | |
2021-10-12 | GDScript: Fix typed array with custom classes | George Marques | |
2021-10-12 | Merge pull request #53713 from groud/add_force_keep_on_undo_redo_merge_ends | Rémi Verschelde | |
2021-10-12 | Replaced NULL with nullptr | M. Huri | |
2021-10-12 | Merge pull request #53711 from Faless/mp/4.x_fix_custom_despwn | Rémi Verschelde | |
2021-10-12 | GDScript: Make setter parameter type same as variable type | George Marques | |
2021-10-12 | [Net] Fix spawn/despawn custom callable argument. | Fabio Alessandrelli | |
Was always reporting it to be a spawn, even for despawns. | |||
2021-10-12 | Add a way to force undo/redo operations to be kept in MERGE_ENDS mode | Gilles Roudière | |
2021-10-12 | Merge pull request #53697 from bruvzg/ts_string_names | Rémi Verschelde | |
2021-10-12 | Fixed editor attempting to save a blank scene with save all scenes | Matthew Newall | |
2021-10-12 | Move static feature set and number system `StringName`s to the singleton. | bruvzg | |
Remove `hb_` prefix from the custom bitmap font functions to avoid potential conflicts with the HarfBuzz. Cleanup commented debug code. Update numbering system data to CLDR 39. | |||
2021-10-12 | Merge pull request #52736 from aaronfranke/lgtm-mult | Rémi Verschelde | |
Fix some LGTM errors of "Multiplication result converted to larger type" | |||
2021-10-12 | Merge pull request #53694 from CakHuri/fix-typo-csg | Rémi Verschelde | |
Fixed a typo in csg module | |||
2021-10-12 | Merge pull request #52548 from m4gr3d/customize_metadata_dir_master | Rémi Verschelde | |
Make the project data directory customizable | |||
2021-10-12 | Fix some LGTM errors of "Multiplication result converted to larger type" | Aaron Franke | |
2021-10-12 | Fixed a typo in csg module | M. Huri | |
2021-10-11 | Merge pull request #53687 from godotengine/revert-48332-implement-ping-pong | Juan Linietsky | |
Revert "Implement reverse playback and ping-pong loop in AnimationPlayer and NodeAnimation" | |||
2021-10-11 | Revert "Implement reverse playback and ping-pong loop in AnimationPlayer and ↵ | Juan Linietsky | |
NodeAnimation" | |||
2021-10-11 | Make the project data directory customizable. | ne0fhyk | |
2021-10-11 | Merge pull request #48332 from TokageItLab/implement-ping-pong | Rémi Verschelde | |
2021-10-11 | Make port previews in visual shader visible in other shader modes | Yuri Roubinsky | |
2021-10-11 | Merge pull request #53681 from Paulb23/rejig-syntax-highligher-bind | Rémi Verschelde | |
Move add_syntax_highlighter bind to ScriptEditorBase | |||
2021-10-11 | Merge pull request #53647 from Chaosus/gds_fix_builtin_functions_autocompletion | Yuri Roubinsky | |
2021-10-11 | Move add_syntax_highlighter bind to ScriptEditorBase | Paulb23 | |
2021-10-11 | Merge pull request #53678 from groud/fix_tilemap_selection_not_updating | Rémi Verschelde | |