Merge pull request #877 from InfiniteProductions/loading/serialization-demo-fixed-to-work-with-Godot-4

loading/serialization demo fixed to work with Godot 4 stable
This commit is contained in:
Aaron Franke
2023-03-06 23:05:50 -06:00
committed by GitHub

View File

@@ -34,7 +34,7 @@ func save_game():
position = var_to_str(enemy.position),
})
file.store_line(JSON.new().stringify(save_dict))
file.store_line(JSON.stringify(save_dict))
get_node(^"../LoadJSON").disabled = false