diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2019-07-28 17:43:40 -0400 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2019-07-28 17:49:22 -0400 |
commit | 7dbbb5eac7a2a64066b0acd9b0cf7c8800f9c809 (patch) | |
tree | 13a14b9ef200eae8893ac9243ed6e6c0fa25e225 /core/variant_call.cpp | |
parent | becbb7b525e1cc9bf1520a0ac94b9e9f799f6169 (diff) | |
download | redot-engine-7dbbb5eac7a2a64066b0acd9b0cf7c8800f9c809.tar.gz |
[Mono] Deprecate Set methods
These silently fail, so they should be removed. I accidentally added most of these last year, trying to make everything else consistent with Quat, sorry!
Also, a few tiny nitpicking changes are included, like whitespace and misspellings.
Diffstat (limited to 'core/variant_call.cpp')
-rw-r--r-- | core/variant_call.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/variant_call.cpp b/core/variant_call.cpp index 377cc889b8..1f6e5bb653 100644 --- a/core/variant_call.cpp +++ b/core/variant_call.cpp @@ -914,7 +914,7 @@ struct _VariantCall { static void Quat_init2(Variant &r_ret, const Variant **p_args) { - r_ret = Quat(((Vector3)(*p_args[0])), ((float)(*p_args[1]))); + r_ret = Quat(((Vector3)(*p_args[0])), ((real_t)(*p_args[1]))); } static void Quat_init3(Variant &r_ret, const Variant **p_args) { |