Hello,
I’m currently deciding which data module to use in my app: the player data module or Firebase Realtime Database.
My goal is to record the scores of each user and generate a leaderboard at the end of a game session. Therefore, I need to access all users’ scores to create this leaderboard UI.
Is there a way with the player data module to fetch all users’ points? From my testing, it seems possible to only retrieve the points of the currently signed-in user.
Thank you.