diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-04-08 10:03:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-08 10:03:42 +0200 |
commit | d211aff777ec338a5f57cece1c7bf76120d0622d (patch) | |
tree | c7d6a922eb7e7a5dd3995c366848f39c82338220 /modules/gdscript/gdscript_functions.h | |
parent | 5a64c679cfc5463afd4a703b1c6e437d894b22b1 (diff) | |
parent | 514a3fb96a6ad97eb9488cacba7143566cb17d27 (diff) | |
download | redot-engine-d211aff777ec338a5f57cece1c7bf76120d0622d.tar.gz |
Merge pull request #27231 from Chaosus/smoothstep
Added smoothstep built-in function
Diffstat (limited to 'modules/gdscript/gdscript_functions.h')
-rw-r--r-- | modules/gdscript/gdscript_functions.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/gdscript/gdscript_functions.h b/modules/gdscript/gdscript_functions.h index fcb8f32e54..14bf3d7560 100644 --- a/modules/gdscript/gdscript_functions.h +++ b/modules/gdscript/gdscript_functions.h @@ -65,6 +65,7 @@ public: MATH_LERP, MATH_INVERSE_LERP, MATH_RANGE_LERP, + MATH_SMOOTHSTEP, MATH_DECTIME, MATH_RANDOMIZE, MATH_RAND, |