Demo
Re: Demo
Hi,
What version of UFPS are you using? And which Save System are you using?
The Demo scene is built for Ultimate Character Controller and may have issues with UFPS (without third person). However, the Save System itself works perfectly fine with UFPS, so you can configure it in your own scene(s).
What version of UFPS are you using? And which Save System are you using?
The Demo scene is built for Ultimate Character Controller and may have issues with UFPS (without third person). However, the Save System itself works perfectly fine with UFPS, so you can configure it in your own scene(s).
Re: Demo
ok thank you I installed only UFPS and not ThirdPerson I'll retry.
There is a video that shows how to use the system?
I followed the doc but it doesn't say how to use it. For example, I used the prefab checkpoint but it doesn't seem to work because I can't hear the source audio. How do I load? Where are the saves in my pc?
I have to go through code or is it possible to do everything using the components that are available?
I need help getting started with a basic use case.
There is a video that shows how to use the system?
I followed the doc but it doesn't say how to use it. For example, I used the prefab checkpoint but it doesn't seem to work because I can't hear the source audio. How do I load? Where are the saves in my pc?
I have to go through code or is it possible to do everything using the components that are available?
I need help getting started with a basic use case.
Re: Demo
Hi,
I'll record a tutorial video this week. I'll reply here as soon as it's ready.
You can set it up without any scripting. Briefly, just add the Save System prefab to your scene(s), and add the UCCSaver component to your player GameObject.
I'll record a tutorial video this week. I'll reply here as soon as it's ready.
You can set it up without any scripting. Briefly, just add the Save System prefab to your scene(s), and add the UCCSaver component to your player GameObject.
Re: Demo
Great it's good news thank you. I'm sorry to do you extra work. It will really help me and certainly other people.
add the Save System prefab to your scene(s), and add the UCCSaver component to your player GameObject
I did it, that's what the doc says, but what to do next? I'll see that with the video, thank you again.
add the Save System prefab to your scene(s), and add the UCCSaver component to your player GameObject
I did it, that's what the doc says, but what to do next? I'll see that with the video, thank you again.
Re: Demo
Hi,
Were you able to look at SaveSystemForOpsive_Manual.pdf located in Assets > Pixel Crushers > Save System for Opsive? The complete steps are on page 5.
You don't need to do anything else. You can add the Save System Test Menu prefab to your scene if you want a temporary menu to test saving and loading.
If you want to write your own save/load menu and you want to use Playmaker instead of C#, import Assets > Plugins > Pixel Crushers > Common > Third Party Support > PlayMaker Support.unitypackage.
You can also optionally set the Save System prefab's Standard Scene Transition Manager component > Loading Scene Name to "DemoLoadingScreen" and add the DemoLoadingScreen scene to your build settings if you want to show a loading scene while loading saved games. This is optional.
Were you able to look at SaveSystemForOpsive_Manual.pdf located in Assets > Pixel Crushers > Save System for Opsive? The complete steps are on page 5.
You don't need to do anything else. You can add the Save System Test Menu prefab to your scene if you want a temporary menu to test saving and loading.
If you want to write your own save/load menu and you want to use Playmaker instead of C#, import Assets > Plugins > Pixel Crushers > Common > Third Party Support > PlayMaker Support.unitypackage.
You can also optionally set the Save System prefab's Standard Scene Transition Manager component > Loading Scene Name to "DemoLoadingScreen" and add the DemoLoadingScreen scene to your build settings if you want to show a loading scene while loading saved games. This is optional.
Re: Demo
The Save System prefab uses a PlayerPrefsSavedGameDataStorer component. This component saves games to PlayerPrefs.
If you want to save to disk, make a prefab variant of the Save System prefab. (In Project window, right-click, select Create > Prefab Variant.) Remove the PlayerPrefsSavedGameDataStorer component. Add a DiskSavedGameDataStorer. This will save games to files in the Persistent Data Path.
If you want to save to disk, make a prefab variant of the Save System prefab. (In Project window, right-click, select Create > Prefab Variant.) Remove the PlayerPrefsSavedGameDataStorer component. Add a DiskSavedGameDataStorer. This will save games to files in the Persistent Data Path.