summaryrefslogtreecommitdiffstats
path: root/doc/classes/MultiMesh.xml
Commit message (Collapse)AuthorAgeFilesLines
* Fixed Timestep Interpolation: MultiMeshRicardo Buring2024-08-181-0/+29
| | | | | | Adds fixed timestep interpolation to multimeshes. Co-authored-by: lawnjelly <lawnjelly@gmail.com>
* Mention Multimesh custom data will be compressed to half in Compatibilityjsjtxietian2024-08-051-0/+2
|
* Overhaul some "uncommon" wording in class referenceMicky2024-03-011-1/+1
|
* Add keywords to improve search in the class referenceHugo Locurcio2024-02-221-1/+1
|
* Update many Deprecated/Experimental descriptions for consistencyMicky2024-02-171-5/+8
|
* Support custom AABB within MultiMesh resourcesArman Elgudzhyan2024-02-151-0/+4
| | | | | - Supporting custom AABB on the MultiMesh resource itself allows us to prevent costly runtime AABB recalculations. - Should also help improve CPU Particle performance.
* Documentation: Add support for deprecated/experimental messagesDanil Alexeev2024-02-151-8/+4
|
* Add missing tutorials to documentation classesHugo Locurcio2023-08-191-1/+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'
* Mark deprecated methods of MultiMesh in the docsRedworkDE2023-06-051-4/+4
|
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* Remove the global space `get_transformed_aabb` helper methodAaron Franke2022-10-181-1/+1
|
* Document MultiMesh members and improve/extend existing descriptionsMJacred2022-09-081-7/+15
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-12/+12
|
* doc: Clarify `MultiMesh.set_instance_color` re: white albedo colorCristiano Simao2022-08-081-1/+1
| | | | | | | If the user does not set the albedo color to pure white, then the multiplication with a value different from 1 will produce modulated colors. Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>
* Filled in MultiMesh instance_count doc.Vojtěch Struhár2022-07-191-1/+2
|
* 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.
* Replace Godot docs URL with `$DOCS_URL` in XML class referenceRémi Verschelde2021-11-151-2/+2
|
* doc: Update links to latest documentation after content reorganizationRémi Verschelde2021-10-061-2/+2
|
* doc: Use self-closing tags for `return` and `argument`Rémi Verschelde2021-07-301-42/+21
| | | | | | | | 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.
* Fix grammar in MultiMesh documentation.Joseph Davies2021-07-191-1/+1
|
* Better format arguments in variant parserMichael Alexsander Silva Dias2021-06-181-1/+1
|
* Update documentation for Transform3DAaron Franke2021-06-031-4/+4
|
* class reference proofreadingPaul Joannon2021-03-191-1/+1
|
* Clarify that `MultiMesh.set_instance_color()` multiplies vertex colorsHugo Locurcio2020-10-151-1/+1
| | | | This closes https://github.com/godotengine/godot-docs/issues/4273.
* Cross-reference AABB getter methods in the documentationHugo Locurcio2020-09-161-1/+1
| | | | | | This also clarifies that `get_aabb()` returns the AABB in local space. See https://github.com/godotengine/godot/issues/42095.
* Add link titles for all links in the class referenceHugo Locurcio2020-08-311-2/+2
| | | | | This makes them display in a nicer way in the editor help. (The title will display instead of the full URL.)
* 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.
* Add LOTS of missing docsTomasz Chabora2020-03-131-0/+2
|
* doc: Sync classref for Packed{Int,Float}{32,64}Array additionsRémi Verschelde2020-02-251-1/+1
|
* doc: Sync classref with current sourceRémi Verschelde2020-02-181-5/+5
| | | | Handle removal of Pool*Array types and other recent changes.
* doc: Sync classref with current sourceRémi Verschelde2020-02-121-35/+15
| | | | | | | | 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
|
* Fix some URLs to use HTTPS when availableRémi Verschelde2020-01-291-2/+2
|
* 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 documenting VisualServerclayjohn2020-01-051-2/+3
|
* doc: Sync classref with current sourceRémi Verschelde2019-07-151-1/+1
|
* doc: Add default values to all propertiesRémi Verschelde2019-06-301-6/+6
| | | | Thanks to @bojidar-bg's impressive work in #29380.
* Proofread and improve the whole class referenceHugo Locurcio2019-06-271-12/+12
| | | | | | | | | | | | | - 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
* Change "Return" to "Returns" where necessary in XML documentationSean Heffernan2019-05-231-4/+4
| | | | | | | | 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
* doc: Sync classref with current sourceRémi Verschelde2019-05-151-1/+1
|
* Added set_as_bulk_array, fixed transform2D saving and documentation to MultiMeshBastiaan Olij2019-04-261-3/+17
|
* Added inspector plugin documentation.Juan Linietsky2019-04-231-0/+2
| | | | Fixed plugin bindings.
* doc: Drop unused <demos> tagRémi Verschelde2019-04-191-2/+0
|
* Merge pull request #27465 from ↵Rémi Verschelde2019-04-051-1/+1
|\ | | | | | | | | neikeq/road-to-lang-agnostic-docs-is-going-to-be-tough EditorHelp: Improve enum ref resolving and add constant ref support
| * ClassRef: Replace [code]CurrentClass[/code] with [CurrentClass]Ignacio Etcheverry2019-03-291-1/+1
| | | | | | | | Modified makerst to generate code tags for these to avoid hyperlinks to the same class.
* | doc: Bump version to 3.2Rémi Verschelde2019-04-011-1/+1
|/
* linked tutorials in the classrefclayjohn2019-03-121-0/+1
|
* Clarify how to use MultiMesh.set_instance_color.Ryan Roden-Corrent2019-02-261-0/+1
| | | | | | | | | Just calling set_instance_color will do nothing unless you have set color_format and vertex_color_use_as_albedo. This is really confusing, and I only discovered my error by finding godotengine/godot#10217 from another confused user. The docs should call out these requirements.