edited January 2020 in ORK Support
I have an existing main menu system that I like, and I'd like to use my menu system to call New Game and Load Game functions. I have the ORK Game Starter in the scene, but where in the docs do I look for the class(es) and methods I need to call those functions to load the starting scene? (I know how to load via SceneManager, but I don't know how to fire the new game event first).

Thanks
Post edited by Shurijo on
  • Found it. ORKFramework.ORK.Game.NewGame(true);
  • And you can call the load menu like this:
    ORK.SaveGameMenu.loadMenu.Show(null, null);
    The parameters allow you to optionally pass on stuff to be called as callbacks (e.g. if the user cancels the load menu), check out the code to see what you'll need there.
    Please consider rating/reviewing my products on the Asset Store (hopefully positively), as that helps tremendously with getting found.
    If you're enjoying my products, updates and support, please consider supporting me on patreon.com!
Sign In or Register to comment.