summaryrefslogtreecommitdiffstats
path: root/doc/classes/Texture2D.xml
Commit message (Collapse)AuthorAgeFilesLines
* Update get_image doc to mention that it will return an empty image with ↵jsjtxietian2024-01-021-0/+1
| | | | invalid texture
* Doctool: Remove version attribute from XML headerRémi Verschelde2023-07-061-1/+1
| | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb).
* Bump version to 4.2-devRémi Verschelde2023-07-051-1/+1
| | | | Keep on waitin'
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* Add "dedicated server" export mode which can strip unneeded visual resourcesDavid Snopek2023-01-231-0/+6
|
* Document Texture, CompressedTexture and Placeholder classesHugo Locurcio2022-11-111-3/+13
|
* Fix tp_canvas_item typo in _draw_rect_regionRichard Patching2022-10-201-1/+1
|
* [doc] Use "param" instead of "code" to refer to parametersAndy Maloney2022-08-111-1/+1
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-32/+32
|
* Remove image property of ImageTexturekobewi2022-06-071-1/+2
|
* Discern between virtual and abstract class bindingsreduz2022-03-101-0/+52
| | | | | | | | | | | | | | * Previous "virtual" classes (which can't be instantiated) are not corretly named "abstract". * Added a new "virtual" category for classes, they can't be instantiated from the editor, but can be inherited from script and extensions. * Converted a large amount of classes from "abstract" to "virtual" where it makes sense. Most classes that make sense have been converted. Missing: * Physics servers * VideoStream * Script* classes. which will go in a separate PR due to the complexity involved.
* Add an XML schema for documentationHugo Locurcio2022-02-151-1/+1
| | | | | | | | This makes it easier to spot syntax errors when editing the class reference. The schema is referenced locally so validation can still work offline. Each class XML's schema conformance is also checked on GitHub Actions.
* Don't generate empty doc sections and reduce code duplicationAaron Franke2021-09-201-2/+0
|
* doc: Use self-closing tags for `return` and `argument`Rémi Verschelde2021-07-301-46/+23
| | | | | | | | For the time being we don't support writing a description for those, preferring having all details in the method's description. Using self-closing tags saves half the lines, and prevents contributors from thinking that they should write the argument or return documentation there.
* Better format arguments in variant parserMichael Alexsander Silva Dias2021-06-181-3/+3
|
* Fix misformatted documentation from #47435, #42827, #46991Yuri Sizov2021-04-041-6/+6
|
* Rename Texture.get_data() to get_image()Marcel Admiraal2021-03-281-1/+1
|
* Describe `ImageTexture`, `Image` creation and usageAndrii Doroshenko (Xrayez)2020-11-171-0/+1
|
* doc: Sync classref with current source + fixup some bindingsRémi Verschelde2020-11-041-31/+1
| | | | Includes various changes triggered by the refactoring of method bindings.
* Clarify get_data texture methodskyace652020-08-301-1/+1
|
* doc: Update classref with node renamesRémi Verschelde2020-03-301-10/+10
| | | | A few extra renames for classes which were missed in last week's PRs.
* Fix GDCLASS for Texture2D/TextureLayeredYuri Roubinsky2020-02-171-1/+1
|
* doc: Sync classref with current sourceRémi Verschelde2020-02-121-0/+133
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.