Переглянути джерело

Fix where json exported empty types

(cherry picked from commit 6226be9595caec7f741cdf570ca99e742a611388)
Bastiaan Olij 6 роки тому
батько
коміт
163ef9fab3
1 змінених файлів з 3 додано та 0 видалено
  1. 3 0
      modules/gdnative/nativescript/api_generator.cpp

+ 3 - 0
modules/gdnative/nativescript/api_generator.cpp

@@ -323,6 +323,9 @@ List<ClassAPI> generate_c_api_classes() {
 						arg_type = "Variant";
 					} else if (arg_info.type == Variant::OBJECT) {
 						arg_type = arg_info.class_name;
+						if (arg_type == "") {
+							arg_type = Variant::get_type_name(arg_info.type);
+						}
 					} else {
 						arg_type = Variant::get_type_name(arg_info.type);
 					}