summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2022-04-18Implement global restSilc 'Tokage' Renew
2022-04-16Document timestamp decimal fraction in TimeHaoyu Qiu
2022-04-13Add `font_separator` and related properties to `PopupMenu`Michael Alexsander
2022-04-14Merge pull request #60220 from YeldhamDev/the_line_must_be_drawn_hereRémi Verschelde
Fix and tweak labeled separator in `PopupMenu`
2022-04-13Merge pull request #60177 from reduz/animation-library-importRémi Verschelde
Import scenes as AnimationLibrary
2022-04-13Fix and tweak labeled separator in `PopupMenu`Michael Alexsander
2022-04-13Import scenes as AnimationLibraryreduz
Added the ability to import scenes as AnimationLibrary * Completes implementation of https://github.com/godotengine/godot-proposals/issues/4296 * Helps if you want to export animations to a separate file (say a GLTF) to avoid re-importing/exporting them every time the model changes. * Helps if you simply want to have animations using a dummy model, which can be shared across multiple models. Creates a secondary scene importer used only for animations. **NOTE**: A new flag for scene importer: EditorSceneFormatImporter.IMPORT_DISCARD_MESHES_AND_MATERIALS has been added, to hint importers that they should skip meshes and animations (and hence make importing faster). It is not implemented in any importer yet, this should be done in a separate PR.
2022-04-13Merge pull request #60199 from akien-mga/color-clarify-srgb-linear-conversionsRémi Verschelde
2022-04-13Merge pull request #60028 from LightningAA/Improve-Signal-DocsRémi Verschelde
2022-04-13Merge pull request #60034 from Calinou/camera-allow-lower-sizeRémi Verschelde
2022-04-13Color: Rename `to_srgb`/`to_linear` to include base color spaceRémi Verschelde
This helps reduce confusion around sRGB <> Linear conversions by making both input and output color spaces explicit.
2022-04-13Merge pull request #60012 from Sauermann/fix-collisionobject-canvas-docRémi Verschelde
2022-04-13Merge pull request #60017 from timothyqiu/nav-server-freeRémi Verschelde
Rename `NavigationServer`'s `free` method to `free_rid`
2022-04-12Add documentation to CheckBoxSuddenlyNothing
2022-04-12Merge pull request #60170 from ConteZero/context_menuRémi Verschelde
2022-04-12Merge pull request #60171 from Chaosus/restore_aaYuri Rubinsky
2022-04-12Add context menu to RichTextLabelConteZero
2022-04-12Merge pull request #60069 from Calinou/fsr-fix-editor-enumRémi Verschelde
2022-04-12Restore antialiasing for `draw_line`Yuri Roubinsky
2022-04-12Improves EditorInspector documentationHaoyu Qiu
2022-04-11Merge pull request #60102 from KoBeWi/graphememeRémi Verschelde
2022-04-11Merge pull request #59980 from reduz/animation-librariesRémi Verschelde
2022-04-11Merge pull request #60111 from KoBeWi/the_files_have_landedRémi Verschelde
2022-04-11Implement Animation Librariesreduz
* 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-11Merge pull request #60125 from Calinou/makerst-improve-error-reportingRémi Verschelde
2022-04-11Merge pull request #60104 from ConteZero/shortcut_keysRémi Verschelde
2022-04-11makerst: Improve error reportingHugo 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-11Improvements to files_dropped signalkobewi
2022-04-10Add select_all() to RichTextLabelConteZero
2022-04-10Improve shaped_text_get_word_breaks()kobewi
2022-04-09Fix 3D scaling enum size in the editor and improve descriptionsHugo Locurcio
2022-04-09Fix up direction doc descriptionfabriceci
2022-04-08Allow `size` values as low as `0.001` in Camera3D's orthogonal/frustum modeHugo Locurcio
This allows for lower field of view (or higher zoom) in orthogonal and frustum camera modes. The property hint also allows setting the size with greater precision.
2022-04-08Add tutorial links to Signal's documentationAaron Record
2022-04-08Rename NavigationServer's free method to free_ridHaoyu Qiu
2022-04-08Add a note about collisions in different canvases.Markus Sauermann
2022-04-07Merge pull request #59788 from Vitika9/59711Rémi Verschelde
2022-04-05Change gizmo_extents to propertykobewi
2022-04-05Merge pull request #56695 from bruvzg/mod_unicode_inputRémi Verschelde
2022-04-05Merge pull request #59910 from rcorre/array-remove-docRémi Verschelde
2022-04-05Clarify 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-04Merge pull request #59880 from m4gr3d/update_resizeable_mainRémi Verschelde
2022-04-04Merge pull request #59841 from KoBeWi/drag_boxRémi Verschelde
2022-04-04Remove duplicate `resizable` settingsFredia Huya-Kouadio
2022-04-04Merge pull request #59874 from ConteZero/richtextlabel_deselectRémi Verschelde
2022-04-04Add deselect() to RichTextLabelConteZero
2022-04-04Merge pull request #59513 from BastiaanOlij/openxr_actionmap_editorRémi Verschelde
2022-04-04Add action map editor for OpenXRBastiaan Olij
2022-04-03Mention how to add dragging for SpinBox's LineEditkobewi