I have a class which is supposed to call the NGIO.Init() method in a preload scene before the game scene, and a Score class which loads high score data in the game scene. I am getting an error however, telling me that I cant use GetSaveSlot() without setting preloadSaveSlots option to true, however I do have it set to true, in fact I have all the options set to true like how it shows in the github docs
// Set up the options for NGIO. var options = new Dictionary<string,object>() { { "version", "1.0.0" }, { "checkHostLicense", true }, { "autoLogNewView", true }, { "preloadMedals", true }, { "preloadScoreBoards", true }, { "preloadSaveSlots", true } };
Could this be because I have to add Unity as an app with axis?
Do I need to have a valid user session to use these methods? If so, how do I "Pull a session ID from the Newgrounds API" as it says in the github docs?