playlist now removes played scenes

This commit is contained in:
Derek
2025-03-01 16:11:20 -06:00
parent 3ab4160be6
commit dc7ecf83ee
11 changed files with 86 additions and 61 deletions

View File

@@ -62,7 +62,9 @@ func save_user_data():
file.store_var(GameGlobals.last_hit_path)
file.store_var(leaderboard_name)
file.store_var(GameGlobals.current_level)
file.store_var(GameGlobals.no_reentry_portals)
file.store_var(GameGlobals.current_match)
file.store_var(GameGlobals.current_match_id)
file.store_var(GameGlobals.current_round_id)
file.store_var(money)
file.store_var(deposited_money)
file.store_var(health)
@@ -95,7 +97,9 @@ func load_user_data():
GameGlobals.last_hit_path = file.get_var()
var file_leaderboard_name = file.get_var()
GameGlobals.current_level = str(file.get_var())
GameGlobals.no_reentry_portals = file.get_var()
GameGlobals.current_match = file.get_var()
GameGlobals.current_match_id = file.get_var()
GameGlobals.current_round_id = file.get_var()
var money = set_nulls_zero(file.get_var())
var deposited_money = set_nulls_zero(file.get_var())
var health = file.get_var()