Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-11-22 | Merge pull request #68997 from ueshita/fix_verts_65536 | Rémi Verschelde | |
Fix some switching decisions for index format. (vertex length 65536) | |||
2022-11-22 | Merge pull request #68948 from KoBeWi/eeny_meeny_miny_moe | Rémi Verschelde | |
Fill random docs | |||
2022-11-22 | Merge pull request #65378 from Mickeon/fix-audio-stream-2d-non-immediate-playing | Rémi Verschelde | |
Fix AudioStreamPlayer2D and 3D's `playing` not updating right away | |||
2022-11-22 | Merge pull request #64284 from kleonc/image-rotate90-in-place | Rémi Verschelde | |
`Image` Fix `rotate_90`/`rotate_180` methods | |||
2022-11-22 | Merge pull request #68354 from anvilfolk/cant-clear-script | Rémi Verschelde | |
Fixes inability to assign script after clearing | |||
2022-11-22 | Merge pull request #69002 from ↵ | Clay John | |
akien-mga/gdscript-disable-warning-RETURN_VALUE_DISCARDED GDScript: Don't warn about RETURN_VALUE_DISCARDED by default | |||
2022-11-22 | Merge pull request #68848 from Piralein/fix-class-ref | Yuri Sizov | |
Fix warnings in class ref | |||
2022-11-22 | Fill random docs | kobewi | |
2022-11-22 | Fix AudioStreamPlayer2D and 3D's `playing` not updating right away | Micky | |
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 #68579 from jtnicholl/float_doc | Rémi Verschelde | |
Document that `Vector#` types are 32-bit by default and `Vector#i` are always 32-bit | |||
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 | Merge pull request #68593 from TokageItLab/optimize-blend-animation | Rémi Verschelde | |
Optimize animation blend tree process | |||
2022-11-22 | Fix using signals in lambda functions | Yuri Rubinsky | |
2022-11-22 | Merge pull request #68964 from MewPurPur/tweak-gradient-editor | Rémi Verschelde | |
Fixes and improvements to Gradient preview | |||
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 #68942 from Chaosus/barrier_mask_flags | Rémi Verschelde | |
Expose `BarrierMask` as flags enum in `RenderingDevice` | |||
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-22 | Merge pull request #68981 from aaronfranke/gltf-methods | Rémi Verschelde | |
Add three new methods to GLTFDocumentExtension and document all of its methods | |||
2022-11-22 | Merge pull request #68855 from Cafalaarl/Cafalaarl/master | Rémi Verschelde | |
Fixed incorrect gradient orientation in HSV vertical slider | |||
2022-11-22 | Merge pull request #68966 from clayjohn/GLES3-model-matrix | Rémi Verschelde | |
Expose model_matrix in GLES3 scene fragment shader | |||
2022-11-22 | Expose `BarrierMask` as flags enum in `RenderingDevice` | Yuri Rubinsky | |
2022-11-21 | [godot#61386] Fix autoload scenes implicit types | Adam Scott | |
2022-11-21 | Fixes inability to assign script after clearing | ocean (they/them) | |
2022-11-21 | Fix Gradient preview issues | VolTer | |
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 | Expose model_matrix in GLES3 scene fragment shader | clayjohn | |
2022-11-22 | Fix some switching decisions for index format. | ueshita | |
2022-11-21 | Merge pull request #68953 from KoBeWi/change_color_in_peace | Rémi Verschelde | |
Don't update EditorSettings dialog unnecessarily | |||
2022-11-21 | Merge pull request #68952 from Chaosus/gds_fix_completion_crash | Rémi Verschelde | |
Fix GDScript completion crash | |||
2022-11-21 | Don't update EditorSettings dialog unnecessarily | kobewi | |
2022-11-21 | Fix GDScript completion crash | Yuri Rubinsky | |
2022-11-21 | Merge pull request #68897 from bruvzg/mac_reparent | Rémi Verschelde | |
[macOS] Dynamically attach and detach transient windows to allow them to stay on top of parent and be moved to another screen. | |||
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 #68946 from timothyqiu/setget-3to4 | Rémi Verschelde | |
Complete `setget` 3to4 conversion | |||
2022-11-21 | Merge pull request #68916 from bruvzg/no_img_error | Rémi Verschelde | |
[Export] Use image loader directly to avoid "resource as image file" errors. | |||
2022-11-21 | Merge pull request #68943 from timothyqiu/vformat-args | Rémi Verschelde | |
Fix not enough arguments error when validating 3to4 conversion | |||
2022-11-21 | Merge pull request #68527 from pkdawson/vertex-array-offsets | Rémi Verschelde | |
Add `offsets` parameter to RenderingDevice::vertex_array_create | |||
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 | Complete setget 3to4 conversion | Haoyu Qiu | |
2022-11-21 | Fix not enough arguments error when validating 3to4 conversion | Haoyu Qiu | |
2022-11-21 | [Export] Use image loader directly to avoid "resource as image file" errors. | bruvzg | |
2022-11-21 | [macOS] Dynamically attach and detach transient windows to allow them to ↵ | bruvzg | |
stay on top of parent and can be moved to another screen. | |||
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. |