summaryrefslogtreecommitdiffstats
path: root/doc/classes/Polygon2D.xml
Commit message (Collapse)AuthorAgeFilesLines
* Make `Polygon2D::bones` property internalRaul Santos2024-08-101-3/+0
|
* Add further details on properties returning `Packed*Array`A Thousand Ships2024-04-081-1/+0
|
* Add keywords to improve search in the class referenceHugo Locurcio2024-02-221-1/+1
|
* Validate `code` tags for class and member referencesYuri Sizov2023-10-031-6/+6
| | | | | | | | This commit also adds means to manually disable warnings in `code` tags where it's a false positive with the new `skip-lint` attribute. Warnings are now enabled on CI to prevent future errors.
* 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'
* Fix incorrect Polygon2D descriptionskyace652023-05-211-1/+1
|
* Fill random docskobewi2023-04-031-0/+3
|
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* clarify [member polygons] functionality in the Polygon2D class documentationstreq2022-10-301-0/+1
|
* Rename Polygon2D.`invert_enable` to end with "d"Micky2022-08-241-3/+3
| | | | | | | Polygon2D.`invert_enable` -> `invert_enabled` Also affects the setters and getters, which are now named in full instead of cutting "enabled" off. Updates old leftover documentation slightly, as well.
* [doc] Use "param" instead of "code" to refer to parameters (4)Andy Maloney2022-08-111-1/+1
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-9/+9
|
* 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-34/+17
| | | | | | | | 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 editor suffixes and degrees conversionreduz2021-06-301-4/+1
| | | | | | | | | | | | | * Functions to convert to/from degrees are all gone. Conversion is done by the editor. * Use PROPERTY_HINT_ANGLE instead of PROPERTY_HINT_RANGE to edit radian angles in degrees. * Added possibility to add suffixes to range properties, use "min,max[,step][,suffix:<something>]" example "0,100,1,suffix:m" * In general, can add suffixes for EditorSpinSlider Not covered by this PR, will have to be addressed by future ones: * Ability to switch radians/degrees in the inspector for angle properties (if actually wanted). * Animations previously made will most likely break, need to add a way to make old ones compatible. * Only added a "px" suffix to 2D position and a "m" one to 3D position, someone needs to go through the rest of the engine and add all remaining suffixes. * Likely also need to track down usage of EditorSpinSlider outside properties to add suffixes to it too.
* Better format arguments in variant parserMichael Alexsander Silva Dias2021-06-181-9/+9
|
* doc: Sync classref with current source + fixup some bindingsRémi Verschelde2020-11-041-10/+0
| | | | Includes various changes triggered by the refactoring of method bindings.
* Document the expected normal map coordinate system where relevantHugo Locurcio2020-05-041-0/+2
|
* Add LOTS of missing docsTomasz Chabora2020-03-131-0/+8
|
* doc: Sync classref for Packed{Int,Float}{32,64}Array additionsRémi Verschelde2020-02-251-3/+3
|
* doc: Sync classref with current sourceRémi Verschelde2020-02-181-7/+7
| | | | Handle removal of Pool*Array types and other recent changes.
* doc: Sync classref with current sourceRémi Verschelde2020-02-121-2/+9
| | | | | | | | 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
|
* Mention 2D polygon limits and how to increase them in the documentationHugo Locurcio2020-01-281-0/+1
| | | | This closes #21793.
* 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.
* doc: Sync classref with current sourceRémi Verschelde2019-07-151-1/+1
|
* doc: Remove null default values that can't be determinedRémi Verschelde2019-06-301-1/+1
| | | | Applying #30187.
* doc: Remove hardcoded default values from descriptionsRémi Verschelde2019-06-301-3/+3
| | | | They are now generated automatically by doctool.
* doc: Add default values to all propertiesRémi Verschelde2019-06-301-17/+17
| | | | Thanks to @bojidar-bg's impressive work in #29380.
* Proofread and improve the whole class referenceHugo Locurcio2019-06-271-1/+2
| | | | | | | | | | | | | - 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
* doc: Fix DocData.merge_from copying old setters and gettersRémi Verschelde2019-06-031-1/+1
| | | | | | | | | | This is not necessary and means that some setters and getters can end up wrong if they are changed in the bindings but DocData does not update them when running --doctool. Fixes #29425. Co-authored-by: Bojidar Marinov <bojidar.marinov.bg@gmail.com>
* doc: Drop unused <demos> tagRémi Verschelde2019-04-191-2/+0
|
* doc: Bump version to 3.2Rémi Verschelde2019-04-011-1/+1
|
* Add warnings to docs for methods that return copies, not refs.Joseph Catrambone2019-02-191-1/+1
|
* doc: Sync classref with current source + AUTHORS editRémi Verschelde2019-01-101-2/+4
|
* doc: Add missing commas after "If true/false"Rémi Verschelde2018-12-201-2/+2
|
* Sync classref with current sourceRémi Verschelde2018-05-121-0/+70
|
* doc: Sync classref with current sourceRémi Verschelde2018-02-271-0/+2
|
* 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
|
* Update docsBojidar Marinov2018-01-121-16/+3
| | | | [ci skip]
* doc: Remove setters and getters now exposed via properties/membersRémi Verschelde2017-11-241-188/+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.
* classref: Sync with current sourceRémi Verschelde2017-11-131-0/+14
| | | | [ci skip]
* Unify degree members and propertiesletheed2017-11-101-1/+1
|