Welcome home, player!

By clicking Continue with Google or Facebook, you agree to G2Play's Terms & Conditions and Privacy Policy, also to NFT Terms & Conditions and NFT Privacy Policy.

New to G2Play?
Sign up now!
  • FAQ
(0 Reviews)
Platform
Other
Other
Edition

Learn to Implement Game Saving [2018] Zenva.com Code

Sold by
Rare Keys
99.40% of 9134 ratings are superb!
$7.64
Your transaction is secure
We're working hard to protect the security of your payments. We have a dedicated Fraud Prevention and Response Department working 24/7 to ensure safe transactions. We have implemented custom systems to screen out potential scammers and we have partnered with Ravelin, one of the world's best fraud prevention platforms. We don't share your payment details with third-party sellers and we don't sell your information with others.
Key activation
notes
Languages
Recommend this game and earn$0.38or more per sold copy.Join in 3 minutes
This course has been archived and is no longer supported.

Providing players with the ability to save their game can significantly enhance player engagement and their motivation to continue playing. This course will show you how to implement game saving in Unity, using three different methods:

  • Saving Data using Player Preferences (PlayerPrefs)
    Perfect for saving simple data, this method is commonly used to change quality settings that the user makes to the player. You will be introduced to this save method by learning how to save Player Position and Player Health.
  • Saving Data with a Binary Formatter
    Built into .NET, this generic system allows for more complex data to be saved by serializing data before writing it to a file.
  • Saving Data using Easy Save
    Available on the Unity Asset Store, this simple system is the standard way to save complex data in Unity.