Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-11-25 | Merge pull request #69123 from queezle42/queezle42/master | Rémi Verschelde | |
Fix GLAD-related build problems on Linux | |||
2022-11-25 | Merge pull request #67511 from neikeq/issue-66060 | Rémi Verschelde | |
C#: Load assemblies as collectible only in the Godot editor | |||
2022-11-25 | Fix GLAD-related build problems on Linux | Jens Nolte | |
- Use gl.h provided by GLAD in the OpenXR module - Use non-EXT variants of some OpenGL defines - Remove libGL-related code paths | |||
2022-11-25 | C#: Add Projection documentation | Raul Santos | |
- Add documentation to Projection type - Reorder Projection members to be consistent with other C# types | |||
2022-11-24 | Merge pull request #69134 from jquinl/export_range_int_fix | Rémi Verschelde | |
GDScript: Properly respect `int` type hint for `@export_range` | |||
2022-11-24 | GDScript: Properly respect `int` type hint for `@export_range` | unknown | |
Fixes #69104. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com> | |||
2022-11-24 | Ensure class name is printed in STATIC_CALLED_ON_INSTANCE warning | clayjohn | |
2022-11-24 | Merge pull request #69127 from KoBeWi/redUNDOnt | Rémi Verschelde | |
Cleanup remaining EditorUndoRedoManager usages | |||
2022-11-24 | Cleanup remaining EditorUndoRedoManager usages | kobewi | |
2022-11-24 | Merge pull request #69125 from raulsntos/dotnet/bezier_derivative | Rémi Verschelde | |
C#: Implement BezierDerivative | |||
2022-11-24 | Merge pull request #69111 from TokageItLab/put-together-interpolations | Rémi Verschelde | |
Refactor interpolating functions in some classes to use `Math` class | |||
2022-11-24 | Merge pull request #69083 from fire/abstract_gltf_material | Rémi Verschelde | |
Cache materials in gltf as the abstract class of Material in GLTFDocument | |||
2022-11-24 | Cache materials in gltf as the abstract class of Material | K. S. Ernest (iFire) Lee | |
Use the abstract material class instead of BaseMaterial3D. This allows inserting ShaderMaterials into gltf. Like in VRM. | |||
2022-11-24 | C#: Implement BezierDerivative | Raul Santos | |
Adds `BezierDerivative` method to Mathf, Vector2 and Vector3 (already exposed in Core). | |||
2022-11-24 | Refactor interpolating functions in some classes to use Math class | Silc Renew | |
2022-11-24 | GDScript: Only check if ignoring warnings in debug build | Rémi Verschelde | |
2022-11-24 | Merge pull request #68023 from rsjtdrjgfuzkfg/pico | Rémi Verschelde | |
Partial support for Pico 4 | |||
2022-11-23 | Merge pull request #69048 from akien-mga/thorvg-better-errors | Rémi Verschelde | |
ImageLoaderSVG: Improve error reporting | |||
2022-11-23 | Merge pull request #68985 from adamscott/fix-godot#68977-constant-parameters | Rémi Verschelde | |
Fix parameters that are considered as constants | |||
2022-11-23 | Merge pull request #68580 from rhofour/fix-source-generation | Rémi Verschelde | |
First attempt at fully qualifying the default values of C# properties. | |||
2022-11-23 | [godot#68977] Fix constants parameters | Adam Scott | |
2022-11-23 | ImageLoaderSVG: Improve error reporting | Rémi Verschelde | |
2022-11-23 | Merge pull request #69022 from RedMser/unregister-gltfdocext | Rémi Verschelde | |
Add unregister for `GLTFDocumentExtension` | |||
2022-11-22 | Fully qualify C# default values in exported fields. | R. Alex Hofer | |
This avoids issues when the default values rely on using namespaces. | |||
2022-11-22 | Add unregister for GLTFDocumentExtension | RedMser | |
2022-11-22 | Merge pull request #64250 from raulsntos/openxr-string-arrays | Rémi Verschelde | |
Expose string array properties in OpenXR module as PackedStringArray | |||
2022-11-22 | Merge pull request #68948 from KoBeWi/eeny_meeny_miny_moe | Rémi Verschelde | |
Fill random docs | |||
2022-11-22 | Fill random docs | kobewi | |
2022-11-22 | GDScript: Don't warn about RETURN_VALUE_DISCARDED by default | Rémi Verschelde | |
This happens too often with normal usage of the API. The warning can still be useful to find actual bugs where discarding the return value wasn't intentional, but this should stay enabled manually, at least until we either improve the API to remove false positives, or improve the warning (e.g. to only warn about unused return value on const functions). | |||
2022-11-22 | Merge pull request #68581 from oganm/oganm/master | Rémi Verschelde | |
fix typo in ZIPReader doc | |||
2022-11-22 | Merge pull request #68970 from Chaosus/gds_fix_lambda_signal | Rémi Verschelde | |
Fix using signals in lambda functions | |||
2022-11-22 | Fix using signals in lambda functions | Yuri Rubinsky | |
2022-11-22 | Merge pull request #68987 from ↵ | Rémi Verschelde | |
adamscott/fix-godot#61386-autoload-scenes-implicit-types Fix autoload scenes implicit types | |||
2022-11-22 | Merge pull request #68972 from adamscott/fix-godot#68971-cached-scene | Rémi Verschelde | |
Fetch cached scene if it exists in `GDScriptCache::get_packed_scene()` | |||
2022-11-22 | Merge pull request #68911 from souplamp/return-value-discarded-error | Rémi Verschelde | |
Clarify what happens when return value is discarded in GDScript warning text | |||
2022-11-21 | [godot#61386] Fix autoload scenes implicit types | Adam Scott | |
2022-11-21 | change RETURN_VALUE_DISCARDED GDScript warn text | souplamp | |
changed RETURN_VALUE_DISCARDED GDscript warning text to mention how the return value of a function is discarded; update GDScript parser warning test to include new warning text. | |||
2022-11-21 | [godot#68971] Fetch cached scene if it exists in `GDScriptCache` | Adam Scott | |
2022-11-21 | Add three new methods to GLTFDocumentExtension | Aaron Franke | |
2022-11-21 | Fix GDScript completion crash | Yuri Rubinsky | |
2022-11-21 | Merge pull request #68945 from bruvzg/fix_fontawesome_breaks | Rémi Verschelde | |
[TextServer] Fix line breaking for the special fonts that substitute a long string (with breaks opportunities in it) with a single glyph. | |||
2022-11-21 | Merge pull request #68025 from Sauermann/fix-cppcheck-code-simplifications | Rémi Verschelde | |
Code simplifications found by cppcheck | |||
2022-11-21 | Merge pull request #68933 from fire/meow-meow-meow | Rémi Verschelde | |
Add GLTFDocument documentation. | |||
2022-11-21 | Code simplifications found by cppcheck | Markus Sauermann | |
They are based on: - Boolean arithmetic simplifications - setting variables that are not accessed - constant variables | |||
2022-11-21 | [TextServer] Fix line breaking for the special fonts that substitute a long ↵ | bruvzg | |
string (with breaks opportunities in it) with a single glyph. | |||
2022-11-20 | Add GLTFDocument documentation. | K. S. Ernest (iFire) Lee | |
Co-authored-by: Meow <mosesturner@protonmail.com> Co-authored-by: Aaron Franke <arnfranke@yahoo.com> | |||
2022-11-20 | Merge pull request #68929 from adamscott/add-rename-check | Rémi Verschelde | |
Add `GDScriptCache::move_script` check before executing logic | |||
2022-11-20 | Merge pull request #68927 from rune-scape/rune-cache-parse-error | Rémi Verschelde | |
GDScript: Cache scripts after parse error | |||
2022-11-20 | Add move_script check before executing logic | Adam Scott | |
2022-11-20 | GDScript: Cache scripts after parse error | rune-scape | |