2022-06-02 14:25:22 +02:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
using UnityEngine.SceneManagement;
|
|
|
|
|
|
|
|
public class SaveController : MonoBehaviour
|
|
|
|
{
|
|
|
|
public void SaveScene()
|
|
|
|
{
|
|
|
|
string activeScene = SceneManager.GetActiveScene().name;
|
|
|
|
PlayerPrefs.SetString("SceneSaved", activeScene);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void LoadScene()
|
|
|
|
{
|
|
|
|
string sceneToGoTo = PlayerPrefs.GetString("SceneSaved");
|
|
|
|
SceneManager.LoadScene(sceneToGoTo);
|
2022-06-15 19:54:44 +02:00
|
|
|
int continued = 1;
|
|
|
|
PlayerPrefs.SetInt("continued", continued);
|
2022-06-02 14:25:22 +02:00
|
|
|
}
|
2022-06-17 22:22:19 +02:00
|
|
|
|
|
|
|
public void SaveItems()
|
|
|
|
{
|
|
|
|
SceneEquippableItemManager.Instance.SaveEquippableItems();
|
|
|
|
}
|
2022-06-19 02:56:04 +02:00
|
|
|
|
|
|
|
public void SaveQuests()
|
|
|
|
{
|
|
|
|
SceneTaskManager.Instance.SaveQuests();
|
|
|
|
}
|
2022-06-19 14:38:22 +02:00
|
|
|
|
|
|
|
public void SaveInventory()
|
|
|
|
{
|
|
|
|
SceneInventoryManager.Instance.SaveInventoryItems();
|
|
|
|
}
|
2022-06-02 14:25:22 +02:00
|
|
|
}
|