Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-12-08 | Rename CanvasItem's hide signal to hidden | Marcel Admiraal | |
2020-11-28 | Merge pull request #43828 from Chaosus/restore_line_antialiasing | Yuri Roubinsky | |
Restored antialiased lines by emulation using triangle strips | |||
2020-11-27 | Restored antialiased lines by emulation using triangle strips | Yuri Roubinsky | |
2020-11-26 | [Complex Text Layouts] Add TextServer documentation. Update Font, ↵ | bruvzg | |
CanvasItem, Theme and modified controls documentation. | |||
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-10-28 | Clarify what the "item_rect_changed" signal does | SirQuartz | |
2020-10-09 | doc: Sync classref with current source | Rémi Verschelde | |
2020-10-02 | Merge pull request #42451 from Duroxxigar/rename-toplevel | Rémi Verschelde | |
Renamed toplevel to be top_level | |||
2020-10-01 | Link to demos from within the class reference | Aaron Franke | |
2020-10-01 | Renamed toplevel to be top_level | Duroxxigar | |
2020-10-01 | Made toplevel a property for Node3D and CanvasItem | Duroxxigar | |
2020-09-26 | Translate GDScript Code Examples to C# (C) | HaSa1002 | |
Translates Code Examples in classes beginning with `C`. Includes: * Callable * CanvasItem * CharFXTransform * Color * ColorRect * ConfigFile * ConfirmationDialog * Control * Crypto | |||
2020-08-31 | Add link titles for all links in the class reference | Hugo Locurcio | |
This makes them display in a nicer way in the editor help. (The title will display instead of the full URL.) | |||
2020-07-29 | Add an example to the `CanvasItem.draw_string()` documentation | Hugo Locurcio | |
This closes https://github.com/godotengine/godot-docs/issues/3374. | |||
2020-07-27 | Improve visibility documentation for CanvasItem and Node3D | Hugo Locurcio | |
This closes https://github.com/godotengine/godot-docs/issues/3840. | |||
2020-07-01 | Provide `draw_set_transform` defaults for rotation and scale | Andrii Doroshenko (Xrayez) | |
2020-05-15 | Document CanvasItem's texture filtering and repeating modes | Hugo Locurcio | |
This makes the CanvasItem documentation 100% complete. | |||
2020-04-17 | Clarify that angles must be specified as radians in the documentation | Hugo Locurcio | |
This closes #36356. | |||
2020-03-30 | doc: Update classref with node renames | Rémi Verschelde | |
A few extra renames for classes which were missed in last week's PRs. | |||
2020-03-13 | Add LOTS of missing docs | Tomasz Chabora | |
2020-02-26 | Docs: Improved wording and added links | Lunadin | |
- Added missing links to the Control node in BoxContainer - Added Oxford commas in BoxContainer and CanvasItem - Clarified ambiguous boolean wording in BoxContainer - Improved paragraphing in ScrollContainer's description - Simplified ControlPicker description | |||
2020-02-20 | Fix MIMPAMPS typos in constants throughout the engine | Andrii Doroshenko (Xrayez) | |
2020-02-18 | doc: Sync classref with current source | Rémi Verschelde | |
Handle removal of Pool*Array types and other recent changes. | |||
2020-02-12 | doc: Sync classref with current source | Rémi Verschelde | |
Lots of internal API changes and some docstrings were lost in the conversion. I manually salvaged many of them but for all the rendering-related ones, an additional pass is needed. Added missing enum bindings in BaseMaterial3D and VisualServer. | |||
2020-01-31 | Update docs to version 4.0 | clayjohn | |
2020-01-26 | doc: Drop unused 'category' property from header | Rémi Verschelde | |
We already removed it from the online docs with #35132. Currently it can only be "Built-In Types" (Variant types) or "Core" (everything else), which is of limited use. We might also want to consider dropping it from `ClassDB` altogether in Godot 4.0. | |||
2020-01-23 | doc: Misc updates for AnimationNode* and others | Rémi Verschelde | |
- Add some missing descriptions. - Add links to tutorials for ARVR and AnimationTree. - Style fixes. - Engine changes: * Make `AnimationNodeTransition.input_<number>` properties internal so that they don't appear in the docs. They still appear in the inspector based on the actual number of inputs requested. * Drop unimplemented `CPUParticles.flatness`. It's only used for 3D particles in `ParticlesMaterial`, and thus only relevant for `CPUParticles3D`. | |||
2020-01-10 | [DOCS] Corrections and clarifications to classref | Chris Bradfield | |
2019-11-01 | Merge pull request #33229 from Jummit/document-force_update_transform | Rémi Verschelde | |
Document force_update_transform | |||
2019-11-01 | document force_update_transform | Jummit | |
2019-10-26 | doc: Sync classref with current source | Rémi Verschelde | |
2019-07-15 | doc: Sync classref with current source | Rémi Verschelde | |
2019-07-09 | Add `width` and `antialiased` parameters to CanvasItem `draw_rect()` | Hugo Locurcio | |
This also removes some duplicated editor code which is now obsoleted by the new parameters in `draw_rect()`. | |||
2019-06-30 | doc: Remove null default values that can't be determined | Rémi Verschelde | |
Applying #30187. | |||
2019-06-30 | doc: Remove hardcoded default values from descriptions | Rémi Verschelde | |
They are now generated automatically by doctool. | |||
2019-06-30 | doc: Add default values to all properties | Rémi Verschelde | |
Thanks to @bojidar-bg's impressive work in #29380. | |||
2019-06-27 | Proofread and improve the whole class reference | Hugo Locurcio | |
- Document a few more properties and methods - Add more information to many classes - Fix lots of typos and gramar mistakes - Use [code] tags for parameters consistently - Use [b] and [i] tags consistently - Put "Warning:" and "Note:" on their own line to be more visible, and make them always bold - Tweak formatting in code examples to be more readable - Use double quotes consistently - Add more links to third-party technologies | |||
2019-05-23 | Change "Return" to "Returns" where necessary in XML documentation | Sean Heffernan | |
In many of the XML files it had been noted that when the documentation refers to a return value, both "Return" and "Returns" are used. This has now been fixed to only say "Returns". Fixes #28867 | |||
2019-05-14 | Improve the CanvasItem documentation | Hugo Locurcio | |
This makes it clear that line width and antialiasing in `draw_multiline()` aren't implemented yet (see #16448). | |||
2019-04-23 | Added inspector plugin documentation. | Juan Linietsky | |
Fixed plugin bindings. | |||
2019-04-19 | doc: Drop unused <demos> tag | Rémi Verschelde | |
2019-04-15 | doc: Sync classref with current source | Rémi Verschelde | |
2019-04-05 | Merge pull request #27465 from ↵ | Rémi Verschelde | |
neikeq/road-to-lang-agnostic-docs-is-going-to-be-tough EditorHelp: Improve enum ref resolving and add constant ref support | |||
2019-04-01 | doc: Bump version to 3.2 | Rémi Verschelde | |
2019-03-29 | ClassRef: Replace [code]CurrentClass[/code] with [CurrentClass] | Ignacio Etcheverry | |
Modified makerst to generate code tags for these to avoid hyperlinks to the same class. | |||
2018-12-20 | doc: Add missing commas after "If true/false" | Rémi Verschelde | |
2018-12-14 | Updated documentation to visible property in CanvasItem, closes #20809 | Juan Linietsky | |
2018-12-13 | doc: Sync classref with current source | Rémi Verschelde | |
2018-12-05 | Fixed CanvasItem.draw_multimesh() binding. | MrCdK | |
2018-11-05 | doc: Use HTTPS for docs.godotengine.org and point to latest branch | Rémi Verschelde | |
Fixes #23509. |