Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-11-12 | Merge pull request #43408 from rcorre/path-gizmos-4.0 | Rémi Verschelde | |
Make Path3D handles visible and consistent with 2D. | |||
2020-11-12 | Proposal 1246: Make Path3D handles more visible. | Ryan Roden-Corrent | |
Resolves godotengine/godot-proposals#1246. It is difficult to tell the difference between the handles for adjusting curves and the points themselves when looking at a Path gizmo. This re-uses the icons used for Path2D. Unlike Path2D, this does not use a different icon for smooth vs sharp points, as using a potentially different material for each point would prevent batching the points in add_handles (and adding them out-of-order messes up other logic based on handle indices). This includes a public API change to allow specifying a texture for a handle material. This allows spatial gizmo plugins to customize the way a handle is rendered, if desired, but does not break existing behavior (as providing no texture uses the default). The path handle icons were resized as well. 16x16 is the standard icon size. These icons were 10x10 rather than 16x16, and appeared rather small in the editor. To resize, I: - Opened the original in Inkscape - Resized the document to 16x16 - Opened the transform dialog - Scaled by 160% proportionally - Used Align/Distribute to center on the page - Saved the document - Cleaned with `svgcleaner --multipass` | |||
2020-11-12 | Merge pull request #43244 from HaSa1002/docs-mdt | Rémi Verschelde | |
Docs: MeshDataTool: showcase tool in code example | |||
2020-11-12 | Docs: MeshDataTool: showcase tool in code example | HaSa1002 | |
2020-11-11 | Document InstancePlaceholder.create_instance not being thread-safe. | Wilson E. Alvarez | |
2020-11-11 | Merge pull request #43449 from nekomatata/line_edit_window_pos | Rémi Verschelde | |
Expose LineEdit scroll offset to scripts | |||
2020-11-11 | Expose LineEdit scroll offset to scripts | PouleyKetchoupp | |
2020-11-10 | Merge pull request #43437 from akien-mga/doc-operators | Rémi Verschelde | |
doc: Add template to document Variant operators, fixups to #43419 | |||
2020-11-10 | doc: Sync classref to add operators after #43419 | Rémi Verschelde | |
2020-11-10 | Merge pull request #43398 from ↵ | Rémi Verschelde | |
KoBeWi/add_an_array_to_another_array_but_with_a_method Add append_array() method to Array class | |||
2020-11-10 | Register methods for drawing 3D editor overlays | Tomasz Chabora | |
2020-11-10 | [Docs] Add C# example for EditorPlugin::forward_canvas_draw_over_viewport | HaSa1002 | |
Follow up to #43356 | |||
2020-11-10 | Merge pull request #43356 from KoBeWi/editor_art | Rémi Verschelde | |
Add docs for editor viewport drawing methods | |||
2020-11-09 | Variant: Sync docs with new constructors, fixups after #43403 | Rémi Verschelde | |
Change DocData comparators for MethodDoc and ArgumentDoc to get a better ordering of constructors. | |||
2020-11-09 | Merge pull request #42841 from HaSa1002/docs-lang-3 | Rémi Verschelde | |
Port code examples to C# (D and E) | |||
2020-11-08 | Add append_array() method to Array class | Tomasz Chabora | |
2020-11-07 | Merge pull request #42896 from Calinou/httprequest-increase-chunk-size | Rémi Verschelde | |
Increase the default HTTPClient download chunk size to 64 KiB | |||
2020-11-07 | Merge pull request #42947 from Calinou/image-load-bmp-from-buffer | Rémi Verschelde | |
Add `Image.load_bmp_from_buffer()` for run-time BMP image loading | |||
2020-11-07 | Increase the default HTTPClient download chunk size to 64 KiB | Hugo Locurcio | |
This improves download speeds at the cost of increased memory usage. This change also effects HTTPRequest automatically. See #32807 and #33862. | |||
2020-11-06 | Add docs for editor viewport drawing methods | Tomasz Chabora | |
2020-11-06 | Merge pull request #41746 from Calinou/doc-projectsettings-fullscreen-borderless | Rémi Verschelde | |
Improve the documentation related to fullscreen and borderless settings | |||
2020-11-06 | Merge pull request #42870 from Calinou/doc-httprequest-tls-version | Rémi Verschelde | |
Document the supported TLS versions in HTTPRequest | |||
2020-11-06 | Merge pull request #43283 from Calinou/color-remove-contrasted | Rémi Verschelde | |
Remove `Color.contrasted()` as its behavior is barely useful | |||
2020-11-05 | doc: Override default value for RandomNumberGenerator.seed | Rémi Verschelde | |
It's non-deterministic so it's better to show a fixed value like 0 instead of having it potentially change whenever `randomize()` is called. Fixes #43317. | |||
2020-11-04 | doc: Sync classref with current source + fixup some bindings | Rémi Verschelde | |
Includes various changes triggered by the refactoring of method bindings. | |||
2020-11-03 | Fix typo in Tabs doc. | Ryan Roden-Corrent | |
I don't know enough about grammar to say why the "ing" suffix is correct, but I'm reasonably sure it is :) | |||
2020-11-03 | Remove `Color.contrasted()` as its behavior is barely useful | Hugo Locurcio | |
Returning the most contrasting color isn't a trivial task, as there are often many possible choices. It's usually best left for the user to implement using a script. | |||
2020-11-03 | Tooltips: Improve code clarity and docs | Rémi Verschelde | |
The return type for `_make_custom_tooltip` is clarified as Control, and users should make sure to return a visible node for proper size calculations. Moreover in the current master branch, a PopupPanel will be added as parent to the provided tooltip to make it a sub-window. Clarifies documentation for `Control._make_custom_tooltip`, and shows how to use the (until now undocumented) "TooltipPanel" and "TooltipLabel" theme types to style tooltips. Fixes #39677. | |||
2020-11-03 | Merge pull request #40364 from marstaik/alpha2coverage_up | Rémi Verschelde | |
Alpha Hash and Alpha2Coverage Implementation | |||
2020-11-02 | Alpha Hash and Alpha2Coverage Implementation | Marios Staikopoulos | |
2020-11-02 | Merge pull request #43260 from HaSa1002/mainloop-remove-deprecated-methods | Rémi Verschelde | |
MainLoop: Remove deprecated methods | |||
2020-11-01 | Correct documentation about NinePatchRect stretch modes | Hugo Locurcio | |
This closes https://github.com/godotengine/godot-docs/issues/4333. | |||
2020-11-01 | MainLoop: Remove deprecated methods | HaSa1002 | |
2020-11-01 | Port code examples to C# (D) | HaSa1002 | |
Includes: * Decal * Dictionary * Directory * DisplayServer * DTLSServer * DynamicFont * EditorImportPlugin * EditorPlugin * EditorScenePostImport * EditorScript * EditorSettings * EditorTranslationParserPlugin * Engine * Expression Co-authored-by: Aaron Franke <arnfranke@yahoo.com> | |||
2020-10-31 | Fix a variable being redeclared in the HTTPRequest code sample | Hugo Locurcio | |
2020-10-29 | Merge pull request #42811 from Calinou/doc-packetpeerudp-wait-interrupt | Rémi Verschelde | |
Document how to interrupt `PacketPeerUDP.wait()` | |||
2020-10-28 | Clarify what the "item_rect_changed" signal does | SirQuartz | |
2020-10-28 | Improve the documentation related to fullscreen and borderless settings | Hugo Locurcio | |
2020-10-27 | Document hiding a Control when its reference point is behind the camera | Hugo Locurcio | |
See https://github.com/godotengine/godot/issues/1725. | |||
2020-10-27 | Improved documentation for TileMap.cell_y_sort | Dustin Petersohn | |
2020-10-25 | Fixup `ColorRamp` to `Gradient` renames | Andrii Doroshenko (Xrayez) | |
2020-10-24 | Rename button group property to button_group | Aaron Franke | |
2020-10-22 | Merge pull request #42907 from Xrayez/add-ref-rect-border-width | Rémi Verschelde | |
Add `border_width` to `ReferenceRect` | |||
2020-10-20 | Add `Image.load_bmp_from_buffer()` for run-time BMP image loading | Hugo Locurcio | |
This partially addresses https://github.com/godotengine/godot-proposals/issues/676. | |||
2020-10-20 | Cross-reference `ColorRect` and `ReferenceRect` in the class reference | Andrii Doroshenko (Xrayez) | |
They use the same underlying `CanvasItem.draw_rect()` API. | |||
2020-10-20 | Add `border_width` to `ReferenceRect` | Andrii Doroshenko (Xrayez) | |
Exposes a hidden parameter behind `CanvasItem.draw_rect()`. | |||
2020-10-20 | Removed underscore from GraphEdit begin/end_node_move signals | Yuri Roubinsky | |
2020-10-19 | Document how to display the vertex color in `SurfaceTool.add_color()` | Hugo Locurcio | |
This closes https://github.com/godotengine/godot-docs/issues/4083. | |||
2020-10-19 | Merge pull request #42558 from Chaosus/vs_curve | Rémi Verschelde | |
Added visual shader node to easy gather data from a CurveTexture | |||
2020-10-19 | Merge pull request #42579 from theoway/stylebox_and_control_documentation | Rémi Verschelde | |
Documentation change: Explaining the behavior of focus stylebox overlapping the pressed stylebox |