summaryrefslogtreecommitdiffstats
path: root/doc/classes/Transform2D.xml
Commit message (Collapse)AuthorAgeFilesLines
* Docs: Add note about C# differences in Variant constructorstetrapod002024-10-271-0/+1
|
* Fix incorrect Transform2D docstetrapod002024-10-221-2/+2
| | | | The y vector of a transform 2d was incorrectly described as pointing up.
* Overhaul Transform2D documentationMicky2024-07-091-41/+92
|
* 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>
* Merge pull request #86364 from aaronfranke/basis-divideRémi Verschelde2024-01-041-0/+14
|\ | | | | | | Add and expose Basis/Transform2D/3D division by float operator
| * Add and expose Basis/Transform2D/3D division by float operatorAaron Franke2023-12-201-0/+14
| |
* | Link to the "article" in the docs instead of saying "article"Micky2024-01-021-1/+1
|/
* Clarify C# docs for operators performing xform_invkleonc2023-10-171-5/+5
|
* Clarify docs for operators performing `xform_inv`kleonc2023-10-161-3/+5
|
* Validate `code` tags for class and member referencesYuri Sizov2023-10-031-1/+1
| | | | | | | | 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.
* Add `is_conformal` method to Basis and Transform2DAaron Franke2023-09-131-0/+6
|
* 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'
* Overhaul the top sections of the class reference (Core classes)VolTer2023-05-191-2/+2
|
* Expose `determinant` in Transform2D, rename internal methodAaron Franke2023-04-221-0/+7
|
* Fix typos and inconsistencies in classrefHaoyu Qiu2023-03-161-12/+6
|
* Fixed typos in the Transform2D and Transform3D class referencetitus1252023-03-091-2/+2
|
* Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | Can't stop, won't stop, they said, huh?
* Unbind Variant methods that change immutable types.Juan Linietsky2023-01-061-22/+0
| | | | | Fixes #62706. Code is commented instead of removed to clarify why they should not be re-added.
* Add `is_finite` method for checking built-in typesHaoyu Qiu2022-10-081-0/+6
|
* [doc] Use "param" instead of "code" to refer to parametersAndy Maloney2022-08-111-8/+8
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-34/+34
|
* Fix consistency of translated/scaled/rotated in Transform2D and Transform3DFabian Keller2022-08-021-4/+42
|
* rename translate(d) to translate(d)_local in Transform 2D/3DFabian Keller2022-07-161-1/+1
|
* Document limitations of negative scales in 2D and 3DAaron Franke2022-06-101-0/+1
|
* Core: Rename math 'phi' arguments to 'angle'Rémi Verschelde2022-05-051-2/+2
|
* Specify return value of Transform3D.scaled() and moreMicky2022-05-051-3/+3
| | | | | | | | | | Add more `[code]` (Transform3D) Co-authored-by: kleonc <9283098+kleonc@users.noreply.github.com> Add more `[code]` (Transform2D) Co-authored-by: kleonc <9283098+kleonc@users.noreply.github.com>
* Remove generating of null comparison operators from documentationYuri Roubinsky2022-03-141-10/+0
|
* 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.
* Enable sorting of operator methods in class documentation.Marcel Admiraal2021-11-291-6/+6
|
* Merge pull request #54581 from aaronfranke/operator-docsRémi Verschelde2021-11-161-0/+9
|\
| * Add documentation to operators for math typesAaron Franke2021-11-041-0/+9
| | | | | | | | Co-authored-by: Raul Santos <raulsntos@gmail.com>
* | Replace Godot docs URL with `$DOCS_URL` in XML class referenceRémi Verschelde2021-11-151-2/+2
|/
* Move the docs for constructors and operators out of methods sectionAaron Franke2021-10-291-77/+81
|
* doc: Update links to latest documentation after content reorganizationRémi Verschelde2021-10-061-1/+1
|
* Merge pull request #52398 from deakcor/dev-transformRémi Verschelde2021-09-201-8/+38
|\
| * Expose get_skew for transform2d and add new constructorVincent D2021-09-191-8/+38
| | | | | | | | | | | | | | | | | | | | Expose set_scale and set_skew for transform2d Replacing float by real_t Adding const parameters Updated transform2d doc
* | Allow comparing equality between builtin types and nullGeorge Marques2021-09-171-0/+10
|/
* Fix a few default parameters in bindingsGeorge Marques2021-08-051-1/+1
| | | | They have the wrong type and cause issues with extensions.
* Grammar fix.Kevin Sanders2021-08-031-1/+1
|
* doc: Use self-closing tags for `return` and `argument`Rémi Verschelde2021-07-301-106/+53
| | | | | | | | 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.
* Merge pull request #49638 from aaronfranke/multiply-transformsRémi Verschelde2021-06-181-6/+24
|\ | | | | Allow multiplying Transforms and Basis by numbers
| * Allow multiplying Transforms and Basis by numbersAaron Franke2021-06-151-6/+24
| |
* | Better format arguments in variant parserMichael Alexsander Silva Dias2021-06-181-7/+7
|/
* New and improved IK system for Skeleton2DTwistedTwigleg2021-06-051-8/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This PR and commit adds a new IK system for 2D with the Skeleton2D node that adds several new IK solvers, a way to control bones in a Skeleton2D node similar to that in Skeleton3D. It also adds additional changes and functionality. This work was sponsored by GSoC 2020 and TwistedTwigleg. Full list of changes: * Adds a SkeletonModifier2D resource * This resource is the base where all IK code is written and executed * Has a function for clamping angles, since it is so commonly used * Modifiers are unique when duplicated so it works with instancing * Adds a SkeletonModifierStack2D resource * This resource manages a series of SkeletonModification2Ds * This is what the Skeleton2D directly interfaces with to make IK possible * Adds SkeletonModifier2D resources for LookAt, CCDIK, FABRIK, Jiggle, and TwoBoneIK * Each modification is in its own file * There is also a SkeletonModifier2D resource that acts as a stack for using multiple stacks together * Adds a PhysicalBone2D node * Works similar to the PhysicalBone3D node, but uses a RigidBody2D node * Changes to Skeleton2D listed below: * Skeleton2D now holds a single SkeletonModificationStack2D for IK * Skeleton2D now has a local_pose_override, which overrides the Bone2D position similar to how the overrides work in Skeleton3D * Changes to Bone2D listed below: * The default_length property has been changed to length. Length is the length of the bone to its child bone node * New bone_angle property, which is the angle the bone has to its first child bone node * Bone2D caches its transform when not modified by IK for IK interpolation purposes * Bone2D draws its own editor gizmo, though this is stated to change in the future * Changes to CanvasItemEditor listed below: * Bone2D gizmo drawing code removed * The 2D IK code is removed. Now Bone2D is the only bone system for 2D * Transform2D now has a looking_at function for rotating to face a position * Two new node notifications: NOTIFICATION_EDITOR_PRE_SAVE and NOTIFICATION_EDITOR_POST_SAVE * These notifications only are called in the editor right before and after saving a scene * Needed for not saving the IK position when executing IK in the editor * Documentation for all the changes listed above.
* Update documentation for Transform3DAaron Franke2021-06-031-1/+1
|
* doc: Sync classref with current sourceRémi Verschelde2021-03-181-13/+13
| | | | And move GLTF docs to its module folder.
* Improve argument names for core typesAaron Franke2020-12-071-2/+2
|
* doc: Sync classref to add operators after #43419Rémi Verschelde2020-11-101-4/+60
|
* Variant: Sync docs with new constructors, fixups after #43403Rémi Verschelde2020-11-091-9/+16
| | | | | Change DocData comparators for MethodDoc and ArgumentDoc to get a better ordering of constructors.