Keeping quests when switching scenes
- supadupa64
- Posts: 200
- Joined: Sun Mar 06, 2016 9:40 pm
- Contact:
Keeping quests when switching scenes
How can I setup everything so when I switch scenes things carry over (saving, quest, inventory etc.)? Right now I have a trigger set up where I switch scenes but nothing transfers...
Game I'm working on:
Website: http://www.RuctionGames.com
Steam: http://store.steampowered.com/app/49682 ... en_Tablet/
Website: http://www.RuctionGames.com
Steam: http://store.steampowered.com/app/49682 ... en_Tablet/
Re: Keeping quests when switching scenes
Hi,
Switch scenes using the LoadLevel() sequencer command or the LevelManager.LoadLevel(). These tell the Save System to save data before switching levels and then to re-apply the saved data in the new level.
Make sure your Dialogue Manager is using the default values (i.e., ticked) for the "Don't Destroy On Load" and "Allow Only One Instance" checkboxes.
Can you remind me what inventory and character control system you're using?
Switch scenes using the LoadLevel() sequencer command or the LevelManager.LoadLevel(). These tell the Save System to save data before switching levels and then to re-apply the saved data in the new level.
Make sure your Dialogue Manager is using the default values (i.e., ticked) for the "Don't Destroy On Load" and "Allow Only One Instance" checkboxes.
Can you remind me what inventory and character control system you're using?
- supadupa64
- Posts: 200
- Joined: Sun Mar 06, 2016 9:40 pm
- Contact:
Re: Keeping quests when switching scenes
AWESOME THANK YOU! I didn't have the box checked "Don't Destroy on Load." Quests now carry over, that was awesome.
I'm using 3rd person controller by Opsive.
Thank you for your help!
I'm using 3rd person controller by Opsive.
Thank you for your help!
Game I'm working on:
Website: http://www.RuctionGames.com
Steam: http://store.steampowered.com/app/49682 ... en_Tablet/
Website: http://www.RuctionGames.com
Steam: http://store.steampowered.com/app/49682 ... en_Tablet/
Re: Keeping quests when switching scenes
Happy to help!