diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2020-04-29 15:50:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-29 15:50:00 +0200 |
commit | 58435b0c917fd93d4244ed672e7fadd076dae608 (patch) | |
tree | b41bc67f056615084a111fdad09e25033e2d21a0 /doc/translations/fr.po | |
parent | 1d45a269f87ff38e04169e6aa85d9ecd73fb3473 (diff) | |
parent | 540156b387270215f513a68b1cf9ffc909ac381b (diff) |
Merge pull request #20371 from aaronfranke/vector-lerp
[Core] [Mono] [GDNative] Rename "linear_interpolate" methods to "lerp"
Diffstat (limited to 'doc/translations/fr.po')
-rw-r--r-- | doc/translations/fr.po | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/translations/fr.po b/doc/translations/fr.po index 6926376c05..51313f873b 100644 --- a/doc/translations/fr.po +++ b/doc/translations/fr.po @@ -490,7 +490,7 @@ msgid "" "[float], the return value is a [float].\n" "If both are of the same vector type ([Vector2], [Vector3] or [Color]), the " "return value will be of the same type ([code]lerp[/code] then calls the " -"vector type's [code]linear_interpolate[/code] method).\n" +"vector type's [code]lerp[/code] method).\n" "[codeblock]\n" "lerp(0, 4, 0.75) # Returns 3.0\n" "lerp(Vector2(1, 5), Vector2(3, 2), 0.5) # Returns Vector2(2, 3.5)\n" @@ -12713,7 +12713,7 @@ msgid "" "[codeblock]\n" "var c1 = Color(1.0, 0.0, 0.0)\n" "var c2 = Color(0.0, 1.0, 0.0)\n" -"var li_c = c1.linear_interpolate(c2, 0.5) # A color of an RGBA(128, 128, 0, " +"var li_c = c1.lerp(c2, 0.5) # A color of an RGBA(128, 128, 0, " "255)\n" "[/codeblock]" msgstr "" |