Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-08-09 | Tweak Label3D defaults for better readability | Hugo Locurcio | |
- Increase font size and decrease pixel size. - The font is rendered at the same physical size, but is more detailed, which is visible when the camera is up close. - Add an outline to improve readability on mixed-color backgrounds. - The outline is fairly thick to ensure it doesn't get too grainy at a distance (without requiring MSDF or mipmaps on the default project font). | |||
2022-08-08 | Added to Sprite3D Documentation | Marlin Watts-Woods | |
2022-08-08 | Improve InstancePlaceholder documentation | Hugo Locurcio | |
2022-08-08 | Merge pull request #64008 from YuriSizov/doctool-add-param-reference-syntax | Rémi Verschelde | |
2022-08-08 | Rename the argument tag to param in XML documentation | Yuri Sizov | |
2022-08-08 | Print expected `os.arch` tuple for current platform in GDExtension error | Hugo Locurcio | |
This also adds `Engine.get_architecture_name()` to get the name of the CPU architecture the Godot binary was built for. | |||
2022-08-08 | Merge pull request #64076 from raulsntos/doc-fixes | Rémi Verschelde | |
Add `@GDScript.type_exists` documentation, Fix typo in weakref documentation | |||
2022-08-08 | Merge pull request #62861 from samdze/image-size-vector2i | Rémi Verschelde | |
Make Image.get_size() return a Vector2i instead of a Vector2 | |||
2022-08-08 | Merge pull request #64014 from RedMser/keep-screen-on-singledef | Rémi Verschelde | |
2022-08-08 | Merge pull request #63925 from YeldhamDev/window_fixes | Rémi Verschelde | |
2022-08-08 | Merge pull request #62571 from Calinou/gpuparticlescollisionsdf3d-add-bake-mask | Rémi Verschelde | |
2022-08-08 | doc: Clarify `MultiMesh.set_instance_color` re: white albedo color | Cristiano Simao | |
If the user does not set the albedo color to pure white, then the multiplication with a value different from 1 will produce modulated colors. Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro> | |||
2022-08-07 | Fix typo in weakref documentation | Raul Santos | |
2022-08-07 | Merge pull request #62454 from Geometror/reflect-refract-vec2-vec4 | Rémi Verschelde | |
Allow for vec2/vec4 to be used in reflect and refract | |||
2022-08-07 | Allow vec2 and vec4 for reflect and refract | Hendrik Brucker | |
2022-08-07 | Merge pull request #64027 from Geometror/add-vector4-tests | Rémi Verschelde | |
2022-08-07 | Vector4/Vector4i: Add missing methods, tests and fix change of sign operator | Hendrik Brucker | |
2022-08-07 | Add a shadow opacity property to Light3D | Hugo Locurcio | |
This can be used to make shadows translucent for a specific light. The light distance fade system also uses this to smoothly fade the shadow when the light fade transition distance is greater than 0. | |||
2022-08-07 | Fix broken rST reference in HTTPClient documentation | Hugo Locurcio | |
References in reStructuredText cannot be located within bold/italic text. This caused the online class reference to have the `:ref:` text written as-is. | |||
2022-08-06 | Merge pull request #63361 from KoBeWi/floorf_lol | Rémi Verschelde | |
2022-08-06 | Only define `keep_screen_on` project setting once | RedMser | |
2022-08-06 | Restore old lerp() behavior and add lerpf() | kobewi | |
2022-08-06 | Merge pull request #60843 from hoontee/CSG3 | Rémi Verschelde | |
Add `TorusMesh` | |||
2022-08-06 | Merge pull request #63977 from TomBCodes/master | Rémi Verschelde | |
2022-08-06 | Document editor settings in the class reference | Hugo Locurcio | |
2022-08-06 | Merge pull request #63698 from PrecisionRender/plane-operator-asterisk | Rémi Verschelde | |
Add operator `*` to `Plane` | |||
2022-08-06 | Merge pull request #63958 from hakro/fix-control-animation-keys | Rémi Verschelde | |
Remove rect_ prefix from control properties when keyframing | |||
2022-08-05 | updated the String class with info about the 'allow_empty' optional argument | Tom | |
2022-08-05 | Remove rect_ prefix from control properties when keyframing | Hakim | |
2022-08-05 | Merge pull request #63951 from reduz/framebuffer-cache | Clay John | |
Add a Framebuffer cache | |||
2022-08-05 | Add a Framebuffer cache | Juan Linietsky | |
Adds a FramebufferCache singletion that operates the same way as UniformSetCache. Allows creating framebuffers on the fly (and keep them cached if re-requested) such as: ```C++ RID fb = FramebufferCache::get_singleton()->get_cache(texture1,texture2); ``` | |||
2022-08-05 | Improve `range_lerp()` and related methods documentation | Hugo Locurcio | |
2022-08-05 | Fix some bugs with `Window`s | Michael Alexsander | |
2022-08-05 | Merge pull request #59844 from Calinou/rename-shader-param-methods | Rémi Verschelde | |
2022-08-04 | Rename shader parameter uniform setter/getter methods for consistency | Hugo Locurcio | |
`shader_uniform` is now consistenly used across both per-shader and per-instance shader uniform methods. This makes methods easier to find in the class reference when looking for them. | |||
2022-08-04 | Merge pull request #63852 from fire-forge/default-colors | Rémi Verschelde | |
2022-08-04 | Add `TorusMesh` | hoontee | |
2022-08-04 | Merge pull request #58536 from winterpixelgames/feature/virtual-keyboard-types | Rémi Verschelde | |
Add support for multiple virtual keyboard types | |||
2022-08-04 | Merge pull request #54792 from EIRTeam/independent_arrows | Rémi Verschelde | |
2022-08-04 | Add support for multiple virtual keyboard types | Brian Semrau | |
2022-08-04 | Independent spinbox arrow step precision | Jóhannes Gunnar Þorsteinsson | |
Rebased by EIREXE This work has been kindly sponsored by IMVU & EIRTeam. | |||
2022-08-04 | Merge pull request #49947 from ↵ | Rémi Verschelde | |
Calinou/standardmaterial3d-tweak-default-height-properties | |||
2022-08-04 | Tweak StandardMaterial3D's default height properties | Hugo Locurcio | |
- Set the default height scale to 5.0 and multiply it by 0.01 in the shader. - Document heightmap properties in BaseMaterial3D class reference. | |||
2022-08-04 | Merge pull request #63884 from RedMser/resourceuid-docs | Rémi Verschelde | |
Add ResourceUID documentation | |||
2022-08-04 | Merge pull request #63899 from bruvzg/hb_510 | Rémi Verschelde | |
HarfBuzz: Update to version 5.1.0, use new FLAG_SAFE_TO_INSERT_TATWEEL flag to improve justification. | |||
2022-08-04 | HarfBuzz: Update to version 5.1.0, use new FLAG_SAFE_TO_INSERT_TATWEEL flag ↵ | bruvzg | |
to improve justification. | |||
2022-08-04 | Merge pull request #61918 from KoBeWi/static_body | Rémi Verschelde | |
Add static methods to create RayQueryParameters | |||
2022-08-04 | Improve error message when the requested V-Sync mode cannot be used | Hugo Locurcio | |
2022-08-03 | Add ResourceUID documentation | RedMser | |
2022-08-03 | Merge pull request #63875 from hakro/fix-segment-intersects-circle | Rémi Verschelde | |
Bring back Geometry2D.segment_intersects_circle |