diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2017-11-12 21:11:39 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-12 21:11:39 +0100 |
commit | 51ffd452026236431eb8eced345ed36d053c247f (patch) | |
tree | c07a50b94ec0454451c96d3752755b78d770d5d5 /modules/visual_script/visual_script_nodes.h | |
parent | e9392dd876181c58ebdc309be84cbf397784e87b (diff) | |
parent | 91ca725f9b5a4a77ca70024e3bb73b7c7821a530 (diff) | |
download | redot-engine-51ffd452026236431eb8eced345ed36d053c247f.tar.gz |
Merge pull request #12627 from Goutte/feat-support-tau
Add support for TAU constant.
Diffstat (limited to 'modules/visual_script/visual_script_nodes.h')
-rw-r--r-- | modules/visual_script/visual_script_nodes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/visual_script/visual_script_nodes.h b/modules/visual_script/visual_script_nodes.h index 421409b265..6648f57e7b 100644 --- a/modules/visual_script/visual_script_nodes.h +++ b/modules/visual_script/visual_script_nodes.h @@ -474,8 +474,8 @@ public: enum MathConstant { MATH_CONSTANT_ONE, MATH_CONSTANT_PI, - MATH_CONSTANT_2PI, MATH_CONSTANT_HALF_PI, + MATH_CONSTANT_TAU, MATH_CONSTANT_E, MATH_CONSTANT_SQRT2, MATH_CONSTANT_INF, |