1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-04 19:21:46 +00:00

C # mono supports Unicode code

This commit is contained in:
magian1127
2021-01-18 16:34:10 +08:00
parent e25984a745
commit cb679dc434
5 changed files with 12 additions and 12 deletions

View File

@@ -2696,7 +2696,7 @@ int CSharpScript::_try_get_member_export_hint(IMonoClassMember *p_member, Manage
name_only_hint_string += ",";
}
String enum_field_name = mono_field_get_name(field);
String enum_field_name = String::utf8(mono_field_get_name(field));
r_hint_string += enum_field_name;
name_only_hint_string += enum_field_name;