greatclock / excel_to_scriptableobject

An easy way to access data stated in excel (xlsx) files for Unity.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Gangster,I think it's a bug

MuYanKang opened this issue · comments

If i don't select "Generate ToString Method", "}" is Missing !
line 906
if (!string.IsNullOrEmpty(excel.name_space)) {
content.AppendLine("}");
}
change to
if (!string.IsNullOrEmpty(excel.name_space)) {
content.AppendLine(" }");
content.AppendLine("}");
}
else
{
content.AppendLine("}");
}
it's done

My fault, thx!