[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.
This commit is contained in:
Aaron Franke 2019-07-28 17:43:40 -04:00
parent becbb7b525
commit 7dbbb5eac7
No known key found for this signature in database
GPG key ID: 40A1750B977E56BF
7 changed files with 16 additions and 9 deletions

View file

@ -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) {