Hello friends,for the new game/continue part I did it with a special autosave which i never overwrite. so at start of very first game i autosave#99 (for example 99), then the game starts and i make an autosave#1. this one "1" is used in the game for ever. and when you click on new game, the game loads the autosave#99, so the save before i started playing, so like a fresh new start. then the same repeats. autosave#99 works then like a new fresh and clean startI need three pieces of advice please.1. How to create a text-based main menu. I don't want to create an image menu because it can't be translated into another language. And I wouldn't want to create a lot of images for different languages.2. How to set action parts for "New game" and "Continue game" buttons. When I call up the menu during the game, I would like the game to start from the beginning after clicking the "New game" button, and after clicking the "Continue game" button, I would go back to the game.3. How to correctly choose to call up the menu during the game? Are there "Show scene/menu" or "Change scene" options in the action section?Thank you very much in advance for all your advice.
That's not always the case. If you load a save game in the same session that you've already been playing the game/have already loaded a save game, then it's possible that some of the cached data you've accumulated for the session will randomly be used instead of everything being set to whatever is stored inside of the save game files, which is why for me replaceGame is the better method to use - well, at least until Simon sorts out an official function (fingers crossed) that we could call to purge the session data without needing to use replaceGame or actually quitting & reopening the game app.Hello friends,for the new game/continue part I did it with a special autosave which i never overwrite. so at start of very first game i autosave#99 (for example 99), then the game starts and i make an autosave#1. this one "1" is used in the game for ever. and when you click on new game, the game loads the autosave#99, so the save before i started playing, so like a fresh new start. then the same repeats. autosave#99 works then like a new fresh and clean startI need three pieces of advice please.1. How to create a text-based main menu. I don't want to create an image menu because it can't be translated into another language. And I wouldn't want to create a lot of images for different languages.2. How to set action parts for "New game" and "Continue game" buttons. When I call up the menu during the game, I would like the game to start from the beginning after clicking the "New game" button, and after clicking the "Continue game" button, I would go back to the game.3. How to correctly choose to call up the menu during the game? Are there "Show scene/menu" or "Change scene" options in the action section?Thank you very much in advance for all your advice.
The template is great, it helped me a lot.Are you using text components? Then in fact loading the scene again - like you did in the screenshot by the action part "show scene/menu" - is the only way to refresh the text components.I just have one additional question. In the main menu I have two buttons for selecting the language "English" and "Czech".I set the following actions for the buttons: "left click" -> "change language".But the change will not be made immediately. I have to go to another part of the menu first and then it changes. How to do it so that the change is reflected immediately? Is there any way to reload the page?Image below: This is how it works for me, but I don't know if it is correct to reload the same scene/menu.