Increment value in Firebase Realtime Database for Unity

Viewed 184

I want to increment an int:

_refUsers.Child(U.clickedby).Child("score").SetValueAsync(+=1);

It seems the ServerValue.increment() operation is not available for Unity.

What is a good way to do it in Unity?

0 Answers
Related