Godot Save System tutorial EOF Error

You use store_string to save the jsonString, but get_line to retrieve it. You can see that it’s retrieving multiple json strings, because store_string does not add a new line. Try using file.store_line(jsonString)


@Mahan Sorry to say SLib does not append to files, so your example code will overwrite nodeFile again and again, resulting in only ever writing the last json string to the file.