Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-02-17 | Change `_can_handle` and `_edit` virtual methods to take `Object*` | Marc Gilleron | |
2023-02-17 | Remove unexposed ProxyTexture, mark AnimatedTexture as deprecated | Rémi Verschelde | |
According to reduz: > [AnimatedTexture] should be removed together with ProxyTexture, its just > not efficient at all in Vulkan and causes invalidation of all descriptor > sets depending on it > it was needed mostly for animated tilemaps, but nowadays there is not a lot > of reason for it Marking AnimatedTexture as deprecated accordingly, until we reach consensus for removing it completely. | |||
2023-02-17 | Merge pull request #73428 from smix8/navigation_tweak_agent3d_4.x | Rémi Verschelde | |
Tweak NavigationAgent3D defaults | |||
2023-02-17 | Merge pull request #73195 from timothyqiu/weblate-comments | Rémi Verschelde | |
Improvements and fixes based on Weblate comments | |||
2023-02-16 | Fix AnimatedTexture inconsistency when setting frame | Tecelli Akıntuğ | |
2023-02-16 | Merge pull request #56490 from Calinou/light-3d-high-attenuation-warning | Yuri Sizov | |
Document caveats of high attenuation in OmniLight3D and SpotLight3D | |||
2023-02-16 | Merge pull request #73435 from bruvzg/file_close | Rémi Verschelde | |
Restore FileAccess.close method. | |||
2023-02-16 | Merge pull request #73437 from bruvzg/docs_ignore_import_v | Rémi Verschelde | |
Exclude platform dependent `rendering/textures/vram_compression/import_*` default values from documentation. | |||
2023-02-16 | Merge pull request #73396 from KoBeWi/sorry | Rémi Verschelde | |
Fix crash with AspectRatioContainer and TextureRect | |||
2023-02-16 | Merge pull request #73250 from smix8/fix_navigation_debug_script_toggle_4.x | Rémi Verschelde | |
Fix navigation debug not toggleable in scripts | |||
2023-02-16 | Exclude platform dependent `rendering/textures/vram_compression/import_*` ↵ | bruvzg | |
default values from documentation. | |||
2023-02-16 | Fix crash with AspectRatioContainer and TextureRect | kobewi | |
2023-02-16 | Restore FileAccess.close method. | bruvzg | |
2023-02-16 | Tweak NavigationAgent3D defaults | smix8 | |
Tweaks default values for NavigationAgent3D to work better out of the box within a new 3D project. | |||
2023-02-16 | Fix navigation debug not toggleable in scripts | smix8 | |
Fixes that navigation debug was not toggleable in script while even the docs mentioned it. | |||
2023-02-16 | Merge pull request #73229 from smix8/navlink_global_positions_4.x | Rémi Verschelde | |
Add NavigationLink helper functions for global positions | |||
2023-02-16 | Merge pull request #73409 from voidedWarranties/scriptextension_add_bind | Rémi Verschelde | |
Add missing virtual bind for `ScriptExtension::_get_global_name` | |||
2023-02-16 | Merge pull request #73412 from timothyqiu/doc-fixes | Rémi Verschelde | |
Fix a few typos in the class reference | |||
2023-02-16 | Merge pull request #69201 from tbveralrud/ios-touch-leak-fix-master | Rémi Verschelde | |
iOS: Fix memory leak on touch input | |||
2023-02-16 | Fix a few typos in the class reference | Haoyu Qiu | |
2023-02-15 | Add missing virtual bind for `ScriptExtension::_get_global_name` | voidedWarranties | |
2023-02-15 | Merge pull request #73293 from RedMser/rich-text-label-fixes | Yuri Sizov | |
RichTextLabel: Unexpose internal ItemType enum, improve `push_meta` docs | |||
2023-02-15 | iOS: Fix memory leak on touch input | Travis Veralrud | |
Replace incomplete iOS gesture with touch implementation. Fixes #66422. | |||
2023-02-14 | Add NavigationLink helper functions for global positions | smix8 | |
Adds helper functions to set the links start and end position with global positions or get them as global positions. Adds global start and end position for the navigation link to the 'link_reached' signal of NavigationAgent. That signal gets emitted when a navigation link waypoint is reached. Requires that 'owner' meta data is enabled on the NavigationAgent. | |||
2023-02-14 | Unbind NavigationServer3D.process() | smix8 | |
Unbinds NavigationServer3D.process(). | |||
2023-02-14 | RichTextLabel fixes | RedMser | |
- Unexpose ItemType enum, since it is not used in public API. - Fix documentation for meta tag, since it has no BBCode equivalent. | |||
2023-02-14 | Merge pull request #73253 from Mickeon/doc-stringname-oops | Rémi Verschelde | |
Add missing documentation for String & StringName | |||
2023-02-14 | Merge pull request #73281 from Mickeon/doc-misc-oops | Rémi Verschelde | |
Slightly tweak `@GlobalScope` & `GDScript`'s documentation | |||
2023-02-14 | Tweak `@GlobalScope` & `GDScript`'s documentation | Micky | |
2023-02-14 | Fix incorrect format in Color documentation | Micky | |
2023-02-14 | Add missing documentation for String & StringName | Micky | |
Also fixes typos brought up in #69821's replies. | |||
2023-02-13 | Merge pull request #72659 from Calinou/doc-rendering-method-support | Rémi Verschelde | |
Document unsupported features in Mobile and Compatibility rendering methods | |||
2023-02-13 | Merge pull request #73248 from constantitus/characterbody2d-csharp-doc | Rémi Verschelde | |
fixed c# example in CharacterBody2D doc | |||
2023-02-13 | Document unsupported features in Mobile and Compatibility rendering methods | Hugo Locurcio | |
2023-02-13 | fixed c# example in CharacterBody2D doc | constantitus | |
2023-02-13 | Clamp Decal size to positive values | Hugo Locurcio | |
This prevents using negative size, while also preventing error messages from being spammed if one of the decal's dimensions is set to exactly 0. | |||
2023-02-13 | Merge pull request #72870 from Calinou/doc-directionallight2d-no-cull-mask | Rémi Verschelde | |
Document DirectionalLight2D not supporting cull masks | |||
2023-02-13 | Merge pull request #73018 from smix8/fix_multilayered_tilemap_navigation_4.x | Rémi Verschelde | |
Fix navigation support for multilayered TileMaps | |||
2023-02-13 | Merge pull request #73198 from TokageItLab/anim-docs-state | Rémi Verschelde | |
Add document about animation read-only props and state length | |||
2023-02-13 | Merge pull request #73103 from Calinou/doc-font-get-string-size | Rémi Verschelde | |
Clarify `Font.get_string_size()` taking kerning into account | |||
2023-02-13 | Improvements and fixes based on Weblate comments | Haoyu Qiu | |
* Description of `ui_text_submit` action should be "Submit Text" instead of "Text Submitted". * Spell out "Animation" instead of using "Anim.". * Treat "Max" as regular word instead of writing "Max.". * Use generic "Set %s" for action name instead of a dedicated "Set target_position". * Add translator comment for: * "Inclusive" and "Self" in the profiler. * Places where it needs the context about being an editor progress label. * "Duplicated Animation Name" since it's refering to the new name of a duplicated animation. * Disambiguation of "View Plane Transform", "Paste Selects" and "Display Normal". * Fix wrong undo action name for renaming an input action. * Fix missing end quote in a shader error message. * In class reference: * Fix duplicated "if" in the description of `signf()`. * Fix mismatched example output in `String.operator %()`. * Fix typo in the description of `Decal.texture_emission`. * Unify description of `String.match()` and `StringName.match()`. | |||
2023-02-13 | Add document about animation read-only props and state length | Silc Renew | |
2023-02-12 | Fix return type for collide_shape to use PackedVector3Array | Anthony Cossins | |
2023-02-12 | Add missing period for sentences in classref | Haoyu Qiu | |
2023-02-12 | Completion of parameters not described in some animation resources | Silc Renew | |
2023-02-11 | Clarify `Font.get_string_size()` taking kerning into account | Hugo Locurcio | |
This makes a difference when using a single call per character/word as opposed to using a single call for an entire string. | |||
2023-02-11 | Document DirectionalLight2D not supporting cull masks | Hugo Locurcio | |
2023-02-11 | Merge pull request #73091 from TokageItLab/fix-bezier-edit-button-update | Rémi Verschelde | |
Fix weird bezier edit button update timing in AnimationTrackEditor | |||
2023-02-11 | Merge pull request #73040 from Rindbee/popup_centered_consider_current_size | Rémi Verschelde | |
Calling popup_center* with the default size will use the current size | |||
2023-02-11 | Merge pull request #73075 from timothyqiu/ttrn-single | Rémi Verschelde | |
Don't warn when using `TTRN()` in a language without plurals |