diff options
| author | Rémi Verschelde | 2018-01-07 14:27:28 +0100 |
|---|---|---|
| committer | GitHub | 2018-01-07 14:27:28 +0100 |
| commit | b5b2ca81438f1152162409bfdfc2ee4ae64312bc (patch) | |
| tree | c0d20faa235f9b2a3bc3093ccd1630460387dcc4 /doc/classes/Vector2.xml | |
| parent | 25e942d64fa9ae5864e68bc0b27d5f3525a91771 (diff) | |
| parent | b04610b5e75b8d1fa1916ad7255bdcc5c638536a (diff) | |
| download | godot-b5b2ca81438f1152162409bfdfc2ee4ae64312bc.tar.gz godot-b5b2ca81438f1152162409bfdfc2ee4ae64312bc.tar.zst godot-b5b2ca81438f1152162409bfdfc2ee4ae64312bc.zip | |
Merge pull request #15423 from agmcleod/master
Documentation interpolation functions - Indicate what "t" means in interpolation docs
Diffstat (limited to '')
| -rw-r--r-- | doc/classes/Vector2.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/classes/Vector2.xml b/doc/classes/Vector2.xml index 976cdbbd9..5c1281b62 100644 --- a/doc/classes/Vector2.xml +++ b/doc/classes/Vector2.xml @@ -92,7 +92,7 @@ <argument index="3" name="t" type="float"> </argument> <description> - Cubicly interpolates between this Vector and "b", using "pre_a" and "post_b" as handles, and returning the result at position "t". + Cubicly interpolates between this Vector and "b", using "pre_a" and "post_b" as handles, and returning the result at position "t". "t" should be a float of 0.0-1.0, a percentage of how far along the interpolation is. </description> </method> <method name="distance_squared_to"> @@ -158,7 +158,7 @@ <argument index="1" name="t" type="float"> </argument> <description> - Returns the result of the linear interpolation between this vector and "b", by amount "t". + Returns the result of the linear interpolation between this vector and "b", by amount "t". "t" should be a float of 0.0-1.0, a percentage of how far along the interpolation is. </description> </method> <method name="normalized"> |
