summaryrefslogtreecommitdiffstats
path: root/doc/classes/Material.xml
Commit message (Collapse)AuthorAgeFilesLines
* Add "Inspect Native Shader Code" to shader resource and shader editortetrapod002024-10-081-1/+1
|
* Fix mismatched parentheses in class referenceHaoyu Qiu2024-05-301-1/+1
|
* Update links to outdated asset library demosskyace652024-04-071-2/+2
| | | | | | Update links to outdated asset library demos Co-authored-by: Max Hilbrunner <m.hilbrunner@gmail.com>
* Fill out Material documentation and clarify render_priority and next_pass ↵clayjohn2023-10-251-3/+10
| | | | sorting
* Improve the top docs sections of VFX classesMewPurPur2023-08-111-2/+2
|
* 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
|
* Discern between virtual and abstract class bindingsreduz2022-03-101-1/+21
| | | | | | | | | | | | | | * 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.
* Hide render_priority except when using SpatialMaterialsclayjohn2021-10-041-2/+3
|
* doc: Use self-closing tags for `return` and `argument`Rémi Verschelde2021-07-301-2/+1
| | | | | | | | 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.
* doc: Sync classref with current sourceRémi Verschelde2021-01-281-0/+6
|
* Link to demos from within the class referenceAaron Franke2020-10-011-0/+2
|
* Fix Material.render_priority doc: no opaque sort312020-06-131-1/+1
| | | | | Opaque objects are rendered using the depth buffer, so the end result appears sorted, but the opaque objects themselves are not sorted.
* doc: Update classref with node renamesRémi Verschelde2020-03-301-1/+1
| | | | A few extra renames for classes which were missed in last week's PRs.
* doc: Sync classref with current sourceRémi Verschelde2020-02-121-1/+1
| | | | | | | | 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.
* Update docs to version 4.0clayjohn2020-01-311-1/+1
|
* doc: Drop unused 'category' property from headerRémi Verschelde2020-01-261-1/+1
| | | | | | | | | | 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.
* Finish up docs for materialsclayjohn2020-01-211-0/+4
|
* doc: Sync classref with current sourceRémi Verschelde2019-07-151-1/+1
|
* doc: Add default values to all propertiesRémi Verschelde2019-06-301-2/+2
| | | | Thanks to @bojidar-bg's impressive work in #29380.
* doc: Complete and harmonize all _MAX constant descriptionsRémi Verschelde2019-06-271-0/+2
|
* doc: Drop unused <demos> tagRémi Verschelde2019-04-191-2/+0
|
* doc: Bump version to 3.2Rémi Verschelde2019-04-011-1/+1
|
* doc: Remove status from hardcoded version stringRémi Verschelde2018-02-271-1/+1
| | | | It has no practical use case and just generates noise for each alpha, beta, etc.
* doc: Update version string in headerRémi Verschelde2018-02-191-1/+1
|
* doc: Sync with current sourceRémi Verschelde2018-01-251-1/+1
| | | | | | Also enhance RigidBody docs as per https://github.com/godotengine/godot-docs/pull/1018 and fix the version tag in all files (not really stable yet, but it makes no sense to hardcode rc3 at this stage).
* doc: Update version string in XMLRémi Verschelde2018-01-131-1/+1
|
* doc: Fix enum tags thanks to 2bc6db6Rémi Verschelde2017-11-241-2/+2
|
* doc: Remove setters and getters now exposed via properties/membersRémi Verschelde2017-11-241-28/+0
|
* doc: Update header version for 3.0-betaRémi Verschelde2017-11-241-1/+1
|
* doc: Remove revision.module_config from version stringRémi Verschelde2017-11-151-1/+1
| | | | | It is now "3.0-alpha" instead of "3.0.alpha.custom_build{,.mono}", limits unnecessary diffs.
* doc: Sync classref with current sourceRémi Verschelde2017-09-131-2/+2
| | | | [ci skip]
* Changed the doc class generation to individual files per class. It is also ↵Juan Linietsky2017-09-121-0/+55
possible to save module files in module directories and the build system will recognize them.