Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-10-13 | Merge pull request #67251 from groud/simplify_path_solve_urls | Rémi Verschelde | |
Make String.simplify_path keep the protocol identifier for urls | |||
2022-10-13 | Merge pull request #67345 from Faless/ws/4.x_fix_connecting | Fabio Alessandrelli | |
[WebSocket] Fix TCP connection being closed while connecting. | |||
2022-10-13 | [WebSocket] Fix TCP connection being closed while connecting. | Fabio Alessandrelli | |
Fix a bug causing the WebSocketPeer to fail connecting to a remote server when the TCP 3-way handshake took more than a few milliseconds. | |||
2022-10-13 | Make String.simplify_path keep the protocol identifier for urls | Gilles Roudière | |
2022-10-13 | Merge pull request #67340 from bruvzg/mac_export_min | Rémi Verschelde | |
Fix macOS export plugin build without regex module. | |||
2022-10-13 | Merge pull request #67335 from clayjohn/GLES3-2d-lights | Rémi Verschelde | |
Add 2D lights to OpenGL3 canvas renderer | |||
2022-10-13 | Merge pull request #67320 from Calinou/fix-volumetric-fog-low-density | Rémi Verschelde | |
Fix volumetric fog not rendering at densities lower than or equal to 0.001 | |||
2022-10-13 | Merge pull request #67216 from dotlogix/Bugfix/FixErrorWhenSerializingSignals | Rémi Verschelde | |
Fix crash when serializing empty delegates in C# | |||
2022-10-13 | Merge pull request #67307 from TechnoPorg/lod-radial-distance | Rémi Verschelde | |
Use radial distance for making LOD decisions. | |||
2022-10-13 | Merge pull request #66953 from Sauermann/fix-top-level-connect-error | Rémi Verschelde | |
Fix Control node not disconnecting from signal | |||
2022-10-13 | Merge pull request #67318 from bruvzg/more_gcc_warn | Rémi Verschelde | |
[Windows] Fix more GCC MinGW warnings. | |||
2022-10-13 | Merge pull request #59468 from EricEzaM/fix-zoom-shortcuts | Rémi Verschelde | |
Fix zoom in/out keyboard shortcuts not working | |||
2022-10-13 | Merge pull request #66349 from A-Lamia/Amount_At_Collision | Rémi Verschelde | |
PARTICLES: adds amount property to collision sub particles. | |||
2022-10-13 | Fix macOS export plugin build without regex module. | bruvzg | |
2022-10-12 | Add 2D lights to OpenGL3 canvas renderer | clayjohn | |
This is an initial implementation using the same single-pass approach as the RenderingDevice. | |||
2022-10-13 | Fix volumetric fog not rendering at densities lower than or equal to 0.001 | Hugo Locurcio | |
This allows volumetric fog to render with the lowest density that can be specified in the inspector (0.0001). | |||
2022-10-13 | Adding null check to prevent null reference exception when serializing ↵ | Alexander Schill | |
delegates in C# | |||
2022-10-12 | Merge pull request #67325 from Faless/web/4.x_scons_serve | Rémi Verschelde | |
[Web] Add the "serve" and "run" scons targets. | |||
2022-10-12 | Merge pull request #67281 from Nidjo123/x11-window-resize | Rémi Verschelde | |
Keep rendering context window size in sync when resizing | |||
2022-10-12 | Merge pull request #66952 from bruvzg/macos_net_export | Rémi Verschelde | |
Fix macOS .NET export. | |||
2022-10-12 | [Web] Add the "serve" and "run" scons targets. | Fabio Alessandrelli | |
You can now run the test HTTP server by calling: scons p=web serve If you also wish to run the browser, call instead: scons p=web run The default listen port is 8060, but can be overriden via the env variable GODOT_WEB_TEST_PORT which must be a valid integer. | |||
2022-10-13 | particles: add amount property to sub property collision. | Lamia | |
2022-10-12 | [Windows] Fix GCC MinGW warnings. | bruvzg | |
2022-10-12 | Merge pull request #65714 from benbot/fix-double-particle-collision-calculation | Rémi Verschelde | |
2022-10-12 | Merge pull request #67306 from raulsntos/dotnet/format2 | Rémi Verschelde | |
2022-10-12 | Fix dotnet format | Raul Santos | |
It was failing due to generated files being referenced in .NET projects but the files are missing because they are generated by `godot --generate-mono-glue` or `build_assemblies.py`. | |||
2022-10-12 | Use radial distance for making LOD decisions. | TechnoPorg | |
Previously, only forward basis distance from the camera was used. This means that unnecessarily high LOD levels were used for objects located to the side of the camera. The distance from the camera origin is now used, independently of direction. | |||
2022-10-12 | Merge pull request #67232 from bruvzg/popup_edit | Rémi Verschelde | |
Improve Popup / Window behavior in the edited scene tree. | |||
2022-10-12 | Merge pull request #67300 from Mickeon/indexed-objection | Rémi Verschelde | |
Rename `set`/`get_indexed`'s "property" to "property_path" | |||
2022-10-12 | Merge pull request #67298 from Splizard/fix_unamed_args_gdextension | Rémi Verschelde | |
Fix _unnamed_arg so that arguments defined by GDExtension show up in the editor docs. | |||
2022-10-12 | Merge pull request #67252 from zaevi/web_fix_export_file_locked | Rémi Verschelde | |
[Web] Fix file locked issue when exporting to Web. | |||
2022-10-12 | Merge pull request #67295 from rune-scape/rune-gdscript-highlighter-keywords | Rémi Verschelde | |
GDScript: fix highlighting '.' after global class name | |||
2022-10-12 | Rename `set`/`get_indexed`'s "property" to "property_path" | Micky | |
Also touches up the Documentation slightly. | |||
2022-10-12 | Fix _unnamed_arg so that arguments defined by GDExtension show up in docs. | Quentin Quaadgras | |
The Godot API (gdnative_interface.h) allows methods to be registered on extension classes with `classdb_register_extension_class_method` a `GDNativeExtensionClassMethodInfo` can be provided to this function along with a `get_argument_info_func` which according to the comment indicates that argument names should be definable here. Unfortunately, setting the name field in the `GDNativePropertyInfo` struct has no effect on the editor documentation, which continues to display "_unnamed_arg" for each argument. I discovered that `get_argument_info` is responsible for this as it always overrides the `info.name`. I've added an if condition that will only override the name when it is empty. I've tested this with my GDExtension module and I can confirm that with this commit, the argument name shows up in the builtin docs. eg. in Lookup Symbol. | |||
2022-10-12 | Merge pull request #67277 from KoBeWi/🤦♂️ | Rémi Verschelde | |
Fix source sort not saving in TileMap editor | |||
2022-10-12 | Merge pull request #67272 from Riteo/fix-auto-execinfo | Rémi Verschelde | |
Actually set the execinfo flag on non-glibc systems | |||
2022-10-12 | Merge pull request #66003 from voidshine/fix_midi_event_mutation | Rémi Verschelde | |
Fix MIDI note-on events being converted to note-off events | |||
2022-10-12 | Merge pull request #67258 from Faless/web/4.x_eslint_html | Rémi Verschelde | |
[Web] Add auto-formatting to HTML files. | |||
2022-10-12 | Merge pull request #65779 from Mickeon/rename-camera-follow | Rémi Verschelde | |
Rename Camera2D's `smoothing` to `position_smoothing` | |||
2022-10-11 | Merge pull request #67227 from BastiaanOlij/vkCreateRenderPass2KHR_fallback | Clay John | |
Added fallback to vkCreateRenderPass | |||
2022-10-11 | GDScript: fix highlighting '.' after global class name | Rune | |
2022-10-12 | Merge pull request #66594 from Faless/ws/4.x_unify_peer | Fabio Alessandrelli | |
[WebSocket] Refactor websocket module. | |||
2022-10-12 | Added fallback to vkCreateRenderPass if ↵ | Bastiaan Olij | |
VK_KHR_CREATE_RENDERPASS_2_EXTENSION_NAME isn't supported | |||
2022-10-11 | Keep rendering context window size in sync when resizing | Nikola Bunjevac | |
On X11 we rely on ConfigureNotify event to update rendering context window size, but we don't get such event when resizing programmatically, only when done "manually" by resizing the window etc. | |||
2022-10-11 | Merge pull request #67215 from Nidjo123/project-dialog-resize | Rémi Verschelde | |
Resize project dialog only when necessary | |||
2022-10-11 | Merge pull request #67271 from Paulb23/textedit_select_word_under_caret | Rémi Verschelde | |
Fix select word under caret using caret col instead of line | |||
2022-10-11 | Fix source sort not saving in TileMap editor | kobewi | |
2022-10-11 | Actually set the execinfo flag on non-glibc systems | Riteo | |
2022-10-11 | Fix MIDI note-on events being converted to note-off events | voidshine | |
Update documentation with note about MIDI velocity interpretation | |||
2022-10-11 | Fix select word under caret using caret col instead of line | Paulb23 | |