emit more detailed type information for signal parameters

This commit is contained in:
Kelly Thomas 2018-09-01 03:12:02 +08:00 committed by Rémi Verschelde
parent 3304e6cee0
commit e00baaf6ce

View file

@ -382,7 +382,11 @@ void DocData::generate(bool p_basic_types) {
PropertyInfo arginfo = EV->get().arguments[i];
ArgumentDoc argument;
argument.name = arginfo.name;
argument.type = Variant::get_type_name(arginfo.type);
if (arginfo.type == Variant::OBJECT && arginfo.class_name != StringName()) {
argument.type = arginfo.class_name.operator String();
} else {
argument.type = Variant::get_type_name(arginfo.type);
}
signal.arguments.push_back(argument);
}