/// <summary>
        /// Loads the data and puts it into the display to show it has loaded the entered values
        /// </summary>
        public void LoadGame()
        {
            ExampleSaveData loadData = ExampleSaveManager.LoadGame();

            displayPlayerName.text     = loadData.examplePlayerName;
            displayPlayerHealth.text   = loadData.examplePlayerHealth.ToString();
            displayPlayerPosition.text = loadData.examplePlayerPosition.Vector3.ToString();
            displayPlayerShield.text   = loadData.exampleCustomClass.shieldAmount.ToString();
        }
        /// <summary>
        /// Saves the data by making a new save data and passing the values entered into the scene into it, you don't have to edit all the values each time you save, this example does.
        /// NOTE: int/float.phase() is used here as we are using input fields in the scene, you'd normally have the correct value type to hand, with UI Input fields we don't, so we have to convert them in this example.
        /// </summary>
        public void SaveGame()
        {
            // For you this would be ' SaveData ' not ' ExampleSaveData '
            ExampleSaveData saveData = new ExampleSaveData();

            // Passing in values to be saved
            saveData.examplePlayerName   = playerName.text;
            saveData.examplePlayerHealth = float.Parse(playerHealth.text);

            // Creating a SaveVector3 and setting the Vector3 up before saving it.
            SaveVector3 exampleVec = new SaveVector3();

            exampleVec.Vector3             = new Vector3(float.Parse(playerPosition0.text), float.Parse(playerPosition1.text), float.Parse(playerPosition2.text));
            saveData.examplePlayerPosition = exampleVec;

            exampleClass.shieldAmount   = int.Parse(playerShield.text);
            saveData.exampleCustomClass = exampleClass;

            // you would just call ' SaveManager.SaveGame(saveData) ' for the sake of not requiring the project to be set up one way to show the asset working...
            // ...there is an example save manager on this script which runs just like the normal one.
            ExampleSaveManager.SaveGame(saveData);
        }