summaryrefslogtreecommitdiff
path: root/doc
AgeCommit message (Collapse)Author
2020-01-09Doc: Mention that Directory pre-opens res:// by defaultRémi Verschelde
This may be considered a bug, so we might change that in the future. See #24149.
2020-01-08Improve the Environment class documentationHugo Locurcio
Co-authored-by: Clay John <claynjohn@gmail.com>
2020-01-08Merge pull request #34871 from ↵Rémi Verschelde
lentsius-bark/textEdit-vertical-horizontal-scroll-expose expose scroll_vertical and scroll_horizontal in TextEdit
2020-01-08Merge pull request #34901 from YeldhamDev/multiple_doc_completionsRémi Verschelde
Complete docs for GraphEdit/Node and PopupMenu
2020-01-07Make possible to edit the GraphEdit's selection rect colorsMichael Alexsander
2020-01-07Complete docs for GraphEdit/Node and PopupMenuMichael Alexsander
2020-01-07Complete the Environment class documentationHugo Locurcio
This closes #34846.
2020-01-07expose scroll_vertical and scroll_horizontal in TextEdit + documentationKrystof Klestil
2020-01-07Rewording RichTextLabel::remove_line documentationHaoyu Qiu
2020-01-06doc: Document what happens to old script with Object.set_script()rainlizard
2020-01-06Merge pull request #33967 from Calinou/add-os-is-window-focusedRémi Verschelde
Add an `OS.is_window_focused()` getter
2020-01-06Merge pull request #34848 from clayjohn/DOCS-VisualServerRémi Verschelde
Finish documenting VisualServer
2020-01-05Finish documenting VisualServerclayjohn
2020-01-06Merge pull request #34847 from YeldhamDev/splitcontainer_tabs_docsRémi Verschelde
Complete the SplitContainer and Tabs documentations
2020-01-06Merge pull request #34852 from timothyqiu/rtl-docRémi Verschelde
Completes the RichTextLabel documentation
2020-01-06Merge pull request #32126 from Calinou/expose-video-adapter-name-vendorRémi Verschelde
Add VisualServer methods to get the video adapter name and vendor
2020-01-06Completes the RichTextLabel documentationHaoyu Qiu
2020-01-06Add VisualServer methods to get the video adapter name and vendorHugo Locurcio
These methods can be used in scripts to retrieve the OpenGL `GL_RENDERER` and `GL_VENDOR` strings (respectively). This closes #28404.
2020-01-05Complete the SplitContainer and Tabs documentationsMichael Alexsander
2020-01-05Merge pull request #34833 from clayjohn/DOCS-VisualServerRémi Verschelde
Document most VisualServer functions
2020-01-05Document most VisualServer functionsclayjohn
2020-01-05Merge pull request #34812 from clayjohn/DOCS-VisualServerRémi Verschelde
Updated many VisualServer functions
2020-01-04Updated many VisualServer functionsclayjohn
2020-01-05Merge pull request #34820 from timothyqiu/doc-treeRémi Verschelde
Improves Tree documentation
2020-01-04Document the return value of `Object.get()` with a nonexistent propertyHugo Locurcio
2020-01-04Improves Tree documentationHaoyu Qiu
2020-01-03Document TabContainer's "use_hidden_tabs_for_min_size"Michael Alexsander
2020-01-03doc: Sync classref with current sourceRémi Verschelde
2020-01-03Merge pull request #34726 from nekomatata/polygon2d-antialiasing-fixRémi Verschelde
Fixed antialiasing option for Polygon2D with concave/hollow shapes
2020-01-03Add a shorthand for setting the exit code using `SceneTree::quit()`Hugo Locurcio
This reduces the amount of code required to exit a process with a non-zero exit code. This pattern is also found in most other programming languages.
2020-01-03Merge pull request #34747 from rcorre/add_child_ownerRémi Verschelde
Add note about add_child and owner.
2020-01-02Add note about add_child and owner.Ryan Roden-Corrent
Resolves #34739.
2020-01-02Merge pull request #34736 from cbscribe/kcc_doc_fixesRémi Verschelde
[DOCS] Class reference typos and fixes.
2020-01-02[DOCS] Class reference typos and fixes.Chris Bradfield
2020-01-02Allows to doc vararg method return type as voidHaoyu Qiu
2020-01-01Fixed antialiasing option for Polygon2DPouleyKetchoupp
Some cases were not handled properly for Polygon2D after making changes in common code to fix Line2D antialiasing. Added an option for drawing polygons to differentiate the two use cases. Fixes #34568
2019-12-31Improves ItemListHaoyu Qiu
* Adds range hint for integer properties * Adds missing descriptions in documentation * Updates some method descriptions to match the actual behavior * Fixes second param name of `set_item_icon_transposed` from `rect` to `transposed`
2019-12-30Merge pull request #34572 from KoBeWi/I_give_upRémi Verschelde
Make new ScrollContainer focus behavior optional
2019-12-30Merge pull request #34700 from Calinou/doc-input-device-touchscreen-idRémi Verschelde
Document how to distinguish emulated mouse events from physical ones
2019-12-30Merge pull request #34692 from bluenote10/bluenote10-shadow_item_cull_mask-docsRémi Verschelde
shadow_item_cull_mask should reference light mask
2019-12-30Merge pull request #34682 from Calinou/os-exit-code-nonportable-warningRémi Verschelde
Print a warning message if `OS.exit_code` is set to a non-portable value
2019-12-30Merge pull request #34621 from cbscribe/kcc_misc_doc_fixesRémi Verschelde
[Docs] Description updates for Node2D & Object
2019-12-30Merge pull request #34615 from lakshay-angrish/area_shape_entered-docsRémi Verschelde
add area_shape_entered usage
2019-12-30Make new ScrollContainer focus behavior optionalTomasz Chabora
2019-12-30Merge pull request #34611 from lakshay-angrish/33841_bitmapfont_docRémi Verschelde
add AngelCode format in BitmapFont doc's description
2019-12-30Merge pull request #34593 from Calinou/doc-httprequest-json-exampleRémi Verschelde
Add an example of using HTTPRequest to contact a REST API
2019-12-30Merge pull request #34590 from willnationsdev/kcRémi Verschelde
Fix KinematicCollision docs mislabeling an ObjectID as an RID.
2019-12-30Merge pull request #34576 from rcorre/imgeo-coordsRémi Verschelde
Clarify ImmediateGeometry.add_vertex.
2019-12-30Merge pull request #34571 from rcorre/array_returnsRémi Verschelde
Be more specific about array return values.
2019-12-30Document how to distinguish emulated mouse events from physical onesHugo Locurcio
Mouse events emulated from a touchscreen will always have a device ID of -1.