Hi.
I am new to Unity and I came here humbling ask for some information. I am looking for a package/template (or more than one) that do the following:
- Single sign-in with Social Network like Facebook and Google
- A database so I can store game data and get that data to show in game
I tried a piece of firebase without luck because of the versions of each package brreaking my projects. I have a feeling that firebase is the direction I should be heading of…
So I am looking for some kind of package/template to get start with. Any suggestions? Thanks a lot
I’d go with firebase even if it’s difficult. We used that on a small project and it was great. Just follow the tutorials. And read the docs. As a developer (you get paid to think) your first responsibility is to be constantly honing your craft ie. Learning. Secondly it is to produce quality code that wont become impossible to maintain.
Btw firebase can help your users login in many ways besides just Google and facebook.
Just be sure to set the permissions properly on the database and salt + encrypt sensitive data. Dont ever decrypt them, instead use the client hashed data compare it to the stored hash and if the same they are correct.