diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2020-03-03 04:42:20 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2020-03-17 18:03:28 -0400 |
commit | 9b322d46d302f214d830b27f26d5a1c821a610e0 (patch) | |
tree | ffa38c8c08b65c32f768524e7c5704ca2c9d8368 /modules/mono/csharp_script.cpp | |
parent | 22ba912d9072bcd24c134b5f7c3daedbf952dd4c (diff) | |
download | redot-engine-9b322d46d302f214d830b27f26d5a1c821a610e0.tar.gz |
[Mono] Marshaling for Vector2i, Vector3i, and Rect2i
Diffstat (limited to 'modules/mono/csharp_script.cpp')
-rw-r--r-- | modules/mono/csharp_script.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/mono/csharp_script.cpp b/modules/mono/csharp_script.cpp index c3608693f1..bc70f55e36 100644 --- a/modules/mono/csharp_script.cpp +++ b/modules/mono/csharp_script.cpp @@ -461,8 +461,11 @@ static String variant_type_to_managed_name(const String &p_var_type_name) { Variant::BOOL, Variant::INT, Variant::VECTOR2, + Variant::VECTOR2I, Variant::RECT2, + Variant::RECT2I, Variant::VECTOR3, + Variant::VECTOR3I, Variant::TRANSFORM2D, Variant::PLANE, Variant::QUAT, |