diff options
author | Ignacio Roldán Etcheverry <neikeq@users.noreply.github.com> | 2020-03-18 02:23:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-18 02:23:03 +0100 |
commit | ed298f59827aee57e2f4dccc6ce225fe7696a1b4 (patch) | |
tree | e7d3247ba3e33bf26a7344e21e0cda2504b3a391 /modules/mono/csharp_script.cpp | |
parent | 471089e9b01216fd5a2dd2def3e8a845370ed1f2 (diff) | |
parent | 9b322d46d302f214d830b27f26d5a1c821a610e0 (diff) | |
download | redot-engine-ed298f59827aee57e2f4dccc6ce225fe7696a1b4.tar.gz |
Merge pull request #36756 from aaronfranke/mono-vec2i3i
[Mono] Add Vector2i and Vector3i
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 cb17defc4a..c1302109a5 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, |