2022-06-03 10:34:31 +02:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
public class NewGame : MonoBehaviour
|
|
|
|
{
|
|
|
|
public void ResetSettings()
|
|
|
|
{
|
2022-10-02 18:45:58 +02:00
|
|
|
// when new game is started, clear all rememberred vars (for now, added for this one with dynamic names)
|
|
|
|
PlayerPrefs.DeleteAll();
|
|
|
|
|
|
|
|
// !!! TODO do local save in other way !!!
|
|
|
|
// !!! comment on changed elements
|
|
|
|
|
2022-06-03 10:34:31 +02:00
|
|
|
int rock = 1;
|
2022-11-03 20:30:40 +01:00
|
|
|
PlayerPrefs.SetInt("rock", rock); // Is it used anywhere? I have not found it
|
2022-10-02 18:45:58 +02:00
|
|
|
/*
|
|
|
|
string pickaxe1 = "create";
|
|
|
|
PlayerPrefs.SetString("pickaxe1", pickaxe1);
|
|
|
|
*/
|
2022-10-23 13:29:22 +02:00
|
|
|
PlayerPrefs.SetFloat("exp", 0);
|
|
|
|
PlayerPrefs.SetInt("lvl", 1);
|
|
|
|
PlayerPrefs.SetFloat("maxExp", 10);
|
2022-06-03 10:34:31 +02:00
|
|
|
string name = "none";
|
|
|
|
PlayerPrefs.SetString("name", name);
|
2022-10-02 18:45:58 +02:00
|
|
|
|
|
|
|
//int isQuest = 1;
|
|
|
|
//PlayerPrefs.SetInt("lumberjack", isQuest);
|
|
|
|
|
|
|
|
/*
|
|
|
|
int isKilled = 0;
|
|
|
|
PlayerPrefs.SetInt("bat0", isKilled);
|
|
|
|
PlayerPrefs.SetInt("bat1", isKilled);
|
|
|
|
PlayerPrefs.SetInt("skeleton0", isKilled);
|
|
|
|
PlayerPrefs.SetInt("slime0", isKilled);
|
|
|
|
PlayerPrefs.SetInt("slime1", isKilled);
|
|
|
|
*/
|
|
|
|
|
2022-06-15 16:32:14 +02:00
|
|
|
float health = 10.0f;
|
|
|
|
PlayerPrefs.SetFloat("health", health);
|
2022-10-02 18:45:58 +02:00
|
|
|
|
|
|
|
//PlayerPrefs.SetInt("continued", 0);
|
|
|
|
|
2022-11-03 20:30:40 +01:00
|
|
|
PlayerPrefs.SetInt("rock", 0); // Is it used anywhere? I have not found it
|
2022-10-02 18:45:58 +02:00
|
|
|
|
|
|
|
//PlayerPrefs.SetInt("goldOre", 0);
|
|
|
|
|
2022-06-15 19:54:44 +02:00
|
|
|
PlayerPrefs.SetInt("pickaxe", 0);
|
2022-11-03 20:30:40 +01:00
|
|
|
|
|
|
|
OnMapAppearanceMethod.Gateway = OnMapAppearanceMethodEnum.NewGame;
|
2022-06-03 10:34:31 +02:00
|
|
|
}
|
|
|
|
}
|