Skip to content

Commit

Permalink
GH-682 Fix type resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
Naros committed Aug 9, 2024
1 parent af6f01a commit 624856e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/script/variable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ void OScriptVariable::set_classification(const String& p_classification)
_info.type = Variant::OBJECT;
_info.hint = PROPERTY_HINT_NODE_TYPE;
_info.hint_string = class_name;
_info.class_name = "";
_info.class_name = class_name;
_info.usage = PROPERTY_USAGE_DEFAULT;
}
else
Expand Down

0 comments on commit 624856e

Please sign in to comment.