Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-10-19 | Add support for returning the play area from XRInterface | Bastiaan Olij | |
2021-10-19 | Merge pull request #52940 from groud/toast_notification | Rémi Verschelde | |
2021-10-19 | Merge pull request #53980 from nekomatata/rename-godot-physics-classes | Rémi Verschelde | |
2021-10-19 | Merge pull request #52210 from BastiaanOlij/enhance_xr_trackers | Rémi Verschelde | |
2021-10-19 | Merge pull request #53960 from ↵ | Rémi Verschelde | |
Klowner/audioserver-startplaybackstream-potential-leak | |||
2021-10-18 | Rename Godot Physics classes from *SW to Godot* | PouleyKetchoupp | |
Also moved MT physics server wrappers to the main servers folder, since they don't have to be implementation specific. | |||
2021-10-18 | Validate enum range in RendererViewport::viewport_get_render_info | Haoyu Qiu | |
2021-10-18 | fix potential memory leak of AudioStreamPlaybackBusDetails in ↵ | Mark Riedesel | |
AudioServer::start_playback_stream() | |||
2021-10-18 | [TextServer] Use `round` instead of `floor` for hex code box size ↵ | bruvzg | |
calculation to better match font size. | |||
2021-10-17 | Rework XR positional trackers | Bastiaan Olij | |
2021-10-15 | Swap args of Plane(point, normal) constructor | mennomax | |
Now (normal, point) | |||
2021-10-15 | Merge pull request #53815 from Chaosus/fix_wireframe_render_mode | Rémi Verschelde | |
2021-10-15 | Fix `wireframe` render mode | Yuri Roubinsky | |
2021-10-14 | Remove incorrect fog height density remapping | Brian Semrau | |
2021-10-14 | Implement toast notifications in the editor | Gilles Roudière | |
2021-10-14 | Fix the height fog effect | Brian Semrau | |
2021-10-13 | Added few more built-ins to shader language | Yuri Roubinsky | |
2021-10-12 | Merge pull request #53712 from CakHuri/nullptr | Rémi Verschelde | |
Replace NULL with nullptr | |||
2021-10-12 | Replaced NULL with nullptr | M. Huri | |
2021-10-12 | Fix some LGTM errors of "Multiplication result converted to larger type" | Aaron Franke | |
2021-10-11 | Fix shader crash on using METALLIC and ROUGHNESS built-ins in light func | Yuri Roubinsky | |
2021-10-11 | Merge pull request #53641 from DeeJayLSP/audio_pitch_fix | Rémi Verschelde | |
2021-10-10 | Allow AudioStreamPlayer(2D) to provide `pitch_scale` on playback | Douglas Leão | |
2021-10-10 | Merge pull request #53066 from Chaosus/shader_funcs | Rémi Verschelde | |
2021-10-09 | Fix auto LOD generation for blendshapes. | Joan Fons | |
2021-10-09 | Fix missing argument names in bindings | Rémi Verschelde | |
While at it, tweak some boolean setters to use `p_enabled` for the bool. Also renames `draw_minimap()` to `set_draw_minimap()`. | |||
2021-10-08 | Allow any floating-point value as a 3D rendering scale option | Hugo Locurcio | |
This allows for finer control over 3D rendering resolution. Supersampling can also be performed by setting a 3D rendering resolution above 1.0, which is useful for offline rendering or for very high-end GPUs. | |||
2021-10-08 | Merge pull request #53527 from Chaosus/shader_array | Rémi Verschelde | |
2021-10-08 | Allow declare the shader arrays with a size defined before identifier | Yuri Roubinsky | |
2021-10-07 | Merge pull request #53523 from Calinou/remove-occlusion-color | Rémi Verschelde | |
2021-10-07 | Remove unimplemented `Environment.ambient_light_occlusion_color` property | Hugo Locurcio | |
This property was intended to provide a way to have SSAO or VoxelGI ambient occlusion with a color other than black. However, it was dropped during the Vulkan renderer development due to the performance overhead it caused when the feature wasn't used. | |||
2021-10-07 | Replace references to VisualServer in code comments with RenderingServer | Hugo Locurcio | |
VisualServer no longer exists in the `master` branch. | |||
2021-10-07 | Fix shader crash when passing array to index expression | Yuri Roubinsky | |
2021-10-07 | Merge pull request #53491 from Chaosus/shader_fix_texture_array_uniforms | Yuri Roubinsky | |
2021-10-07 | Merge pull request #53504 from clayjohn/VULKAN-sky-bug | Rémi Verschelde | |
Remove bogus sky error check | |||
2021-10-07 | Merge pull request #51115 from clayjohn/VULKAN-SSAO-radius | Rémi Verschelde | |
Move assignment of SSAO radius push constant | |||
2021-10-06 | Remove bogus sky error check | clayjohn | |
2021-10-06 | Fix regression which prevents using texture array uniforms | Yuri Roubinsky | |
2021-10-05 | Add missing shader built-ins | Yuri Roubinsky | |
2021-10-05 | Merge pull request #53425 from Chaosus/shader_fix | Rémi Verschelde | |
2021-10-05 | Fix shader crash when passing array.length to functions | Yuri Roubinsky | |
and similar cases | |||
2021-10-05 | Merge pull request #53420 from nekomatata/fix-tilemap-moving-platform | Rémi Verschelde | |
2021-10-05 | Merge pull request #53412 from Chaosus/shader_fix_uniform_arrays | Yuri Roubinsky | |
2021-10-04 | Merge pull request #53365 from danger-dan/wakeup_fix | Camille Mohr-Daurat | |
Use wakeup() function to wake sleeping bodies on impulse, force and velocities. Fix for PR #52967 | |||
2021-10-05 | Changed from directly waking bodies to using the wakeup() functions in ↵ | Daniel | |
direct body state changes (forces, impulses and veloicities). this 'bug' was introduced in PR #52967 added wakeup to 2d direct body | |||
2021-10-04 | Fix syntax parsing error of uniform arrays declaration in shader | Yuri Roubinsky | |
2021-10-04 | Fix physics glitch with TileMap moving platforms | PouleyKetchoupp | |
Added a parameter in test_body_motion to exclude attached objects from collision, used to avoid collision with all TileMap tiles with moving platform motion instead of just the one tile the character touches. Same changes made in 3D for consistency, and handling potential similar cases. | |||
2021-10-04 | Merge pull request #53280 from nekomatata/test-body-motion-parameters | Rémi Verschelde | |
2021-10-04 | Script interface improvements for test body motion | PouleyKetchoupp | |
-Physics servers test body motion use a class to hold parameters instead of multiple arguments to make it more readable and flexible since there are many options -Improved documentation for test body motion and kinematic collision -Removed read-only properties for body motion results (not handled in scripts, so they should be get_ methods only instead) | |||
2021-10-04 | Merge pull request #53398 from nekomatata/soft-body-index-check | Rémi Verschelde | |
Fix remaining crashes with pinned vertices in GodotPhysics Soft Body |