summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-11-08Merge pull request #61549 from KoBeWi/project_settings_messRémi Verschelde
Remove duplicate project settings definitions
2022-11-08Remove duplicate project settings definitionskobewi
2022-11-07Merge pull request #68271 from paddy-exe/gdextension-library-loading-errorRémi Verschelde
GDExtension: Improve error message for invalid library feature flags
2022-11-07Merge pull request #68346 from Calinou/particles-rename-trail-length-propertyRémi Verschelde
Rename GPUParticles2D/3D's `trail_length_secs` to `trail_lifetime`
2022-11-07Merge pull request #68366 from korompg/fix_headless_mode_aabbRémi Verschelde
Setting surface AABBs for mesh surfaces in headless mode.
2022-11-07Merge pull request #68342 from KoBeWi/Godot_museum'tRémi Verschelde
Allow to disable History Dock via feature profile
2022-11-07Rename GPUParticles2D/3D's `trail_length_secs` to `trail_lifetime`Hugo Locurcio
The property already has a "seconds" suffix in the inspector. The "lifetime" term makes it more obvious that the property is specified as time, not a distance in units. The property hint now allows manually entering values greater than 10 seconds. The internal rendering value's default now matches the particles nodes' default.
2022-11-07Allow to disable History Dock via feature profilekobewi
2022-11-07Surface AABBs are now set for mesh surfaces even in headless mode. Sponsored ↵Gábor Pál Korom
by Migeran (https://migeran.com).
2022-11-07Merge pull request #68337 from alfredbaudisch/multi-caret-selection-fixRémi Verschelde
Fixes mouse click deselect for multi and single carets
2022-11-07Merge pull request #68330 from RedMser/fix-relative-paths-disambiguateRémi Verschelde
Fix and simplify `EditorNode::disambiguate_filenames`
2022-11-07Merge pull request #68351 from Sauermann/fix-code-simplificationsRémi Verschelde
Code simplifications
2022-11-07Merge pull request #68344 from aaronfranke/virtually-documentedRémi Verschelde
Fix default values not showing up on virtual classes
2022-11-07Merge pull request #68202 from zaevi/fix_Web_WebSocket_failedRémi Verschelde
Fix WebSocket connection failed on Web.
2022-11-07Merge pull request #68331 from MewPurPur/gradient2d-better-previewRémi Verschelde
Fix GradientTexture2D's preview
2022-11-07Merge pull request #68321 from BastiaanOlij/xrorigin_start_posRémi Verschelde
Update XRServer with starting position of (new) current XROrigin3D
2022-11-07Code simplificationsMarkus Sauermann
CanvasItemEditor: - p_result == ADD_MOVE is always true in this switch-clause - both parts of the if-else-clause do the same thing and simplified an affine_inverse call ControlEditorToolbar: - private function ControlEditorToolbar::_anchor_to_position is used nowhere. Looks like copy and paste from CanvasItemEditor::_anchor_to_position ScrollContainer: - screen_is_touchscreen is always true, because otherwise the function already returned TextLine: - both parts of the if-else-clause do the same thing and simplified return statement
2022-11-06Fix jankiness when drawing GradientTexture2DVolTer
2022-11-06Fix default values not showing up on virtual classesAaron Franke
2022-11-06Mouse click deselect removes secondary carets and puts primary caret under ↵Alfred Reinold Baudisch
mouse position Fixes and closes #67993.
2022-11-06Fix disambiguate_filenames absolute paths on UnixRedMser
Also clean up relative path handling to use get_basename()
2022-11-06Merge pull request #67976 from alfredbaudisch/select-next-occurrence-better-testRémi Verschelde
Improve TextEdit::add_selection_for_next_occurrence test case
2022-11-06Merge pull request #68282 from alfredbaudisch/backspace-multi-careRémi Verschelde
Correctly deletes multi-caret selection with backspace
2022-11-06Merge pull request #68287 from HolonProduction/android_keysRémi Verschelde
Fix wrong android key mapping.
2022-11-06Merge pull request #68303 from pkdawson/fix-index-offsetsRémi Verschelde
RenderingDevice: Fix usage of index offset
2022-11-06Merge pull request #68275 from Geometror/doctest-approxRémi Verschelde
[Tests] Replace Math::is_equal_approx with == and doctest::Approx
2022-11-06Merge pull request #67614 from aaronfranke/virtually-virtualRémi Verschelde
Don't allow instancing virtual node types in the Create New Node dialog
2022-11-06Merge pull request #67730 from KoBeWi/late_to_the_callRémi Verschelde
Add call_deferred() method to Callable
2022-11-06Merge pull request #64321 from KoBeWi/s_p_l_i_tRémi Verschelde
Add support for empty delimiter in `String.split()`
2022-11-06Merge pull request #68247 from akien-mga/emscripten-warnings-unuset-but-setRémi Verschelde
Fix -Wunused-but-set-variable warnings from Emscripten 3.1.20
2022-11-06Update XRServer with starting position of (new) current XROrigin3DBastiaan Olij
2022-11-06Merge pull request #65441 from MewPurPur/annoying-whitespaces-trimming-fixRémi Verschelde
Prevent stripping the edges of strings when using Find in Files
2022-11-06Merge pull request #65829 from KoBeWi/custom_path_typeRémi Verschelde
Fix extending scripts by path
2022-11-05Merge pull request #68292 from Faless/web/4.x_editor_fixesRémi Verschelde
[Web] Fix shutdown, force WebGL2, fix editor run args.
2022-11-05RenderingDevice: Fix usage of index offsetPatrick Dawson
2022-11-05Don't allow instancing virtual resources in the resource picker dialogAaron Franke
2022-11-05Don't allow instancing virtual node types in the Create New Node dialogAaron Franke
2022-11-05[Editor] Fix invalid run args when remote debug is unavailable.Fabio Alessandrelli
2022-11-05[Web] Force WebGL2 when supported.Fabio Alessandrelli
2022-11-05[Web] Improve Godot shutdown and cleanup.Fabio Alessandrelli
2022-11-05Fix wrong android key mapping.HolonProduction
Fixes the wrong mapping of `Key::HOME`. Androids `KEYCODE_HOME` is in fact the hardware home button the right mapping is `KEYCODE_MOVE_HOME`. Also adds mappings to keys that were not present before.
2022-11-05Merge pull request #68270 from clayjohn/GLES3-batching-tilesetRémi Verschelde
Fix pathological corner case in drawing tileset editor
2022-11-05Pass caret index when deleting selection with backspaceAlfred Reinold Baudisch
Fixes and closes #67992
2022-11-05[Tests] Replace Math::is_equal_approx with == and doctest::ApproxHendrik Brucker
2022-11-04Merge pull request #68253 from dzil123/fix_array_shuffleIgnacio Roldán Etcheverry
Fix c# Array.Shuffle incorrect mono bindings
2022-11-04Improve error message for invalid library feature flagsPatrick
Fixes https://github.com/godotengine/godot/issues/63227 My version for the error message is: `No suitable library found. The libraries' tags referred to an invalid feature flag. Possible feature flags for your platform: %s`
2022-11-04Fix pathological corner case in drawing tileset editorclayjohn
Interleaving draw_rect calls with and without a texture forces every rect to have its own draw call. In this case it meant that there is a draw call for every single tile in the atlas. This change makes it so the renderer can batch draw calls which reduced the draw call count by a factor of 512
2022-11-04Add call_deferred() method to Callablekobewi
2022-11-04Add support for empty delimiter in String.splitkobewi
2022-11-04Fix c# Array.Shuffle incorrect mono bindingsdzil123