diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-06-18 12:35:14 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-18 12:35:14 +0200 |
commit | 3fc39954ec3473cc022af615c5eb8b1ba271e008 (patch) | |
tree | 90b2c8ccc77e6775b0fe9eae0037089ae77c0c48 /doc/classes/Transform2D.xml | |
parent | 3e8620c2759e6a457ea48b159bd6664d8d98b272 (diff) | |
parent | bd6ed3fb091d2d541f85e4152f0538088a3956db (diff) |
Merge pull request #49638 from aaronfranke/multiply-transforms
Allow multiplying Transforms and Basis by numbers
Diffstat (limited to 'doc/classes/Transform2D.xml')
-rw-r--r-- | doc/classes/Transform2D.xml | 30 |
1 files changed, 24 insertions, 6 deletions
diff --git a/doc/classes/Transform2D.xml b/doc/classes/Transform2D.xml index 2c4d35eae5..4f9b59c188 100644 --- a/doc/classes/Transform2D.xml +++ b/doc/classes/Transform2D.xml @@ -148,9 +148,17 @@ </description> </method> <method name="operator *" qualifiers="operator"> - <return type="PackedVector2Array"> + <return type="Vector2"> </return> - <argument index="0" name="right" type="PackedVector2Array"> + <argument index="0" name="right" type="Vector2"> + </argument> + <description> + </description> + </method> + <method name="operator *" qualifiers="operator"> + <return type="Rect2"> + </return> + <argument index="0" name="right" type="Rect2"> </argument> <description> </description> @@ -164,19 +172,29 @@ </description> </method> <method name="operator *" qualifiers="operator"> - <return type="Rect2"> + <return type="PackedVector2Array"> </return> - <argument index="0" name="right" type="Rect2"> + <argument index="0" name="right" type="PackedVector2Array"> </argument> <description> </description> </method> <method name="operator *" qualifiers="operator"> - <return type="Vector2"> + <return type="Transform2D"> </return> - <argument index="0" name="right" type="Vector2"> + <argument index="0" name="right" type="float"> + </argument> + <description> + This operator multiplies all components of the [Transform2D], including the origin vector, which scales it uniformly. + </description> + </method> + <method name="operator *" qualifiers="operator"> + <return type="Transform2D"> + </return> + <argument index="0" name="right" type="int"> </argument> <description> + This operator multiplies all components of the [Transform2D], including the origin vector, which scales it uniformly. </description> </method> <method name="operator ==" qualifiers="operator"> |