Merge pull request #36525 from nathanwfranke/fix-project-godot-class-name
Fix project.godot for projects with class_name
This commit is contained in:
commit
2ca5f22bce
1 changed files with 4 additions and 0 deletions
|
@ -1108,6 +1108,10 @@ Error VariantParser::parse_value(Token &token, Variant &value, Stream *p_stream,
|
|||
return OK;
|
||||
} else if (token.type == TK_STRING) {
|
||||
|
||||
value = token.value;
|
||||
return OK;
|
||||
} else if (token.type == TK_STRING_NAME) {
|
||||
|
||||
value = token.value;
|
||||
return OK;
|
||||
} else if (token.type == TK_COLOR) {
|
||||
|
|
Loading…
Reference in a new issue