Book Image

Learning Unreal Engine iOS Game Development

By : Muhammad A.Moniem
Book Image

Learning Unreal Engine iOS Game Development

By: Muhammad A.Moniem

Overview of this book

Table of Contents (18 chapters)
Learning Unreal Engine iOS Game Development
Credits
About the Author
Acknowledgements
About the Reviewers
www.PacktPub.com
Preface
Nodes Database
Index

Adding achievements


As leaderboards and achievements used to be discussed together as one topic, Epic has done their best to make the Achievements process similar to the Leaderboard process, which is as follows:

  1. Use the Write Achievement Progress node.

  2. Assign a value for Achievement Name, which represents the ID in iTunes Connect.

  3. Pass a Progress value to it if it is a progression achievement.

  4. You don't have to use a user tag, but this value will be returned anyway on success and on failure.

You can also use a similar node on the leaderboards to display the Game Center achievements screen by calling Show Platform Specific Achievements Screen. This too is named Specific as it is used with Android to show the Google Play Achievements screen.

As leaderboards have the functionality to download the progress and get its values, achievements have similar functionality too. However, as an achievement has a progress and description and not just progress (unlike the leaderboard), achievements have four...