summaryrefslogtreecommitdiff
path: root/servers
AgeCommit message (Collapse)Author
2022-06-23Add NavigationServer.region_owns_point() helper functionsmix8
Adds a helper function to check if a world space position is currently owned by a navigation region.
2022-06-23Merge pull request #62312 from smix8/navigation_get_maps_4.xRémi Verschelde
2022-06-23Merge pull request #61221 from BastiaanOlij/split_gi_effectsRémi Verschelde
2022-06-22Merge pull request #55846 from ellenhp/fix_ogg_edge_casesRémi Verschelde
Fix ogg edge cases
2022-06-22Merge pull request #35758 from zmanuel/eliminate-draw-pendingRémi Verschelde
Remove redundant thread sync counter draw_pending
2022-06-22Merge pull request #62286 from JFonS/taa_global_timeRémi Verschelde
2022-06-22Merge pull request #62305 from JFonS/taa_molten_mobile_workaroundRémi Verschelde
2022-06-22Add Navigation function to get all navigation mapssmix8
Added new function that returns all created navigation map RIDs from the NavigationServer. The function returns both 2D and 3D created navigation maps as technically there is no distinction between them.
2022-06-22Move TIME to a global shader variablejfons
This makes it work consistently for motion vectors in all functions, including user-defined ones.
2022-06-22Workaround MoltenVK shader conversion errorJFonS
2022-06-22Split GI effects and fix stereoscopic rendering of GI effectsBastiaan Olij
2022-06-21Merge pull request #62122 from reduz/implement-movie-writerRémi Verschelde
Implement a Movie Maker mode
2022-06-21Implement Running Godot as Movie Writerreduz
* Allows running the game in "movie writer" mode. * It ensures entirely stable framerate, so your run can be saved stable and with proper sound (which is impossible if your CPU/GPU can't sustain doing this in real-time). * If disabling vsync, it can save movies faster than the game is run, but if you want to control the interaction it can get difficult. * Implements a simple, default MJPEG writer. This new features has two main use cases, which have high demand: * Saving game videos in high quality and ensuring the frame rate is *completely* stable, always. * Using Godot as a tool to make movies and animations (which is ideal if you want interaction, or creating them procedurally. No other software is as good for this). **Note**: This feature **IS NOT** for capturing real-time footage. Use something like OBS, SimpleScreenRecorder or FRAPS to achieve that, as they do a much better job at intercepting the compositor than Godot can probably do using Vulkan or OpenGL natively. If your game runs near real-time when capturing, you can still use this feature but it will play no sound (sound will be saved directly). Usage: $ godot --write-movie movie.avi [scene_file.tscn] Missing: * Options for configuring video writing via GLOBAL_DEF * UI Menu for launching with this mode from the editor. * Add to list of command line options. * Add a feature tag to override configurations when movie writing (fantastic for saving videos with highest quality settings).
2022-06-20Clean up Hash Functionsreduz
Clean up and do fixes to hash functions and newly introduced murmur3 hashes in #61934 * Clean up usage of murmur3 * Fixed usages of binary murmur3 on floats (this is invalid) * Changed DJB2 to use xor (which seems to be better)
2022-06-19Automatically update the editor viewport when 3D scaling options are changedHugo Locurcio
This allows for previewing the effects of the various 3D scaling project settings without having to restart the editor.
2022-06-18Merge pull request #62106 from BastiaanOlij/eye_offsetRémi Verschelde
Introduce eye_offset for correcting stereoscopic reflections
2022-06-17Introduce eye_offset for correcting stereoscopic reflectionsBastiaan Olij
Use view instead of vertex for reflections.
2022-06-17Cleanup AudioEffectRecord thread_active variableMarcel Admiraal
2022-06-16Merge pull request #62081 from Calinou/glow-mix-mode-apply-after-fxaaRémi Verschelde
Fix glow in Mix mode not working correctly when FXAA is enabled
2022-06-16Move duplicate AutoWrap, Overrun and VisibleChar behavior enums to the ↵bruvzg
TextServer.
2022-06-15Fix glow in Mix mode not working correctly when FXAA is enabledHugo Locurcio
Glow must be performed after FXAA to ensure correct appearance.
2022-06-15Streamline Navigation layer function names.smix8
Streamline Navigation layer function names.
2022-06-14Remove GLES2 shader constraints from GLES3clayjohn
2022-06-13Tweak Light3D property hints for greater flexibilityHugo Locurcio
- Specular can now be set above 1.0. - Blur can be set to 0 to disable shadow blurring entirely, which is useful on lights that have a non-zero size. - When shadow blurring is disabled, lights that have a non-zero size will not use PCSS-like soft shadows, speeding up shadow rendering considerably. - Some property hints now allow more precise values.
2022-06-13Merge pull request #61772 from bruvzg/ft_ot_collectRémi Verschelde
2022-06-11Add suffixes to all nodes and resourcesFireForge
2022-06-10Prevent defining float constant without number after exponent in shadersYuri Rubinsky
2022-06-09Fix incorrect sky rotation based on camera axisYuri Rubinsky
2022-06-09Fix `TIME` compilation for custom functions in spatial shaderYuri Rubinsky
2022-06-09Workaround MoltenVK error found in TAA implementationjfons
2022-06-08Assign VIEWPORT_SIZE after validating screen_size to avoid crash when using ↵clayjohn
ReflectionProbe
2022-06-08Merge pull request #61739 from smix8/navigation_region_cost_4.xRémi Verschelde
2022-06-08Merge pull request #61794 from clayjohn/VULKAN-viewport-sizeRémi Verschelde
Use RenderBuffer size instead of half extents for VIEWPORT_SIZE
2022-06-07Use RenderBuffer size instead of half extents for VIEWPORT_SIZE in Vulkan ↵clayjohn
spatial shaders
2022-06-07Initial TAA implementationjfons
Initial TAA support based on the implementation in Spartan Engine. Motion vectors are correctly generated for camera and mesh movement, but there is no support for other things like particles or skeleton deformations.
2022-06-07[TextServer] Adds support for TrueType / OpenType collection files (*.TTC, ↵bruvzg
*.OTC).
2022-06-06Add NavigationRegion costs for pathfindingsmix8
Add NavigationRegion costs for pathfinding.
2022-06-03Merge pull request #61554 from Chaosus/shader_fix_hintsRémi Verschelde
2022-06-01Change Server initialization orderreduz
* Registration of server classes happened after Display initialization. * This made no sense in practice and avoided the registration of custom server drivers (like custom XR server, custom Rendering server, custom XR server). * Initialization moved to _before_ Display.
2022-06-01Ensure has_os_features is safely called as it can't be called from within ↵Bastiaan Olij
the construct of RenderingServerDefault on which it relies
2022-05-31Merge pull request #61572 from clayjohn/ssao-licenseRémi Verschelde
2022-05-31Add and improve license attribution for SSAO and SSIL shader codeclayjohn
2022-05-31Merge pull request #61480 from Calinou/profiler-physics-add-3d-suffixRémi Verschelde
Add a 3D suffix to relevant physics profiler categories
2022-05-31Refactor shader hintsYuri Rubinsky
2022-05-28Fix error with !rb spam when using background color mode with reflection probesclayjohn
2022-05-28Add a 3D suffix to relevant physics profiler categoriesHugo Locurcio
2D physics categories already had a 2D suffix: "Physics 2D"
2022-05-26Remove mesh and particles RD dependencies from canvas rendering serverclayjohn
2022-05-26Merge pull request #61425 from clayjohn/GLES3-2DRémi Verschelde
2022-05-25Implement 2D Meshes and MultiMeshes in GLES3 backendclayjohn
2022-05-25use ERR_FAIL_INDEX when preferredNathan Franke