You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-05 12:10:55 +00:00
@@ -2082,7 +2082,11 @@ static void _find_identifiers_in_base(const GDScriptCompletionContext &p_context
|
||||
|
||||
if (!p_only_functions) {
|
||||
List<PropertyInfo> members;
|
||||
tmp.get_property_list(&members);
|
||||
if (p_base.value.get_type() != Variant::NIL) {
|
||||
p_base.value.get_property_list(&members);
|
||||
} else {
|
||||
tmp.get_property_list(&members);
|
||||
}
|
||||
|
||||
for (List<PropertyInfo>::Element *E = members.front(); E; E = E->next()) {
|
||||
if (String(E->get().name).find("/") == -1) {
|
||||
|
||||
Reference in New Issue
Block a user