summaryrefslogtreecommitdiff
path: root/modules/gdscript
diff options
context:
space:
mode:
authorNathan Warden <nathanwardenlee@icloud.com>2015-02-20 16:28:48 -0500
committerNathan Warden <nathanwardenlee@icloud.com>2015-02-20 16:28:48 -0500
commitbfad3923878aa9b485f90a37bc04944828e35f27 (patch)
treeec8cdf579272be5832430c2f9078a367fe98e2ba /modules/gdscript
parent071b2ea4f205ea99346a5cf73afdd50f7ccc95ed (diff)
Updated the variable in the lerp function to be weight instead of percent.
Diffstat (limited to 'modules/gdscript')
-rw-r--r--modules/gdscript/gd_functions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gdscript/gd_functions.cpp b/modules/gdscript/gd_functions.cpp
index b616d8f228..f37b2f645a 100644
--- a/modules/gdscript/gd_functions.cpp
+++ b/modules/gdscript/gd_functions.cpp
@@ -1101,7 +1101,7 @@ MethodInfo GDFunctions::get_info(Function p_func) {
return mi;
} break;
case MATH_LERP: {
- MethodInfo mi("lerp",PropertyInfo(Variant::REAL,"a"),PropertyInfo(Variant::REAL,"b"), PropertyInfo(Variant::REAL,"c"));
+ MethodInfo mi("lerp",PropertyInfo(Variant::REAL,"from"),PropertyInfo(Variant::REAL,"to"), PropertyInfo(Variant::REAL,"weight"));
mi.return_val.type=Variant::REAL;
return mi;
} break;