You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
StringName Dictionary keys
also added 'is_string()' method to Variant and refactored many String type comparisons to use it instead
This commit is contained in:
@@ -97,7 +97,7 @@ bool JavaClass::_call_method(JavaObject *p_instance, const StringName &p_method,
|
||||
}
|
||||
} break;
|
||||
case ARG_TYPE_STRING: {
|
||||
if (p_args[i]->get_type() != Variant::STRING) {
|
||||
if (!p_args[i]->is_string()) {
|
||||
arg_expected = Variant::STRING;
|
||||
}
|
||||
} break;
|
||||
|
||||
Reference in New Issue
Block a user