public void LoadScriptables()
{
Debug.Log("IS: Loading From: " + Application.persistentDataPath);
switch (saveType)
{
case SaveSwitch.json:
Debug.Log("Load is via json");
JSONLoad();
break;
case SaveSwitch.binary:
Debug.Log("Load is via binary");
BinaryLoad();
break;
default:
break;
}
}