Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-04-12 | Add documentation to CheckBox | SuddenlyNothing | |
2022-04-12 | Merge pull request #60170 from ConteZero/context_menu | Rémi Verschelde | |
2022-04-12 | Merge pull request #60171 from Chaosus/restore_aa | Yuri Rubinsky | |
2022-04-12 | Add context menu to RichTextLabel | ConteZero | |
2022-04-12 | Merge pull request #60069 from Calinou/fsr-fix-editor-enum | Rémi Verschelde | |
2022-04-12 | Restore antialiasing for `draw_line` | Yuri Roubinsky | |
2022-04-12 | Improves EditorInspector documentation | Haoyu Qiu | |
2022-04-11 | Merge pull request #60102 from KoBeWi/graphememe | Rémi Verschelde | |
2022-04-11 | Merge pull request #59980 from reduz/animation-libraries | Rémi Verschelde | |
2022-04-11 | Merge pull request #60111 from KoBeWi/the_files_have_landed | Rémi Verschelde | |
2022-04-11 | Implement Animation Libraries | reduz | |
* Instead of containing single animations, AnimationPlayer now contains libraries. * Libraries, in turn, contain the animations. This paves the way for implementing the possibility of importing scenes as animation libraries, finally allowing to import animations separate from the 3D models. Missing (will be done on separate PRs): * Make it possible to import scenes (dae/fbx/gltf) as animation libraries. * Make it possible for AnimationTree to import animation libraries on its own, so it does not rely on AnimationPlayer for everything. | |||
2022-04-11 | Merge pull request #60125 from Calinou/makerst-improve-error-reporting | Rémi Verschelde | |
2022-04-11 | Merge pull request #60104 from ConteZero/shortcut_keys | Rémi Verschelde | |
2022-04-11 | makerst: Improve error reporting | Hugo Locurcio | |
- List file names before error descriptions, as is common in linters. - Print the number of errors reported at the end of the list. - Use double quotes instead of single quotes in messages. | |||
2022-04-11 | Improvements to files_dropped signal | kobewi | |
2022-04-10 | Add select_all() to RichTextLabel | ConteZero | |
2022-04-10 | Improve shaped_text_get_word_breaks() | kobewi | |
2022-04-09 | Fix 3D scaling enum size in the editor and improve descriptions | Hugo Locurcio | |
2022-04-09 | Fix up direction doc description | fabriceci | |
2022-04-07 | Merge pull request #59788 from Vitika9/59711 | Rémi Verschelde | |
2022-04-05 | Change gizmo_extents to property | kobewi | |
2022-04-05 | Merge pull request #56695 from bruvzg/mod_unicode_input | Rémi Verschelde | |
2022-04-05 | Merge pull request #59910 from rcorre/array-remove-doc | Rémi Verschelde | |
2022-04-05 | Clarify Array.erase for nonexistant element. | Ryan Roden-Corrent | |
The docs specify that Array.remove does nothing if the index does not exist. Array.erase does not have a similar phrase, so it's unclear if erase will print an error, or silently do nothing. | |||
2022-04-05 | [Input] Add extra `shortcut_input` input processing step to process Unicode ↵ | bruvzg | |
character input with Alt / Ctrl modifiers, after processing of shortcuts. | |||
2022-04-04 | Merge pull request #59880 from m4gr3d/update_resizeable_main | Rémi Verschelde | |
2022-04-04 | Merge pull request #59841 from KoBeWi/drag_box | Rémi Verschelde | |
2022-04-04 | Remove duplicate `resizable` settings | Fredia Huya-Kouadio | |
2022-04-04 | Merge pull request #59874 from ConteZero/richtextlabel_deselect | Rémi Verschelde | |
2022-04-04 | Add deselect() to RichTextLabel | ConteZero | |
2022-04-04 | Merge pull request #59513 from BastiaanOlij/openxr_actionmap_editor | Rémi Verschelde | |
2022-04-04 | Add action map editor for OpenXR | Bastiaan Olij | |
2022-04-03 | Mention how to add dragging for SpinBox's LineEdit | kobewi | |
2022-04-03 | Merge pull request #59633 from EricEzaM/better-code-complete-update | Rémi Verschelde | |
Improve sorting of Code Completion options. | |||
2022-04-02 | Merge pull request #59415 from KoBeWi/tween_time() | Rémi Verschelde | |
2022-04-01 | Removed show_on_top property in CanvasItem | Vitika9 | |
2022-04-01 | Merge pull request #59331 from bartekd97/navigation-agent-layers | Rémi Verschelde | |
2022-04-01 | Merge pull request #59759 from novaplusplus/month_late_typo_fix | Max Hilbrunner | |
Fixing some of my own typos | |||
2022-04-01 | Improve sorting of Code Completion options. | Eric M | |
Done by ordering options by their location in the code - e.g. local, parent class, global, etc. | |||
2022-04-01 | Merge pull request #59764 from reduz/blender-import-autodetect | Rémi Verschelde | |
2022-04-01 | Add Blender install autodetection and configuration. | reduz | |
This PR is a continuation to #54886 * Changed Blender path editor setting from binary to installation. * Add a class to query whether the format is supported. * This class allows to create proper editors to configure support. **NOTE**: This PR only provides autodetection on Linux. Code needs to be added for Windows and MacOS to autodetect the Blender installation. Co-authored-by: bruvzg <7645683+bruvzg@users.noreply.github.com> Co-authored-by: Pedro J. Estébanez <pedrojrulez@gmail.com> | |||
2022-03-31 | Merge pull request #59712 from Calinou/doc-canvasitem-top-level | Rémi Verschelde | |
2022-03-31 | Merge pull request #59590 from Calinou/rename-print-stray-nodes | Rémi Verschelde | |
2022-03-31 | Fixing some of my own typos... | nova++ | |
(and a little improvement to wording that was bugging me) | |||
2022-03-31 | Rename `Node.print_stray_nodes()` to `Node.print_orphan_nodes()` | Hugo Locurcio | |
The "orphan" terminology is already used elsewhere. | |||
2022-03-31 | Fix typos with codespell | Rémi Verschelde | |
Using codespell 2.2-dev from current git. Fix a couple incorrect uses of gendered pronouns. | |||
2022-03-31 | Clarify what `top_level` does in CanvasItem | Hugo Locurcio | |
2022-03-30 | Improve documentation for Array operators | Hugo Locurcio | |
2022-03-30 | Add fbx2gltf support for importing .fbx files | K. S. Ernest (iFire) Lee | |
Lets you drag or place .fbx files in the project folder and it will import the files. An editor setting sets the location of the fbx2gltf binary. Enables .fbx and .blend by default. Co-authored-by: Rémi Verschelde <rverschelde@gmail.com> | |||
2022-03-30 | Merge pull request #59691 from akien-mga/remove-adhoc-fbx-importer | Rémi Verschelde | |