Merge pull request #23524 from RySchmitt/fix_false_mono_error

Fix false error when exporting c# enum
This commit is contained in:
Ignacio Etcheverry 2018-11-05 17:59:28 +01:00 committed by GitHub
commit 3cf3c4137a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -223,6 +223,8 @@ void GDMonoField::set_value_from_variant(MonoObject *p_object, const Variant &p_
ERR_FAIL();
}
}
break;
}
ERR_EXPLAIN(String() + "Attempted to set the value of a field of unmarshallable type: " + tclass->get_name());